Dan Tocchini IV

1.1K posts

Dan Tocchini IV banner
Dan Tocchini IV

Dan Tocchini IV

@d4tocchini

If I be more noble than you, it is b/c I have suffered more. intersect(Jesus, code, design) Berkeley EE Physics @thegrid https://t.co/20JgZfNt6c

Wine Country انضم Nisan 2009
1.9K يتبع2.4K المتابعون
تغريدة مثبتة
Dan Tocchini IV
Dan Tocchini IV@d4tocchini·
1 year ago today, my son Aeon died when a 120ft redwood snapped 40ft in the air & free fell on our house crushing him just 5ft away from me. From the abyss of suffering, I return new born, having shed my skin. Aeon's death saved my life. This is my testimony. An evergreen 🧵
Dan Tocchini IV tweet mediaDan Tocchini IV tweet media
English
10
2
29
4.6K
vittorio
vittorio@IterIntellectus·
this is actually insane > be tech guy in australia > adopt cancer riddled rescue dog, months to live > not_going_to_give_you_up.mp4 > pay $3,000 to sequence her tumor DNA > feed it to ChatGPT and AlphaFold > zero background in biology > identify mutated proteins, match them to drug targets > design a custom mRNA cancer vaccine from scratch > genomics professor is “gobsmacked” that some puppy lover did this on his own > need ethics approval to administer it > red tape takes longer than designing the vaccine > 3 months, finally approved > drive 10 hours to get rosie her first injection > tumor halves > coat gets glossy again > dog is alive and happy > professor: “if we can do this for a dog, why aren’t we rolling this out to humans?” one man with a chatbot, and $3,000 just outperformed the entire pharmaceutical discovery pipeline. we are going to cure so many diseases. I dont think people realize how good things are going to get
vittorio tweet mediavittorio tweet mediavittorio tweet mediavittorio tweet media
Séb Krier@sebkrier

This is wild. theaustralian.com.au/business/techn…

English
2.5K
19.9K
117.9K
17.3M
Sash Zats
Sash Zats@zats·
> The attacker got the npm token by injecting a prompt into a GitHub issue title, which an AI triage bot read, interpreted as an instruction, and executed.
Sash Zats tweet media
English
70
271
2.7K
493.2K
The_Real_Fly
The_Real_Fly@The_Real_Fly·
$XYZ's headcount will revert back to pre-COVID levels at 6,000 employees. Here is Jack's stupidity in headcount over the years. 2019: 3,835 2020: 5,477 2021: 8,521 2022: 12,428 2023: 12,985 2024: 11,372 2025: 10-12,000 He's using AI as a excuse to mask his failure
English
144
264
3.6K
398.4K
The Lunduke Journal
The Lunduke Journal@LundukeJournal·
California Law to Require Linux, Windows Implement Age Verification by Jan 1, 2027 A new California Law (AB-1043), signed by Governor Gavin Newsom, requires all Operating Systems (from macOS to FreeBSD) to implement age verification, at the system level, this year.
English
373
358
1.3K
113.2K
Dan Tocchini IV أُعيد تغريده
Rothmus 🏴
Rothmus 🏴@Rothmus·
ZXX
122
1.9K
8.9K
230.8K
Benjamin Bardou
Benjamin Bardou@benjaminbardou·
Technical test with Le Radeau de la Méduse by Théodore Géricault at @MuseeLouvre
Français
63
566
2.8K
87.9K
Armin Ronacher ⇌
Armin Ronacher ⇌@mitsuhiko·
Europe’s biggest problem is that it protects itself against the downside so much, that it misses out on all potential upsides. We’re too afraid of taking risks and if you are a risk taker, the environment grinds you up. Takes extra energy to succeed.
English
43
35
588
73.4K
taoki
taoki@justalexoki·
sex is 100% a waste of time and if you disagree you're literally just addicted
English
92
11
348
21.7K
Dan Tocchini IV
Dan Tocchini IV@d4tocchini·
@tekbog And model training data has this framework soydev mindset baked in. Somehow default mode is deps atop frameworks atop react & next. Never-mind the ever shifting uncanny valley of abstractions between your code & metal. Insane.
GIF
English
0
0
5
1.1K
terminally onλine εngineer
this is what good software engineers were always doing you go into the open source library and check if you can simply extract/copy and modify the code you need the npm install isodd was a sign of someone incompetent - a lot of webdevs came from bootcamps that had no idea what and how software works or why - but javaboomercore writing code shipping abstract factories was no better while software engineering field changes it’s funny to see the realization of people who haven’t done hardcore engineering, crafting every layer of code end up with same patterns and realizations that a lot of us have had after years analyzing cpu cycles - this isn’t just writing code, it’s about understanding where the code gets deployed, on what machine, how it’s running and how it scales - the layers of context you need to understand are deep and complex, then on top of it you need to understand your org and why certain things are built as they are and how much titanic effort you would need to change it
Andrej Karpathy@karpathy

