Skip to content

Instantly share code, notes, and snippets.

View extratone's full-sized avatar
🗿
sudo exit

David Blue extratone

🗿
sudo exit
View GitHub Profile
@extratone
extratone / zed-logo-black.svg
Last active March 28, 2026 09:45
The vector files from the Zed editor brand page.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{
"mutators": {
"MaxPlayerCount_PerTeam": 16,
"AI_Vehicle_AllowAiInPassengerSeats": false,
"AI_ManDownExperienceType_PerTeam": 1,
"Portal_GenerateNavMesh": false
},
"assetRestrictions": {
},
{{Short description|2009 video game}}
{{More citations needed|date=February 2010}}
{{Use dmy dates|date=April 2022}}
{{Infobox video game
|title = Operation Flashpoint: Dragon Rising
|image = File:Operation Flashpoint 2.jpg
|developer = [[Codemasters]]
|publisher = Codemasters
|producer = Sion Lenton
|designer = James Nicholls
@extratone
extratone / wordnik-shell-function.sh
Created March 6, 2026 13:54 — forked from denmch/wordnik-shell-function.sh
A shell function that looks up a word via the Wordnik API, grabs each definition via json, and cats out the results with line numbers
# Define a word in the terminal via the Wordnik API with numbered output
function def() {
params="$@"
params_encoded=${params/ /%20}
curl --silent http://api.wordnik.com:80/v4/word.json/"$params_encoded"/definitions\?api_key\="$WORDNIK_KEY" \
| json --array text \
| cat -b
}
{{Short description|none}}
{{more citations needed|date=August 2013}}
{{multiple image
| direction = horizontal
| width = 140
| header = IJ Combined Fleet and US Pacific Fleet Commanders
| image1 = Isoroku_Yamamoto_1940_Nagato.jpg
| caption1 = Adm. Isoroku Yamamoto (HQ aboard BB ''Yamato'')
| image2 = Adm_Chester_Nimitz-1942.jpg
@extratone
extratone / kdenlivekeys.shortcuts
Last active February 25, 2026 20:18
Change tracking my personal keyboard shortcuts configuration for kdenlive.
[Shortcuts]
activate_all_targets=none
activate_audio_1=none
activate_audio_2=none
activate_audio_3=none
activate_audio_4=none
activate_audio_5=none
activate_audio_6=none
activate_audio_7=none
activate_audio_8=none
@extratone
extratone / 6
Created February 13, 2026 22:53
6
 
 
 
 
 
 
  ______   
.' ____ \  
@extratone
extratone / commentcloud.svg
Last active January 29, 2026 20:29
All of my YouTube comments, wordclouded.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@extratone
extratone / twitch_vlc.sh
Created December 6, 2025 22:51
Accepts the Twitch username of a live channel as input, resolves the highest quality .m3u8 URL available for it via `streamlink`, open said URL as streaming media with VLC.
#!/bin/bash
# Check if a username was provided
if [ -z "$1" ]; then
echo "Usage: $0 <twitch_username>"
exit 1
fi
USERNAME=$1
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.