Visit my blog or connect with me on Twitter
git init
or
<?php | |
namespace App\Providers; | |
use Postmark\Transport; | |
use Illuminate\Mail\MailServiceProvider; | |
class PostmarkServiceProvider extends MailServiceProvider | |
{ | |
/** |
#!/usr/bin/env bash | |
cd /Users/tyler/Library/Application\ Support/Sublime\ Text\ 3/Packages/Material\ Theme | |
sed -i.bu 's/38, 50, 56/37, 43, 57/' Material-Theme.sublime-theme |
--- | |
- name: Restart sshd | |
service: | |
name: ssh | |
state: restarted | |
become: yes | |
- name: Start NTP | |
service: | |
name: ntp |
<?php | |
namespace MyVendor_MyPlugin; | |
class MyClass | |
{ | |
/* ... */ | |
} | |
/*EOF*/ |
Visit my blog or connect with me on Twitter
git init
or
<?php | |
namespace App\Merge; | |
class Marge | |
{ | |
protected $data = []; | |
public function setData($data) | |
{ |
### Keybase proof | |
I hereby claim: | |
* I am tylerodonnell on github. | |
* I am tylerodonnell (https://keybase.io/tylerodonnell) on keybase. | |
* I have a public key ASDHaFDsnypF4G-FpyGxQxskBRMm3KtYL0rwSTluZXUrBwo | |
To claim this, I am signing this object: |
┌──────────┐ | |
──┤ Overview ├───────────────────────────────────────────────────────────────── | |
└──────────┘ | |
$ npm install --save bluebird | |
const Promise = require('bluebird') |
<?php | |
use PhpCsFixer\Config; | |
use PhpCsFixer\Finder; | |
$rules = [ | |
'phpdoc_indent' => true, | |
'binary_operator_spaces' => [ | |
'operators' => ['=>' => null] | |
], |
/* | |
******************************************************************************** | |
Golang - Asterisk and Ampersand Cheatsheet | |
******************************************************************************** | |
Also available at: https://play.golang.org/p/lNpnS9j1ma | |
Allowed: | |
-------- | |
p := Person{"Steve", 28} stores the value |