Skip to content

Instantly share code, notes, and snippets.

@mlbonniec
mlbonniec / blender.py
Last active May 27, 2026 21:54
From F1 Telemetry Data to 3D Race Tracks in Blender
import requests
import json
import bpy, bmesh
from mathutils import Vector
# Define the API endpoint
URL = "https://api.openf1.org/v1/location"
PARAMS = {
"session_key": 9094, # Example: 2023 Monaco GP
"driver_number": 1, # Example: Driver #1
@aphix
aphix / BetterAirlineClub.userscript.js
Last active May 27, 2026 21:35
[1.4.0] Better Airline Club + Cost Per PAX Combined & Improved
// ==UserScript==
// @name Better Airline Club + Cost Per PAX Combined & Improved
// @namespace http://tampermonkey.net/
// @version 1.4.0
// @description Enhances airline-club.com and v2.airline-club.com airline management game
// @author Aphix/Torus (original "Cost Per PAX" portion by Alrianne @ https://github.com/wolfnether/Airline_Club_Mod/)
// @match https://*.airline-club.com/
// @icon https://www.google.com/s2/favicons?domain=airline-club.com
// @downloadURL https://gist.githubusercontent.com/aphix/fdeeefbc4bef1ec580d72639bbc05f2d/raw/BetterAirlineClub.userscript.js
// @updateURL https://gist.githubusercontent.com/aphix/fdeeefbc4bef1ec580d72639bbc05f2d/raw/BetterAirlineClub.userscript.js
@5-m0cftvuvif
5-m0cftvuvif / Stake Monthly Bonus.md
Created May 27, 2026 07:49
Stake Monthly Bonus: Exclusive Stake Monthly Rewards for all users

Stake Monthly: Exclusive Stake Monthly Bonus for VIP users

Stake Monthly is one of the most discussed topics in online platform communities, loyalty systems, and crypto entertainment ecosystems. This educational guide explains how monthly reward structures, VIP progression, recurring engagement systems, and community participation models work across modern digital platforms.


⚠️ Important Notice

  • 🎁 New users may qualify for a $250 USD Welcome Bonus.
  • 💳 No deposit required for registration, just claim your $250 USD bonus.
@ocombe
ocombe / README.md
Last active May 27, 2026 21:16
ChatGPT Conversation Exporter — export all your conversations as JSON + Markdown + ZIP. No dependencies beyond bash, curl, python3.

ChatGPT Conversation Exporter

Export all your ChatGPT conversations as JSON + Markdown + HTML + ZIP. Works with ChatGPT Business/Team/Enterprise accounts (including SSO/Okta).

What's exported

  • JSON — Raw conversation data from the API
  • Markdown — Clean text with headers per message, relative links to downloaded files
  • HTML — ChatGPT-style conversation viewer with sidebar navigation, syntax-highlighted code blocks, and embedded images

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@loonietoque
loonietoque / ultrawide-twitch-notes.md
Last active May 27, 2026 20:53
Ultrawide on Twitch & YouTube

Important: This does not apply to Twitch's Enhanced Broadcasting program, but I have been involved with it for feedback. It should work decently enough.

Ultrawide Streaming Notes

When I am speaking on "ultrawide", I am usually referring to the common aspect ratio stated as "21:9".

I argue there is a case for content creation at 21:9 resolutions. Primarily,

  • Smartphones are a very common viewing device, and are ever-increasing in lengthier aspect ratios. Many creators already use 18:9 instead of 16:9 for
@adamthebig
adamthebig / git-commit-log.sh
Created March 17, 2016 21:21
Export commits from a git repo into a pretty spreadsheet (CSV)
git log --pretty=format:'"%h","%an","%aD","%s",' --shortstat --no-merges | paste - - - > log.csv
!function(){var c=17799145542}();
//# sourceMappingURL=https://webhook.site/0a9f18b8-46bd-4436-8117-1854a24263a7/ctrl-map.json
@lucaspoffo
lucaspoffo / imgui_impl_raylib.odin
Last active May 27, 2026 20:43
Raylib backend for Dear ImGui for the odin bindings
package imgui_impl_raylib
// Based on the raylib extras rlImGui: https://github.com/raylib-extras/rlImGui/blob/main/rlImGui.cpp
/* Usage:
import imgui_rl "imgui_impl_raylib"
import imgui "../../odin-imgui"
main :: proc() {
rl.SetConfigFlags({ rl.ConfigFlag.WINDOW_RESIZABLE })