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 | |
| return [ | |
| 'directory_list' => [ | |
| '.', | |
| ], | |
| 'suppress_issue_types' => [ | |
| 'PhanUndeclaredMethod', | |
| 'PhanAccessMethodProtected', | |
| ], |
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 | |
| require __DIR__ . '/vendor/autoload.php'; | |
| use igorw\edn; | |
| class Param { | |
| public $data; | |
| function __construct($data) { |
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
| #!/usr/bin/env sh | |
| yabai -m config mouse_follows_focus on | |
| yabai -m config focus_follows_mouse on | |
| yabai -m config layout bsp | |
| yabai -m config mouse_modifier fn | |
| yabai -m config mouse_action1 move | |
| yabai -m config mouse_action2 resize |
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
| { | |
| "BTTPresetName" : "chunkwm", | |
| "BTTGeneralSettings" : { | |
| "BTTPathSampleSize" : 100, | |
| "BTTCMOnTop" : true, | |
| "BTTForceForceClickPressure2F" : 700, | |
| "BSTLeftHalfBlock" : true, | |
| "BTTMinDrawingMovement" : 2, | |
| "BTTTouchBarMouseModeClickBlock" : true, | |
| "BSTRightHalfBlock" : true, |
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
| (defn php-empty? [input] | |
| (let [read (clojure.edn/read-string (str input))] | |
| (or | |
| (and (number? read) (zero? read)) | |
| (not (boolean read)) | |
| (and (seqable? read) (empty? read))))) |
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
| on run {input, parameters} | |
| tell application "Terminal" | |
| do script (input) in window 1 | |
| end tell | |
| return input | |
| end run | |
| https://i.imgur.com/C5Q4fhd.png |
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 | |
| $data = | |
| [':select' => [':a', ':b', [':select' => [':c']]], | |
| ':from' => [':foo']]; | |
| function recur(array $map) : object { | |
| return new \RecursiveIteratorIterator( | |
| new \RecursiveArrayIterator($map), |
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 | |
| $data = | |
| [':select' => [':a', ':b', [':select' => ':c']], | |
| ':from' => [':foo']]; | |
| function recur(array $map) : object { | |
| return new \RecursiveIteratorIterator( | |
| new \RecursiveArrayIterator($map), |
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 | |
| $data = | |
| [':select' => [':a', ':b', ':c'], | |
| ':from' => [':foo']]; | |
| function recur(array $map) : object { | |
| return new \RecursiveIteratorIterator( | |
| new \RecursiveArrayIterator($map), |
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
| /* | |
| * Your Stylesheet | |
| * | |
| * This stylesheet is loaded when Atom starts up and is reloaded automatically | |
| * when it is changed and saved. | |
| * | |
| * Add your own CSS or Less to fully customize Atom. | |
| * If you are unfamiliar with Less, you can read more about it here: | |
| * http://lesscss.org | |
| */ |