Skip to content

Instantly share code, notes, and snippets.

@seaneshbaugh
seaneshbaugh / shows.txt
Last active October 19, 2023 17:37
Shows
7/21/08 @ Rubber Gloves (Denton, TX)
Power Trip
Iron Age
Trash Talk
Cold World
7/26/08 @ Sons of Hermann Hall (Dallas, TX)
Big Fresh
The Poison Control Center
The Apples in Stereo
@seaneshbaugh
seaneshbaugh / emoticons.txt
Last active January 6, 2023 17:34
(。◕‿‿◕。)
( `ー´)
のヮの
( ˃ ヮ˂)
ಲ_ಲ
๏̯͡๏)
(  ゚,_ゝ゚)
ಠ_ಠ
(″・ ิ_・ิ)っ-̾
Σщ(゚Д゚щ)
Elephant 6 - 24x18
Amebix - 39x26
Final Fantasy 15 - 9.25x7.5
Scott BMW Engine - 17x11
Cattle Dogtor - 10x8
Final Fantasy Tactics - 21.25x18 (51x45.5)
Power Trip - 18x12
Forward 2012 - 17x11
Moss Icon - 15x14
The Postal Service - 24x18
Steaking Paints:
Streaking Grime (AK012)
Thinners:
White Spirits (AK047)
This is a list of links to articles, talks, and videos about (or vaguely related to) the Dhamma that I have read, listened
to, or watched. It is roughly in chronological order, starting in mid-2017. The first part of the list is fairly
comprehensive and represents more or less anything and everything I encountered. As time has gone on I've been a bit more
selective and included only things that I've found particulary useful or insightful. The earlier links which are not
directly related to the Dhamma are still very important because they naturally led to deeper inquiries into the nature of
the mind.
https://pste.eu/p/L2lO.html
"Learning to Be Me" by Greg Egan
@seaneshbaugh
seaneshbaugh / emperors-children.txt
Last active November 29, 2020 10:17
Warhammer Armies
Noise Marine (Sonic Blaster) [16 + 4] 20
@seaneshbaugh
seaneshbaugh / running-average.c
Created August 26, 2020 21:55
running-average.c
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
struct running_average {
float average;
uint32_t count;
} typedef running_average;
void initialize(running_average* ra) {
#define _DARWIN_BETTER_REALPATH
#include <dlfcn.h>
#include <limits.h>
#include <mach-o/dyld.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
int main(int argc, char** argv) {
@seaneshbaugh
seaneshbaugh / applebees_per_capita.rb
Created August 26, 2020 20:24
Applebees per capita
# frozen_string_literal: true
require 'fileutils'
require 'json'
require 'pp'
# https://simple.wikipedia.org/wiki/List_of_U.S._states_by_population
# See July 1, 2019 estimate
STATES = {
'AL' => 4_887_871,
@seaneshbaugh
seaneshbaugh / dice.rb
Last active August 26, 2020 15:36
dice
class Integer
DICE_REGEX = /\Ad(\d+)\z/.freeze
def method_missing(method_name, *args, &block)
sides = method_name.to_s.match(DICE_REGEX)
super unless sides
times.map { rand(sides[1].to_i) + 1 }.inject(:+)
end