Getting started:
Related tutorial: http://cd64.de/mysql-cli
SQL joins infografic: http://cd64.de/sql-joins
//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... |
// | |
///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 |
Getting started:
Related tutorial: http://cd64.de/mysql-cli
SQL joins infografic: http://cd64.de/sql-joins
#!/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 | |