See a list of composer configuration settings.
composer config --list -g
Check to see if you already set a github personal access token
See a list of composer configuration settings.
composer config --list -g
Check to see if you already set a github personal access token
#!/bin/bash | |
filePath1="$1" | |
filePath2="$2" | |
if cmp -s "$1" "$2" | |
then | |
echo "match" | |
else | |
echo "different" |
https://www.evernote.com/l/AAoEOtFGgThO94zN6ia6mpGHd_0fxzhrwtk | |
#!/bin/sh | |
echo 'updating composer' | |
composer selfupdate | |
echo 'updating home brew' | |
brew update |
#!/bin/bash | |
# Simple script to copy a MySQL to another | |
# Parent backup directory | |
backup_parent_dir="/path/to/tmp/backup/dir" #notice no ending slash | |
# MySQL settings | |
mysql_user="elevateduser" | |
mysql_password="elevateduserpassword" |
I hereby claim:
To claim this, I am signing this object:
# GNU Screen - main configuration file | |
# All other .screenrc files will source this file to inherit settings. | |
# Author: Christian Wills - cwills.sys@gmail.com | |
# Allow bold colors - necessary for some reason | |
attrcolor b ".I" | |
# Tell screen how to set colors. AB = background, AF=foreground | |
termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm' |
CREATE DATABASE jiradb CHARACTER SET utf8 COLLATE utf8_bin; |
CREATE DATABASE `mydb` CHARACTER SET utf8 COLLATE utf8_general_ci; | |
GRANT ALL ON `mydb`.* TO `username`@localhost IDENTIFIED BY 'password'; | |
FLUSH PRIVILEGES; |