Skip to content

Instantly share code, notes, and snippets.

@hakimio
hakimio / ace2-pro-shell.py
Last active April 26, 2026 01:56
Anycubic ACE 2 Pro interactive shell and Protobuf protocol schema
#!/usr/bin/env python3
"""
Anycubic ACE 2 ProProtocol Driver & Interactive Shell
Protocol (reverse engineered from Kobra S1 firmware):
Physical: CH343 USB-UART, 230400 baud, 8N1
Frame: [FF AA] [flags] [seq_lo seq_hi] [cmd] [len] [protobuf] [CRC16_lo CRC16_hi] [FE]
CRC: CRC-16/KERMIT (poly 0x8408), init 0xFFFF, over flags..payload
Direction: flags=0x00 request, flags=0x80 response
Payload: Protocol Buffers proto3, package ace_com

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.

@shoogle
shoogle / qt-without-xcode.md
Last active April 26, 2026 01:49
Qt without XCode - how to use Qt Creator for macOS software development without installing XCode

Qt without Xcode

How to use Qt Creator for software development on macOS without having to install Xcode

Justification

Qt refuses to install on macOS unless Apple's Xcode is installed beforehand. This is unfortunate because:

@somebox
somebox / teensy-41-guide.md
Created June 29, 2025 01:40
Teensy 4.1 Best Practices

Teensy 4.1 Microcontroller: A Community Reference Guide

This guide synthesizes practical knowledge, best practices, and known issues for the Teensy 4.1 microcontroller, based on extensive community discussions. It is intended for developers, hobbyists, and engineers designing circuits and software with the Teensy 4.1. The information was reviewed by a human, with summarization and structuring help from Gemini 2.5 Studio.

Getting Started: Development Environment & Toolchain

Arduino IDE & Teensyduino Setup

  • Best Practice: For reliable development, use the official Teensyduino installer with a supported version of the Arduino IDE.
    • For Arduino IDE 1.8.x, only specific versions are supported, with 1.8.19 being the most recommended. Teensy support must be added by running the Teensyduino installer and pointing it to the IDE's location.
@CNuge
CNuge / TTIB-morning_report_pt2.ipynb
Last active April 26, 2026 01:39
A google finance web scraper for international stock data
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@devinschumacher
devinschumacher / cloud-gpus.md
Last active April 26, 2026 01:38
Cloud GPU Hosting // The Best Servers, Services & Providers [RANKED!]
title The Best Cloud GPU Providers for Artificial Intelligence & Machine Learning
tags
cloud gpu providers
cloud gpu
artificial intelligence

Cloud GPUs: Servers, Providers & Everything You Would Ever Need

@roachhd
roachhd / README.md
Created December 8, 2014 23:09
Games on GitHub

Games on GitHub

Below is a list of open source games and game-related projects that can be found on GitHub - old school text adventures, educational games, 8-bit platform games, browser-based games, indie games, GameJam projects, add-ons/maps/hacks/plugins for commercial games, libraries, frameworks, engines, you name it.

Contributing

If you'd like to add a repository to the list, please create an Issue, or fork this repository and submit a pull request.

Help: MarkDown Help, Markdown Cheatsheet

@LessUp
LessUp / glm-coding-plan-rush-helper.user.js
Last active April 26, 2026 01:35
⚡ GLM Coding Rush — 智谱编程助手一键抢购脚本 | Auto-Purchase Userscript for GLM Coding | 自动解锁售罄 · 高速重试 · 定时触发 · 支付保护 · 中英双语面板 | Auto-unlock sold-out · High-speed retry · Scheduled trigger · Payment guard · Bilingual panel | Tampermonkey/Violentmonkey | 点击 Raw 安装 · Click Raw to install
// ==UserScript==
// @name GLM Coding Rush - 智谱编程助手抢购脚本
// @namespace https://gist.github.com/LessUp
// @version 1.1.0
// @description 智谱 GLM Coding 一键抢购脚本 — 自动解锁售罄按钮 / 高速重试引擎 / bizId 双重校验 / 错误弹窗自动恢复 / 支付弹窗保护 / 秒级定时触发 / 可拖拽浮动面板
// @author LessUp
// @match *://www.bigmodel.cn/*
// @match https://bigmodel.cn/glm-coding*
// @run-at document-start
// @grant none
@CataLatas
CataLatas / movement_reloc.ccs
Last active April 26, 2026 01:30
Earthbound movement script expansion patch
import asm65816
/*
* Relocates the movement script pointer table, allowing
* for custom scripts to be inserted into the game
*
* By Catador
* Additional ideas by JTolmar and cooprocks123e
* And maybe others (sorry!)
*/