Skip to content

Instantly share code, notes, and snippets.

View roncanepa's full-sized avatar

Ronald Canepa roncanepa

View GitHub Profile
@roncanepa
roncanepa / links.txt
Created September 27, 2019 17:25
take-away backmatter for IDB API presentations
@roncanepa
roncanepa / keybase.md
Created June 2, 2019 15:55
keybase.md

Keybase proof

I hereby claim:

  • I am roncanepa on github.
  • I am rcanepa (https://keybase.io/rcanepa) on keybase.
  • I have a public key ASAD38fjVJFPSqHlYTvA0XHORZ1vNCxKmsrQRpGt4_3w2go

To claim this, I am signing this object:

@roncanepa
roncanepa / README.md
Last active August 29, 2015 14:22 — forked from oodavid/README.md

Backup MySQL to Amazon S3

This is a simple way to backup your MySQL tables to Amazon S3 for a nightly backup - this is all to be done on your server :-)

Sister Document - Restore MySQL from Amazon S3 - read that next

1 - Install s3cmd

this is for Centos 5.6, see http://s3tools.org/repositories for other systems like ubuntu etc

@roncanepa
roncanepa / make_users.sh
Last active August 29, 2015 14:14 — forked from audy/make_users.sh
while read -r username password; do
echo "creating user: ${username}"
useradd --gid students $username
# hack the planet!
echo "${password}\n${password}\n" | passwd $username
done < passwords.tsv