Skip to content

Instantly share code, notes, and snippets.

@Anks
Anks / keybase.md
Created October 4, 2014 11:32
keybase.md

Keybase proof

I hereby claim:

  • I am anks on github.
  • I am anks (https://keybase.io/anks) on keybase.
  • I have a public key whose fingerprint is 19FF 2958 B7FA CC10 CE4D 79D4 A144 4AC9 C3AC C9F7

To claim this, I am signing this object:

@Anks
Anks / ip.txt
Created October 21, 2014 13:42
Bad ISP IP Addresses
# Block these IPs at a firewall level
# MTNL Delhi uses this IP to inject their popup "ads" on some non HTTPS requests
203.94.243.40
@Anks
Anks / setup-org.el
Created March 30, 2016 05:28
org-mode setup
;;; Directory / File setup
(setq org-directory "~/Dropbox/org")
(setq org-default-notes-file "~/Dropbox/org/notes.org")
(setq org-archive-location "~/Dropbox/org/.archive")
(setq org-agenda-files (list org-directory))
;;; Configure org-capture
(setq org-capture-templates
'(("t" "Todo" entry (file+headline "~/Dropbox/org/notes.org" "Tasks")
"* TODO %?\n %i\n SCHEDULED %t")
@Anks
Anks / codeasdata.fs
Created November 7, 2016 04:34
Code As Data in F#
(* Type definitions *)
// A list of functions that take the current context (TDS return),
// and return true if the column is supposed to be visible right now
type IsColumnVisible = (TdsReturn -> bool) list
// List of functions that take a data row (generic type 'T)
// and return true if the current column is supposed to be editable
type IsColumnEditable<'T> = ('T -> bool) list
@Anks
Anks / insert-clipboard.applescript
Created November 9, 2017 07:38
Applescript to 'type' your clipboard into textfields (useful for websites where they block paste)
on run
tell application "System Events"
keystroke (the clipboard)
end tell
end run
@Anks
Anks / delete-merged-branches.sh
Created June 22, 2022 04:41
Delete all merged branches from your local git repository
git branch --merged | grep -v master | grep -v main | xargs git branch -d