Skip to content

Instantly share code, notes, and snippets.

View akshay1188's full-sized avatar

Akshay Mhatre akshay1188

  • raw engineering
  • San Jose, CA
View GitHub Profile
@RATTLESNAKE-VIPER
RATTLESNAKE-VIPER / Git Commands Quick Lookup
Created July 29, 2012 15:18
Git Commands Quick Lookup
-----------------------------------------------SET UP GIT-----------------------------------------------
Username:
git config --global user.name "Your Name Here"
# Sets the default name for git to use when you commit
Email:
git config --global user.email "your_email@youremail.com"
# Sets the default email for git to use when you commit
# Your email address for Git should be the same one associated with your GitHub account.
@clarle
clarle / app.js
Created July 26, 2012 07:35
Short tutorial on how to use Express and node-mysql
// Module dependencies
var express = require('express'),
mysql = require('mysql');
// Application initialization
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',