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

This page contains the complete list of Historical Markers from Texas's Historical Marker Program that are featured in the Texas map expansion DLC for American Truck Simulator.

List of Markers

The list contains an image and the location of each Historical Marker featured in the game and an exact copy of its title, description, and sign number. The sign number is marked on a separate brown guide sign indicating the presence of a Historical Marker. When such a sign is absent in the game, the sign number has been retrieved from the official Texas Historic Sites Atlas.

@extratone
extratone / delieverables.md
Created May 22, 2026 11:35
Quick Reference for the swapped company names in the [Real companies, gas stations & billboards plugin](https://steamcommunity.com/sharedfiles/filedetails/?id=2316796205) for American Truck Simulator.
Default Changed
42print 3M
Haddock shipyard Vigor Marine Group
Steeler Westmetal
Fish tail Trident
Sea horizon Westport
Homestore Home Depot
Farmersbarn Tractor Supply Co.
Lowe's factory Cargill
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@extratone
extratone / AppleFrames4.html
Last active April 24, 2026 17:50
Source analysis for Version 4 of Federico Viticci's Apple Frames Siri Shortcut.
<!DOCTYPE html><html><head><meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="format-detection" content="telephone=no,date=no">
<title>Apple Frames</title>
<style>
body {
font-family: system-ui;
font-size: 0.95em;
margin-top: 1rem;
margin-bottom: calc(1rem + env(safe-area-inset-bottom));
formulas:
kB: (file.size / 1024).round()
MB: (file.size / 1048576).toFixed(2)
image: image(file.file)
views:
- type: cards
name: Image grid
filters:
and:
- file.ext == "avif" || file.ext == "bmp" || file.ext == "gif" || file.ext == "jpeg" || file.ext == "jpg" || file.ext == "png" || file.ext == "svg" || file.ext == "webp"
@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
}