Skip to content

Instantly share code, notes, and snippets.

@dankmeme01
dankmeme01 / geode-android-hwasan.md
Last active May 23, 2026 23:22
Easy debugging of Geode mods with HWASan

Easy debugging of Geode mods with HWASan

ASan (and it's younger brother, HWASan) are incredible tools for debugging memory integrity bugs in native applications. This guide explains how to set up HWASan for Geode mods on Android and how to analyze crashes.

Requirements:

  • Device running Android 14+, lower is possible but only with ASan, which has a slightly different way of setting up. See here
  • Android Studio or any other way of building the launcher

Build the mod

@rdebath
rdebath / README
Last active May 23, 2026 23:19
Original brainfuck distribution by Urban Müller
This archive contains the following programs:
bfc The compiler for the 'brainfuck' language (240 bytes!)
bfc.asm Source for the compiler
bfi The interpreter for the 'brainfuck' language
bfi.c Source for the interpreter (portable)
src/ Some example programs in 'brainfuck'
src/atoi.b Reads a number from stdin
src/div10.b Divides the number under the pointer by 10
src/hello.b The ubiquitous "Hello World!"
@kazzohikaru
kazzohikaru / index.html
Created May 23, 2026 23:19
Music Player
<div class="vignette"></div>
<div id="sketch"></div>
<div class="h-8"></div>
<div class="w-[90%] space-y-2">
<div class="min-h-[405px]">
<swiper-container init="false" grab-cursor="true" effect="coverflow" centered-slides="true"
slides-per-view="auto" coverflow-effect-rotate="0" coverflow-effect-stretch="50"
coverflow-effect-depth="200" coverflow-effect-slide-shadows="false" coverflow-effect-modifier="1.5">
</swiper-container>
</div>
@aparente
aparente / SKILL.md
Last active May 23, 2026 23:34
tufte-viz Claude Code skill — Edward Tufte data visualization principles

name: tufte-viz description: | Ideate and critique data visualizations using Edward Tufte's principles from "The Visual Display of Quantitative Information." Use this skill when: (1) Designing new data visualizations or charts (2) Critiquing or improving existing visualizations (3) Reviewing dashboards or reports for graphical integrity (4) Deciding between visualization approaches (5) Reducing chartjunk or improving data-ink ratio (6) Planning small multiples or high-density displays

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.

@nathaningram
nathaningram / mu-brilliant-dashboard.php
Last active May 23, 2026 23:11
Starter Site 2024 Course - Brilliant Dashboard
<?php
/*
Plugin Name: Brilliant Dashboard
Description: Custom Dashboard Replacement with iFrame
Version: 2024.12
Author: Brilliant Web Works
*/
// Prevent direct access
if (!defined('ABSPATH')) {