Skip to content

Instantly share code, notes, and snippets.

@Anks
Anks / deft-title-fn-strip-file-vars.el
Created September 9, 2014 01:00
deft-mode – Strip file variables from title line

;; Customise deft to remove file-vars from the title line. ;; ;; I use ‘markdown-mode with deft usually, but for some longform files, ;; I prefer using ‘org-mode. ;; ;; The easiest way to do this is to use a file variable like so: ;; ;; -*- mode: org; -*- ;; ;; in the first line of the file. This makes the file open in ‘org-mode

@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
#!/usr/bin/env bash
# Gives you file-by-file change stats between two archives.
# Assuming your two archives are original.tar.gz and modified.tar.gz in
# the curent directory.
# I know that there is a tool called diffstat for this very purpose,
# and git probably uses it internally as well. I wanted to demo the
# git-diff --stat command.
@Anks
Anks / GoogleDocsHeadingNumbers.css
Created August 30, 2009 12:34
CSS for adding header numbering to google documents
/**
* CSS to add section numbers to top-level headings in
* a Google Docs (or any HTML) document.
*
* See <http://www.w3.org/TR/CSS2/generate.html> for
* more details.
*/
body {
counter-reset: section;
}
@Anks
Anks / README.md
Created May 19, 2011 17:24 — forked from bergie/README.md
Falsy Values tutorials
We deeply regret to inform you that we will not be able to deliver your
subscription copy of the February 11th issue of The Economist.
This issue includes a special report on Pakistan and features a map
showing the disputed territories. India does not allow us to show the
current effective border, requiring us instead to show only its
territorial claims. As a result, the issue has been seized by the Indian
customs authorities.
We apologise sincerely for any inconvenience this may cause. We will be
@Anks
Anks / flipkart-flyte-high-quality-downloads.js
Created March 4, 2012 10:25
Change download bitrate to 320kbps on Flipkart
$('select.bit-rate').each(function() { $(this).find('option:first').attr('selected', 'selected'); });
@Anks
Anks / nthloop.logo.pde.java
Created August 13, 2012 14:33
nth loop logo processing sketch
color[] colors = { color(85, 98, 112), color(78, 205, 196),
color(199, 244, 100), color(255, 107, 107),
color(196, 77, 88)
};
float rot = 0;
int colorIndex = 0;
void setup() {
frameRate(26);
size(325, 200, P3D);
@Anks
Anks / d3-number-transition.html
Last active December 25, 2015 09:59
Transitioning numbers using d3.js
<!DOCTYPE html>
<meta charset="utf-8">
<style></style>
<body>
<h2>Transitioning numbers</h2>
<h3 data-value="0" id="the-number">0</h3>
<input type="number" value="0" id="new-number" step="100" />