https://wiki.audacityteam.org/wiki/Recording_Computer_Playback_on_Mac
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
| bindl=,switch:off:Lid Switch,exec,~/.local/bin/lid open | |
| bindl=,switch:on:Lid Switch,exec,~/.local/bin/lid close |
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
| { | |
| "AL": "Alabama", | |
| "AK": "Alaska", | |
| "AZ": "Arizona", | |
| "AR": "Arkansas", | |
| "CA": "California", | |
| "CO": "Colorado", | |
| "CT": "Connecticut", | |
| "DE": "Delaware", | |
| "FL": "Florida", |
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 | |
| error_reporting(E_ALL); // Error engine - always ON! | |
| ini_set('display_errors', FALSE); // Error display - OFF in production env or real server | |
| ini_set('log_errors', TRUE); // Error logging | |
| ini_set('error_log', 'your/path/to/errors.log'); // Logging file |
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
| https://www.tripadvisor.com/img/cdsi/img2/ratings/traveler/4.5-12418-5.svg |
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
| function in_array_r($needle, $haystack, $strict = false) { | |
| foreach ($haystack as $item) { | |
| if (($strict ? $item === $needle : $item == $needle) || (is_array($item) && in_array_r($needle, $item, $strict))) { | |
| return true; | |
| } | |
| } | |
| return false; | |
| } |
Below are the programs I install, the Preferences I change, and the configurations I tweak after doing a fresh install of OS X 10.11.
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"