Skip to content

Instantly share code, notes, and snippets.

View sandycorzeta's full-sized avatar
🚫
Unknown

Sandy Corzeta sandycorzeta

🚫
Unknown
View GitHub Profile
@sandycorzeta
sandycorzeta / post.md
Last active September 16, 2015 07:10 — forked from kbond/post.md
Ubuntu LAMP Development Environment Setup

Install git:

sudo apt-get install git

Configure Git:

touch ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global
git config --global user.name "Your Name"

git config --global user.email "Your Email"

@sandycorzeta
sandycorzeta / preprocessor_fun.h
Last active August 29, 2015 14:27 — forked from aras-p/preprocessor_fun.h
Things to commit just before leaving your job
// Just before switching jobs:
// Add one of these.
// Preferably into the same commit where you do a large merge.
//
// This started as a tweet with a joke of "C++ pro-tip: #define private public",
// and then it quickly escalated into more and more evil suggestions.
// I've tried to capture interesting suggestions here.
//
// Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_,
// @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant,
/*! Myanimestrap * incrowd.ws/mas * LGPL2 */
$brand-primary: #428bca;
$bg-color: white;
$text-color: #333;
$font-size-base: 14px;
$font-size-h1: ceil($font-size-base * 1.7);
$font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;