This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[main] | |
enable_predefined_sites = no | |
item_label_format = {site_name} | |
[defaults] | |
history_keep = none | |
[site/PHP] | |
url = http://php.net/manual-lookup.php?pattern=%s |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Windows utilities shortcuts | |
Local Security Policy - secpol.msc | |
System info - msinfo32.exe | |
Services - services.msc | |
Computer Management - compmgmt.msc | |
Device manager - devmgmt.msc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"hotkey": "super+alt+space", | |
"theme": "iansinnott/zazu-dark-theme", | |
"displayOn": "detect", | |
"plugins": [ | |
"tinytacoteam/zazu-calculator", | |
"tinytacoteam/zazu-file-finder", | |
"tinytacoteam/zazu-template", | |
"tinytacoteam/zazu-system", | |
"tinytacoteam/zazu-package-manager", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Twitter https://twitter.com/search?q={q} | |
Maps https://maps.google.com/maps?q={q} | |
Translate https://translate.google.com/#auto|en|{q} | |
Duckduckgo https://duckduckgo.com/?q={q} | |
Github https://github.com/search?q={q} | |
Gist https://gist.github.com/search?q={q} | |
Mail https://mail.google.com/mail/ca/u/0/#apps/{q} | |
GDrive https://drive.google.com/?hl=en&tab=bo#search/{q} | |
Wolframalpha https://www.wolframalpha.com/input/?i={q} | |
Stackoverflow https://stackoverflow.com/search?q={q} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "keys": [",", "s", "s"], "command": "edit_settings", "args": {"base_file": "${packages}/Default/Preferences.sublime-settings", "default": ""}}, | |
{ "keys": [",", "k", "k"], "command": "edit_settings", "args": {"base_file": "${packages}/Default/Default ($platform).sublime-keymap", "default": ""}}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
google.com | |
www.google.com | |
http://google.com | |
http://www.twitter.com | |
www.google | |
http://google | |
http://www.google |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace Octopus; | |
use \Closure; | |
class MiddlewareComposer | |
{ | |
protected $pipe; | |
protected $context; | |
protected $errorHandler; | |
protected $successHandler; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# A generic property reader abstraction | |
# https://ocramius.github.io/blog/accessing-private-php-class-members-without-reflection/ | |
$reader = function & ($object, $property) { | |
$value = & Closure::bind(function & () use ($property) { | |
return $this->$property; | |
}, $object, $object)->__invoke(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// original source: http://kuwamoto.org/2007/12/17/improved-pluralizing-in-php-actionscript-and-ror/ | |
/* | |
The MIT License (MIT) | |
Copyright (c) 2015 | |
Permission is hereby granted, free of charge, to any person obtaining a copy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"sidebar_no_icon": false, | |
"folder_no_icon": true, | |
"tabs_small": true, | |
"sidebar_size_12": true, | |
"sidebar_row_padding_large": true, | |
"status_bar_brighter": true, | |
"color_inactive_tabs": true, | |
"tabs_padding_small": true, | |
"tabs_label_not_italic": true, |