Skip to content

Instantly share code, notes, and snippets.

View indieNik's full-sized avatar
🏠
Working from home

Nikhil Patil indieNik

🏠
Working from home
View GitHub Profile
@sirdarthvader
sirdarthvader / total_amount_calculator.js
Last active June 6, 2023 19:36
A minimal script to check overall spend till date on Zomato and Swiggy
/**
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.
@gokulkrishh
gokulkrishh / media-query.css
Last active November 18, 2025 15:54
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */
package com.blogspot.mohalgorithmsorbit.equation;
/**
*
* @author Mohamed Ennahdi El Idrissi
*
*/
public class Equation {
int n;
int base;
@bartholomej
bartholomej / css-media-queries-cheat-sheet.css
Last active November 7, 2025 08:43
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
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) { }