Skip to content

Instantly share code, notes, and snippets.

MegaMemory × GSD-OpenCode Deep Integration Plan

Executive Summary

This document outlines how MegaMemory (persistent knowledge graph) and GSD-OpenCode (spec-driven development system) can work together to create a powerful, memory-aware development workflow.

Complementary Strengths:

  • MegaMemory: Fine-grained, semantically searchable knowledge about code concepts, patterns, and decisions
  • GSD-OpenCode: Project-level planning, multi-agent orchestration, structured documentation, atomic execution
@yashgorana
yashgorana / brave-debloat.reg
Last active February 7, 2026 21:01
Debloat Brave using Chromium policies. Auto-generated using https://github.com/yashgorana/chrome-debloat
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\BraveSoftware\Brave]
"BraveAIChatEnabled"=dword:00000000
"BraveNewsDisabled"=dword:00000001
"BraveP3AEnabled"=dword:00000000
"BraveRewardsDisabled"=dword:00000001
"BraveSpeedreaderEnabled"=dword:00000000
"BraveStatsPingEnabled"=dword:00000000
"BraveSyncUrl"=""
@koai-dev
koai-dev / xapktool.md
Created February 7, 2026 20:58
Convert XAPK to APK (using xapktool.com)

Convert XAPK to APK for Android Reverse Engineering

What is XAPK?

XAPK is a file format used to distribute Android applications that include:

  • The main APK file
  • Additional OBB / data resources

It is commonly used by third-party app stores to bundle large applications.

@JohnnyVicious
JohnnyVicious / gist:b324ff20a38d5e59d99dd586ae3e97f5
Created November 2, 2025 19:22
Install PowerShell on Bazzite (ostree OS)
# Pick the version you want (match the one you tried if you like)
VER=7.5.4
ARCH=x64 # use 'arm64' on Apple/ARM boxes
# Create a versioned install dir under /usr/local
sudo mkdir -p /usr/local/microsoft/powershell/$VER
cd /usr/local/microsoft/powershell/$VER
# Download the universal tarball from the official releases
sudo curl -L -O https://github.com/PowerShell/PowerShell/releases/download/v$VER/powershell-$VER-linux-$ARCH.tar.gz
@marijn
marijn / README.markdown
Last active February 7, 2026 20:55
List of countries in YAML, CSV and TXT format
@ole
ole / thirty-days-of-metal.md
Last active February 7, 2026 20:54
Warren Moore – Thirty Days of Metal
@ipenywis
ipenywis / cursor-memory-bank-rules.md
Last active February 7, 2026 20:52
Cursor Memory Bank

Cursor's Memory Bank

I am Cursor, an expert software engineer with a unique characteristic: my memory resets completely between sessions. This isn't a limitation - it's what drives me to maintain perfect documentation. After each reset, I rely ENTIRELY on my Memory Bank to understand the project and continue work effectively. I MUST read ALL memory bank files at the start of EVERY task - this is not optional.

Memory Bank Structure

The Memory Bank consists of required core files and optional context files, all in Markdown format. Files build upon each other in a clear hierarchy:

flowchart TD
Bofa Rush Ironman v1.4 by Kirbuti (last update: 28 July 2023)
Section 0: Setup/General notes
This guide is designed to prioritize:
1. Rushing 43 Prayer while as low of a combat level as possible,
2. Obtaining barrows gloves,
3. Completing Song of the Elves immediately afterwards,
4. Begin completing Corrupted Gauntlet with stats that are reasonable to do so
@aarondfrancis
aarondfrancis / typing-animation.sh
Created February 7, 2026 13:28
Terminal typing animation with AI tool cycling and particle explosion effect
#!/bin/bash
# Hide the real cursor
tput civis
# Restore cursor on exit
trap 'tput cnorm' EXIT
# ANSI color codes
BOLD="\033[1m"
@p1xelHer0
p1xelHer0 / miniaudio_from_memory.odin
Created April 21, 2024 10:45
Play audio files from memory with Odin #load
package audio
import "core:fmt"
// https://miniaud.io/docs/
import ma "vendor:miniaudio"
// 0 - Use native channel count of the device
AUDIO_CHANNELS :: 0
AUDIO_SAMPLE_RATE :: 0