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
| //@mixin | |
| //defines complex variables | |
| @mixin shadow-original{ | |
| box-shadow: 1px 1px 0px #ddd; | |
| text-shadow: 1px 1px 1px #000; | |
| } | |
| @mixin shadow($offset){ | |
| box-shadow: $offset $offset 0px #ddd; | |
| text-shadow: $offset $offset $offset #000; | |
| } |
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
| nav{ | |
| border: 1px solid #ddd; | |
| ul{ | |
| margin: 0; | |
| li{ | |
| list-style: none; | |
| a{ | |
| color: red; | |
| }//a | |
| }//li |
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
| nav{ | |
| border: 1px solid #ddd; | |
| ul{ | |
| margin: 0; | |
| li{ | |
| list-style: none; | |
| a{ | |
| color: red; | |
| }//a | |
| }//li |
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
| puts "Hi, I am C-3PO, human-cyborg realtions" | |
| puts "May I have your name?" | |
| user_name = gets.chomp | |
| puts "it is a pleasure to meet you,#{user_name}. Have you ever met a protocol droid before?" | |
| user_answer = gets.chomp | |
| puts "#{user_answer}? How interesting, for someone from around these parts." |
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
| cd TOP_SECRET/SERIOUSLY_TOP_SECRET/YOU_PROBABLY_SHOULDNT_BE_IN_HERE/ | |
| mv totallyNotNuclearCodes.txt ../../../FLASH_DRIVE/ | |
| echo "8675309" > totallyNotNuclearCodes.txt | |
| cd ../../../ | |
| cp -r CAT_PHOTOS/ FLASH_DRIVE/ | |
| rm -r NO_NUCLEAR_LAUNCH_SEQUENCES_HERE/ | |
| mkdir DR_NEFARIOUS_NEW_LAUNCH_SEQUENCE/ | |
| cd DR_NEFARIOUS_NEW_LAUNCH_SEQUENCE/ | |
| echo "say -v Alex 'Doctor Nefarious: Ha ha. Sincerely, Mot Esiurc'" > superDuperLaunchSequence.sh |
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
| MakeGAWorkingDirectory(){ | |
| cd ~ | |
| mkdir -p GeneralAssembly/Projects/ GeneralAssembly/Outcomes/ | |
| mkdir -p GeneralAssembly/Homework/week01/day01 | |
| mkdir -p GeneralAssembly/Notes/week01/day01 | |
| cd GeneralAssembly | |
| echo "Keep calmn and code on" > "README.md" |