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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Ansi 0 Color</key> | |
| <dict> | |
| <key>Alpha Component</key> | |
| <real>1</real> | |
| <key>Blue Component</key> | |
| <real>0.0</real> |
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
| details: "darker" | |
| foreground: "#ffffff" | |
| background: "#000000" | |
| accent: "#5AF78E" | |
| terminal_colors: | |
| normal: | |
| red: "#FF5C57" | |
| white: "#F1F1F0" | |
| cyan: "#9AEDFE" | |
| blue: "#57C7FF" |
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
| Install from App Store: | |
| - Xcode | |
| Install from browser: | |
| - Chrome | |
| - Discord | |
| - Visual studio code | |
| Create files https://scriptingosx.com/2017/04/about-bash_profile-and-bashrc-on-macos/ | |
| .bashrc |
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
| kill -9 $(lsof -t -i:PORTADDRESS) |
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
| <template> | |
| <div | |
| v-if="items.length > 0"> | |
| <div | |
| v-for="category in items" | |
| :key="category.id"> | |
| <v-checkbox | |
| v-model="selected" | |
| :label="category.name" | |
| :value="category.id" |
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
| SELECT wp_wpdatatable_7.quarter as 'Quarter', | |
| IF((wp_wpdatatable_7.numberofdomesticovernightvisitorsinshoalhaven) | |
| BETWEEN wp_wpdatatable_7.domesticovernightlowrange AND wp_wpdatatable_7.domesticovernighthighrange, | |
| 0, | |
| 1) | |
| + | |
| IF((wp_wpdatatable_7.numberofdomesticdaytripstoshoalhaven) | |
| BETWEEN wp_wpdatatable_7.domesticdaylowrange AND wp_wpdatatable_7.domesticdayhighrange, | |
| 0, | |
| 1) |
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
| /Applications/SketchUp\ 2017/SketchUp.app/Contents/MacOS/SketchUp -DisableRubyAPI YES |
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
| // Place your settings in this file to overwrite the default settings | |
| { | |
| "editor.renderWhitespace": "all", | |
| "editor.insertSpaces": false, | |
| "editor.minimap.enabled": false, | |
| "php.validate.executablePath": "C:/xampp/php/php.exe", | |
| "java.errors.incompleteClasspath.severity": "ignore", | |
| "window.zoomLevel": 0, | |
| //"terminal.integrated.shell.windows": "C:/Program Files/Git/bin/bash.exe", // git bash | |
| "terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\bash.exe", // ubuntu for windows |