Skip to content

Instantly share code, notes, and snippets.

View rrubiorr81's full-sized avatar

Richard Rubio Roche rrubiorr81

View GitHub Profile
@rrubiorr81
rrubiorr81 / Angular course notes
Created November 17, 2013 17:37
Angular course notes
//angular course notes... 17/11/2013
//main include
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js"></script>
//defining the area where angular is going to look in...
<div ng-app> </div>
//inside this area u can do
<h2>{{2+5}}</h2> //and gets evalueted... or
<h2>{{"judith"+" the killer"}}</h2>
//the tags come "embeded" with natural html...
@rrubiorr81
rrubiorr81 / Adv command line
Created November 21, 2013 22:56
Adv command line
//
///math on the terminal...
//evaluating math expressions in the terminal...
expr 1 + 1
//piping the content into bc..
echo "1 + 3 * 12 - 3"| bc
bc
///pushing btw directories
@rrubiorr81
rrubiorr81 / README.md
Created February 25, 2016 17:56 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@rrubiorr81
rrubiorr81 / setup-dev.sh
Created February 28, 2016 16:35
Install homebrew, nginx, mysql, php55, and composer on Mac OS X
#!/bin/bash
# install homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# install homebrew's official php tap
brew tap josegonzalez/homebrew-php