Skip to content

Instantly share code, notes, and snippets.

@MaanooAk
MaanooAk / skiplist.h
Created April 27, 2017 13:15 — forked from unsuthee/skiplist.h
C++ Implementation of Skiplist
///////////////////////////////////////////////////////////////////////////////
#ifndef _SKIPLIST_H_
#define _SKIPLIST_H_
#include <iostream>
#include <sstream>
///////////////////////////////////////////////////////////////////////////////
@MaanooAk
MaanooAk / minify-js.sh
Created December 28, 2016 10:37 — forked from gurdiga/minify-js.sh
JS minifying script with curl and Closure Compiler REST API
#!/bin/sh
# Use like this:
#
# minify-js.sh < app.js > app.min.js
#
curl -s \
-d compilation_level=SIMPLE_OPTIMIZATIONS \
-d output_format=text \