List of helpful shortcuts for faster coding
If you have any other helpful shortcuts, feel free to add in the comments of this gist :)
| <?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.15696233510971069</real> |
| #!/bin/sh | |
| echo Base Pack Installer! | |
| # no solution to automate AppStore installs | |
| read -p "Press any key to continue... " -n1 -s | |
| echo '\n' | |
| echo Install Homebrew, nvm | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" |
| { | |
| "workbench.colorTheme": "GitHub Dark", | |
| "editor.fontFamily": "FiraCode-Retina", | |
| "editor.fontLigatures": true, | |
| "search.exclude": { | |
| "**/node_modules": false, | |
| "**/yarn.lock": false, | |
| "package.lock": false, | |
| "**/bower_components": false | |
| }, |
| #!/bin/sh | |
| echo Power Pack is about to Explode! | |
| # no solution to automate AppStore installs | |
| read -p "Press any key to continue... " -n1 -s | |
| echo '\n' | |
| echo Install Postgres, wget and cask | |
| brew install deno | |
| brew install postgresql |
| https://meetingbar.onrender.com/ | |
| https://maccy.app/ | |
| https://apps.apple.com/us/app/clocker/id1056643111?mt=12 | |
| https://tableplus.com/ | |
| https://www.macbartender.com/ | |
| https://insomnia.rest/ | |
| https://1password.com/ | |
| https://www.notion.so/ | |
| https://max.codes/latest/ | |
| https://numi.app/ |
| { | |
| "AT": { | |
| "country": "Austria", | |
| "regex": "^(AT)?U[0-9]{8}$" | |
| }, | |
| "BE": { | |
| "country": "Belgium", | |
| "regex": "^(BE)?0[0-9]{9}$" | |
| }, | |
| "BG": { |
| [ | |
| { | |
| "name":"Africa/Abidjan", | |
| "offset":"+00:00" | |
| }, | |
| { | |
| "name":"Africa/Accra", | |
| "offset":"+00:00" | |
| }, | |
| { |
| [ | |
| { | |
| "name":"Israel", | |
| "dial_code":"+972", | |
| "code":"IL" | |
| }, | |
| { | |
| "name":"Afghanistan", | |
| "dial_code":"+93", | |
| "code":"AF" |
| { | |
| "workbench.colorTheme": "One Dark Pro", | |
| "editor.acceptSuggestionOnEnter": "off", | |
| "editor.fontFamily": "FiraCode-Retina", | |
| "editor.fontLigatures": true, | |
| "editor.fontWeight": "100", | |
| "editor.scrollBeyondLastLine": false, | |
| "editor.tabSize": 4, | |
| "editor.wordWrap": "on", | |
| "files.autoSaveDelay": 1000, |