Skip to content

Instantly share code, notes, and snippets.

61969
@roktas
roktas / llm-wiki.md
Created June 12, 2026 17:00 — forked from karpathy/llm-wiki.md
llm-wiki

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.

20763
@Sys0nDeck
Sys0nDeck / ShowPlayerInfo.cs
Created June 12, 2026 17:00
ДЗ: Работа с классами
namespace CSDemo
{
internal class Program
{
static void Main(string[] args)
{
Player gamePlayer = new Player("J0nY", "20-04-2021");
gamePlayer.ShowInfo();
}
UxWiG5YBAAAAAADxxgAAAAADCgAAAAAAAAAAAJBVpkqSNegqzEToKgASAwoAAAAAAAAAAACoKrpfvh/SNfRu/h8AHgMKAAAAAAAAAAAAqCq6X74fqgr0bv4fDigDCgAAAAAAAAAAAL4fqCqUFaoK3JkB6RokKAMKAAAAAAAAAAAAvh+oKpQV6CrcmQHpGgAqAAoAAAAAAAAAAAAjEAAAAAAAAAAAAJBVpkqSNegqzEToKgASAEQjEAAAAAAAAAAAAKgqul++H9I19G7+HwAeAEQjEAAAAAAAAAAAAKgqul++H6oK9G7+Hw4oAEQjEAAAAAAAAAAAAL4fqCqUFaoK3JkB6RokKABEIxAAAAAAAAAAAAC+H6gqlBXoKtyZAekaACoARAAAAAAAAAAAAAAABACVBZFFAD//AAC//wMXAAAAAAAAAAAAlBWmSqoK6gr0vwHVBS0vAxcAAAAAAAAAAAC+H6ZKqgr/D8511QUlLwMXAAAAAAAAAAAAvh+6XwD/D+gqACU3IwEAAAAAAAAAAAC8P6gqvD/+HwD+HxoSACIDGwAAAAAAAAAAAI51pkqOdec6qCrnOgAABBwAkjUAAAAAAAAABx2qCqoKAAAAAAA//6oKpkq8P+oK5kr+H1apAQEe6goAAAAAAAAAAACmSqRqlQXmStI1AAAAAx7VBeZKAAAAAAAAAKoKul+mStUF+l/+H1aZAQMg1QUAAAAAAAAAAAC4f7h/lQX4f9I1PqUBBx3qCqoKAAAA//+//6oKpkq8PwDmSv4fVqkBAyKqCgAAAAD/////AKZKpGrVBeZK0jU+uwEDIpUF5koAAAD/////qgq6X6ZK1QX6X/0fVpkBAySUBQAAAAD/////ALh/uH/VBfh/0jU+pQEDAQAAAAAAAAAAAJI1ul++H+kaqgL/DxocAwHUFakaAAAAAAAAAKoKkFWUFeoK1QXqCiocBCedB8ojAAAAAAAAAAcn6gq6XwA//wAAAACSNZBVkjXoGucq6Bo7iQEHJ9UFqCoA
@KenjiChao
KenjiChao / ai-daily-2026-06-12.md
Created June 12, 2026 16:59
AI 與科技日報 2026/06/12 | 矽谷輕鬆談

🗞️ AI 與科技日報 2026/06/12 | 矽谷輕鬆談

涵蓋過去 24 至 48 小時(6/10 至 6/12)最重要的 AI 與科技動態。本期主旋律很清楚:Anthropic 的 Claude Fable 5 橫掃各家新聞與社群討論,但隨之而來的是基準爭議、隱形護欄道歉,以及社群對「agent 時代」的集體焦慮。


1. Anthropic 發表 Claude Fable 5,把先前說「太危險」的 Mythos 級模型開放給大眾

Anthropic 推出 Claude Fable 5,官方稱它是「首款一般可用的 Mythos 級模型」。這款模型把先前被定位為太強、不宜公開的能力首次向所有人開放,並在多數基準刷新紀錄。在軟體工程、企業知識工作與資安領域全面領先,定價反而比前代更便宜。

@dwnldfullmovie-create
dwnldfullmovie-create / ako-spr-vne-dop-a-vitam-ny-po-as-roka.md
Created June 12, 2026 16:59
SEO Article: Ako správne dopĺňať vitamíny počas roka
@ferrata
ferrata / openapi.yaml
Created June 12, 2026 16:59
OpenAPI spec for PR #2784
openapi: 3.1.0
info:
title: Makeswift API
description: Documentation for the Makeswift public REST API.
version: '1.0'
servers:
- url: https://api.makeswift.com
description: Production server
paths:
/v1/auth/user-info:
@yeshuman
yeshuman / talentco-voice-notes-linear-report.md
Created June 12, 2026 16:58
TalentCo MVP — Voice-note Linear backlog (EV-179–207) + coherence review, Jun 2026

TalentCo MVP — Voice-note Linear backlog (Jun 2026)

Project: TalentCo MVP Development
Team: Earth Ventures
Repo: yeshuman-agent-stack / yeshuman monorepo
Process: Candidate Definition-of-Ready — .cursor/skills/talentco-linear-issues/


Summary counts

@uplime
uplime / number-words.py
Created June 12, 2026 16:58
Convert digital numbers to English words.
import collections
import sys
DIGITS = {
"1": ["one", "ten", "eleven"],
"2": ["two", "twenty", "twelve"],
"3": ["three", "thirty", "thirteen"],
"4": ["four", "forty", "fourteen"],
"5": ["five", "fifty", "fifteen"],
"6": ["six", "sixty", "sixteen"],