Hacker Newsnew | past | comments | ask | show | jobs | submit | ssivark's commentslogin

Would it have killed them to use a comma instead?!

Maybe have a second model that is configured to nudge the first model in the direction of exploration, and have the two of them work in tandem?

Even if companies decided to move away from expensive models from the major labs, it probably much more economical to pay a cloud provider to host some open weights model which could then be amortized across all (internal) users and do inference at a substantial batch size, rather than giving everyone their own hardware -- which means the company would need to provision for peak usage and inference at batch size of one.

I was curious about whether one could layer email-ids as an interface on top of ATProto, and get all the decentralization benefits of the latter while being easy to move on from the former. A bit of searching threw up Comail [1]. Curious to hear perspectives on Comail / the general idea.

[1] https://comail.at


> each of those steps is done by a different team of people, often at different companies. Most companies doing [ABC] today are buying off-the-shelf [XYZ] etc. and just wiring them up.

A lot of software engineering work is similar -- basically plumbing across bits of functionality that someone else wrote. But really, isn't this true for several industries and most jobs? Between the management framework of breaking down responsibilities and pushing companies / people to focus on "core competencies" it seems that there's an inexorable tide in this direction, especially in corporate roles. Startups, of course, are the exception because they typically haven't gotten to a point where they have the luxury of dividing a goal so finely between so many people.


Is there a way to check/track your available credits?

...like how we were using LLMs just a little while ago?

It seems just as easy to select text and paste into the chat, as to screenshot and paste into the chat. At least when not on phone, eg doing coding.

But YMMV if you're doing visual design. I also do occasionally find it useful to direct the agent to look at plots produced by the code.


> Then, I go back to the implementers and tell them to design in a tagging system, which is a DIY taxonomy, and except in ridiculous use cases, I can make indexes make it fast enough to let everyone overlay their own classification system.

This 100x! I wish this were more common.

The key property of a tree is that there a unique path (address) for each element, which is a useful property in the implementation layer. But forcing that on users is a horribly leaky abstraction.

Ideally separate the low-level implementation from the interface, and allow users their own way to address content. I imagine object storage (with UUIDs or whatever) is often good enough for the lower layer. For the interface layer, tags are an improvement on categories (tree structure), but I think there's also room for more innovation (fuzzy matching, AI-driven interfaces, etc) that start by allowing trading-off precision for recall but then allow regaining precision by adding more approximate qualifiers to the filtering.

----

PS: Pushing this approach to 11/10...

An intriguing (crazy?) application of this idea would be: what if we did this to the concept of a codebase? Make it a database (with all the corresponding improvements over a filesystem) -- it's no longer a tree of files, and allow users to query code like "that foo which accepts a bar, frobnicates its internal state, and emits a mutated baz". Note that this might also solve the "naming things" problem.

This setup seems like a powerful abstraction for AI coding agents. All that back-end power (database >> filesystem) is something they can easily leverage, and they can also be built to robustly resolve your fuzzy queries into precise addresses, and then update the code based on your desired outcome.


> that foo which accepts a bar, frobnicates its internal state, and emits a mutated baz

Tangential, but that reminds of the Haskell "hoogle" tool which allows searching for functions _by type_ across a large database of libraries, even by abstract types. So you might wonder "hmm what's that function that has a type structure like `t a -> (a -> t b) -> t b`?" and it'll happily tell you that it's monad `bind`


There's some prior work on the codebase thing:

[Unison](https://www.unison-lang.org/docs/the-big-idea/) content addresses every definition. Kinda interesting.

A [Code Property Graph](https://en.wikipedia.org/wiki/Code_property_graph) takes a codebase and turns it into three graph representations: it's AST, a Control Flow Graph, and Program Dependence Graphs. These graphs are overlaid and shoved into a single property graph. It's a structure mainly used by some static analysis tools like [Joern](https://joern.io/)

---

This has been a topic of a lot of interest and research for me. I've been experimenting with figuring out a system inspired by these ideas, among others, to apply the same idea (shoving multiple graph representations together) to a broader set of information


Tag Clouds were sticky tasty web goodness a few years back.

I've got a legacy tag cloud curation tool for random collections (each collection gets its own id) of URLs. It IFRAMEs each URL to present it; no whining. I've used it for classifying technical docs, photo libraries (then I used the tags to train an image classifier), and to present an analysis of a customer's web site.

It's written in Perl, and (still) runs on modern Perl. Make friends and maybe I'll toss the code your way and help you with your project.


So there's input (prompts/requests/tokens), then there's outputs (lines of code) and there's outcomes. How much have the outcomes improved? Not just yours, but I'm more curious on the outcomes with regards to the actual need your projects are solving.


> mostly for the web assembly target

Funny you should say that... there was recently a very interesting announcement for a Julia-to-WASM compiler and a full-stack signals-based web framework:

https://discourse.julialang.org/t/ann-experimental-wasmtarge...


I saw that, but then I saw this:

> Both repos were built iteratively with LLM coding agents

I think I would rather just use Rust.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: