Joined November 2015
5,976 Photos and videos
Pinned Tweet
21 Dec 2025
bro, you’re fine. you just need an impossible sequence of events to play out in perfect order against all odds and you’ll be fine
210
3,257
26,637
1,685,784
chimp retweeted
Over 1 year ago, Arcium acquired its largest Web2 competitor. Inpher: - Raised $25M from JP Morgan and Amazon - Had partnerships with the DoD, EU Commission, and more. - Spent 8 years developing the most performant confidenital AI protocol on the market Very soon, Arcium will unveil a new protocol for confidential AI, built on these foundations.
4 Nov 2024
☂️ The umbrella gets bigger... much bigger. ☂️ Arcium acquires Inpher’s core technology and team—one of the biggest Web2 Confidential Computing companies! A major step toward building a global supercomputer for a hyper-encrypted internet. 🚀
114
74
378
49,260
Jun 10
ARX MODE ☂️
Assets added to the roadmap today: Arcium (ARX) and Re (RE) coinbase.com/blog/increasing…
4
2
26
2,677
chimp retweeted
official video: ARX MODE ☂️ (prod. @zacxbt)
56
16
205
22,602
chimp retweeted
soon we will uncover one of the biggest breakthroughs in Encrypted AI arcium has already become the most used and fastest growing encrypted compute network in the world. we are accelerating privacy across every corner of crypto, and now we are taking it further than ever before.
30
8
155
6,989
chimp retweeted
Introducing the Cerberus Whitepaper
58
60
306
36,356
chimp retweeted
Jun 2
“Solana has really been on the forefront of exactly what I described. Productization, commercialization and onboarding new users. And that's what matters for crypto as much as it matters for privacy” - @yrschrade, @Arcium
148
114
629
50,537
chimp retweeted
Arcium is home to the largest active ecosystem building with confidential compute in crypto. ↓
117
90
414
86,982
chimp retweeted
Sent another 64 ETH to the Animal Welfare Fund. I encourage others to think and act more in support of our non-human cousins too! The extreme suffering we're imposing on them in the billions is not something we talk about often, but it continues to be one of the larger blights on humanity. And I'm getting optimistic that this century we can finally end it. Farming practices are improving, synthetic alternatives are improving. Also, in my recent experience, good old low-tech vegetarian and vegan food has improved massively worldwide over the last ten years; I encourage anyone who has tried it long before and given up to take second look; there are far more healthier and tastier options today than the "pasta and salad" you would often get ten years ago.
1,368
808
4,739
667,398
chimp retweeted
agentic era doesn’t mean agents are the whole system 🗣️ Saying “we built agents” & pushing it a car is 🦼psychosis mostly. intelligence is a system property, not a component label. System = [ Model(s) Agent(s) Tool(s) Orchestration(s) ] Harness Foundation Layer(s) focus on 1 thing again = golden ticket to being obsolete in 6 months. by no means have we fully explored agents… but exploring agents requires exploring systems too. while wondering how claude keeps on dropping updates, all hell will break loose the day we actually start checking google ai dev resources
9
4
24
2,444
Apr 12
Me in the Strait of Hormuz fighting on China’s side because I accepted Temu’s terms and conditions without reading them
259
7,821
96,297
2,604,626
chimp retweeted
Hey, @karpathy What we found is that the knowledge base is stage one. The real unlock is what happens after compilation: when the knowledge decomposes into reasoning primitives. Our cognitive AI research shows how and why, with working use-cases - Beyond Extraction : Automation & Robotics : notion.so/Towards-Singularit… Source ( How ) : 17th march : x.com/lamaxbt/status/2033644… When the system learns to route across multiple knowledge bases, multiple domains, multiple expert processes simultaneously, composing answers no single source could produce. When usage data feeds back not just to enhance the wiki but to strengthen the reasoning pathways themselves, so the system develops confidence about which paths actually work. When new processes emerge automatically from collective usage patterns nobody explicitly wrote. When it works on any LLM, any platform, no IDE required, just a chat message - for us . We call it Cognis. It’s the cognitive layer underneath Probe. Article : claude.ai/public/artifacts/1… We started with Som base in 2024 Oct, Now Grok 4.2 from @xai has proven how hallucination decreases even reasoning models. Reasoning models went public in Feb 2025. There’s absolutely room for an incredible product here, for us, it’s beyond product we probe about future of experience.. @AgiObjective has been at it.
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.
10
11
29
3,541
Mar 27
When you realize global liquidity cycles need a massive reset every 6 years and the system beneath it all always finds a reason for it. Suddenly everything starts making a little too much sense like you’re watching the same cycle play out again 2002 - dot-com crash 2008 - financial crisis 2014 - oil collapse 2020 - covid pandemic 2026 - WW3 global energy crisis
44
130
886
70,116
chimp retweeted
Mar 21
A live example of balanced mode in action. Exactly what the trenches have asked for. 👌
140
32
592
70,585
Mar 20
Officially stepping in as Head of Memes & Content Strategy at @bonkfun I’ve been in the crypto trenches for over a decade. Worked behind the scenes with Tier-1 CEXs and top founders across the space and was one of the early accounts posting memes on CT back when this industry was still shaping its culture. I’ve seen every cycle, every meta, every narrative. One thing never changes: attention and culture move markets. My goal here is simple help create content the trenches actually vibe with. Memes that feel native to the timeline and narratives that hit. The mission is to push bonkfun toward becoming a center of CT culture. Looking forward to contributing to the culture that keeps this space alive.
130
24
327
30,474
Mar 17
Strait of hormuz right now
574
13,345
82,382
4,315,343
Mar 9
Sold Bitcoin at the bottom Rotated into Dubai real estate at the top Panic bought Oil at 117 as a hedge
209
660
15,397
841,894
Mar 7
Emirates updating flight announcements every 30 minutes
Emirates resumes operations Emirates will resume operations. Passengers who have confirmed bookings for this afternoon’s flights may proceed to the airport. This includes customers transiting in Dubai, if their connecting flight is also operating. Customers can check the flight schedule for upcoming flights, as well as book seats to travel via emirat.es/nowoperating. Emirates continues to monitor the situation, and we will develop our operational schedule accordingly. We would like to thank our customers for their understanding and patience. The safety of our passengers and crew is our highest priority and will not be compromised.
62
1,829
15,245
889,822
Feb 28
crypto scammers and course sellers in dubai right now
341
6,236
71,493
1,513,445
Feb 26
Jane street quants watching me go 50x long on BTC exactly at 9:59 am
67
355
6,984
309,806
Feb 22
Next week will be absolute cinema
112
1,324
14,441
586,741