Skip to content

Instantly share code, notes, and snippets.

@dohaivu
dohaivu / .bash_profile
Last active September 9, 2017 02:53 — forked from Pallinder/.bash_profile
[go setup] #go gdb debug setup
alias gdbnew='/usr/local/Cellar/gdb/7.6/bin/gdb'
@dohaivu
dohaivu / business-models.md
Last active August 29, 2015 14:04 — forked from ndarville/business-models.md
Busineess model

Business Models

Advertising

Models Examples
Display ads Yahoo!
Search ads Google
@dohaivu
dohaivu / git.md
Last active June 6, 2017 10:38 — forked from neilgee/git.css
#git commands
/* Set up Git Configuration */

git config --global user.email "neil@coolestguidesontheplanet.com"

git config --global user.name "Neil Gee"

git config --global core.editor "vi"

git config --global color.ui true
@dohaivu
dohaivu / apps.js
Created October 19, 2013 09:33 — forked from eliOcs/apps.js
/*jslint node: true */
"use strict";
var express = require("express"),
consolidate = require("consolidate"),
Handlebars = require("handlebars"),
fs = require("fs");
var app = express();