start new:
tmux
start new with session name:
tmux new -s myname
PUSHER_HOST=socket.yourdomain.com | |
PUSHER_APP_ID=unlock | |
PUSHER_APP_KEY=123 | |
PUSHER_APP_SECRET=456 | |
PUSHER_PORT=443 | |
PUSHER_SCHEME=https |
{ | |
"editor.codeLens": false, | |
"workbench.colorTheme": "Atom One Dark", | |
"editor.quickSuggestions": { | |
"other": false, | |
"comments": false, | |
"strings": false | |
}, | |
"editor.selectionHighlight": false, | |
"editor.highlightActiveIndentGuide": false, |
<?php | |
use PhpCsFixer\Config; | |
use PhpCsFixer\Finder; | |
$rules = [ | |
'array_indentation' => true, | |
'array_syntax' => ['syntax' => 'short'], | |
'binary_operator_spaces' => [ | |
'default' => 'single_space', |
{ | |
"Statement": [ | |
{ | |
"Action": [ | |
"apigateway:*", | |
"cloudformation:CancelUpdateStack", | |
"cloudformation:ContinueUpdateRollback", | |
"cloudformation:CreateChangeSet", | |
"cloudformation:CreateStack", | |
"cloudformation:CreateUploadBucket", |
abandoned | |
able | |
absolute | |
adorable | |
adventurous | |
academic | |
acceptable | |
acclaimed | |
accomplished | |
accurate |
<?php | |
/** | |
* List of timezones | |
*/ | |
return array( | |
'Pacific/Midway' => '(UTC-11:00) Midway', | |
'Pacific/Niue' => '(UTC-11:00) Niue', | |
'Pacific/Pago_Pago' => '(UTC-11:00) Pago Pago', | |
'America/Adak' => '(UTC-10:00) Adak', | |
'Pacific/Honolulu' => '(UTC-10:00) Honolulu', |
<?php | |
class TimezonesHelper extends AppHelper { | |
function show() { | |
$zones = array( | |
'Pacific/Apia' => 'Apia, Upolu, Samoa', // UTC-11:00 | |
'US/Hawaii' => 'Honolulu, Oahu, Hawaii, United States', // UTC-10:00 | |
'US/Alaska' => 'Anchorage, Alaska, United States', // UTC-09:00 | |
'US/Pacific' => 'Los Angeles, California, United States', // UTC-08:00 | |
'US/Mountain' => 'Phoenix, Arizona, United States', // UTC-07:00 |