-
Compiled language
-
Who created Go, and why
- Fast builds
- Fast execution
- Concurrency
- Garbage collection
This file contains hidden or 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
Dance Dance Revolution | |
Dance Dance Revolution/My Fire (UKS Remix) | |
Dance Dance Revolution/PARANOiA | |
Dance Dance Revolution/Have You Never Been Mellow | |
Dance Dance Revolution/KUNG FU FIGHTING | |
Dance Dance Revolution/TRIP MACHINE | |
Dance Dance Revolution/LET'S GET DOWN | |
Dance Dance Revolution/MAKE IT BETTER | |
Dance Dance Revolution EXTREME | |
Dance Dance Revolution EXTREME/WE WILL ROCK YOU |
This file contains hidden or 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
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 |
This file contains hidden or 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
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 |
This file contains hidden or 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
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| |
This file contains hidden or 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
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) |
This file contains hidden or 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
# Untitled Text Adventure prototype. | |
# Copyright 2024 Jay McGavren. All rights reserved. | |
class Thing | |
attr_accessor :name | |
def initialize(name:) | |
@name = name | |
end | |
end |
This file contains hidden or 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
Abstractile.saver | |
Anemone.saver | |
Anemotaxis.saver | |
AntInspect.saver | |
AntMaze.saver | |
AntSpotlight.saver | |
Apollonian.saver | |
Atlantis.saver | |
Attraction.saver | |
Beats.saver |
This file contains hidden or 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
$ 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 |
This file contains hidden or 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
javascript:setTimeout(async()=>await navigator.clipboard.writeText('"'+window.getSelection().toString()+'"\n'+location), 50); |
NewerOlder