Skip to content

Instantly share code, notes, and snippets.

View stanharris's full-sized avatar
🎯
Focusing

Stan Harris stanharris

🎯
Focusing
View GitHub Profile
@stanharris
stanharris / Install_ABP_Chrome.md
Created April 24, 2025 12:46 — forked from AAlvz/Install_ABP_Chrome.md
Install ABP in Chrome

Installing ABP in Google Chrome

This is the guide to setup AdBlock Plus manually on Google Chrome.

Large way.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
// Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible).
// Tweak the makePrettyJSON_ function to customize what kind of JSON to export.
var FORMAT_ONELINE = 'One-line';
var FORMAT_MULTILINE = 'Multi-line';
var FORMAT_PRETTY = 'Pretty';
var LANGUAGE_JS = 'JavaScript';
var LANGUAGE_PYTHON = 'Python';
@stanharris
stanharris / do_nothing_script.py
Created July 22, 2019 21:57 — forked from mbarkhau/do_nothing_script.py
do_nothing_script.py
#!/usr/bin/env python3
# Based on this https://news.ycombinator.com/item?id=20495739
# I created this boilerplate which I think is a bit nicer to use.
import sys
class AttrDict(dict):