Skip to content

Instantly share code, notes, and snippets.

View pfaffman's full-sized avatar

Jay Pfaffman pfaffman

View GitHub Profile

People love macaroni and cheese. As is often the case, my evidence for this belief is the amount of shelf-space devoted to this product. Everyone makes it. Kraft, low-budget knock-offs, high-end organic varieties. There's the classic packet-o-powder version and a handful of ones that have cheese sauce in a can or pouch. But if you want to bring people mac and cheese happiness (at least people over the age of, say, six). I'm concerned that a new generation of humans is going to grow up thinking that proper mac and cheese comes only from a box and is made with margarine, skim milk, and a packet of yellow stuff that contains powdered "cheese food."

Real live baked macaroni, the kind that you make in the oven, is not difficult, expensive, or time-consuming to make. This fall I hosted a party for what ended up being about 40 people. It was a long drop-in-when-you-can party, and at some point my mother, who was in attendance, became concerned that we were going to run out of Mac and Cheese. I had made a h

Keybase proof

I hereby claim:

  • I am pfaffman on github.
  • I am pfaffman (https://keybase.io/pfaffman) on keybase.
  • I have a public key whose fingerprint is 7C05 5E30 3D57 A003 8F49 9653 6064 BA90 4BC8 EFB8

To claim this, I am signing this object:

@pfaffman
pfaffman / resize-lxd-disk-space.sh
Last active August 12, 2018 17:49 — forked from mifix/resize.sh
LXD - ZFS - resize
#!/usr/bin/env bash
# make sure zfs autoexpand is enabled (only needed once)
sudo zpool set autoexpand=on lxd
sudo truncate -s 20G /var/lib/lxd/zfs.img
# Make zfs realize the fact that partition has been changed and make zpool
# use the new partition which is actually the same one
sudo zpool online -e lxd /var/lib/lxd/zfs.img /var/lib/lxd/zfs.img
", "pry-nav", "byebug", "lru_redux", "flamegraph", "rack-mini-profiler", "kgio", "raindrops", "unicorn", "puma", "trollop", "rbtrace", "gc_tracer", "guess_html_encoding", "ruby-readability", "simple-rss", "stackprof", "memory_profiler", "rmmseg-cpp", "logster", "sass", "sassc"]
HTTP GET https://index.rubygems.org/info/rake
HTTP GET https://index.rubygems.org/info/msgpack
HTTP GET https://index.rubygems.org/info/bootsnap
HTTP GET https://index.rubygems.org/info/i18n
HTTP GET https://index.rubygems.org/info/minitest
HTTP GET https://index.rubygems.org/info/thread_safe
HTTP GET https://index.rubygems.org/info/tzinfo
HTTP GET https://index.rubygems.org/info/activesupport
HTTP GET https://index.rubygems.org/info/builder
@pfaffman
pfaffman / passwordless-ssh.md
Last active January 12, 2018 19:42 — forked from willemo/passwordless-ssh.md
Passwordless SSH/SFTP access to a server

Passwordless SSH/SFTP for dummies

To get SSH or SFTP access to a server without using a password you need to have a SSH key pair for each computer you want to be able to access the server from. In this document I’ll describe the steps you need to take to generate a key pair if you don’t have one already. If you do, you can use your public key(s) to get access to the server.

I'll also explain how to connect to your server using Cyberduck. Click here to skip to that part.

Disclaimer and stuff

This guide is written with newbies in mind, so I'm very thorough in describing the steps that you must take. This guide will not cover setting up the server side of this system. It assumes that there's a server running with SSH enabled.

#!/usr/bin/env ansible-playbook
---
- hosts: localhost
vars:
packages:
- exfat-fuse
- exfat-utils
- xfsprogs
- xfsdump
- hfsprogs
#!/usr/bin/env ansible-playbook
---
- hosts: localhost
vars:
packages:
- exfat-fuse
- exfat-utils
- xfsprogs
- xfsdump
- hfsprogs
#!/bin/bash
if [ ! -z "$1" ]
then
DOMAIN=`echo $1 | cut -d "." -f 2-9`
if [ ! -z "$DOMAIN" ]
then
DO_DYNDNS_DOMAIN=$DOMAIN
fi
HOST=`echo $1 | cut -d "." -f 1`
NOPUBLIC=1
@pfaffman
pfaffman / .gitlab-ci.yml
Created March 28, 2022 12:51 — forked from pschichtel/.gitlab-ci.yml
Gitlab CI setup to build the discourse docker image on a docker-based gitlab-runner
services:
- name: postgres:12-alpine
alias: bootstrap-postgres
- name: redis:6
alias: bootstrap-redis
variables:
POSTGRES_DB: bootstrap
POSTGRES_USER: bootstrap
POSTGRES_PASSWORD: ''