Skip to main content

The Yellow Jacket Movement.



The Yellow Jacket Movement.

It’s not only in India that we face surge in fuel prices, excess tax and high cost of living, the world faces it. The most evident revolt against these issues is seen in France right now. The working and the middle classes want economic justice as high prices of everything have made a huge hole in their pockets and the weight of tax have broken their backs.

“The Yellow Jacket movement” has begun in France for a better lifestyle. It initially started as a movement against rising fuel prices, a method which the government introduced to curb the lack of budget which proved to be widely unpopular. The already low approval rating of the French President went further low at the beginning of the movement. “The Yellow Jacket movement” or the “The Yellow vest movement” is called so because of the highly visible yellow jackets that all the drivers are required to have in their vehicles, by law, and wear it during emergencies. The jacket has high visibility, and is associated with the working and middle classes.

 The protest began in November 2018 after a petition that was posted online in May gained immense attention. The people of France took on the roads on November the 17th by blocking roads and pumps in protest. Protest also began in Réunion, an oversea island region of France where troops had to be deployed four days after the protest to control the situation.

The intensity and the number of injured people have just increased. The problem still hasn’t found its way to resolution and peace (as of last update of the situation on 16th February).   

Comments

Popular posts from this blog

Google Dorks list

Google Dorks are used for searching websites in google search engine or in CLI. It can also help you in hacking as it shows the specific results which contains your search strings. Some of the Google Dorks are given below I tried to include all of them and sorry if any duplicacy. You can download or view this from  here about.php?cartID= accinfo.php?cartId= acclogin.php?cartID= add.php?bookid= add_cart.php?num= addcart.php? addItem.php add-to-cart.php?ID= addToCart.php?idProduct= addtomylist.php?ProdId= adminEditProductFields.php?intProdID= advSearch_h.php?idCategory= affiliate.php?ID= affiliate-agreement.cfm?storeid= affiliates.php?id= ancillary.php?ID= archive.php?id= article.php?id= phpx?PageID basket.php?id= Book.php?bookID= book_list.php?bookid= book_view.php?bookid= BookDetails.php?ID= browse.php?catid= browse_item_details.php Browse_Item_Details.php?Store_Id= buy.php? buy.php?bookid= bycategory.php?id= cardinfo.php?card= cart.php?action= ...

Hack SQL vulnerable websites with sqlmap

As the web is expanding day by day same way the hackers are also gaining new ways to access the data of your or any random website all you need to do is few lines of code and you are all done. Today i will tell you most common way to hack a website without any restrictions all you need is a vulnerable site and you are all done. NOTE: This is for educational purpose only. I am not responsible for anything. Try at your own risk. SQLMAP is availabe in linux and mac OS. If not you can install it via apt and other possible ways. syntax > sqlmap / [ ,options/ ] First of all make your device ready for hacking that is by installing necessary software's and files like Tor , Orbot  (Android),  Orfox (Android) or any other tor supported browser. And don't use it for your personal works. And if possible use VM's for hacking to make it more anonymous. Run tor or orbot and connect via VPN to be anonymous (i.e to hide and secure yourself). then you can open terminal on...

Python Code for Trading Indicators

Hi Everyone, I am back with some random things again. So today i will share codes of popular trading indicators which you can use while creating your own trader with machine learning in python. so at first you need to import the below libraries import numpy as np import pandas as pd from pandas_datareader import data as web import matplotlib.pyplot as plt then after the above step is done then you need to assign few of the local variables you can also take them as input as per your requirement stock_name="SBI" #for nifty: ^NSEI n = 20 #window size start_date = "2021-04-01" end_date = "2021-06-03" then after it is done you need to create a function which can be used to extract the data from the yahoo finance and for that the code is provided below def getData():     stock_data = web.DataReader(stock_name, start=start_date, end=end_date, data_source='yahoo')     stock_df=pd.DataFrame(stock_data)     return stock_df The above code will return da...