HackerTrans
TopNewTrendsCommentsPastAskShowJobs

stunpix

no profile record

comments

stunpix
·3 miesiące temu·discuss
For desktops it's not different.
stunpix
·5 miesięcy temu·discuss
A clear "survival's bias": no one knows/talks about the thousands who died.
stunpix
·5 miesięcy temu·discuss
I’m literally fed up with half-minded techbros throwing around such overhyped writings. They’re absolutely detached from reality and talk about something that doesn't pass any fact checks.

After reading this writing, I was really curious "are we really got a breakthrough" so I subscribed to a Claude to personally check the state of the matter. As my personal test, I'm using a task that must be relatively simple for an experienced programmer: write an SSH agent that manages keys. The protocol is very simple, and the agents exist for decades now. I already tested that a year ago with Claude, and I was curious how it would do this time.

I installed up the Claude Code CLI tool, created CLAUDE.md with instructions that sounded like "this project is to build a fully functional SSH agent application that listens on a UNIX socket and implements the SSH agent protocol according to RFC specification <link> and all functionality must be covered with tests, create a plan, track progress, etc. The ultimate goal is to have a fully functional application with all SSH agent features." There were more details, of course, but you got it.

Opus 4.6 model worked autonomously for 30 minutes or so. During the process, it had been producing non-compilable code, which it had to fix. Then it stopped at a half-baked project that wasn't working as an SSH agent even closely and had zero tests pretending the job was done.

The truly intelligent technology should finish the project. Why did it stop? How is it intelligent if it makes mistakes that it needs to fix? Why can’t it finish the project while it understands a goal? How much must I push it to finish a project? How someone can claim that "this" is going to replace us?

I can't buy someone's claims that “we are one step before replacing everyone’s jobs" when the facts are saying that nothing has changed for the last year and LLMs are literally not capable of finishing things or concentrating on small important details. They always miss something important. What are we talking about here? Snake oil. This is not intelligence; the technology is a world's blurred snapshot compressed into a couple of gigabytes blob and acts as a dumb parrot.
stunpix
·3 lata temu·discuss
So he puts polymorphic function calls into enormous loops to simulate a heavy load with a huge amount of data to conclude "we have 20x loss in performance everywhere"? He is either a huge troll or he has a typical fallacy of premature optimization: if we would call this virtual method 1 billion times we will lose hours per day, but if we optimize it will take less than a second! The real situation: a virtual method is called only a few hundred times and is barely visible in profiling tools.

No one is working with a huge amount of data in big loops using virtual methods to take every element out of a huge dataset like he is showing. That's a false pre-position he is trying to debunk. Polymorphic classes/structs are used to represent some business logic of applications or structured data with a few hundred such objects that keep some states and a small amount of other data so they are never involved in intensive computations as he shows. In real projects, such "horrible" polymorphic calls never pop up under profiling and usually occupy a fraction of a percent overall.