Artist | Track | Album |
---|---|---|
Bikini Body | Young Dad | Young Dad |
The Cool Greenhouse | Dirty Glasses | The Cool Greenhouse |
Dog | Beep! Beep! Honk! Honk! | Beep! Beep! Honk! Honk! |
Fat White Family | Feet | Serfs Up! |
Sworn Virgins | The Male Man | The Male Man |
Warmduscher | Wild Flowers | At The Hotspot |
Grim Streaker | Typical | MIND |
Yard Act | Witness (Can I Get A?) | The Overload |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": 164036, | |
"description": "The thunderdome returns", | |
"user": { | |
"id": 3268, | |
"name": "Blobble" | |
}, | |
"players": [ | |
{ | |
"id": 17430, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>ssh-add--apple-load-keychain</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>ssh-add</string> | |
<string>--apple-load-keychain</string> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Don't let ripgrep vomit really long lines to my terminal, and show a preview. | |
--max-columns=150 | |
--max-columns-preview | |
# Add Rails type for searching just Rails files | |
--type-add | |
rails:*.{gemspec,rb,erb,rbapi} | |
--type-add | |
rails:.irbrc | |
--type-add |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible " be iMproved, required | |
lua << EOF | |
local execute = vim.api.nvim_command | |
local fn = vim.fn | |
local install_path = fn.stdpath('data')..'/site/pack/packer/start/packer.nvim' | |
if fn.empty(fn.glob(install_path)) > 0 then | |
fn.system({'git', 'clone', 'https://github.com/wbthomason/packer.nvim', install_path}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
switch_to_slave_db | |
require "csv" | |
headers = ["Name", "Email", "Subdomain", "Bank Account ID", "Practice Name"] | |
mettle = Reseller.find_by_name("mettle") | |
csv_string = CSV.generate(headers: headers, write_headers: true) do |csv| | |
Company.where(reseller: mettle).where.not(account_manager: nil).each do |c| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a lambda that adds its 2 params | |
adder = ->(x, y) { x + y } | |
# Curry it to pre-populate the first param with 2. This effectively turns | |
# add_two into ->(2, y) { 2 + y } | |
add_two = adder.curry[2] | |
# Call add_two with some other args | |
add_two.call(3) | |
# => 5 |
NewerOlder