Skip to content

Instantly share code, notes, and snippets.

View mingder78's full-sized avatar

Ming-der Wang mingder78

View GitHub Profile
@zanhsieh
zanhsieh / gist:85ebfd1db15225602a6f
Last active August 29, 2015 14:16
common-vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
$IPs = {
"vm1" => "10.0.119.11",
"vm2" => "10.0.119.12",
"vm3" => "10.0.119.13",
"vm4" => "10.0.119.14",
"vm5" => "10.0.119.15"
}
@subzey
subzey / LICENSE.txt
Created June 22, 2011 14:43 — forked from 140bytes/LICENSE.txt
parseRoman
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 subzey <subzey@immelman.ru>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
-module(hello).
-export([start/0]).
start() ->
io:format("Hello, World!").