Skip to content

Instantly share code, notes, and snippets.

View not-only-code's full-sized avatar
👾
Looking for work!

Carlos Sanz García not-only-code

👾
Looking for work!
View GitHub Profile
@not-only-code
not-only-code / dabblet.css
Created July 25, 2013 12:23
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
* {
margin: 0;
padding: 0
}
ul {
@not-only-code
not-only-code / dabblet.css
Created July 25, 2013 12:45 — forked from anonymous/dabblet.css
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
* {
margin: 0;
padding: 0
}
ul {
@not-only-code
not-only-code / dabblet.css
Created July 25, 2013 14:08
Flexible Field layout
/**
* Flexible Field layout
*/
body {
background: #f4f4f4;
color: #444;
font: 16px/1.2em Helvetica, Arial, Sans-serif;
}
@not-only-code
not-only-code / server.js
Last active August 29, 2015 14:07
Create static server easily
var static = require('node-static');
//
// Create a node-static server instance to serve the './public' folder
//
var file = new static.Server('./public');
require('http').createServer(function (request, response) {
request.addListener('end', function () {
//