Help with SQL commands to interact with a MySQL database
- Mac /usr/local/mysql/bin
- Windows /Program Files/MySQL/MySQL version/bin
- Xampp /xampp/mysql/bin
| [ | |
| { | |
| "author": "Alan Kay", | |
| "quote": "Don't worry about what anybody else is going to do. The best way to predict the future is to invent it. " | |
| }, | |
| { | |
| "author": "Donald Knuth", | |
| "quote": "Premature optimization is the root of all evil (or at least most of it) in programming. " | |
| }, | |
| { |
| {"lastUpload":"2020-11-03T12:11:45.710Z","extensionVersion":"v3.4.3"} |
| Follow below steps to add multiple accounts - | |
| step 1: | |
| Goto .ssh folder and generate ssh keys for all your github accounts | |
| $ cd ~/.ssh | |
| $ ssh-keygen -t rsa -b 4096 -C "personal_email_id" | |
| # save as id_rsa_personal | |
| $ ssh-keygen -t rsa -b 4096 -C "work_email_id" | |
| # save as id_rsa_work |
Code is clean if it can be understood easily β by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
| #!/bin/bash | |
| set -e | |
| echo "π¦ Cleaning up previous Ruby/CocoaPods setups..." | |
| brew uninstall ruby || true | |
| sudo gem uninstall cocoapods -aIx || true | |
| rm -rf ~/.cocoapods ~/.gem ~/.bundle | |
| echo "π§ Installing rbenv and ruby-build..." |