Roman Ponomarev

46 posts

Roman Ponomarev

Roman Ponomarev

@roma_pono

AI Transformation Engineer | Deeply in love with Analytics & Games & Web3 | Building intelligent systems that actually transform businesses

Katılım Temmuz 2025
73 Takip Edilen11 Takipçiler
Roman Ponomarev
Roman Ponomarev@roma_pono·
@bcherny The system need trade off between capacities server calculation and pleasure users and cool when company search and try to improve it and hear feedback users . It is key point for growth product
English
0
0
0
1.9K
Roman Ponomarev
Roman Ponomarev@roma_pono·
@zan2434 @eddiejiao_obj @drewocarr Great idea but industry need to solve some methods: - SEO optimization -> how to build it with good seo - no find-in-page - cost -> expensive to scale - developer tooling -> no DevTools, no DOM, no CSS, debugging becomes much harder
English
1
0
3
340
Zain Shah
Zain Shah@zan2434·
Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see. @eddiejiao_obj, @drewocarr and I built a prototype to see how this could actually work, and set out to make it real. We're calling it Flipbook. (1/5)
English
1.1K
3.4K
26.6K
5.6M
Alexey Grigorev
Alexey Grigorev@Al_Grigor·
What are the key skills of an AI engineer? AI engineer = someone who makes AI testable, observable, versioned, and continuously improving. Prompting is maybe 5%. The other 95% is making AI behave reliably after you ship it. Here are the core skills that separate demos from production: 1) Evaluation + testing Turn model behavior into something measurable: - small eval sets (golden questions) - clear metrics - regression tests after every change 2) Controlled iteration Prompts, tools, and models change all the time. So you need: - prompt versioning - experiment tracking (Git / MLflow) - A/B tests and gradual rollouts 3) Monitoring + observability If you can't see it, you can't operate it: - failure types - latency and cost - logs + traces for debugging - alerts when things drift 4) Feedback loops The best systems improve from real usage: - ratings and thumbs up/down - implicit corrections from users - human review samples - add bad cases back into the eval set 5) CI/CD for AI Every change should run evals and block deploys when metrics drop. 6) Product integration Retries, timeouts, fallbacks, UX edge cases. I recently did an online session where I explained my view of the role in detail. Recording + notes: aishippinglabs.com/blog/what-is-a…
Alexey Grigorev tweet media
English
5
12
116
4.6K
Roman Ponomarev
Roman Ponomarev@roma_pono·
Second day coding challenge without keyboard touch -> Wisper + Claude code Opus4.7 Thank you @claudeai
English
0
0
0
44
Roman Ponomarev
Roman Ponomarev@roma_pono·
Prompt caching is a great optimization - but calling it a "paradigm shift" feels like a stretch. Yes, it cuts costs. Yes, it improves performance. But the trade-offs are real: - fragile (tiny prompt changes = cache miss) - rigid (hard to adapt instructions dynamically) - awkward state management In practice, you’re optimizing billing more than intelligence. It works really well for stable workflows (coding sessions, agents with fixed context). But in real-world systems, where context is constantly evolving, caching alone doesn’t hold up. You still need proper context architecture (RAG, memory, summarization). Caching is a layer - not the foundation.
Avi Chawla@_avichawla

x.com/i/article/2044…

English
0
0
0
34
Roman Ponomarev
Roman Ponomarev@roma_pono·
How it could be open source if you need to pay? Cheaper - yes, but interest compare because tokens usage 2x They have good result if it has 3th place
Z.ai@Zai_org

Introducing GLM-5.1: The Next Level of Open Source - Top-Tier Performance: #1 in open source and #3 globally across SWE-Bench Pro, Terminal-Bench, and NL2Repo. - Built for Long-Horizon Tasks: Runs autonomously for 8 hours, refining strategies through thousands of iterations. Blog: z.ai/blog/glm-5.1 Weights: huggingface.co/zai-org/GLM-5.1 API: docs.z.ai/guides/llm/glm… Coding Plan: z.ai/subscribe Coming to chat.z.ai in the next few days.

English
0
0
0
12
Roman Ponomarev
Roman Ponomarev@roma_pono·
sharing code → sharing ideas → multiple implementations. Same recipe, different dishes. But you still need to be a good cook...
Andrej Karpathy@karpathy

Wow, this tweet went very viral! I wanted share a possibly slightly improved version of the tweet in an "idea file". The idea of the idea file is that in this era of LLM agents, there is less of a point/need of sharing the specific code/app, you just share the idea, then the other person's agent customizes & builds it for your specific needs. So here's the idea in a gist format: gist.github.com/karpathy/442a6… You can give this to your agent and it can build you your own LLM wiki and guide you on how to use it etc. It's intentionally kept a little bit abstract/vague because there are so many directions to take this in. And ofc, people can adjust the idea or contribute their own in the Discussion which is cool.

