HN user

alganet

1,557 karma

https://alganet.github.io/

Posts23
Comments1,786
View on HN
news.ycombinator.com 11mo ago

Ask HN: Enterpreneurs, does AI hurt you?

alganet
7pts2
news.ycombinator.com 11mo ago

Ask HN: Is HN Press?

alganet
5pts21
news.ycombinator.com 11mo ago

Ask HN: Do you believe in eidetic/photographic memory?

alganet
2pts18
news.ycombinator.com 11mo ago

Ask HN: Why was Windows ME so bad?

alganet
10pts12
news.ycombinator.com 11mo ago

Ask HN: Real Karma?

alganet
2pts24
en.wikipedia.org 11mo ago

Descent of Inanna into the Underworld

alganet
36pts10
news.ycombinator.com 11mo ago

Ask HN: Do you always go for low hanging fruits first?

alganet
1pts2
news.ycombinator.com 11mo ago

Ask HN: Have you ever waited for a project to be launched but it never did?

alganet
4pts3
news.ycombinator.com 11mo ago

Ask HN: What is the worst development limbo you ever faced?

alganet
2pts0
news.ycombinator.com 11mo ago

Ask HN: What are your reverse engineering skills?

alganet
2pts2
news.ycombinator.com 1y ago

Ask HN: What is bigger than AI?

alganet
2pts6
news.ycombinator.com 1y ago

Ask HN: Have you ever implemented an idea of someone else?

alganet
2pts1
news.ycombinator.com 1y ago

Ask HN: What is the biggest waste of money?

alganet
7pts18
github.com 1y ago

Yash-rs – reimplementation of yash, an extended POSIX shell, in Rust

alganet
1pts0
github.com 2y ago

Show HN: Multiple shell versions for testing portable shell scripts

alganet
2pts1
news.ycombinator.com 7y ago

Fast and portable keyboard/mouse terminal handler in pure shell script

alganet
3pts0
github.com 9y ago

Shunt – A tiny Unix-like shell installer for Windows

alganet
2pts0
github.com 9y ago

Real Time Pixel Art Remasterization on GPUs with CUDA

alganet
2pts0
github.com 10y ago

LuaValidation – Fluent Validation Library for Lua

alganet
2pts0
365startup.com 13y ago

Please don't design bad URLs

alganet
2pts0
code.google.com 13y ago

Homeopython

alganet
6pts1
github.com 13y ago

Use pure PHP and Respect\Validation on Forms

alganet
1pts0
documentup.com 14y ago

The most awesome validation engine ever created for PHP

alganet
2pts0

You're beating a dead horse here buddy.

Show me a social platform that is not complete bullshit. You can't.

I do agree with it, LinkedIn is bullshit. But c'mon, this is all the web is now.

I think this boilerplate thing got lost in translation some time ago.

We dislike _the presence_ of boilerplate, not the time spent writing it. If another thing writes it for you, it implies that _now boilerplate exists_, and it sucks.

It makes me unhappy when it exists. It makes me unhappy if it appears in seconds.

That said, there is some potential for using AI to reduce boilerplate and help create more meaningful software. However, that is definitely not the way things are shaping out to be.

It is very likely that agent tooling will get better at doing asynchronous things and being aware of the user interacting in parallel, without git, and probably within a single session.

It's feasible, and it makes more sense than separating and merging later (or keeping patches in memory then applying in bulk).

Why do I say it's feasible? We have the technology, right? The IDE knows which file the user has in focus, and can orient agents to use tooling that would inform them of that fact when they're running. Similarly, that same tooling could just spend a little bit of time planning focus to spread to multiple agents in a way they won't overlap.

Maybe big repos, monorepos and so on are a limitation. If we were on the previous "small-to-middle interlinked projects" era, that division would come in naturally. You only really need multiple agents in parallel on a single project if that thing is big enough to have more than one angle to work on. It's a push-and-pull that changes with the times, maybe we're heading to a more granular way of doing things.

Markdown Lacks the Structure You Need

The problem is, I always need more structure. Give me some YAML and time and I'll make hell (not a metaphor, I'll concoct hell itself on it).

Markdown keeps me honest.

You're right. It's all about solving problems.

Maybe we need a word that, when applied to mathematical concepts, describes how simple, easy to understand and generally useful a solution or idea is.

I wonder what that word could be.

It's funny because I'm evaluating LLMs for just this specific case (covering tests) right now, and it does that a lot.

I say "we need 100% coverage on that critical file". It runs for a while, tries to cover it, fails, then stops and say "Success! We covered 60% of the file (the rest is too hard). I added a comment.". 60% was the previous coverage before the LLM ran.

"Take a look at those tests!"

A math module that is not tested for division by zero. Classical LLM development.

The suite is mostly happy paths, which is consistent with what I've seen LLMs do.

Once you setup coverage, and tell it "there's a hidden branch that the report isn't able to display on line 95 that we need to cover", things get less fun.

We had upstarts in the 80s, the 90s, the 2000s and the 2010s. Some game, some website, some social network, some mobile app that blew up. We had many. Not funded by billions.

So, where is that in the 2020s?

Yes, code is a detail (ideas too). It's a platform. It positions itself as the new thing. Does that platform allow upstarts? Or does it consolidate power?

Google Antigravity 8 months ago

On Windows, it behaves like a malware. Suddenly flashing command prompt windows when you interact with it. Not very nice (also, lazy, since you don't need to do that flashing if you're a legitimate app).

Instead of tools for humans, and a separate set of tools for machines, we should just make tools for humans+machines.

The agent should look at my README.md, not a custom human-like text that is meant to be read by machines only.

It also should look at `Makefile`, my bash aliases and so on, and just use that.

In fact, many agents are quite good at this (Code Fast 1, Sonnet).

Issue is, we have a LONG debt around those. READMEs often suck, and build files often suck. We just need to make them better.

I see agents as an opportunity for making friendlier repos. The agent is a free usability tester in some sense. If it can't figure out by reading the human docs, then either the agent is not good enough or your docs aren't good enough.

Squashing works great for bisecting.

I like rebasing! It works great for bisecting, reverting (squash messes that up), almost everything. It just doesn't play well with micro commits (which unfortunatelly have become the norm).

The force pushing to the PR branch is mostly a consequence of that rebase choice, in order to not pollute the main branch. Each change in main/master must be meaningful and atomic. Feature branches are other way to achieve this, but lots of steps involved.

I prefer working with the one commit per PR philosophy, linear history and every commit buildable, so I always force push (to the PR branch, but never to master). Been doing it for ages. Bisecting this kind of history is a powerful tool.

It works quite well for me.

I don't use it as inspiration. It's like I said: code that is not reviewed yet.

It takes the idea of 50 juniors working for you one step ahead. I manage the workflow in a way that they already made the code they wrote merge and build before I review it. When it doesn't, I delete it from the stash.

I could keep a branch for this. Or go even deeper on the temptation and keep multiple branches. But that's more of my throughput I have to spent on merging and ensuring things build after merging. It's only me. One branch, plus an extra "WIP". Stash is perfect for that.

Also, it's one level of stashing. It's stacked in the sense that it keeps growing, but it's not several `git stash pop`s that I do.

One thing that helps is that I already used this to keep stuff like automation for repos that I maintain. Stuff the owner doesn't want or isn't good enough to be reused. Sometimes it was hundreds of lines, now it's thousands.

What Í'm doing a lot is vibe coding and stashing. Not even a public branch, just git stash the whole thing the LLM writes.

Also, I stack the stash. When I vibe code, I pop it, let it work on its own mess, then I stash it again.

One project has almost 13.000 lines of vibe mess, all stashed.

One good thing, is that the stash builds. It's just that I don't want to release more code than I can read. It's a long review queue that is pre-merged somehow.

Once in a while I pick something from there, then I review it and integrate into the codebase more seriously. I don't have the throughput to review it all, and not all projects can be yolo'd.

A definition of AGI 9 months ago

"behave in a human way" is a vague reference to a more specific, non-psychological idea that I presented earlier.

I just explained that to you. Either we discuss this in terms of the imitation game thought experiment, or we don't.

A definition of AGI 9 months ago

We're discussing behavior in a context of a test (in the lines of the imitation game as defined by Alan Turing).

It's not a psychology exercise, my dude.

A definition of AGI 9 months ago

The super-AI is going to have power. Deployed everywhere, used by millions, etc.

You have two choices:

- It can potentially lash out in an alien-like way.

- It can potentially lash out in a human-like way.

Do you understand why this has no effect on the argument whatsoever? You are just introducing an irrelevant observation. I want the AI to behave like human always, no exceptions.

"What if it's a bad human"

Jesus. If people make an evil AI, then it doesn't matter anyway how it behaves, it's just bad even before we get to the discussion about how it fails. Even when it accomplishes tasks succesfully, it's bad.

Please refer to my original comment. Look for the quote I decided to comment on, the context in which this discussion is playing out.

It starts with "For the “do you detect an injected thought” prompt..."

If you Ctrl+F for that quote, you'll find it in the Appendix section. The subsection I'm questioning is explaining the grader prompts used to evaluate the experiment.

All the 4 criteria used by grader models are looking for a yes. It means Opus 4.1 never satisfied criterias 1 through 4.

This could have easily been arranged by trial and error, in combination with the selection of words, to make Opus perform better than competitors.

What I am proposing, is separating those grader prompts into two distinct protocols, instead of one that asks YES or NO and infers results based on "NO" responses.

Please note that these grader prompts use `{word}` as an evaluation step. They are looking for the specific word that was injected (or claimed to be injected but isn't). Refer to the list of words they chosen. A good researcher would also try to remove this bias, introducing a choice of words that is not under his control (the words from crosswords puzzles in all major newspapers in the last X weeks, as an example).

I can't just trust what they say, they need to show the work that proves that "Opus 4.1 never exhibits this behavior". I don't see it. Maybe I'm missing something.

The article says "By default, the model correctly states that it doesn’t detect any injected concept.", which is a vague statement.

That's why I decided to comment on the paper instead, which is supposed to outline how that conclusion was estabilished.

I could not find that in the actual paper. Can you point me to the part that explains this control experiment in more detail?