Github will be the main account and bitbucket the secondary.
ssh-keygen -t rsa -C "github email"
Enter passphrase when prompted. If you see an option to save the passphrase in your keychain, do it for an easier life.
| # MySQL. Versions 4.1 and 5.0 are recommended. | |
| # | |
| # Install the MySQL driver: | |
| # gem install mysql2 | |
| # | |
| # And be sure to use new-style password hashing: | |
| # http://dev.mysql.com/doc/refman/5.0/en/old-client.html | |
| development: | |
| adapter: mysql2 | |
| encoding: utf8 |
| https://en.wikipedia.org/wiki/Wikipedia:Database_download | |
| https://archive.org/details/stackexchange | |
| http://www.imdb.com/interfaces | |
| https://dmoztools.net/docs/en/rdf.html | |
| https://www.cia.gov/library/publications/the-world-factbook/ | |
| https://www.rfc-editor.org/retrieve/ | |
| http://download.geonames.org/export/ | |
| https://www.census.gov/main/www/cen2000.html | |
| https://www.census.gov/population/www/cen2000/briefs/ | |
| http://ucdata.berkeley.edu/index.php |
| {"lastUpload":"2021-07-15T12:31:41.248Z","extensionVersion":"v3.4.3"} |
| -- start mysql daemon | |
| mysql.server start | |
| -- connect as root | |
| mysql -u root -p | |
| -- create a new limited user | |
| -- [field] = placeholder for your situation | |
| CREATE USER '[username]'@'localhost' IDENTIFIED BY '[password]'; | |
| GRANT SELECT, INSERT, UPDATE, ALTER ON *.* TO '[username]'@'localhost'; |
| class ImageUpload extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| file: '', | |
| imagePreviewUrl: '' | |
| }; | |
| this._handleImageChange = this._handleImageChange.bind(this); | |
| this._handleSubmit = this._handleSubmit.bind(this); | |
| } |
The only way I've succeeded so far is to employ SSH.
Assuming you are new to this like me, first I'd like to share with you that your Mac has a SSH config file in a .ssh directory. The config file is where you draw relations of your SSH keys to each GitHub (or Bitbucket) account, and all your SSH keys generated are saved into .ssh directory by default. You can navigate to it by running cd ~/.ssh within your terminal, open the config file with any editor, and it should look something like this:
Host * AddKeysToAgent yes
> UseKeyChain yes
| brew tap homebrew/versions | |
| brew install v8-315 | |
| gem install libv8 -v '3.16.14.13' -- --with-system-v8 | |
| gem install therubyracer -- --with-v8-dir=/usr/local/opt/v8-315 | |
| bundle install |