On DeepWiki and increasing malleability of software. This starts as partially a post on appreciation to DeepWiki, which I routinely find very useful and I think more people would find useful to know about. I went through a few iterations of use: Their first feature was that it auto-builds wiki pages for github repos (e.g. nanochat here) with quick Q&A: deepwiki.com/karpathy/nanoc… Just swap "github" to "deepwiki" in the URL for any repo and you can instantly Q&A against it. For example, yesterday I was curious about "how does torchao implement fp8 training?". I find that in *many* cases, library docs can be spotty and outdated and bad, but directly asking questions to the code via DeepWiki works very well. The code is the source of truth and LLMs are increasingly able to understand it. But then I realized that in many cases it's even a lot more powerful not being the direct (human) consumer of this information/functionality, but giving your agent access to DeepWiki via MCP. So e.g. yesterday I faced some annoyances with using torchao library for fp8 training and I had the suspicion that the whole thing really shouldn't be that complicated (wait shouldn't this be a Function like Linear except with a few extra casts and 3 calls to torch._scaled_mm?) so I tried: "Use DeepWiki MCP and Github CLI to look at how torchao implements fp8 training. Is it possible to 'rip out' the functionality? Implement nanochat/fp8.py that has identical API but is fully self-contained" Claude went off for 5 minutes and came back with 150 lines of clean code that worked out of the box, with tests proving equivalent results, which allowed me to delete torchao as repo dependency, and for some reason I still don't fully understand (I think it has to do with internals of torch compile) - this simple version runs 3% faster. The agent also found a lot of tiny implementation details that actually do matter, that I may have naively missed otherwise and that would have been very hard for maintainers to keep docs about. Tricks around numerics, dtypes, autocast, meta device, torch compile interactions so I learned a lot from the process too. So this is now the default fp8 training implementation for nanochat github.com/karpathy/nanoc… Anyway TLDR I find this combo of DeepWiki MCP + GitHub CLI is quite powerful to "rip out" any specific functionality from any github repo and target it for the very specific use case that you have in mind, and it actually kind of works now in some cases. Maybe you don't download, configure and take dependency on a giant monolithic library, maybe you point your agent at it and rip out the exact part you need. Maybe this informs how we write software more generally to actively encourage this workflow - e.g. building more "bacterial code", code that is less tangled, more self-contained, more dependency-free, more stateless, much easier to rip out from the repo (x.com/karpathy/statu…) There's obvious downsides and risks to this, but it is fundamentally a new option that was not possible or economical before (it would have cost too much time) but now with agents, it is. Software might become a lot more fluid and malleable. "Libraries are over, LLMs are the new compiler" :). And does your project really need its 100MB of dependencies?

