HN user

cloudhead

1,726 karma

https://cloudhead.io https://radiant.computer https://radicle.xyz

Posts32
Comments342
View on HN
community.computer 3mo ago

Community Computer: Collaborative Autoresearch on a Peer-to-Peer Network

cloudhead
11pts0
radiant.computer 5mo ago

A.I. and the Future of Computing

cloudhead
1pts0
cdf.works 2y ago

Continuous Dependency Funding

cloudhead
1pts0
www.bloomberg.com 4y ago

Kickstarter Will Move Its Crowdfunding Platform to Blockchain

cloudhead
3pts0
www.theguardian.com 4y ago

Why Bitcoin Has Nigeria's Government in a Panic

cloudhead
4pts0
cloudhead.io 5y ago

Nakamoto: A new Bitcoin light-client in Rust

cloudhead
4pts0
blog.cloudflare.com 5y ago

A name resolver for the distributed web

cloudhead
3pts0
cryptomedia.wtf 5y ago

What Is Cryptomedia?

cloudhead
1pts0
radicle.xyz 5y ago

Show HN: Radicle – A peer-to-peer code collaboration stack now in Beta

cloudhead
4pts0
blog.bitmex.com 5y ago

Call Me Ishmael

cloudhead
2pts0
radicle.xyz 6y ago

Radicle Link: A peer-to-peer code collaboration protocol built on Git

cloudhead
6pts0
rx.cloudhead.io 6y ago

Rx v0.3 Released, a modern and minimalist pixel editor in Rust

cloudhead
112pts66
cloudhead.io 6y ago

Rx – Extensible pixel editor implemented in Rust, inspired by Vi

cloudhead
349pts117
oscoin.io 8y ago

Oscoin: our plan to decentralize OSS collaboration

cloudhead
7pts0
oscoin.io 8y ago

Oscoin: A new model for OSS collaboration and financing on the blockchain

cloudhead
26pts4
cloudhead.github.com 14y ago

Github easy unwatching bookmarklet

cloudhead
2pts0
eli.thegreenplace.net 15y ago

The Context Sensitivity of C Grammar

cloudhead
1pts0
cloudhead.io 15y ago

Why OS X just doesn't cut it

cloudhead
62pts84
thingler.com 15y ago

Thingler - real-time collaborative todos with Node.js & CouchDB

cloudhead
79pts35
vowsjs.org 16y ago

Vows - Asynchronous BDD Framework for Node.js

cloudhead
68pts13
github.com 16y ago

Hijs — simple, fast javascript highlighting for the browser.

cloudhead
5pts0
github.com 16y ago

Http-console - simple, intuitive http console for node.js

cloudhead
9pts0
cloudhead.io 16y ago

Staying the hell out of insert mode (vi)

cloudhead
117pts91
cloudhead.io 16y ago

On Writing & Drawing

cloudhead
15pts2
cloudhead.io 16y ago

Toto - Heroku blogging in 10 seconds & 230 LOC

cloudhead
65pts11
bulfinch.englishatheist.org 16y ago

Seneca - On the shortness of life

cloudhead
1pts0
stackoverflow.com 16y ago

How can you tell a person is a programmer

cloudhead
1pts0
github.com 16y ago

Mutter — the tiny command-line interface library with lots of style~

cloudhead
7pts1
lesscss.org 17y ago

LESS 1.0 released. Rewritten in Treetop, now with namespaces & accessors

cloudhead
12pts3
lesscss.org 17y ago

Less, a leaner CSS

cloudhead
253pts85

Did you have to look or review any of the code produced, to get the performance/capabilities that you wanted, or were all interactions through CC? In other words, did you hit any walls with the pure agentic workflow?

How does this work? Files need to reference other files eg. for calling functions from other modules, which means semantic analysis needs both files in memory to check the types. This is especially complicated with mutual recursion across modules (separate compilation doesn't apply here). If you're building a language like C where everything requires forward declarations, then maybe, but anything more modern seems difficult.

I think you’re right with regards to the intention — but I’ve personally not experienced the case of an std lib being too big — good examples of “the right size” would be Go or Zig.

The fact that you either need a third party dependency or a large amount of boilerplate just to get decent error reporting, points to an issue in the language or std library design.

I've started also dropping `thiserror` when building libraries, as I don't want upstream users of my libraries to incur this additional dependency, but it's a pain.

For sure, and I guess that's kind of my point -- if the OP says local coding models are now good enough, then it's probably because he's using things that are towards the middle of the distribution.

In my experience the latest models (Opus 4.5, GPT 5.2) Are _just_ starting to keep up with the problems I'm throwing at them, and I really wish they did a better job, so I think we're still 1-2 years away from local models not wasting developer time outside of CRUD web apps.

Radiant Computer 9 months ago

Yes, good idea — I know about Rebol but haven’t looked at it from that angle.

Radiant Computer 9 months ago

Thanks for your comment.

I do think Linux is good enough (it's what I use daily), but I'm a software person. I don't think linux is good enough for the average person or for kids learning how to use computers. It's hard to use and quite unfriendly, even distros like Ubuntu.

The second point is simply that I think we can do better. Progress does not stop here, but most people are afraid to take on big problems, so they never try.

Radiant Computer 9 months ago

In five years time, "I want AI" will be 99% of computer users. Sure, neural nets are opaque, but having an AI assistant running locally and helping you with your tasks does not make your computer any harder to understand.

Radiant Computer 9 months ago

Thanks for the feedback. My goal at this stage is to put the full vision out there, and refine it to create a sense of direction, a north star under which to work. A lot of the specifics are undecided/unknown and that's ok at this stage. I'm building this bottom up using the skills I have (software), and as I bring on hardware folks, those aspects of the system will start to clarify as well.

Whether the project is bigger than I think or not is not so relevant for me personally, I will attempt it because I don't see a future in personal computing that I want to be a part of otherwise.

Radiant Computer 9 months ago

I agree! I've been thinking about why terminal software is so compelling, and how to make that the default while keeping the system accessible to beginners. I think there's a way to do it, to unify GUI, TUI and CLI.

Radiant Computer 9 months ago

Thanks for your comment! In terms of concurrent programming in Radiance, it's likely I go for something inspired by Go's simplicity and Haskell's power with STM[0]. Actors are also on the table, but likely as a library on top of the native system, whatever it is. The important thing is that everything that involves "waiting" be composable in this system: timers, network i/o, IPC, file i/o, etc.

For the AI/OS intersection, it is indeed a very interesting design space. The key insight really is that the better the AI knows you, the more helpful it can be to you, so the more you give it access to, the better. However, to be safe, the OS itself needs to be locked down in such a way that personal data cannot leave your device. This is why capabilities-based security is an interesting direction: software should not have access to more than what it needs to operate, and you need fine grained control over that.

If you have more ideas, please write us!

[0] https://en.wikipedia.org/wiki/Software_transactional_memory