English
0
0
0
10
Roman Ponomarev
Roman Ponomarev@roma_pono·
@karpathy Feels like we’re moving from prompt engineering to knowledge architecture. Completely different game.
English
0
0
0
1.4K
Andrej Karpathy
Andrej Karpathy@karpathy·
Wow, this tweet went very viral! I wanted share a possibly slightly improved version of the tweet in an "idea file". The idea of the idea file is that in this era of LLM agents, there is less of a point/need of sharing the specific code/app, you just share the idea, then the other person's agent customizes & builds it for your specific needs. So here's the idea in a gist format: gist.github.com/karpathy/442a6… You can give this to your agent and it can build you your own LLM wiki and guide you on how to use it etc. It's intentionally kept a little bit abstract/vague because there are so many directions to take this in. And ofc, people can adjust the idea or contribute their own in the Discussion which is cool.
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
1.1K
2.8K
26.5K
6.9M
Roman Ponomarev
Roman Ponomarev@roma_pono·
@bcherny Great feature - fixing flicker in terminals is long overdue. But it does feel like terminals are being redesigned for a new generation of users, not the old guard.
English
0
0
0
1.3K
Boris Cherny
Boris Cherny@bcherny·
Today we're excited to announce NO_FLICKER mode for Claude Code in the terminal It uses an experimental new renderer that we're excited about. The renderer is early and has tradeoffs, but already we've found that most internal users prefer it over the old renderer. It also supports mouse events (yes, in a terminal). Try it: CLAUDE_CODE_NO_FLICKER=1 claude
Curt Tigges@CurtTigges

@bcherny @UltraLinx please at least fix the uncontrollable scrolling/flickering before the next 3000 features

English
666
707
10.3K
2.9M
David Ondrej
David Ondrej@DavidOndrej1·
openclaw is unusable today
English
63
2
154
30.6K
Roman Ponomarev
Roman Ponomarev@roma_pono·
@cz_binance If Satoshi bitcoins lock He will say "thanks" when bitcoin price 1m$+ Lets share BNB with him
English
2
0
4
2.2K
CZ 🔶 BNB
CZ 🔶 BNB@cz_binance·
Saw some people panicking or asking about quantum computing's impact on crypto. At a high level, all crypto has to do is to upgrade to Quantum-Resistant (Post-Quantum) Algorithms. So, no need to panic. 😂 In practice, there are some execution considerations. It's hard to organize upgrades in a decentralized world. There will likely be many debates on which algorithm(s) to use, resulting in some forks. And some dead project may not upgrade at all. Might be a good to cleanse out those projects anyway. New code may introduce other bugs or security issues in the short term. People who self custody will have to migrate their coins to new wallets. This brings to the question of Satoshi's bitcoins. If those coins move, then it means he/she is still around, which is interesting to know. If they don't move (in a certain period of time), it might be better to lock (or effectively burn) those addresses so that they don't go to the first hacker who cracks it. There is also the difficulty of identifying all his addresses, and not confuse with some old hodlers. Anyway, it's a different topic for later. Fundamentally: It's always easier to encrypt than decrypt. More computing power is always good. Crypto will stay, post quantum.
English
2.4K
2.7K
16.4K
1.9M
Roman Ponomarev
Roman Ponomarev@roma_pono·
In upcoming versions of Claude Code: - autonomous agents that work in the background - proactive agents that can initiate work on their own - a built-in coordination system for orchestrating multiple agents - an “auto” mode instead of asking for permission before actions - a built-in voice assistant, at minimum with voice recognition It is not model leak just info and cli
Chaofan Shou@Fried_rice

Claude code source code has been leaked via a map file in their npm registry! Code: …a8527898604c1bbb12468b1581d95e.r2.dev/src.zip

English
0
0
2
67
Hasan
Hasan@Ubermenscchh·
🚨BREAKING: You can now run Claude Code for FREE. No API costs. No rate limits. 100% local on your machine. Here's how to run Claude Code locally (100% free & fully private):
Hasan tweet media
English
78
363
2.9K
730.1K
Boris Cherny
Boris Cherny@bcherny·
Hope this was useful! I wanted to keep going but had to stop myself. Will post more soon. What are your favorite underrated Claude Code features?
English
133
27
1.1K
167.8K
Boris Cherny
Boris Cherny@bcherny·
I wanted to share a bunch of my favorite hidden and under-utilized features in Claude Code. I'll focus on the ones I use the most. Here goes.
English
554
2.5K
23.2K
3.9M
Cointelegraph
Cointelegraph@Cointelegraph·
⚡️ UPDATE: Michael Saylor’s Strategy did not purchase any Bitcoin last week. The company still holds 762,099 $BTC.
Cointelegraph tweet mediaCointelegraph tweet media
English
168
140
876
61K