This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| The below snippets will help you find total money spent on Zomato and Swiggy so far by any individual. | |
| For Zomato: | |
| Step 1: Go to Zomato.com, | |
| Step 2: Go to "Profiles", click on "Order History" | |
| Step 3: Scroll to the very bottom and click on "Load More", until the option disappears. | |
| Step 4: Do a right click anywhere on the screen and click on "Inspect", in the inspector, | |
| go to console copy and paste the below snippet and press enter. | |
| *****IMPORTANT**** | |
| Make sure all the steps till step 3 is followed before doing the step 4. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| ##Device = Desktops | |
| ##Screen = 1281px to higher resolution desktops | |
| */ | |
| @media (min-width: 1281px) { | |
| /* CSS */ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.blogspot.mohalgorithmsorbit.equation; | |
| /** | |
| * | |
| * @author Mohamed Ennahdi El Idrissi | |
| * | |
| */ | |
| public class Equation { | |
| int n; | |
| int base; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*------------------------------------------ | |
| Responsive Grid Media Queries - 1280, 1024, 768, 480 | |
| 1280-1024 - desktop (default grid) | |
| 1024-768 - tablet landscape | |
| 768-480 - tablet | |
| 480-less - phone landscape & smaller | |
| --------------------------------------------*/ | |
| @media all and (min-width: 1024px) and (max-width: 1280px) { } | |
| @media all and (min-width: 768px) and (max-width: 1024px) { } |