- positive
- comparation between math and programming
- in the first 3 minutes you talked about variables and show one automation in pratice
talk about my automations with alexa and python/ruby/vue
- sequence matters, i didn't know any course that talks about sequence
- showing the community conventions
install ruby version <= 2.3.X
sudo apt purge libssl-dev && sudo apt install libssl1.0-dev
rbenv install 2.3.X
install ruby version >= 2.4.X
sudo apt purge libssl1.0-dev && sudo apt install libssl-dev
rbenv install 2.3.X
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
| AllCops: | |
| TargetRubyVersion: 2.6 | |
| # Include common Ruby source files. | |
| Include: | |
| - '**/*.rb' | |
| - '**/*.gemspec' | |
| - '**/*.jbuilder' | |
| - '**/*.rake' | |
| - '**/Gemfile' | |
| - '**/Rakefile' |
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
| brew install v8-315 | |
| gem install libv8 -v '3.16.14.19' -- --with-system-v8 | |
| gem install therubyracer -- --with-v8-dir=/usr/local/opt/[email protected] | |
| bundle 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
| switch_ssh_keys () { | |
| sh $HOME/shell_apps/switch_ssh_keys/ini.sh $1 | |
| } |