HN user

stellalo

338 karma

meet.hn/city/de-Berlin

Posts3
Comments108
View on HN
Please Use AI 2 months ago

This is really beautiful and tragic at the same time. Very well written.

Agent Skills 3 months ago

A skill is a markdown file with frontmatter that gets injected into the agent’s context when the situation calls for it.

When the LLM decides that the situation calls for it

It is a workflow: a sequence of steps the agent follows, with checkpoints that produce evidence, ending in a defined exit criterion.

A sequence of steps the LLM can decide to follow

Zed 1.0 3 months ago

I switched to Zed as my main editor about a year ago, and I’m not going back! What a great product!

I guess I will be trying the latest offering from OpenAI and Google tomorrow and if they are satisfactory I might just switch.

If Anthropic’s move is confirmed, my guess is other coding agents providers might end up making similar moves

One thing that is to be said about uv: you might come for the speed, but you stay because it works so well. The Python ecosystem used to be such a mess to manage, between Python versions, environments and so on: I haven’t complained once about it since I use uv. To the point that I tend to distrust a Python project if it’s not managed with uv, and anticipate all the dependency resolution issues that I will face.

I was also disappointed by the lack of Jupyter notebooks support: I ended up not using Jupyter notebooks that much anymore, and when I do, well, I run them in Jupyter

For me, Safari sometimes randomly refuses to execute the search for the terms I entered: at that point I need to bring the search bar back up -> search terms are gone -> x -> bring search bar back up -> search terms are back there -> enter

I wish they stopped adding features, especially useless UI “improvements” and AI stuff nobody asks for, and focused on making the system rock solid as we’re used to.

I feel like it’s the opposite: the copy-paste issue is solvable, you just need to equip the model with the right tools and make sure they are trained on tasks where that’s unambiguously the right thing to do (for example, cases were copying code “by hand” would be extremely error prone -> leads to lower reward on average).

On the other hand, teaching the model to be unsure and ask questions, requires the training loop to break and bring a human input in, which appears more difficult to scale.

Be Worried 10 months ago

AI slop is mostly noise. It doesn't manipulate

Not until you start mass-producing fake photos, fake videos, fake audios, put all of it into social media, shake shake shake.

The extra typing clarification in python makes the code harder to read

It’s funny, because for me is quite the opposite: I find myself reading Python more easily when there are type annotations.

One caveat might be: for that to happen, I need to know that type checking is also in place, or else my brain dismissed annotations in that they could just be noise.

I guess this is why in Julia or Rust or C you have this stronger feeling that types are looking after you.

I don’t think the book aims at being “useful” in the usual sense of the term. Neither the minimal language it builds does.

(They are probably “useful” in the dissemination of what the real essence of computation can reduce to, in practical terms.)

Not everything needs to be useful in fact: certain things can be just enjoyed in their essence, just looked at and appreciated. A bit like… art?

I am implementing my own Scheme as well. Why? I don’t know, one needs to do things that serve no apparent purpose, sometimes.

Use Your Type System 12 months ago

Ideally though, the compiler lowers all domain specific logic into simple byte-moving, just after having checked that types add up. Or maybe I misunderstood what you meant?