Skip to content

Instantly share code, notes, and snippets.

View alejandro's full-sized avatar

Alejandro Morales alejandro

  • Revls
  • Tegucigalpa, Honduras
View GitHub Profile

Run each of the following lines, replacing yourdomain.com and codehere with your details:

now dns add yourdomain.com @ TXT google-site-verification=codehere
now dns add yourdomain.com @ MX ASPMX.L.GOOGLE.COM 1
now dns add yourdomain.com @ MX ALT1.ASPMX.L.GOOGLE.COM 5
now dns add yourdomain.com @ MX ALT2.ASPMX.L.GOOGLE.COM 5
now dns add yourdomain.com @ MX ALT3.ASPMX.L.GOOGLE.COM 10
now dns add yourdomain.com @ MX ALT4.ASPMX.L.GOOGLE.COM 10
td {
background: cyan;
min-width: 100px;
height: 100px;
text-align: center;
font-family: Arial;
font-weight: 800;
font-size:30px;
}
td {
background: cyan;
min-width: 100px;
height: 100px;
text-align: center;
font-family: Arial;
font-weight: 800;
font-size:30px;
}
@alejandro
alejandro / server.js
Created June 26, 2012 00:34 — forked from anonymous/server.js
mookmike sockets
//Dependencies
var http = require('http')
, express = require('express')
, stylus = require('stylus')
, nib = require('nib')
, app = express()
;
@alejandro
alejandro / dabblet.css
Created June 3, 2012 02:34 — forked from anonymous/dabblet.css
Untitled
body {
background:#eee;
}
#w {
height:1500px;
width:100%;
right:10px;
background:#eee;
}
::-webkit-scrollbar {height: 16px;overflow: visible;width:26px;}
var events = require('events');
var util = require('util');
var http = require('http');
var options = {
hostname : 'api.twitter.com',
port : 80,
method : 'get',
path : '/1/statuses/public_timeline.json?count=3&include_entities=true'
@alejandro
alejandro / app.js
Created December 16, 2011 23:58 — forked from betobaz/app.js
node.js Upload file formidable
/**
* Module dependencies.
*/
var express = require('express')
, routes = require('./routes')
, stylus = require('stylus')
, util = require('util')
//, form = require('connect-form')
@alejandro
alejandro / readme-outline.md
Created November 20, 2011 05:44 — forked from indexzero/readme-outline.md
A quick outline of a README.md

README.md Outline

  • Header and a Brief description (should match package.json)
  • Example (if applicable)
  • Motivation (if applicable)
  • API Documentation: This will likely vary considerably from library to library.
  • Installation
  • Tests
  • Contributors
  • License
@alejandro
alejandro / gist:1374191
Created November 17, 2011 19:31 — forked from JeffreyWay/gist:1374162
Prompt IE6 for Chrome Frame Install
<!--[if lt IE 7 ]>
<script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
<script>CFInstall.check();</script>
<![endif]-->
@alejandro
alejandro / inherits.js
Created November 9, 2011 04:36 — forked from jfhbrook/inherits.js
Am I the only one that finds this more readable?
var util = require("util");
var inherits = function (inherits, fn) {
util.inherits(fn, inherits);
return fn;
}