Skip to content

Instantly share code, notes, and snippets.

@iManu
iManu / nodejs
Created September 18, 2014 07:18
downgrade nodejs
$ npm install -g n # Install n globally
$ n latest # Install latest version of node
$ n ls # List all versions available
$ n 0.10.28 # Install and switch to an earlier version
@iManu
iManu / _inline-block.scss
Last active August 29, 2015 14:06 — forked from jlong/_inline-block.scss
SCSS: inline-block
/*
Inline-block for IE6, Firefox 2, and up
via http://blog.mozilla.com/webdev/2009/02/20/cross-browser-inline-block
*/
@module inbl {
display: -moz-inline-stack;
display: inline-block;
zoom: 1;
*display: inline;
@iManu
iManu / HTML5-basic
Last active August 29, 2015 14:06
HTML: basic template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Simple HTML5</title>
</head>
<body>
</body>
</html>