git clone https://gist.github.com/b35434593e06fe4a2ea6eca13e4786da.git
cd b35434593e06fe4a2ea6eca13e4786da
./install-superdb.sh
./configure-claude.shDiscover gists
| package main | |
| // Usage: | |
| // copy this code to https://replit.com/languages/go | |
| // and change the encrypted_password variable below (see comments below for steps to acquite the encrypted password) | |
| import ( | |
| "crypto/aes" | |
| "crypto/cipher" | |
| "encoding/base64" |
| /********* | |
| ESPCAM image to flask with http-client library | |
| based on: | |
| Rui Santos | |
| Complete project details at https://RandomNerdTutorials.com/esp32-cam-take-photo-save-microsd-card | |
| IMPORTANT!!! | |
| - Select Board "AI Thinker ESP32-CAM" | |
| - GPIO 0 must be connected to GND to upload a sketch |
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.
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.
| name | vibecoder-review |
|---|---|
| description | Practical OWASP-focused security review for fast-moving codebases built with AI assistance - catches common patterns where speed trumps security (exposed secrets, auth bypasses, missing access controls, injection vulnerabilities) |
Target audience: Fast-moving codebases built by developers using AI assistance, rapid prototyping tools, and modern frameworks. These projects prioritize speed and iteration, often skipping security fundamentals.
Great series of short articles introducing Apple's Metal framework.
- 2022-04-01: Day 1: Devices
- 2022-04-02: Day 2: Buffers
- 2022-04-03: Day 3: Commands
- 2022-04-04: Day 4: MTKView
- 2022-04-05: Day 5: Shaders
- 2022-04-06: Day 6: Pipelines
| #!/bin/bash | |
| mkdir -p ~/.config/ghostty/themes && \ | |
| tmpdir=$(mktemp -d) && \ | |
| git clone --depth 1 --filter=blob:none --sparse https://github.com/mbadolato/iTerm2-Color-Schemes.git "$tmpdir" && \ | |
| cd "$tmpdir" && \ | |
| git sparse-checkout set ghostty && \ | |
| rsync -a ghostty/ ~/.config/ghostty/themes/ && \ | |
| cd ~ | |
| rm -rf "$tmpdir" |