Skip to content

Instantly share code, notes, and snippets.

@jargnar
jargnar / webpack.config.js
Created October 23, 2016 10:32
Sample webpack config
var HtmlWebpackPlugin = require('html-webpack-plugin');
var HtmlWebpackPluginConfig = new HtmlWebpackPlugin({
template: __dirname + '/app/index.html',
filename: 'index.html',
inject: 'body'
});
var CopyWebpackPlugin = require('copy-webpack-plugin');
var CopyWebpackPluginConfig = new CopyWebpackPlugin([
{
@jargnar
jargnar / get_state_for_district.py
Created July 16, 2016 16:12
Querying a district_code to state_code lookup service
import json
import requests
def get_state_for_district(district_code):
'''
Queries a hypothetical URL endpoint of the following form:
/lookup?level=district&parent=state&district=<district_code>
and retrieves a state_code for the given district_code
'''
@jargnar
jargnar / topo.html
Created June 4, 2016 08:25
Custom TopoJSON and Leaflet.js
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Custom map</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.css" />
</head>
<body>
<div id="map" style="width: 100%; height: 400px; margin-bottom: 1.5em;"></div>
@jargnar
jargnar / Test.Volume.Dockerfile
Created April 12, 2016 08:27
Example Docker image for testing volume mounts
FROM busybox
MAINTAINER Suhas SG <[email protected]>
RUN mkdir /var/lib
RUN touch /var/lib/data.txt
VOLUME ["/var/lib"]
@jargnar
jargnar / checkcmd.sh
Last active April 12, 2016 07:31
Check if a command exists in linux
#!/bin/bash
if [ $# -eq 0 ]; then
printf "Please specify the command to check for.\n"
printf "Example:\n"
printf "$ ./checkcmd.sh docker\n"
else
if sudo command -v $1 >/dev/null 2>&1; then
printf "Yay! $1 exists.\n"
else
@jargnar
jargnar / deletestuffast.py
Last active March 20, 2021 16:12
Parse a Python AST and delete stuff from it
import ast
class RemoveMethod(ast.NodeTransformer):
'''
Removes all occurences of a method from the AST
Example:
---
tree = RemoveMethod('bar').visit(tree)
x = foo.bar() => x = foo
@jargnar
jargnar / function_calls_ast.py
Created March 8, 2016 16:53
Lists all function calls in a python file
'''
Get all function calls from a python file
The MIT License (MIT)
Copyright (c) 2016 Suhas S G <[email protected]>
'''
import ast
from collections import deque
@jargnar
jargnar / _vimrc
Created November 28, 2015 16:08
vimrc on windows
set nocompatible
source $VIMRUNTIME/mswin.vim
behave mswin
filetype off
set rtp+=$HOME/vimfiles/bundle/Vundle.vim/
call vundle#begin('$HOME/vimfiles/bundle/')
Plugin 'VundleVim/Vundle.vim'
Plugin 'scrooloose/nerdtree'
@jargnar
jargnar / mswin.vim
Created November 28, 2015 15:39
For vim on windows
" Set options and add mapping such that Vim behaves a lot like MS-Windows
"
" Maintainer: Bram Moolenaar <[email protected]>
" Last change: 2012 Jul 25
" bail out if this isn't wanted (mrsvim.vim uses this).
if exists("g:skip_loading_mswin") && g:skip_loading_mswin
finish
endif
@jargnar
jargnar / primes.py
Last active April 18, 2016 04:03
Generate prime numbers up to N using the Sieve of Eratosthenes
'''
Get all primes till N (using Sieve of Eratosthenes)
The MIT License (MIT)
Copyright (c) 2016 Suhas S G <[email protected]>
'''
import math
def primes(n):