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

Fascinating that after years of for me this for me that, literally no one writes 2-3 other words like “i do react frontend” or whatever just for us to know why the results are different


They also need to tell people what quantisation they're using. Because some 4 bit version is not the same as BF16, no matter what KLD suggests.


I'm using the unsloth dynamic Q4 and getting good results. I was running Q5, but Q4 gives more context headroom so I can run two agents in parallel with ~100k context each with 32GB vram.


lol, exactly.


Your assumption is incorrect.


Why never seeing a title “written by C” or Java or js


"Hax – a minimalist, terminal-native coding agent written in C" https://news.ycombinator.com/item?id=49273175

but I see your point.


I believe a true engineer should love problems not only languages. But it seems like majority of Rust devs only love the language and try to convert all the problems into Rust problems.

If you have problems in C/C++? Write Rust.

If you have problems in Python? Use Rust.

If you have an issue with your product? Rewrite it in Rust.

Is your company in pinch? Launch a new product in Rust.

If you burn your finger while you’re cooking? Write Rust.

If you have a mental problem? Read a Rust book.

You don’t have a girl friend? You have Rust next to you.

If you hate yourself? Writing Rust will solve your life problems.


Because people love to propagandize


The main feature of apps written in Rust is that they are written in Rust.


"It's not a feature, it's a bug"


I flag all these “written in Rust” posts.


its just ppl trying to be different from their boring parents. wish i had enough karma to flag them too but i keep getting downvoted into oblivion for making fun of written in rust posts


I am not the OP of this post, but they're just using my github description. when I first wrote it, Rust was a novel choice for an emulator, and it helped people find examples of emulators written in Rust.

believe it or not I didn't tailor it for the HN meta


Because their following is not cult-based.

(To clarify: I like Rust. I use it every day. But this is going too far.)


Because they predate HN, and aren't hip languages any longer.

There was a time for CoffeeScript, PureScript, Elm, Ruby and whatever else you can think of.

Naturally Lisp has to have monthly entries.

/s


Because nowadays "written in Rust" means "written by AI", as Java or C are not so sexy for LLMs /s


Not really true, I've had LLMs write hundreds of thousands of lines of C just fine, including stripping out Rust deps out of projects I use. :)


16 years ago it was


Jup! From day 2, the moment when they discover that customer data (yours, mine, everyone's) is more valuable than gold. Also the interaction with government and defense and intelligence is well documented: from google docs to maps and clouds.

I wish people will read "Surveillance Valley: The Secret Military History of the Internet" by Yasha Levine and stop feigning ignorance. I even expect that minimal level of awareness about the real business culture and inherent nature of these internet mega-corps for people in top positions.

"Don't Be Evil" is a psychological machination for people working at google to ease their life in work related cognitive dissonance and marketing speak to the rest of us.

If I were an angel (actual, not fallen yet) I will not tell my self: "Don’t Be Evil". My motto will be "keep being holy" or "be holier" or something that keep me in my angelic state or better.

So even the “Don’t Be Evil” motto by itself already spill the beans!


Google's purchase and subsequent integration of Doubleclick, reviled industry-wide for their invasive, sleazy adtech, was 18 years ago.


Snow Leopard was a nothing release basically - but under the hood a lot got fixed and got better for devs


Trick is to use the newest distro release with previous cycle hardware


Lots of people are working on repetitive simple projects like the Nth website whatever or things like that, boring stuff. This LLM era is already a very big deal for these people.

Personally somehow I am working on stuff that has like 25% not trivial stuff and that is enough to have the same experience as you have.

But also lots of people just don't care about quality and they might be right with their customers/audience. In these cases when someone catches one, an agent is going to iterate on it and make it (seemingly) go away, bandage applied, who cares again. This has a market, I am sure. Lots of programmer folks are just as bad.


I don’t know what people are doing but Minimax produced 16 bugreports which of 15 was false positives (literally a mistake).

In contrast ChatGPT 5.3 and also Opus has a 90% rate at least on this same project. (Embedded)

All other tests were the same. What are you doing with these models?


Seeing the SOTA in FSD techs it is not obvious that Musk made a miscalc so far.


Nah

If the data were positive for Tesla, Tesla would publish it

They do not, so one can infer it is not flattering

(Before you post the "Miles driven with FSD" chart, you should know upfront (as Tesla must) that chart doesn't normalize by age of vehicle or driving conditions and is therefore meaningless/presumably designed to deceive)


It would have helped if you tell us why you don’t like this approach.


It's right there:

> the source of most of the problems I've seen with infrastructures using Kubernetes came from exactly this kind of approach

But some more concrete stories:

Once, while I was on call, I got paged because a Kubernetes node was running out of disk space. The root cause was the logging pipeline. Normally, debugging a "no space left on device" issue in a logging pipeline is fairly straightforward, if the tools are used as intended. This time, they weren't.

The entire pipeline was managed by a custom-built logging operator, designed to let teams describe logging pipelines declaratively. The problem? The resource definitions alone were around 20,000 lines of YAML. In the middle of the night, I had to reverse-engineer how the operator translated that declarative configuration into an actual pipeline. It took three days and multiple SREs to fully understand and fix the issue. Without such a declarative magic it takes usually 1 hour to solve such an issue.

Another example: external-dns. It's commonly used to manage DNS declaratively in Kubernetes. We had multiple clusters using Route 53 in the same AWS account. Route 53 has a global API request limit per account. When two or more clusters tried to reconcile DNS records at the same time, one would hit the quota. The others would partially fail, drift out of sync, and trigger retries - creating one of the messiest cross-cluster race conditions I've ever dealt with.

And I have plenty more stories like these.


You mention a questionably designed custom operator and an add-on from a SIG. This is like blaming Linux for the UI in Gimp.


> a questionably designed custom operator

This is the logging operator, the most used logging operator in the cloud native ecosystem (we built it).

> This is like blaming Linux for the UI in Gimp.

I never blamed anything, read my comment again. I only pointed out that problems arise when you use something to do something that is not built for. Like a container orchestrator managing infrastructure (DNS, logging pipelines). That is why I wrote to "it is super important to treat a container orchestrator a container orchestrator". Not a logging pipeline orchestrator, or a control plane for Route 53 DNS.

This has nothing to do with Kubernetes, but with the people who choose to do everything with it (managing the whole infrastructure).


Also not like logging setups outside of k8s can't be a horror show too. Like, have you ever had to troubleshoot a rsyslog based ELK setup? I'll forever have nightmares from debugging RainerScript mixed with the declarative config and having to read the source code to find out why all of our logs were getting dropped in the middle of the night.


I'd also argue the whole external DNS thing could have happened with any dynamic DNS automation... And yes it is a completely optional add-on!


If you go mainstream with your requirements, you don’t step on these though


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

Search: