Skip to content

Instantly share code, notes, and snippets.

View yrgoldteeth's full-sized avatar

Nicholas Fine yrgoldteeth

View GitHub Profile

sameness, roots, retreating from memphis

I have not written anything much longer than a tweet or occasional paragraph in a chat about anything outside of work in years so bear with me. My thoughts really are (less than) half formed on all of this and so I have just written a bunch of questions to myself.

  • Why don't I ever want to listen to anything straight forward roots rock/americana inflected from the past 20+ years? Why does everything feel like it's marketing for the sake of marketing?
  • For me, in fact, was the form perfected by and consequently died with Tom Petty's passing?
  • Can it survive without Dylan who I don't even really like?
  • Why am I obsessively listening to three Mekons albums from 1989-1993 which are extremely roots inflected and indeed exp
@yrgoldteeth
yrgoldteeth / alabama_byofl_1996.markdown
Created March 19, 2021 16:55
ALABAMA - Book Your Own Fuckin' Life 5 (1996)
[Unit]
Description=Puma Rails Server
After=network.target
[Service]
Type=simple
User=deployer
WorkingDirectory=/path/to/rails-app
ExecStart=/usr/local/bin/chruby-exec ruby-2.4.1 -- bundle exec puma -C /path/to/rails-app/shared/config/puma.rb
TimeoutSec=15
#!/usr/bin/env bash
function aliasestext()
{
cat<<EOF
alias gpsom="git push origin master"
alias gcom='git checkout master'
alias gs='git status'
alias gf='git fetch'
alias gmod='git merge origin/develop'
#!/usr/bin/env bash
# This is my setup for Vim. This will install the janus set of plugins
# as well as create my specific vim customizations
# Ensure required packages are installed.
REQUIRED_PACKAGES="bash vim git curl"
for package in $REQUIRED_PACKAGES
do
command -v $package >/dev/null && continue || { echo "Package: $package is required, please install it"; exit 1; }
#!/usr/bin/env bash
setup_os_packages()
{
echo "Updating OS packages and install prerequisite packages"
sudo apt-get update && sudo apt-get -y upgrade && sudo apt-get -y install build-essential postgresql libpq-dev git
}
setup_ruby_install()
{
@yrgoldteeth
yrgoldteeth / nginx.conf
Created December 30, 2015 02:06 — forked from davidcelis/nginx.conf
Nginx configuration to redirect HTTP traffic to HTTPS (Puma)
upstream puma {
server unix:///var/www/app/shared/tmp/sockets/puma.sock fail_timeout=0;
}
server {
listen 80 default deferred;
server_name example.com;
rewrite ^/(.+) https://example.com/$1 permanent;
}
source 'https://rubygems.org'
gem 'rails', '4.2.5'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'bootstrap-sass'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby