Workshop 01, Global Hack Week. Justin Mitchel, Coding for Entrepreneurs. With thanks to Tiger Data.
A small FastAPI app that writes machine readings into a TimescaleDB hypertable and buckets them over time. Copy the blocks below in order.
Workshop 01, Global Hack Week. Justin Mitchel, Coding for Entrepreneurs. With thanks to Tiger Data.
A small FastAPI app that writes machine readings into a TimescaleDB hypertable and buckets them over time. Copy the blocks below in order.
| <!DOCTYPE html> | |
| <html lang="de"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Titel</title> | |
| </head> | |
| <body> | |
| </body> |
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.
Did you just install kernel-cachyos and got hit by bad shim signature when booting? Me too. This is how I fixed it.
First, make sure you have Secure Boot with mokutil --sb-state.
Note, there's a second way of doing this by using sbctl, but I didn't want to wipe my Secure Boot keys.
Need help? Feel free to leave a comment below, contact me (@mikaeldui) on the CachyOS Discord, or send me an email.
| @echo off | |
| echo Deleting HKEY_CLASSES_ROOT\dacdchfile ... | |
| reg delete HKEY_CLASSES_ROOT\dacdchfile /f | |
| echo Deleting HKEY_CLASSES_ROOT\tigans ... | |
| reg delete HKEY_CLASSES_ROOT\tigans /f |
| Gigabytes (GB) | Megabytes (MB) decimal | Megabytes (MB) binary |
|---|---|---|
| 1 GB | 1,000 MB | 1,024 MB |
| 2 GB | 2,000 MB | 2,048 MB |
| 3 GB | 3,000 MB | 3,072 MB |
| 4 GB | 4,000 MB | 4,096 MB |
| 5 GB | 5,000 MB | 5,120 MB |
| 6 GB | 6,000 MB | 6,144 MB |
| 7 GB | 7,000 MB | 7,168 MB |
| 8 GB | 8,000 MB | 8,192 MB |