Tony ⚡️

4.2K posts

Tony ⚡️ banner
Tony ⚡️

Tony ⚡️

@TonyCrusoe

Pursuing the goal of educating as many people on Bitcoin as possible. #Bitcoin translator. https://t.co/tbRlugGlLt

🌌 Katılım Ağustos 2010
631 Takip Edilen938 Takipçiler
Sabitlenmiş Tweet
Tony ⚡️
Tony ⚡️@TonyCrusoe·
Bitcoin rabbit hole is deep, but it is the only path to your financial sovereignty
Tony ⚡️ tweet media
English
1
14
42
0
Tony ⚡️
Tony ⚡️@TonyCrusoe·
I’m learning coding with AI and sharing my experience. Stay tuned for more raw notes, experiments, mistakes, and useful findings from actually building with agents.
English
0
0
1
7
Tony ⚡️
Tony ⚡️@TonyCrusoe·
My suggestion: Ask your agent to evaluate both skill creators against your actual repo or knowledge base. Then have it craft a dedicated skill-creator skill for your project. That one skill makes every future skill better.
English
1
0
0
7
Tony ⚡️
Tony ⚡️@TonyCrusoe·
If you’re using agent skills, the first skill you should probably create is a skill creator. Sounds meta, but it’s practical. A good skill creator helps your agent turn repeated project workflows into reusable protocols instead of one-off prompts. But there's a trick 🧵👇
Tony ⚡️ tweet media
English
1
0
0
15
Tony ⚡️
Tony ⚡️@TonyCrusoe·
Never rush shiny new AI tools into your stack! Proper env vars handling isn't optional. Treat them seriously. Quick 2-min read that’ll save you headaches later: dev.to/21ideas/secret…
Cyber Security News@The_Cyber_News

🛡️ Claude Code, Gemini CLI, & GitHub Copilot Vulnerable to Prompt Injection via GitHub Source: cybersecuritynews.com/prompt-injecti… A critical cross-vendor vulnerability class dubbed "Comment and Control" is a new category of prompt injection attacks that weaponizes GitHub pull request titles, issue bodies, and issue comments to hijack AI coding agents and steal API keys and access tokens directly from CI/CD environments. The attack name is a deliberate play on the classic Command and Control (C2) framework used in malware campaigns. Three widely deployed AI agents, Anthropic's Claude Code Security Review, Google's Gemini CLI Action, and GitHub Copilot Agent (SWE Agent), were confirmed vulnerable. #cybersecuritynews

English
0
0
0
19
Tony ⚡️
Tony ⚡️@TonyCrusoe·
If you’re building with AI tools and have been winging secrets like I was… this one’s for you. What’s one secret-management hack or vibe-coding practice that’s saved you headache? Drop it in the comments (or on the dev.to post). dev.to/21ideas/secret…
English
0
0
0
5
Tony ⚡️
Tony ⚡️@TonyCrusoe·
Also added: • The exact 5-minute new-project checklist I now follow every time • When and how to rotate keys (and the encryption-key warning most people miss) • The OAuth thing I finally understood All in plain English with diagrams.
English
1
0
0
5
Tony ⚡️
Tony ⚡️@TonyCrusoe·
Yesterday Vercel got hit. This morning I realized I didn’t have a real system for my secrets — just “whatever the AI told me last year.” So I spent a few hours turning the chaos into a dead-simple 4-layer setup that actually makes sense. dev.to/21ideas/secret…
English
1
0
0
13
nvk 🌞
nvk 🌞@nvk·
Writing bitcoinquantum.space with llm-wiki.net In April 2026 I wanted to assess whether the quantum threat to Bitcoin was real. The honest answer lived across fifteen papers, a dozen Delving Bitcoin threads, twenty Bitcoin Optech newsletters, a running testnet, some Liquid transactions, and whatever Avihu Levy had pushed to GitHub that morning. The work was real and scattered. No article summarized it honestly. Headlines were downstream of press releases. The primary sources were where the actual answer lived. This is one of the things llm-wiki was built for. I used it. Three weeks later I published [bitcoinquantum.space](bitcoinquantum.space) — three articles, ~15,000 words, 95+ sources cross-referenced, every claim verified. This is a writeup of how. ## The shape of the problem Serious research has three failure modes: 1. **You can't find everything.** Sources scatter across formats and venues. You don't know what you're missing. 2. **You can't remember everything.** By paper #60 you've forgotten paper #4. You re-read. You contradict yourself. 3. **You can't update.** A new paper drops on publication day. Your conclusion is stale and your notes are already collapsed into prose you can't untangle. Traditional knowledge management fixes (1) and partly (2). It fails at (3) because the maintenance burden compounds. @karpathy's framing, *"who does the maintenance?"*, is load-bearing because humans don't, not reliably, not for unsexy cross-reference updates nobody sees. llm-wiki.net fixes (3) by making the entire artifact mechanically regeneratable from immutable raw sources. The only thing you maintain is the source pile. ## The pipeline, applied **Raw sources, not notes.** Every paper, blog post, mailing list thread, and testnet report got dropped into `raw/` verbatim with a frontmatter header. No interpretation, no paraphrasing. If I don't have the primary source, I don't have it. `raw/` grew to 95+ entries. **Compile, don't write.** `/wiki:compile` reads the raw pile and synthesizes cross-referenced wiki articles — one per concept, person, and proposal. "SHRINCS." "Taproot script-path post-quantum proof." "The BIP 86 problem." "Quantum Safe Bitcoin." Each article carries a confidence level, citations, and bidirectional cross-references. The wiki is Claude's work; the sources are mine. **Query to find gaps.** Once compiled, I stop reading papers and start asking questions. *"What's the relationship between Ruffing's Taproot proof and BIP 86?"* The wiki answers with citations — and in the process surfaces the gap: 70-90% of BIP 86 outputs can't use the escape hatch. That's a thread I wouldn't have pulled linearly. Query mode is where llm-wiki stops being a filing cabinet and starts being a research partner. **Output, last.** The articles on bitcoin
nvk 🌞 tweet media
Andrej Karpathy@karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

English
4
9
61
8.6K
Svetski
Svetski@SvetskiWrites·
If you’re connected to me on telegram via the @aleksSvetski handle, clear message history and block. I got hit last week by the same thing @jimmysong & others got scammed with. Everything else is secure. Just telegram is gone & not coming back. The scammers are getting more sophisticated. Beware. Use 2FA everywhere
English
12
5
25
1.2K
Proton Wallet
Proton Wallet@ProtonWallet·
What's the last thing you bought with Bitcoin?
English
267
35
276
55.5K