English
11
14
559
51.9K
I,Hypocrite
I,Hypocrite@lporiginalg·
This is a real email from the Epstein files
I,Hypocrite tweet media
English
239
3.9K
19.6K
874.1K
Dan Tocchini IV
Dan Tocchini IV@d4tocchini·
@lancejpollard @Timcast Opus for spec planning & high value agents Codex for Ralph-like buildout of specs KimiK2.5 for cost effective agents Grok for fun, but even it can be gay & retarded (ie "safe") None for philosophy proper, but for research I use all of them
English
0
0
1
65
Lance Pollard
Lance Pollard@lancejpollard·
@d4tocchini @Timcast Claude was amazing at writing code, never used it for philosophical or other ideas tho. Now Opus 4.6 is extremely slow at writing code. What are your goto LLMs for code vs. philosophy these days?
English
2
0
1
137
Tim Pool
Tim Pool@Timcast·
Chatgpt is the worst llm Sora is trash Fucking awful product Grok crushes it Chatgpt gives political answers to every fucking question
English
1.1K
326
7.5K
58.5M
Dan Tocchini IV
Dan Tocchini IV@d4tocchini·
@SevenviewSteve I get the pull of backend driven frontend frameworks, but of course nothing stopping vanilla from being production ready!
English
0
0
0
40
Steve Clarke
Steve Clarke@SevenviewSteve·
@d4tocchini x.com/i/status/20198… here's a reply to a question about vanilla. My Hotwire prototype is using import maps so there's no nodejs involved. I feel like it's very close to vanilla.
Steve Clarke@SevenviewSteve

@somedudeokay Vanilla HTML was primarily to prototype the workflow and UI. But the real app needs a backend and Rails + Hotwire is the closest to vanilla you can get while being production-ready. It’s still just HTML and JavaScript, no TypeScript, no build step.

English
1
0
2
1.1K
Steve Clarke
Steve Clarke@SevenviewSteve·
I had Claude Code build the same UI in 5 different stacks. React, Hotwire, Inertia+Vue, Inertia+React, and vanilla HTML/JS. Same spec, same features. The quality gap between frameworks was massive. Wrote up what happened and what I think it means for picking a stack in 2026. x.com/SevenviewSteve…
English
40
23
437
171.5K
Dan Tocchini IV
Dan Tocchini IV@d4tocchini·
@gregisenberg yes, please have your openclaw reply to comments + dms, send follow-ups
GIF
English
0
0
0
59
GREG ISENBERG
GREG ISENBERG@gregisenberg·
you’re vibe coding when you should be vibe marketing (with claude code, openclaw etc) 1. opus 4.6 / codex 5.3 → ship the product (core features, backend, auth, infra ) 2. claude code → design the playbook (content formats, hook templates, lead magnets, reply rules, tone of voice, weekly experiments) 3. openclaw → run the playbook 24/7 (ads, post drafts, build free tools, repurpose content, create campaigns, reply to comments + dms, send follow-ups, queue experiments) 4. dashboards → decide what to double down on (saves, shares, replies, clicks, signups) most founders stop at step 1. "wHy tHis DiDn'T woRk" the money/opportunity is steps 2–5. media is the most mispriced asset right now. it isn't code, you know this relax on the vibe coding for 1 sec vibe marketing is your friend it answers the real question nobody wants to ask: “does anyone notice, remember, or care?”
English
250
202
3.6K
399.7K
Nick
Nick@nickwal·
@thdxr I believe this is regarding intra-turn prefill where you precondition the response by proving the first few tokens for that turn of the assistant response I believe this is unrelated to prior turns in the chat format
English
2
0
2
1.7K
dax
dax@thdxr·
are we misunderstanding this? the implication is you can't insert any content that anthropic didn't know to have generated this breaks things like switching models mid session and a dozen other things harnesses rely on i switch between claude and gpt all the time :(
dax tweet media
English
55
12
650
89.8K
antirez
antirez@antirez·
Maybe you were wondering why serious, grown-up folks would spend nights writing a Commodore 64 well made demo or game, in recent years. Now that your dear LLM can write a serious C compiler in Rust, but can't write a well made C64 game/demo, maybe you are starting to get it.
English
22
5
220
22.3K
Filip Kowalski
Filip Kowalski@filippkowalski·
Codex is like a senior/architect engineer in their 40s who takes time to build something properly. Claude Code is like a senior engineer in their mid-20s, working for an SF startup, who's running on Red Bulls or occasionally cocaine and doesn't sleep much.
English
235
480
8K
547.8K