I hereby claim:
- I am patricksimpson on github.
- I am patricksimpson (https://keybase.io/patricksimpson) on keybase.
- I have a public key ASBhv__xF1M8Vi8U7sqEiLz5uVBSlopVhbY8oGlmIG_BSQo
To claim this, I am signing this object:
If you have installed mysql 5.7 using homebrew, on macos serria | |
Edit your file ~/.my.cnf ( If it does not exist, create it. ) | |
Add the following lines: | |
[mysqld] | |
sql_mode = "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION" | |
Save and exit the file. |
var options = { | |
username: 'blah', | |
server: '127.0.0.1' | |
}; | |
var ConfigObject = (function(params) { | |
var username = params.username || '', | |
server = params.server || '', | |
password = params.password || ''; |
keychainItem=vpn # this name has to match "Account" for the entry you make in keychain | |
VPNName="" # match the name of the VPN service to run | |
function isnt_connected () { | |
scutil --nc status "$VPNName" | sed -n 1p | grep -qv Connected | |
} | |
get_pw () { | |
security 2>&1 >/dev/null find-generic-password -ga $keychainItem \ |
uptime # uptime and CPU stress | |
w # or better yet:last |head # who is/has been in | |
netstat -tlpn # find server role | |
df -h # out of disk space? | |
grep kill /var/log/messages # out of memory? |
I hereby claim:
To claim this, I am signing this object:
(function() { | |
if (window.fetch) { | |
let searchPage = document.querySelector('.search-body'); | |
if (searchPage) { | |
let addLunr = document.createElement('script'); | |
addLunr.src = '/static/js/lunr.js'; | |
document.body.appendChild(addLunr); | |
addLunr.onload = function() { | |
fetch('/lunr.json').then(function(response) { | |
return response.json(); |
/* | |
* key: 'unqiue_key' | |
question: 'string', | |
responses: [{ | |
response: 'positive', | |
answer: 'battery_terminal' | |
}], | |
*/ | |
const carExpert = [{ | |
key: 'start', |
O(n)
function add(x, y) { | |
while (y != 0) { | |
carry = x & y; | |
x = x ^ y; | |
y = carry << 1; | |
} | |
return x; | |
} |
#!/usr/bin/env ruby | |
$prefix = 'com.apple.TimeMachine.' | |
$host = 'rsync' | |
$repo = 'laptop' | |
# Where the snapshot will be mounted. | |
$mount = "#{Dir.home}/borg" | |
$ref_file = "#{Dir.home}/.borg-snapshot" | |
# Define exclusions here. | |
# https://borgbackup.readthedocs.io/en/latest/usage/help.html#borg-help-patterns | |
$exclude_file = "#{Dir.home}/.borg-exclude.txt" |