Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: CjulERsDeqhhjSme66ECg
| # Download, configure, make and install International Components for Unicode | |
| wget http://download.icu-project.org/files/icu4c/49.1/icu4c-49_1-src.tgz | |
| tar xzvf icu4c-49_1-src.tgz | |
| cd icu/source/ | |
| ./runConfigureICU MacOSX | |
| make | |
| sudo make install | |
| # Install libjpeg support for GD | |
| brew install jpeg |
| <?php | |
| class CI_Date { | |
| public $sec_in_min, $min_in_hour, $hr_in_day, $day_in_wk, $sec_in_wk, $sec_in_day, $min_in_wk, $min_in_day, $hr_in_wk; | |
| public function __construct() { | |
| $this->sec_in_min = 60; | |
| $this->min_in_hr = 60; | |
| $this->hr_in_day = 24; | |
| $this->day_in_wk = 7; | |
| $this->day_in_yr = 365; | |
| $this->sec_in_hr = $this->sec_in_min * $this->min_in_hr; |
| <snippet> | |
| <content><![CDATA[ | |
| // ${1} Resource | |
| Route::get('${1}s', array('as' => '${1}s', 'uses' => '${1}s@index')); | |
| Route::get('${1}s/(:any)', array('as' => '${1}', 'uses' => '${1}s@show')); | |
| Route::get('${1}s/new', array('as' => 'new_${1}', 'uses' => '${1}s@new')); | |
| Route::get('${1}s/(:any)edit', array('as' => 'edit_${1}', 'uses' => '${1}s@edit')); | |
| Route::post('${1}s', '${1}s@create'); | |
| Route::put('${1}s/(:any)', '${1}s@update'); | |
| Route::delete('${1}s/(:any)', '${1}s@destroy'); |
| <snippet> | |
| <content><![CDATA[ | |
| // ${1} Resource | |
| Route::get('${1}s', array('as' => '${1}s', 'uses' => '${1}s@index')); | |
| Route::get('${1}s/(:any)', array('as' => '${1}', 'uses' => '${1}s@show')); | |
| Route::get('${1}s/new', array('as' => 'new_${1}', 'uses' => '${1}s@new')); | |
| Route::get('${1}s/(:any)/edit', array('as' => 'edit_${1}', 'uses' => '${1}s@edit')); | |
| Route::post('${1}s', '${1}s@create'); | |
| Route::put('${1}s/(:any)', '${1}s@update'); | |
| Route::delete('${1}s/(:any)', '${1}s@destroy'); |
| Thanks to: | |
| http://realityloop.com/blog/2012/07/03/nginx-mariadb-php-aegir-mac-os-x-optional-drush-5-works-mountain-lion | |
| and | |
| http://robots.thoughtbot.com/post/27985816073/the-hitchhikers-guide-to-riding-a-mountain-lion | |
| --Fresh install Mountain Lion. | |
| --Install XCode 4.4.2 | |
| --Install Command line utilities via Xcode | |
| --Install Homebrew |
| <?php // bundles/api_v1/controllers/example.php | |
| class Api_V1_Example_Controller extends Controller | |
| { | |
| public $restful = True; | |
| public function get_hello($name='World') | |
| { | |
| return "Hello, {$name}!"; | |
| } |
Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: CjulERsDeqhhjSme66ECg
A list of amazingly awesome PHP libraries that you should consider using (and some other shiny extras).
| # Initial setup | |
| git clone -o framework -b develop https://github.com/laravel/laravel.git project-name | |
| cd project-name | |
| git checkout --orphan master | |
| git commit -m "Initial commit" | |
| # Pulling changes | |
| git fetch framework | |
| git merge --squash -m "Upgrade Laravel" framework/develop | |
| # Fix merge conflicts if any and commit |
A list of amazingly awesome PHP libraries that you should consider using (and some other shiny extras).