I hereby claim:
- I am jtgrimes on github.
- I am jtgrimes (https://keybase.io/jtgrimes) on keybase.
- I have a public key whose fingerprint is 972F 5523 4751 04AC AEEE 375B F1A8 201B 727A 21D1
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I've been storing articles about speaking and giving talks in Pocket for a while. Most of the articles I haven't read (or have only skimmed) and I make no promises about their quality. They are presented in no particular order. I'm just sharing it in case anyone is interested.
Have other interesting articles? Let me know. Corrections welcome too.
Beth Tucker Long: (@e3betht)
Emma Jane Hogbin Westby (@emmajanehw)
[core] | |
autocrlf = true | |
excludesfile = ~\gitignore_global.txt | |
[user] | |
name = J.T. Grimes | |
email = [email protected] | |
[alias] | |
ca = commit --amend | |
show-files = show --pretty=\"format:%h %s\\\n\" --name-only | |
lom = log origin/master.. |
#!/bin/sh | |
#install the core | |
composer create-project --prefer-dist laravel/laravel $1 | |
cd $1 | |
git init | |
#install extra packages | |
composer require --dev squizlabs/php_codesniffer barryvdh/laravel-ide-helper doctrine/dbal roave/security-advisories:dev-master laravel/telescope dczajkowski/auth-tests jrmadsen67/laravel-feature-test-generator |
// This is the code in the script to generate the file... | |
protected $signature = 'generate:constants'; | |
protected $description = 'Generate json files for constants'; | |
protected $outputFile = 'resources/js/plugins/constsPlugin.js'; | |
public function handle() | |
{ | |
// clear any existing file | |
if (is_file(base_path($this->outputFile))) { |