James

299 posts

James banner
James

James

@Code_With_James

Sharing cool AI & GitHub finds for devs who build. DMs open—let’s see what you’re building.

Somewhere in your GitHub stars Se unió Şubat 2025
252 Siguiendo44 Seguidores
Tweet fijado
James
James@Code_With_James·
Every developer was once a beginner who didn’t quit.
English
4
0
12
842
James retuiteado
Liam
Liam@liampluglab·
@karpathy said "Obsidian is the IDE, the LLM is the programmer, the wiki is the codebase." @garrytan built GBrain, 17,000 pages of personal knowledge. I loved this idea. But I wanted it without the setup. So I built Thinkly: paste any AI chat, and the wiki builds itself.
Garry Tan@garrytan

If you want your OpenClaw or Hermes Agent to be able to have perfect total recall of all 10,000+ markdown files, GBrain is here to help. It's exactly my OpenClaw/Hermes Agent setup. MIT-licensed open source. Hope it helps you build your mini-AGI. github.com/garrytan/gbrain

English
2
5
9
740
James retuiteado
Thinkly
Thinkly@trythinkly·
New flow: paste links, get a published page. 30 seconds ago, this was 5 article links. Now it's a published Research Summary. Paste → pick a template → publish.
English
1
2
4
44
James
James@Code_With_James·
No more 20 tabs. No more copy-pasting. No more "I'll organize this later." Everything in one place, published in 5 minutes. This is Thinkly. It's free to try. thinkly.pluglab.ai
English
0
0
4
5
James
James@Code_With_James·
Notion for organizing. ChatGPT for writing. I was switching between both every single day. Then I found one app that does it all. Dump your articles, ChatGPT chats, Claude threads, YouTube links, notes. Pick a template. Hit publish.
English
2
1
5
25
James
James@Code_With_James·
@noah_thinkly @karpathy I have 23 tabs open right now.😂I feel personally attacked. Trying this immediately
English
1
0
2
30
Noah @ Thinkly
Noah @ Thinkly@noah_thinkly·
"Less into manipulating code, more into manipulating knowledge." — @karpathy We've been working on this exact problem for months. It started with a frustration we couldn't shake. Every day we had 15+ tabs open. ChatGPT conversations, Claude threads, articles, YouTube videos, random notes. All scattered. All useful. All forgotten within 48 hours. AI made us faster at finding information. But nobody solved what happens after. The notes pile up. The bookmarks rot. The insights from last week's Claude session? Gone. We tried Notion. We tried Obsidian. We tried bookmarking everything. Nothing stuck because the organizing part always fell on us. And we never got around to it. So we started building. Not another AI chatbot. Not another note-taking app. We wanted one thing: dump your sources, get something publishable back. After months of prototyping, breaking things, and rebuilding, we made Thinkly. Here's what it actually does: Thinkly turns your scattered sources into publish-ready documents. You dump everything in, pick a template, and hit publish. That's it. No folders. No tagging. No "I'll organize this later." You dump it, Thinkly compiles it. This is how it works: Step 1: Dump everything you've got. Articles, ChatGPT conversations, Claude threads, YouTube videos, notes. Paste them all in. Don't have sources yet? Just tell Thinkly the topic and AutoClip gathers them for you. Step 2: Thinkly organizes your clips. Tags appear. Structure forms. You see connections you didn't notice when they were in separate tabs. Step 3: Pick a template. Knowledge Base, Research Brief, Blog Post. Hit "Turn into..." and Thinkly compiles everything into a structured, readable page. Step 4: Hit Publish. A clean, shareable page with everything organized. Send it to your team, post it on Twitter, or keep it for yourself. All of this takes about 5 minutes. Who is it for? If you're the kind of person who has 20 ChatGPT tabs open right now, Thinkly is for you. Researchers, writers, founders, PKM nerds, anyone who consumes more information than they can organize. Karpathy described a system where you dump sources and LLMs compile them into structured knowledge. He uses Obsidian, LLM agents, and custom scripts. Thinkly does the same thing without the scripts. Plus publish. We care deeply about this problem and we've just opened the doors. It's free to try. Here's a demo showing exactly how it works.
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
3
3
11
464
James
James@Code_With_James·
Brain, Hands, Session. This architecture is what makes $0.08/hr agents possible. Found a great breakdown that organizes this + 10 other sources into one page. Built with Thinkly. Link in reply.
Anthropic@AnthropicAI

New on the Engineering Blog: Building Managed Agents—our hosted service for long-running agents—meant solving an old problem in computing: how to design a system for “programs as yet unthought of.” Read more: anthropic.com/engineering/ma…

English
1
0
6
15
James
James@Code_With_James·
Building something with AI? Show me. Drop your link below. Let's find each other early before everyone else catches on
English
1
0
5
18
James
James@Code_With_James·
Anthropic built Undercover Mode to prevent internal secrets from leaking. Then a single .map file exposed their entire source code. 512,000 lines. Hidden features. Malware campaigns within days. Full breakdown in reply.
James tweet media
English
1
1
5
28
James retuiteado
OpenAI Developers
OpenAI Developers@OpenAIDevs·
We’re rolling out a few updates to Codex today: 1. Codex is rolling out to ChatGPT Plus users today. It includes generous usage limits for a limited time, but during periods of high demand, we might set rate limits for Plus users so that Codex remains widely available.
English
84
273
2.3K
1.3M
James
James@Code_With_James·
Focus beats frenzy. - Launch small - Tune out the noise - Learn as you go - Show up consistently - Question your process Slow growth wins in the long run.
English
0
1
7
120
James retuiteado
James
James@Code_With_James·
Still no traction? That’s not failure. That’s setup. The quiet commits. The edge-case fixes. The 1-line deploys. That’s real progress. Keep shipping. Compounding doesn’t make noise.
English
1
1
4
211
James retuiteado
James
James@Code_With_James·
Bugs don’t wait. Launch dates don’t wait. Users don’t wait. Ignore the clock. Ship the code.
English
0
1
4
45
James retuiteado
James
James@Code_With_James·
Think like an engineer. Move like a builder. Decide like an owner.
English
0
1
8
126
James retuiteado
James
James@Code_With_James·
Clients don’t wait. Models don’t slow down. Competition won’t pause. Forget the clock. Ship anyway.
English
1
1
7
143
James retuiteado
James
James@Code_With_James·
Live with intention. - Build quietly - Reflect often - Test quickly - Move daily - Think deeply Steady momentum outlasts noisy distraction.
English
3
1
7
440