This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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([ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
''' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM busybox | |
MAINTAINER Suhas SG <[email protected]> | |
RUN mkdir /var/lib | |
RUN touch /var/lib/data.txt | |
VOLUME ["/var/lib"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
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 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
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): |