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
| echo "Creating an SSH key for you..." | |
| ssh-keygen -t rsa | |
| echo "Please add this public key to Github \n" | |
| echo "https://github.com/account/ssh \n" | |
| read -p "Press [Enter] key after this..." | |
| echo "Installing xcode-stuff" | |
| xcode-select --install |
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
| #!/bin/bash | |
| # EXECUTE | |
| # sudo chmod +x initialSetup.sh | |
| # ./initialSetup.sh | |
| function linuxSetup() { | |
| # Make sure in user's root directory | |
| echo "${GREEN}Changing to user's root directory...${NC}" | |
| cd ~/ |
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
| var container = A.one("#applianceInformationInputs"); | |
| // Model object | |
| var APPLIANCES = { | |
| /** | |
| * All appliances | |
| */ | |
| allApp: ["Hot water cylinder", "Hot water continuous flow", | |
| "Central heating", "Pool/Spa heating", "Hob", "Flame effect fire", | |
| "Space heating", "Bayonet", "Other"], |