I hereby claim:
- I am flooose on github.
- I am cfloess (https://keybase.io/cfloess) on keybase.
- I have a public key whose fingerprint is 61D0 DCF9 8B34 10B6 78E9 8A62 0BFB 00B0 72A8 BDE9
To claim this, I am signing this object:
| [/dev/disk/by-uuid/b3316cac-0e17-432f-a43e-00b4c770ec52] | |
| ext3_allow=rw,exec,X-mount.owner,X-mount.group | |
| ext3_defaults=rw,exec,X-mount.owner=chris,X-mount.group=wheel |
I hereby claim:
To claim this, I am signing this object:
This is how I containerize applications. I used this site for help and inspiration.
$ sudo pacstrap -i -c -d ~/chromium base chromium --ignore linux
$ sudo systemd-nspawn -u root -D ~/chromium/ bash
root # useradd chris -m
root # su -l chris && cd
$ mkdir -p mnt/pulse mnt/gdm
| (defconst parens "()") | |
| (defconst square-bracket "[]") | |
| (defconst curly-bracket "{}") | |
| (defun paired-p (open close) | |
| (cond | |
| ((equal open ?\[) | |
| (equal close ?\])) | |
| ((equal open ?\{) | |
| (equal close ?\})) |
I hereby claim:
To claim this, I am signing this object:
| module RedisSupport | |
| after_save :load_into_redis | |
| before_destroy :remove_from_redis | |
| def self.included(base) | |
| unless base.respond_to? :load_into_redis | |
| raise(Exception.new, "Please define the methods \"load_into_redis\" before including this module") | |
| end | |
| end |
| $ rails new blog | |
| $ cd rails | |
| $ rails g scaffold Post title:string content:text |