Skip to content

Instantly share code, notes, and snippets.

@Zei33
Zei33 / userChrome.css
Last active July 11, 2018 18:10
Firefox Quantum (Target v59.0.1) Super Slim User Interface
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* 1. Navigate to about:support in Firefox and click the button under the Profile Folder heading.
2. Enter the folder ending in .default (probably something like m61ofslb.default).
3. Create a folder named chrome if it doesn't exist already.
4. Drop this file into that folder and restart your Firefox browser.
Designed for Firefox Quantum on Mac OSX and may require modification to work on other operating systems. */
.tab-close-button
@im-strongthany-zz
im-strongthany-zz / PB_NoCookies.json
Created July 27, 2018 15:22
A JSON pulled from my privacy badger install. It has over 3000 domains, most of which are set to not allow 3rd party cookes.
{"action_map":{"webpoolblu1a09.infra.lync.com":{"userAction":"user_cookieblock","dnt":false,"heuristicAction":"allow","nextUpdateTime":1516745842772},"noobslab.disqus.com":{"userAction":"","dnt":false,"heuristicAction":"allow","nextUpdateTime":1516070903466},"maxcdn.bootstrapcdn.com":{"userAction":"user_cookieblock","dnt":false,"heuristicAction":"","nextUpdateTime":1516698222876},"fonts.googleapis.com":{"userAction":"user_block","dnt":false,"heuristicAction":"","nextUpdateTime":0},"apis.google.com":{"userAction":"","dnt":false,"heuristicAction":"cookieblock","nextUpdateTime":1516942295587},"google.com":{"userAction":"","dnt":false,"heuristicAction":"block","nextUpdateTime":1492973782210},"fonts.gstatic.com":{"userAction":"user_block","dnt":false,"heuristicAction":"","nextUpdateTime":0},"feedburner.google.com":{"userAction":"","dnt":false,"heuristicAction":"cookieblock","nextUpdateTime":1492922808535},"disqus.com":{"userAction":"","dnt":false,"heuristicAction":"cookieblock","nextUpdateTime":1516080092307},"www
@vyashole
vyashole / Gluttony.md
Last active December 1, 2024 05:01
Gluttony - Zomato Order History Export

Gluttony

Zomato Order History Scraper

Usage

  • Log in to Zomato in your browser
  • Go to order hostory page
  • Click Load More as many times as you want. You can go back as far as you want. ( maybe I'll add this functionality in the script later)
  • Right click any item > Inspect
  • paste the contents of gluttony.js into the console and run it
@Gufran
Gufran / script.sh
Created January 29, 2020 11:02
Add nice looking help text to bash script
#!/bin/bash
function help { # Print help text
echo "Available commands:"
grep '^function' "${BASH_SOURCE[0]}" | sed -e 's/function / /' -e 's/{ //' | column -t -s\#
}