- All public-facing content crawlable at page load.
- All page content pieces linkable, and linkable cross-device.
- Semantics trumps aesthetics.
- All content to all users. Never show or hide content based on device.
- Device agnostic design and UX. Mobile and widescreen should look and feel similar; basically less media-queries = more device agnostic.
- Consider viewport height as much as width.
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 |