Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.
Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.
| Day 1 (Track A): | |
| Keynote - Fabien Potencier | |
| Security: In Real Life - Johannes S | |
| https://speakerdeck.com/u/schmittjoh/p/security-in-real-life | |
| How we built the new responsive BBC News site - John Cleveley | |
| https://speakerdeck.com/u/jcleveley/p/how-we-built-the-new-responsive-bbc-news-site |
A pattern for building personal knowledge bases using LLMs. Extended with lessons from building agentmemory, a persistent memory engine for AI coding agents.
This builds on Andrej Karpathy's original LLM Wiki idea file. Everything in the original still applies. This document adds what we learned running the pattern in production: what breaks at scale, what's missing, and what separates a wiki that stays useful from one that rots.
The core insight is correct: stop re-deriving, start compiling. RAG retrieves and forgets. A wiki accumulates and compounds. The three-layer architecture (raw sources, wiki, schema) works. The operations (ingest, query, lint) cover the basics. If you haven't read the original, start there.