Dylan
@df00z
Followers
281
Following
7K
Media
414
Statuses
6K
Infamous computer janitor; worship me, WORSHIP ME. Mah hah hah hah. I like tech, art, indie games, and old computers.
Joined June 2010
Is it normal for tool calls to launch a new context and session, feeding back messages from the original context, instead of running with the same kvcache as the user session calling the tool? It seems kind of expensive.
1
0
0
All 128 cores melting :( lol I might have to make the fans a bit more aggressive
0
0
0
Haha. I keep running out of Claude capacity. Can we build "Claude" at home? Barely. Tool calls seem to work. Can it fix itself? 😂😂😂 Messing around with llama.cpp and mitmproxy. Is there a better way to do this?
2
0
1
LLVM Clang Adds Support For @AmpereComputing "Ampere1C" CPUs - Presumably AmpereOne Aurora Ampere1C based on Armv9.2 https://t.co/ljyNHz2P44
phoronix.com
The LLVM/Clang compiler today introduced support for the Ampere Computing Ampere1C CPU core target.
0
6
26
Microsoft has been under fire for what is becoming of the desktop os....clearly attributed to AI.
0
0
0
Torvalds is being cool. Rust in the kernel. Him and his team are carefully reviewing things for slop. So I think the kernel will be in a great place. I'm very worried about userspace.
1
0
0
I saw a terrifying video of AI actually generating OS use images - like you can open a browser and it was just the AI dreaming up a browser window and opening up web pages or other apps.
1
0
0
Other actors want to reinvent the wheel or keep old stuff going. And it's now possible. When there are competing standards, what happens? Do we all get bespoke custom systems?
1
0
0
Some people are playing ball - building Wayland compositors to established standards, probably accelerated with AI, and really cool stuff is coming from it.
1
0
0
I can't tell if AI coding agents are a new beginning or the end for FOSS. It's clear there is a ton of fragmentation - coding agents can keep up with big money from the usual sources of standardization, ie Redhat/IBM/Oracle/etc.
1
0
0
Claude Code is the new Factorio. Absolutely one-shotting every single autist I know.
63
61
2K
Why are people preferring Xlibre, or X in general, over Wayland? Some desktop environments don't have full Wayland support I guess but most do now.
0
0
0
Some of this is lol I wrote bad C++ code, skill issue...but interrogability in C++ is sometimes annoying, where things expect to be passed references to std::vectors, char arrays, etc. It quickly can turn into self-immolation.
0
0
0
The C code is actually doing LESS heap allocations...which actually means probably less surface area for memory bugs. And like opaque struct + inline storage provides some clear sense of ownership of objects, allocated on stack or static. No passing around smart pointers...
1
0
0
Removed dependency on flatbuffers, the serialization\deserialization code became simpler and shorter, because flatbuffer isn't exactly what I needed, I just originally bent to serialize\deserialize into my own objects...
1
0
0
I wanted something that serializes uint8\16\32\64, blobs, converts to network byte order where appropriate, and copies to an array to send out over the network. I typed up some basic function signatures, claude filled in the blanks...I wrote test cases and read the code...
1
0
0
Was using libwebsockets...flatbuffers... I'm porting to C with Claude, the resulting code is looking a LOT better. It's so far actually less code too. uthash replaces std::map and std::vector where I really needed it. Flatbuffers are nice but I always end up copying data
1
0
0