Links + passo a passo de instalação. Tudo por linha de comando, no terminal, na pasta do teu projeto.
Antes de tudo: confere se o Claude Code tá atualizado.
claude --version
claude mcp list| # Kill OneDrive completely | |
| # https://github.com/johnmatczak | |
| # Self-elevate the script if not already elevated | |
| if (-Not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] 'Administrator')) { | |
| echo "For better results, this script should be run as administator." | |
| $elevate = Read-Host "Would you like to elevate this script to administator? [y\N] " | |
| if ($elevate -like 'y') { | |
| if ([int](Get-CimInstance -Class Win32_OperatingSystem | Select-Object -ExpandProperty BuildNumber) -ge 6000) { | |
| $CommandLine = "-File `"" + $MyInvocation.MyCommand.Path + "`" " + $MyInvocation.UnboundArguments |
| #!/bin/bash | |
| # Update source from bookworm to trixie | |
| sed -i 's/bookworm/trixie/g' /etc/apt/sources.list | |
| apt-get update | |
| # Upgrade to trixie | |
| DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::="--force-confold" dist-upgrade -y | |
| # Disable services that break in LXC / containers (harmless if not present) | |
| systemctl disable --now systemd-networkd-wait-online.service || true |
| #if os(iOS) | |
| import CoreImage | |
| import CoreImage.CIFilterBuiltins | |
| import CoreText | |
| import UIKit | |
| /// A single-line UIKit label that transitions text one glyph at a time. | |
| /// | |
| /// The intrinsic content size follows the current text. Glyphs are laid out | |
| /// individually from the leading edge, which suits short strings such as |
| # LLM Wiki — [YOUR FIELD] | |
| A personal knowledge base of [YOUR FIELD] papers, following [Karpathy's LLM Wiki pattern](https://gist.github.com/karpathy/1dd0294ef9567971c1e4348a90d69285): | |
| ``` | |
| Original PDF → sources/*.md → wiki/{category}/*.md → wiki/overviews/ + wiki/concepts/ | |
| ``` | |
| Language policy: all wiki content is in English. Conversation can be in any language. |
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.
I’m sharing this guide because I spent a lot of time troubleshooting SSL errors while setting up Poste.io behind Dokploy. If you are using Dokploy, you likely noticed that the Let's Encrypt certificates managed by Traefik work perfectly for the web dashboard but aren't automatically applied to the mail server ports (25, 587, 993, 995, etc.). This leads to "SSL/TLS Handshake" errors in external clients like Gmail or Outlook.
When trying to generate certificates inside Poste.io itself using the built-in Let's Encrypt client, I constantly hit this error:
LEScript.ERROR: 400 ... Unable to update challenge :: authorization must be pending
Instead of forcing Poste.io to get its own certificate, this method "feeds" Dokploy's existing certificates into the Poste.io container. This ensures that the Full Chain (Leaf + Intermediate certificates) is present, which is r