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
| GAs-MacBook-Air:to_oz ga$ mkdir House | |
| GAs-MacBook-Air:to_oz ga$ cd House/ | |
| GAs-MacBook-Air:House ga$ touch Dorothy Toto | |
| GAs-MacBook-Air:House ga$ ls | |
| Dorothy Toto | |
| GAs-MacBook-Air:House ga$ cd .. | |
| GAs-MacBook-Air:to_oz ga$ mkdir Oz | |
| GAs-MacBook-Air:to_oz ga$ touch Oz/Good\ Witch\ of\ the\ North Oz/Wicked\ Witch\ of\ the\ East Oz/Good\ Witch\ of\ the\ South Oz/Wicked\ Witch\ of\ the\ West | |
| GAs-MacBook-Air:to_oz ga$ ls Oz/ | |
| Good Witch of the North Wicked Witch of the East |
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
| Last login: Mon Nov 27 15:13:58 on ttys000 | |
| GAs-MacBook-Air:~ ga$ cd ga-wdi/ | |
| GAs-MacBook-Air:ga-wdi ga$ cd sandbox/ | |
| GAs-MacBook-Air:sandbox ga$ mkdir git_practice_sample_resume $$ cd "$_" | |
| GAs-MacBook-Air:sandbox ga$ ls | |
| 8038 git_practice_sample_resume vestibule | |
| cd sandbox | |
| GAs-MacBook-Air:sandbox ga$ open . | |
| GAs-MacBook-Air:sandbox ga$ mv git_practice_sample_resume/ sandbox/ | |
| GAs-MacBook-Air:sandbox ga$ ls |
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
| export PATH="/usr/local/bin:$PATH" | |
| eval "$(rbenv init -)" | |
| export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/latest/bin | |
| export PATH=$PATH:/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin | |
| export GITHUB_USERNAME='tomatohammado' | |
| #Add prompt script from https://git.generalassemb.ly/DC-WDI/installfest-bash/blob/master/add-prompt.sh | |
| # source $(brew --prefix)/etc/bash_completion | |
| # source ~/.git-prompt.sh | |
| # GIT_PS1_SHOWDIRTYSTATE=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
| function func1 () { console.log('func1') } | |
| -> undefined | |
| var func2 = function () { console.log('func2') } | |
| -> undefined | |
| typeof func1 | |
| -> "function" | |
| typeof func2 | |
| -> "function" |
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
| Last login: Wed Nov 29 11:08:39 on ttys001 | |
| ~ | |
| $ gl | |
| fatal: Not a git repository (or any of the parent directories): .git | |
| ~ | |
| $ cd ga-wdi/class-work/week-1/haiku/ | |
| ~/ga-wdi/class-work/week-1/haiku (master *) | |
| $ git status | |
| On branch master | |
| Your branch is behind 'origin/master' by 2 commits, and can be fast-forwarded. |
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 ga-wdi/class-work/week-1/ | |
| ~/ga-wdi/class-work/week-1 | |
| $ git clone [email protected]:tomatohammado/wendy_bite.git | |
| Cloning into 'wendy_bite'... | |
| remote: Counting objects: 58, done. | |
| remote: Total 58 (delta 0), reused 0 (delta 0), pack-reused 58 | |
| Receiving objects: 100% (58/58), 409.93 KiB | 1.33 MiB/s, done. | |
| Resolving deltas: 100% (24/24), done. | |
| ~/ga-wdi/class-work/week-1 | |
| $ code . |
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 ~/ga-wdi/ | |
| ~/ga-wdi | |
| $ | |
| Display all 1597 possibilities? (y or n) | |
| ~/ga-wdi | |
| $ ls | |
| class-work labs projects sandbox vestibule-fundamentals | |
| ~/ga-wdi | |
| $ cd labs/ | |
| ~/ga-wdi/labs |
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
| for (let i = 1; i <= 100; i++) { | |
| let isDivisibleByThree = i % 3 === 0 | |
| let isDivisibleByFive = i % 5 === 0 | |
| isDivisibleByThree && isDivisibleByFive ? | |
| console.log('FizzBuzz') | |
| : isDivisibleByThree ? | |
| console.log('Fizz') | |
| : isDivisibleByFive ? | |
| console.log('Buzz') |
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 De | |
| Desktop/ Dev/ | |
| ~ | |
| $ cd Dev/ga-wdi/ | |
| ~/Dev/ga-wdi | |
| $ ls | |
| class-work labs projects sandbox vestibule-fundamentals | |
| ~/Dev/ga-wdi | |
| $ cd class-work/week-1/ | |
| ~/Dev/ga-wdi/class-work/week-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
| Last login: Fri Dec 1 18:14:23 on console | |
| ~ | |
| $ cd dev/ga-wdi/ | |
| ~/dev/ga-wdi | |
| $ ls | |
| class-work labs projects sandbox vestibule-fundamentals | |
| ~/dev/ga-wdi | |
| $ cd labs/ | |
| ~/dev/ga-wdi/labs | |
| $ ls |