I hereby claim:
- I am richardkalehoff on github.
- I am richardkalehoff (https://keybase.io/richardkalehoff) on keybase.
- I have a public key ASB8f_KLgrj-IlYSoYYjadLym_7nVwzx_QIJ4CtpqbuTGwo
To claim this, I am signing this object:
# List all node_modules in a directory and all descendant directories | |
$ find . -name "node_modules" -type d -prune | xargs du -chs | |
# Delete all node_modules in a directory and all descendant directories | |
$ find . -name "node_modules" -type d -prune -exec rm -rf '{}' + |
I hereby claim:
To claim this, I am signing this object:
This is my paragraph of text!
# 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 |
<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'); |
./configure \ | |
--prefix=/usr \ | |
--mandir=/usr/share/man \ | |
--infodir=/usr/share/info \ | |
--sysconfdir=/private/etc \ | |
--with-apxs2=/usr/sbin/apxs \ | |
--enable-cli \ | |
--with-config-file-path=/etc \ | |
--with-libxml-dir=/usr \ | |
--with-openssl=/usr \ |