Skip to content

Instantly share code, notes, and snippets.

View jaymcgavren's full-sized avatar

Jay McGavren jaymcgavren

View GitHub Profile
@jaymcgavren
jaymcgavren / amazon_music_favorites.csv
Created March 2, 2025 20:14
My Amazon Music playlists, exported July 15 2024 via tunemymusic.com
Track name Artist name Album Playlist name Type ISRC Amazon - id
Tongues [feat. KOPPS] Joywave How Do You Feel Now? Electronic Playlist USHR11435378 B00TBEXMVK
The Good In Me Jon Bellion The Human Condition [Explicit] Electronic Playlist USUM71603674 B01F9W9JEG
Smoking The Edge Dabrye One / Three Electronic Playlist US2J70400208 B00NYISAIO
Take Me Home Dabrye Instrmntl Electronic Playlist US2J71802409 B08X2W97KJ
Burn The House Down [Explicit] AJR The Click (Deluxe Edition) [Explicit] Electronic Playlist QMRSZ1801582 B07YNSH26S
One Big Moment Orbital Wonky Electronic Playlist GBQUK1200001 B07CZYW3Y8
Virga Tipper Flunked Electronic Playlist TCAER2060275 B085BFNZP9
Bilirubin Tipper Flunked Electronic Playlist TCAER2060274 B085BFTKB4
Flashlight Bonobo Flashlight EP Electronic Playlist GBCFB1403502 B073S67WQL
@jaymcgavren
jaymcgavren / mellow_d_best.txt
Created July 9, 2024 00:52
I downloaded all Mellow-D's mod tunes at https://modarchive.org/index.php?request=view_artist_modules&query=69557 and hastily went through them (discarding the cheesy/old sounding ones). Here's what made the cut.
1-fade.xm
2-higrou.xm
32coop.xm
4-bottle.xm
5-potion.xm
aalto.xm
chip1.xm
cloudcomplex_ds.xm
come_guilt.xm
cotton.xm
@jaymcgavren
jaymcgavren / messages.rb
Created February 5, 2024 06:31
A prototype for a MUD where a Door blocks attempts to pass through a Way.
class ListenerQueue
attr_reader :listeners
def initialize
@listeners = []
end
def register(listener)
@listeners << listener
end
def share_message(receiver, method_name, args, kwargs)
@listeners.each do |listener|
@jaymcgavren
jaymcgavren / module_prepend.rb
Last active February 5, 2024 05:03
A Ruby example of prepending a proxy module to a class to intercept method calls.
module MethodBroadcaster
def broadcast_calls_to(*method_names)
proxy = Module.new
method_names.each do |method_name|
proxy.define_method(method_name) do |*args, **kwargs, &block|
arg_strings = args.map(&:inspect)
kwarg_strings = kwargs.map{|k, v| "#{k}: #{v.inspect}" }
all_arg_strings = arg_strings + kwarg_strings
puts "#{method_name}(#{all_arg_strings.join(', ')})"
super(*args, **kwargs, &block)
@jaymcgavren
jaymcgavren / farming.rb
Last active January 23, 2024 06:54
Start of a prototype for a text adventure game.
# Untitled Text Adventure prototype.
# Copyright 2024 Jay McGavren. All rights reserved.
class Thing
attr_accessor :name
def initialize(name:)
@name = name
end
end
@jaymcgavren
jaymcgavren / bad_xscreensaver.txt
Created December 4, 2023 03:32
A list of XScreensaver modules that I deleted from MacOS because I don't find them tasteful.
Abstractile.saver
Anemone.saver
Anemotaxis.saver
AntInspect.saver
AntMaze.saver
AntSpotlight.saver
Apollonian.saver
Atlantis.saver
Attraction.saver
Beats.saver
@jaymcgavren
jaymcgavren / diff.txt
Created April 13, 2023 21:36
A comparison of ChatGPT output when asked to write "in the style of" two different authors.
$ wdiff gpt_as_jaymcgavren.txt gpt_as_dhh.txt
Hey there, fellow [-Rubyists! Today, we're going to-] {+Ruby enthusiasts! Let's+} talk about [-one of-] {+Hashes,+} the [-most powerful-] {+gloriously versatile+} data [-structures in Ruby: Hashes.
If you're new-] {+structure that's as essential+} to [-programming or just getting started with Ruby, you might be wondering what a Hash is. Simply put, a Hash-] {+Ruby as air+} is [-a collection-] {+to breathing.
Hashes, also known as associative arrays or dictionaries in other programming languages, are an integral part+} of {+the Ruby ecosystem. They let you group together+} key-value [-pairs, where each key maps to-] {+pairs that are easily accessible and modifiable using+} a [-corresponding value.-] {+key.+} Think of [-it-] {+them+} as [-a dictionary,-] {+an unordered list of items+} where {+each item has its own name that+} you [-look up a word (the key)-] {+can use+} to [-find its definition (the value).-] {+fetch it.+}
Here's a simple [-example:-] {+example t
@jaymcgavren
jaymcgavren / quote_page.txt
Last active November 4, 2022 19:14
This bookmarklet copies the selected text and current URL to the clipboard. Create a new bookmark and set the URL to the content below. The setTimeout allows it to be invoked from the Chrome "Open Location" bar.
javascript:setTimeout(async()=>await navigator.clipboard.writeText('"'+window.getSelection().toString()+'"\n'+location), 50);
@jaymcgavren
jaymcgavren / head_first_go_outline.markdown
Last active October 16, 2022 06:07
Markdown conversion of a planning outline for my Head First Go book. It may be instructive to note there are substantial differences between this and the content of the final book.

Syntax basics

  • Compiled language

  • Who created Go, and why

    • Fast builds
    • Fast execution
    • Concurrency
    • Garbage collection
@jaymcgavren
jaymcgavren / LICENSE.txt
Last active August 31, 2022 02:42
A script to generate a grep-able list of tables in your Rails project's database.
Copyright 2022 Jay McGavren
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHE