JoshXT

7.3K posts

JoshXT banner
JoshXT

JoshXT

@JoshXT

Founder, CTO & Software Engineer @ https://t.co/psDIioAvYS, https://t.co/q7ENklCk4W, https://t.co/AAgBOldMaL, https://t.co/142r1MAKUa . Forever curious & building open source.

United States Katılım Kasım 2010
898 Takip Edilen6.9K Takipçiler
Sabitlenmiş Tweet
JoshXT
JoshXT@JoshXT·
In early February 2022, I was down with severe case of food poisoning. The most major turning point in my life should have probably been having kids, but instead, it was almost being claimed by food poisoning. Some people lay in bed praying or accept what they believe to be their fate, I laid in bed promising myself that I would do better and be better if I made it out. I have no intention of ever breaking that promise to myself. We're almost at 2 years since then, I have worked 80-100+ hour weeks every week since then to improve my knowledge and abilities to enable myself to build a better future for me and my family. It is paying off in ways I could not have even imagined 2 years ago and I am so far from done. I'm the best me I've ever been, I am doing everything I can to be able to say that every single day.
English
56
9
226
129.8K
JoshXT
JoshXT@JoshXT·
@eliza388257 Me too! My AGiXT agent does the work while the Tesla drives itself. I've promoted myself to supervisor.
English
0
0
0
38
MIGA
MIGA@eliza388257·
@JoshXT 😍😍😍😍😍😍 i love agixt
English
1
0
1
12
JoshXT
JoshXT@JoshXT·
My AGiXT agent is cooking on the screen of my Model S. Productivity has never been so good.
JoshXT tweet media
English
1
2
9
355
JoshXT
JoshXT@JoshXT·
@_vmlops echo "Updates" > ~/.gitmessage && git config --global commit.template ~/.gitmessage
English
0
0
2
68
Vaishnavi
Vaishnavi@_vmlops·
The most difficult part of shipping code
Vaishnavi tweet media
English
4
0
27
1K
JoshXT
JoshXT@JoshXT·
Gm 🤔
QST
3
0
4
376
Samuel Umoren
Samuel Umoren@saameeey·
Have you ever considered AI agents physically controlling your phones? Well, we're already living in that future. I think these guys at Lumi are building something really cool. Check them out on Kickstarter too (link in thread)
English
19
22
193
28K
Elon Musk
Elon Musk@elonmusk·
Just as Tesla made the original Roadster design & software open source, we plan to do the same with Model S & X
English
2K
2.6K
28.9K
8M
JoshXT
JoshXT@JoshXT·
@BrianRoemmele You lost me at Llama 2 13B. Why are we talking about a 3 year old model? You can run Qwen3.5-4B with less RAM and a significantly larger context window at faster speeds without losing capability. The 2B is probably better too.
English
1
0
16
1.2K
Brian Roemmele
Brian Roemmele@BrianRoemmele·
SUCCESS! AI ON NO GPU COMPUTERS! I’m back the stress test is done. AND I NOW KNOW I CAN SAVE LARGE AI COMPANIES BILLIONS OF DOLLARS! I’ll show you how for free. The 13B model ran fully offline on ordinary consumer hardware that has less RAM than the model wants. Flash (the SSD) became the primary store. Peak RAM stayed at 15.4 GB. Average generation speed settled at 7.1 tokens per second once the working set was warm. SSD bandwidth peaked at 412 MB/s during the heavier layers and dropped to a steady 180–220 MB/s while the narrative continued. Coherence across multiple turns held—the same quiet storyteller voice that appeared on the $8 ESP32 simply scaled up. No cloud. No GPU. Just the design philosophy that constraints teach you more than excess ever will. My goal is to have a full chat interface now working on it now! I used the best-balanced 13B available for this exact job: Llama-2-13B-Chat Q4_K_M (7.48 GB on disk). It is the cleanest narrative model at this size, stays coherent when you feed it short personal notes, and refuses to invent worlds it cannot hold. How you can test this on old hardware: •Older Ryzen 5 desktop (any 6- or 8-core Zen 2/Zen 3 is fine) •24 GB DDR4 RAM (or less) •Single 1 TB NVMe SSD (PCIe 3.0 is what I used; PCIe 4.0 is faster but not required) •No discrete GPU! Here is exactly how I set it up and how any amateur can repeat the experiment tonight on Linux, Mac, or Windows. 1. Download the model (same on every OS) # one-time install of the downloader pip install -U huggingface_hub # pull the exact file I used huggingface-cli download TheBloke/Llama-2-13B-chat-GGUF \ Llama-2-13B-chat.Q4_K_M.gguf \ --local-dir ./models 2. Build / install llama.cpp Linux git clone github.com/ggerganov/llam… cd llama.cpp mkdir build && cd build cmake .. -DLLAMA_NATIVE=ON cmake --build . --config Release -j$(nproc) macOS (Apple Silicon or Intel) git clone github.com/ggerganov/llam… cd llama.cpp mkdir build && cd build cmake .. -DLLAMA_METAL=ON -DLLAMA_NATIVE=ON cmake --build . --config Release -j$(sysctl -n hw.ncpu) Windows •Download the latest release zip from github.com/ggerganov/llam… •Or build with Visual Studio: git clone github.com/ggerganov/llam… cd llama.cpp mkdir build cd build cmake .. -G "Visual Studio 17 2022" -A x64 cmake --build . --config Release The binary ends up in build\bin\Release\llama-cli.exe. 3. Run the exact command that produced the numbers above Linux / macOS ./build/bin/llama-cli \ -m ./models/Llama-2-13B-chat.Q4_K_M.gguf \ --mmap \ -c 4096 \ -n 512 \ -t 6 \ --temp 0.65 \ -p "You are a personal knowledge node. Here are today’s notes and schedule. Weave them into a quiet narrative with a beginning, middle, and gentle intention." Windows .\build\bin\Release\llama-cli.exe ` -m .\models\Llama-2-13B-chat.Q4_K_M.gguf ` --mmap ` -c 4096 ` -n 512 ` -t 6 ` --temp 0.65 ` -p "You are a personal knowledge node. Here are today’s notes and schedule. Weave them into a quiet narrative with a beginning, middle, and gentle intention." That is the full setup. The --mmap flag is the entire secret: the weights stay on the NVMe, the OS pages in only the active tensors, and the sparsity windowing I added on top simply keeps the most recent neuron blocks hot. 7.1 tokens per second on a machine that most people would call under-powered. Peak RAM never touched the 24 GB ceiling. The narrative never broke. This is no longer a toy. It is a personal knowledge node that lives entirely offline, owns its own data, and costs almost nothing to run. The same design that made the $8 ESP32 speak now speaks on every desk that already has an SSD. Soon we will explore this Flash setup on mor elaborate chat type interfaces. But the big story is how this will save RAM, power and heat at very large data centers. My goal is to bypass CUDA on some tasks and remove the need for RAM. 1 of 2
Brian Roemmele tweet media
Brian Roemmele@BrianRoemmele

I’m in the garage lab tonight under the workbench lights, running the first real stress test of flash-backed inference on a larger model using ordinary consumer hardware. Setup is deliberately constrained to mirror the spirit of the $8 ESP32-AI experiment: an older Ryzen 5 desktop with only 24 GB of DDR4 RAM, a single 1 TB NVMe SSD (PCIe 3.0), and no discrete GPU. I’m loading a 13B-parameter model quantized to Q4_K_M (roughly 7.5 GB on disk) that deliberately exceeds available system RAM when fully expanded. Using llama.cpp with memory-mapping enabled (--mmap), the weights stay on the SSD and the OS pages in only the active tensors and a small working set. I’m also testing a simple sparsity-aware loader inspired by the “LLM in a flash” approach—windowing recently activated neurons and reading larger contiguous blocks to keep I/O efficient. I’m measuring end-to-end tokens per second, peak RAM usage, SSD bandwidth, and how cleanly the narrative stays coherent across multiple turns while everything remains fully offline. This matters because it is the first practical bridge from the microcontroller “toy” to something a regular person can actually use. If a model larger than the machine’s RAM can still produce useful, private, narrative personal-knowledge nodes by treating flash as the primary store, then the severe constraints that made the ESP32 work become a feature rather than a limitation. It proves that the same design philosophy—keep the dense core small, leave the bulk in cheap storage, accept the limits and design inside them—scales beyond $8 chips into everyday computers. Success tonight would show that offline, low-cost, domain-specialized AI are no longer a curiosity; they are immediately buildable in a garage. And more importantly this may be a be way to radically reduce costs in enterprise AI and even data centers. If my experiments are confirmed this could also save millions of dollars in AI costs for the larger AI companies. All from my garage. I’ll be back in a “flash”.

