Skip to content

Instantly share code, notes, and snippets.

@WitherOrNot
WitherOrNot / tmogged.cmd
Last active September 19, 2026 11:04
i'm sorry dave
<# :
:: I wonder who made Task Manager...
@setlocal DisableDelayedExpansion
@echo off
echo "%*" | find /i "-el" >nul && set _elev=1
set _PSarg="""%~f0""" -el
@loftwah
loftwah / jev.md
Created September 18, 2026 02:45
Jev Framework

Make the game good

A Jev-enabled experience lab for Loftwah’s games and applications

Research snapshot: 2026/09/18 AEST (UTC+10) / 2026/09/18 UTC.
Status: Code-grounded architecture, research synthesis and implementation plan. Not a completed gameplay audit, deployed integration or benchmark of Jev.
Scope: Bubbles, Fighter, Shoalshot, Protocol 11, LoftwahFM and Social Club.
Publication: Prepared for a multi-file Gist. Contains selected excerpts from the owner’s private repositories. Review before publishing; a secret Gist is unlisted, not private. [G1]

The objective is not an agent that declares the game good. It is a system that repeatedly produces a better game, with enough evidence to distinguish an improvement from a prettier screenshot, an easier win or a convincing report.

@jetfir3
jetfir3 / download_fusion.sh
Last active September 19, 2026 11:01
Download VMware Fusion Pro Without a Broadcom Account
#!/usr/bin/env bash
# Download VMware Fusion for macOS without a Broadcom account.
#
# This script allows you to download various versions of VMware Fusion
# from Broadcom's Cloudflare CDN (versions 8.0.0 to 13.6.3)
# or from the archive.org VMware Workstation archive (versions 8.x.x+).
#
# Options:
# -k: Keep the downloaded file compressed (Cloudflare only; ignored for archive.org).

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.

@im-Qarch
im-Qarch / arch-linux-hiddify-next-tun-mode-troubleshooting-guide.md
Last active September 19, 2026 10:58
A practical troubleshooting guide for running Hiddify Next TUN mode on Arch Linux. Covers: - Flutter AppImage GPU/Vulkan rendering issues - Installing native AUR package - TUN mode permissions - system proxy / KDE DBus issues - conflicts with Nekoray, sing-box and other TUN clients - routing and nftables debugging - verification steps

Arch Linux: Hiddify Next TUN Mode Setup & Troubleshooting Guide

Overview

This guide documents common issues when running Hiddify Next on Arch Linux, especially around:

  • Flutter AppImage rendering problems
  • Vulkan / GPU compatibility issues
  • Installing Hiddify from AUR
  • TUN mode setup
@banteg
banteg / readme.md
Last active September 19, 2026 10:54
uninstall beads

Beads Uninstall Script

A comprehensive uninstall/cleanup script for Beads (bd) that removes all traces of the tool from a system.

Usage

./scripts/uninstall.sh            # dry-run (scan $HOME)
./scripts/uninstall.sh --apply    # perform cleanup
./scripts/uninstall.sh --root DIR --apply
@pierrejoubert73
pierrejoubert73 / markdown-details-collapsible.md
Last active September 19, 2026 10:43
How to add a collapsible section in markdown.

How to add a collapsible section in markdown

1. Example

Click me

Heading

  1. Foo
  2. Bar
    • Baz
  • Qux
@imbushuo
imbushuo / simplevm.c
Last active September 19, 2026 10:38
Demonstrates Hypervisor.Framework usage in Apple Silicon
// simplevm.c: demonstrates Hypervisor.Framework usage in Apple Silicon
// Based on the work by @zhuowei
// @imbushuo - Nov 2020
// To build:
// Prepare the entitlement with BOTH com.apple.security.hypervisor and com.apple.vm.networking WHEN SIP IS OFF
// Prepare the entitlement com.apple.security.hypervisor and NO com.apple.vm.networking WHEN SIP IS ON
// ^ Per @never_released, tested on 11.0.1, idk why
// clang -o simplevm -O2 -framework Hypervisor -mmacosx-version-min=11.0 simplevm.c
// codesign --entitlements simplevm.entitlements --force -s - simplevm