I hereby claim:
- I am arnold-almeida on github.
- I am aalmeida (https://keybase.io/aalmeida) on keybase.
- I have a public key ASDtqaRF9zz0GawIP3rSnDJB493UjheQ1ZDjNlpT9zd3OAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Spotify playlist : https://open.spotify.com/user/arn_e/playlist/3kscCaRIHvJzoJOtOTONIB
Please let me know if you come across any songs i may have missed that are on Spotify
'use strict'; | |
var chalk = require('chalk'); | |
/** | |
* @todo - Display error message when there are no tables to drop | |
* @todo - Get the migrations to display on CLI like when you run | |
* | |
* knex migrate:latest | |
* |
<?php | |
class UsersController { | |
public function __construct(FeedbackService $feedback) | |
{ | |
$this->Feedback = $feedback; | |
} | |
public function createUser(CreateUserValidator $validator, User $user) |
// link : https://medium.com/p/24cfae349724 | |
// version : 1.0.0 | |
scss/ | |
| | |
|— site/ # website namespace | |
| |— modules/ | |
| |— common/ | |
| |— _footer.scss |
<?php | |
/** | |
* Shortcut shell for easy fixtures | |
* | |
* Plugin/s : | |
* git submodule add [email protected]:FloatingPoints/Resources.git app/Plugin/Resources | |
* Install this file: | |
* app/Console/Command | |
* Usage: | |
* cake fixture [subcommand] [-h] [-v] [-q] |
<?php | |
/** | |
* Shortcut shell to the CakeDC Migrations plugin | |
* Plugin : | |
* git submodule add https://github.com/CakeDC/migrations.git app/Plugin/Migrations | |
* Install this file: | |
* app/Console/Command | |
* Usage: | |
* cake migrate [subcommand] [-h] [-v] [-q] | |
* |
rsync -azv --stats --progress . -e ssh user@host:/path/to/vhost/ --exclude=".git" --exclude-from=".gitignore"
git reset --hard HEAD@SHA1
<?php | |
/** | |
* Reading : | |
* | |
* - http://www.craftitonline.com/2011/08/behat-symfony-2-secret-how-to-subcontext-minkcontext/ | |
* - http://www.craftitonline.com/2011/07/behat-mink-new-use-of-aliased-subcontexts-complex-step-chaining/ | |
* - http://davidwinter.me/articles/2012/01/14/testing-javascript-websites-with-behat/ | |
* - http://davidwinter.me/articles/2012/01/13/using-behat-with-mink/ | |
*/ | |
use Behat\Behat\Context\ClosuredContextInterface, |
#!/bin/bash | |
#set -x | |
# Shows you the largest objects in your repo's pack file. | |
# Written for osx. | |
# | |
# @see http://stubbisms.wordpress.com/2009/07/10/git-script-to-show-largest-pack-objects-and-trim-your-waist-line/ | |
# @author Antony Stubbs | |
# set the internal field spereator to line break, so that we can iterate easily over the verify-pack output |