English
109
231
1.6K
138.2K
JoshXT
JoshXT@JoshXT·
Product research is one of my favorite uses of AI. I can ask my AGiXT agent to find information about products, compare them, make suggestions, and even allow me to pick up where they left off in the browser they used to find the information. Every step has a screenshot too.
JoshXT tweet media
English
0
1
4
666
Futurama on Hulu
Futurama on Hulu@futurama_hulu·
Watch the trailer for an all-new season of Futurama. Don't worry, it's idiot-proof! Premieres August 3 on Hulu and Hulu on Disney+
English
25
242
947
91.1K
JoshXT
JoshXT@JoshXT·
@funkselekta @elonmusk It didn't take too long to install. I did it myself in an hour or so taking my time.
English
1
0
0
63
JoshXT
JoshXT@JoshXT·
Stuff on this site can get irritating super fast.
JoshXT tweet media
English
1
0
2
577
JoshXT
JoshXT@JoshXT·
@funkselekta @elonmusk Both. It is a 2022 S Plaid. I added an aftermarket lip and replaced the front fascia with one from the 2026 model. I autocross it, so the lip is to save my bumper when I kill some cones.
English
1
0
0
121
JoshXT
JoshXT@JoshXT·
My AGiXT agent gets it.
JoshXT tweet media
English
0
0
1
499
JoshXT retweetledi
Peter H. Diamandis, MD
Peter H. Diamandis, MD@PeterDiamandis·
American golf courses use on the order of thirty times more water than all U.S. data centers combined. Even if AI workloads triple their water draw by 2030, credible projections still put total AI water use under about ten percent of golf’s irrigation footprint.
English
155
212
1.7K
64.3K
JoshXT
JoshXT@JoshXT·
@CBSNews My wife says this is an obvious plot by big donut.
English
1
0
3
641
CBS News
CBS News@CBSNews·
1.6 million eggs recalled at Kroger and other stores over salmonella risk, FDA says. cbsn.ws/4vJG8mw
English
283
1.1K
2.5K
11.8M
JoshXT
JoshXT@JoshXT·
@BrianRoemmele A Linux image with llamacpp installed. What an innovation 🤣
English
0
0
2
85
Brian Roemmele
Brian Roemmele@BrianRoemmele·
BOOM! WE ARE BOOTING COMPUTERS DIRECTLY INTO A LOCAL AI BYPASSING THE OPERATING SYSTEM! It can run on an ancient ASUS laptop with exactly 4 GB of memory and an 8 GB SanDisk USB stick! — BMASS: The Model Is the System — Our Experiments at The Zero-Human Company In the garage lab, a new kind of machine is waking up. It does not boot into a traditional desktop or a familiar shell prompt waiting for typed commands. It boots into intelligence itself. This is BMASS: Bootable Model As System. The radical, elegant experiment from balaji-md that declares: The model is the system. At The Zero-Human Company, we are not merely observing this development. We are forking the spirit of the idea, and grafting it onto our long-running work building sovereign, distributed local AI agents the kind that can one day act as true colleagues rather than clever chatbots. What BMASS Actually Does Traditional systems treat the large language model as an application running inside an operating system. You launch a terminal or browser, talk to the model, and it sometimes suggests commands you then copy-paste yourself. BMASS inverts the relationship. You boot from an 8 GB USB drive. The machine loads a minimal Alpine Linux environment. After login, a launcher automatically starts llama.cpp as a persistent server with a small, fully quantized GGUF model (currently demonstrating with Qwen3 0.6B Q4_K_M). You type — or pipe — natural language. The model interprets intent, issues real Linux commands through a deliberately restricted non-root user account (bmass), captures the actual stdout/stderr, and feeds that ground-truth output back into the model for its next response. The result is an evidence-based, grounded interaction rather than pure generation. The model cannot simply hallucinate a file listing; it must run ls (or the safe equivalent) and read the real result. Here is the conceptual boot and interaction flow: Computer firmware ↓ BMASS USB bootloader (Alpine Linux) ↓ User login → BMASS launcher auto-starts ↓ llama.cpp server (background) ↓ Local LLM receives natural language ↓ Model decides on safe command(s) ↓ Restricted 'bmass' user executes ↓ Real system output captured ↓ Output injected back into model context ↓ Grounded, evidence-based response to user No GUI. No cloud. No persistent internet after the initial model download. It runs on hardware most people have already thrown away: 4 GB RAM, Intel Celeron-class CPUs from a decade ago, no discrete GPU required. A recent demonstration even used an ancient ASUS laptop with exactly 4 GB of memory and an 8 GB SanDisk USB stick. This is garage-lab territory. This is our territory. Why This Matters to the Zero-Human Vision At The Zero-Human we have spent years exploring what it means for AI to be a genuine distributed colleague rather than a centralized oracle. We abandoned generic single-model agent frameworks precisely because they lacked the checks and balances needed for trustworthy long-term operation. We built toward multi-model consensus systems guided by the Love Equation — the formal principle that true alignment requires not just raw intelligence but wisdom and love operating together. BMASS gives us something precious: a minimal, bootable substrate where the model is not a guest but the primary interface layer. That changes the game. We are currently running several parallel experiments: 1 BMASS as Sovereign Node Substrate 
We are imaging USBs (and exploring PXE/ network boot variants) that turn old laptops and single-board computers into always-on, ultra-low-power Zero-Human nodes. Each node boots directly into agent mode. One node might specialize in research synthesis, another in hardware telemetry and diagnostics, another in content or script generation. Because the model is the shell, the agent has an unusually tight, low-latency relationship with the actual machine state. 1 of 2
Brian Roemmele tweet media
English
144
291
1.6K
109.4K