Skip to content

Instantly share code, notes, and snippets.

View joeartsea's full-sized avatar

Atsushi Kojo joeartsea

View GitHub Profile
@joeartsea
joeartsea / 0_reuse_code.js
Created November 7, 2016 02:15
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@joeartsea
joeartsea / app.js
Created November 10, 2012 15:36
Postmark inbound app in Node.js
// Required modules.
var cradle = require('cradle');
var util = require('util');
var http = require('http');
// Config.
var config = require('./config');
// Variable to hold chunked data from Postmark.
var mailRaw = '';