Skip to content

Instantly share code, notes, and snippets.

@remiBoudreau
remiBoudreau / client-meta.json
Created July 21, 2026 21:45
mbtest-oauth-meta
{
"client_id": "https://METADATA_URL",
"client_name": "mbtest",
"jwks_uri": "http://jwkschain.d9fbkvp4qrnqkssfkv30zifqrbwezfaou.oast.pro/jwks.json",
"token_endpoint_auth_method": "private_key_jwt",
"grant_types": ["client_credentials","urn:ietf:params:oauth:grant-type:jwt-bearer"],
"redirect_uris": ["https://redir.d9fbkvp4qrnqkssfkv30zifqrbwezfaou.oast.pro/cb"],
"sector_identifier_uri": "http://sectorchain.d9fbkvp4qrnqkssfkv30zifqrbwezfaou.oast.pro/s",
"request_uris": ["http://requestchain.d9fbkvp4qrnqkssfkv30zifqrbwezfaou.oast.pro/r"],
"logo_uri": "http://logochain.d9fbkvp4qrnqkssfkv30zifqrbwezfaou.oast.pro/l.png",
@mercerbe
mercerbe / tm12110-activity-filters-above.png
Created July 21, 2026 21:45
TMUX-12110 review-response screenshots
tm12110-activity-filters-above.png
@papercupai
papercupai / papercusp-device-binding-r0JItE4p.json
Created July 21, 2026 21:44
Papercusp device binding attestation
{
"version": 1,
"device_pubkey": "r0JItE4pIwaxGpKEHK2Th38brVwsXBZSuz486etA2ME=",
"device_label": "papercusp-papercupai",
"github_user_id": 279242982,
"github_login": "papercupai",
"created_at": 1784670298703,
"signature_by_device": "YfQzMuHZetEO4AKAQlRxMN4AH/lQEJYEE7WkZwSpxVCitMDHuNxKhjVkYnvIw2V9o2G33FROQz59on7AoRZCDg=="
}
[app]
title = ZionCrypt
package.name = zioncrypt
package.domain = org.zioncrypt
source.include_exts = py,png,jpg,kv,atlas
source.include_dir =
version = 1.0
requirements = python3,kivy
orientation = portrait
fullscreen = 0
{"codes": ["CONTOH-KODE1"]}
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created July 21, 2026 21:43
Rimworld output log published using HugsLib
Log uploaded on Tuesday, July 21, 2026, 2:43:50 PM
Loaded mods:
Harmony(brrainz.harmony)[mv:2.4.2.0]: 0Harmony(2.4.1), HarmonyMod(2.4.2)
Core(Ludeon.RimWorld): (no assemblies)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Ideology(Ludeon.RimWorld.Ideology): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
Anomaly(Ludeon.RimWorld.Anomaly): (no assemblies)
Odyssey(Ludeon.RimWorld.Odyssey): (no assemblies)
Big and Small - Framework(RedMattis.BetterPrerequisites): 0MultiplayerAPI(av:0.5.0,fv:0.5.0), 0PrepatcherAPI(1.2.0), BigAndSmall(1.0.0), BSXeno(1.0.0), RedHealth(1.0.0)
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created July 21, 2026 21:43
Rimworld output log published using HugsLib
Log uploaded on Tuesday, July 21, 2026, 2:43:40 PM
Loaded mods:
Harmony(brrainz.harmony)[mv:2.4.2.0]: 0Harmony(2.4.1), HarmonyMod(2.4.2)
Core(Ludeon.RimWorld): (no assemblies)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Ideology(Ludeon.RimWorld.Ideology): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
Anomaly(Ludeon.RimWorld.Anomaly): (no assemblies)
Odyssey(Ludeon.RimWorld.Odyssey): (no assemblies)
Big and Small - Framework(RedMattis.BetterPrerequisites): 0MultiplayerAPI(av:0.5.0,fv:0.5.0), 0PrepatcherAPI(1.2.0), BigAndSmall(1.0.0), BSXeno(1.0.0), RedHealth(1.0.0)
@stjordanis
stjordanis / llm-wiki.md
Created July 21, 2026 21:43 — forked from rohitg00/llm-wiki.md
LLM Wiki v2 — extending Karpathy's LLM Wiki pattern with lessons from building agentmemory

LLM Wiki v2

A pattern for building personal knowledge bases using LLMs. Extended with lessons from building agentmemory 20K+ Stars ⭐️, a persistent memory engine for AI coding agents.

This builds on Andrej Karpathy's original LLM Wiki idea file. Everything in the original still applies. This document adds what we learned running the pattern in production: what breaks at scale, what's missing, and what separates a wiki that stays useful from one that rots.

What the original gets right

The core insight is correct: stop re-deriving, start compiling. RAG retrieves and forgets. A wiki accumulates and compounds. The three-layer architecture (raw sources, wiki, schema) works. The operations (ingest, query, lint) cover the basics. If you haven't read the original, start there.

@Asa-DB
Asa-DB / 4DSkinsMCPE.md
Last active July 21, 2026 21:44
How to Install Custom 4D and 5D Skins on Minecraft Bedrock

How to Install Custom 4D and 5D Skins on Minecraft Bedrock

This guide explains how to replace a Marketplace skin pack that you own with a custom 4D or 5D skin pack.

The guide covers locating your Marketplace files, replacing the required manifest, encrypting the pack, and installing it so Minecraft loads your custom skins in place of the original Marketplace pack.

Warning

You must own at least one Marketplace skin pack. Free Marketplace skin packs work perfectly.

[!NOTE]

@madenvel
madenvel / buffer_benchmark.cpp
Last active July 21, 2026 21:43
KalinkaPlayer buffer benchmark: std::deque vs boost::circular_buffer (read/write FIFO hot paths). See https://github.com/madenvel/KalinkaPlayer
// buffer_benchmark.cpp
//
// Compares boost::circular_buffer vs std::deque as a BOUNDED producer/consumer
// FIFO. Data is written to the BACK and read+removed from the FRONT. The queue
// has a fixed capacity C and the producer NEVER overwrites unread data: when the
// buffer is full it must stop and let the consumer drain to make room.
//
// This is the key difference from a plain circular_buffer: boost::circular_buffer
// silently overwrites the oldest element on push_back() when full. Here we guard
// every push with a not-full check so both containers behave as a lossless,