Skip to content

Instantly share code, notes, and snippets.

@xypaul
xypaul / base64.js
Created January 10, 2014 04:50 — forked from Marak/base64.js
/*
* base64.js: An extremely simple implementation of base64 encoding / decoding using node.js Buffers
*
* (C) 2010, Nodejitsu Inc.
*
*/
var base64 = exports;
base64.encode = function (unencoded) {
@xypaul
xypaul / gist:7037222
Last active December 25, 2015 20:39
Advanced CSS selections

Select the first five elements:

&:nth-child(-n+5}){

}