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

its a hard pill to swallow, but it might be time for us to accept that democracy enables this and if we want to live in a better world we might have to think of a different model (no, not a dictatorship; obviously not that)

democracy is based on the idea that people will vote in favor of their own interest. it has been proven repeatedly that this is not the case (see: the united states of america)

democracy as a system has been figured out by enough people with enough power to rig it in their favor, even when science and research shows that this is not the better outcome for the majority (see: the united states of america)

its a hard pill to swallow but it might be time for us to accept that democracy isn't perfect...


[flagged]


The level of irony is off the charts, given the global right's shift towards authoritarian populism under untouchable leaders.

>The level of irony

That's not irony. Please reread the definition of irony.

>given the global right's shift towards authoritarian populism under untouchable leaders.

Whataboutism.

hackyhacky is following me around in the comments because he's crashing out about being proven wrong here: https://news.ycombinator.com/item?id=49546137


[flagged]


So you post a definition of irony and completely fail to come up with an example of said definition LOL. Misunderstanding irony is so prevalent: https://thereader.mitpress.mit.edu/what-irony-is-not/

My criticism of the left has nothing to do with the "incongruity between the actual result of a sequence of events and the normal or expected result." Nor do I support right-wing groups.

Your inability to understand irony is on full display here.

hackyhacky is following me around in the comments because he's crashing out about being proven wrong here: https://news.ycombinator.com/item?id=49546137


> My criticism of the left has nothing to do with the "incongruity between the actual result of a sequence of events and the normal or expected result."

That's not what I said. You are criticizing the left for disliking election results; meanwhile, you are supporting groups that aim to overturn election results. That's the irony.

The incongruity arises from the contradiction in your opinions. One would expect a reasonable person to either support democracy in all cases, or oppose it. You, however, support democracy when it suits your partisan ends and oppose it when it doesn't. That's both hypocritical and ironic.


>You are criticizing the left for disliking election results; meanwhile, you are supporting groups that aim to overturn election results. That's the irony.

I do not support groups that aim to overturn election results, you're delusionally inventing that. There is no irony here.

>The incongruity arises from the contradiction in your opinions.

There is no incongruity here, it's just something you've delusionally invented in your mind.

Supporting democracy != supporting far-right parties

>One would expect a reasonable person to either support democracy in all cases, or oppose it. You, however, support democracy when it suits your partisan ends and oppose it when it doesn't. That's both hypocritical and ironic.

I have never opposed democracy, full stop. This must be ironic according to you, because it's the left that's calling for undemocratic, fascistic moves like banning opposition parties: https://www.yahoo.com/news/germanys-social-democrats-back-pr...

Every accusation is a confession.

hackyhacky is following me around in the comments because he's crashing out about being proven wrong here: https://news.ycombinator.com/item?id=49546137


> I do not support groups that aim to overturn election results,

So you don't support Trump, who has tried to overturn the 2020 election results?

You don't support Reform UK, who have expressed an interest in bypassing democratic results in order to enact their agenda?

You don't support AfD who have explicitly embraced anti-democratic measures and Nazi-style politics?

> Supporting democracy != supporting far-right parties

So, to be clear: do you or do you not support Trump, Reform UK, and AfD?

> fascistic moves like banning opposition parties

You should address the other commenter's question: why do you think German law outlaws anti-democratic parties? Can you think of any reason?

> Every accusation is a confession.

lol


Republicans tolerate democracy when it goes their and do everything to undermine it when it doesn't.

See exhibit: Trump


Whataboutism.

You're following me around in the comments because you're crashing out about being proven wrong here: https://news.ycombinator.com/item?id=49546137


You can't just say "whataboutism" whenever someone points out your blatant hypocrisy.

>blatant hypocrisy

Nothing I've said is hypocrisy. Please reread the definition of hypocrisy.

hackyhacky is following me around in the comments because he's crashing out about being proven wrong here: https://news.ycombinator.com/item?id=49546137


> Please reread the definition of hypocrisy.

Okay. Hypocrisy: behavior that contradicts what one claims to believe or feel

You claim to be opposed to authoritarianism but you actually support authoritarian right-wing groups.

Seems pretty clear-cut to me.


swiss tables were invented by engineers working at google's zurich office, hence the name

im surprised that go, a programming language also from google, wasn't using them!

for an excellent talk on the development of swiss tables i highly recommend this talk by Matt Kulukundis at CppCon 2017: "Designing a fast, efficient, cache-friendly hash table, step by step" https://youtu.be/ncHmEUmJZf4


I guess it took a bit longer to get it adopted within Go because of some additional challenges:

https://go.dev/blog/swisstable#go-challenges


Go is much older than Swiss Tables. Since the hash table is a widely used container type and Go aspires to having a sort of "kitchen sink" stdlib I assume Go 1.0 had a hash table, and it can't be a Swiss Table because those weren't invented yet.

It's the "map" builtin. Go has a scripting-language-esque attitude of "you can build most things with arrays and hash tables". It doesn't completely preclude getting deeper but that's the general starting point.

The Rust std lib HashMap is powered by the hashbrown crate which is also a port of Swiss Tables. At a brief glance Ruby/Python don’t use this approach but I don’t see any reason why they couldn’t.

Python's hash table type, dict, promises that it remembers insertion order. If you put the mapping 5 => "dog" in first, then when we ask what is in the dict we'd get told 5 => "dog" first, duh.

Historically Python had a more conventional but very, very badly implemented hash table type, the "I can't believe it can sort"† of hash tables. Somebody wanted a hash table type which remembers insertion order because Python programmers have a bad habit of writing "Golden tests" in which that order matters even though in a good modern hash table type it's not guaranteed, so they built one. But because the built-in hash table type was garbage, this new OrderedDict type was much faster and much smaller despite solving a more difficult problem.

For a little while it was unclear if Python would decide to rewrite their dict type to have decent performance or just embrace this new better alternative and then they decided that because it's beginner friendly they will just embrace the OrderedDict and require that this type has ordering.

However, a good hash table doesn't inherently have this property, and that goes for the Swiss Table the same as other common designs. So they can't swap dict out for a Swiss Table without breaking their own promise that the dict type preserves insertion order.

If you're used to a language where this doesn't happen such as Rust, or C++ or Java or any number of other programming languages, that insertion ordering rule seems crazy, but if you've never used a programming language at all before and have never even wondered how dict works it seems obvious that this is how it should work.

https://hectorcorrea.com/blog/2022-08-30/i-can-t-believe-it-...


Yes, Ruby also has the same self-imposed constraint on insertion order. I agree it makes it more complicated to change the hash table implementation but it seems it wouldn’t be impossible to adapt Swiss Tables to support this. For example, by storing the “insertion number” (an incrementing integer) in each bucket, and possibly using table groups (as Go does) so that you only need to sort the buckets in a group, not the whole table, in order to yield entries in order. But this is just a naive sketch and I am not an expert on hash tables!

ihtabs preserve iteration order and have performance competitive with swiss tables (while not requiring as high a load factor): https://github.com/vnmakarov/ihtab

That is what they claim but I'm very sceptical - not that they can preserve order but that they get similar performance.

what's wrong with cartoon avatars...? im not sure i follow


Where did I say something was wrong with them?

I do think it is worth questioning why an entire thread is filled specifically and exclusively with cartoon character avatars. Pick a thread, pretty much any thread on bsky with 20+ replies and I believe you'll have trouble reproducing these results. I have had trouble finding one.

Feel free to locate some and point them out to me. Let me know how many threads it took you to find one. I am genuinely curious.


My guess is they are hobby artists who think that AI and piracy are the only things preventing them from making it big. There’s more of these out there than you would think.

If you look at the quality of their avatars it becomes clear why they aren’t making money as artists.


I didn't quite want to say it myself since I've been so negative sometimes lately. But it was something I noticed and picking a random profile to view was pretty stomach turning.

But I get there is backlash. Not everyone lives in the bubble HN does. Not even everyone here is accepting of AI. I don't even know where I stand many times. But something feels off about this response. It's certainly looking brigaded.

On my home feed was another AI announcement. Few comments. Zero hate. And I definitely expected more there.


Paint.NET is (partially) art software. The art community has a negative view of AI. Therefore announcements of AI use in Paint.NET get a negative reaction, more so than something like AI startup #491000


I see your point, but I always got the impression that Paint.NET was a barebones image/photo editor for power users. Typically something full featured like Photoshop, Krita, or Illustrator would be more in the art software camp, IMHO.

A basic AM/FM radio does receive radio, but you wouldn’t lump it in with a Yaesu or even a Baofeng.

I’m just surprised to see so many strong opinions from people who probably don’t even use the software (although they pretend they do).


no, the fragment shows kling is completely blinded by his own privileges as a cisgender white guy and completely missing the point of diversity by instead making it all about himself and other cisgender white dudes

its unfortunately very common for privileged people to not realize how good they have it compared to people with less privileges. you have to live it to really know what its like

diversity efforts being seen as "discrimination against [privileged group]" is exactly how we don't fix the problem


In the 2020's, this is just another genre of petty hatred. As time goes on, one "type" of person's historical privilege becomes less and less valid as a reason to reduce them in any way, as compared to anybody else (giving the benefit of the doubt that it ever was "valid"). Similarly, "diversity efforts" are laudable in theory, but in practice they are frequently just discrimination in the opposite direction of what is typical.


None of this has anything to do with "white replacement", or being "blind to privilege". You're stretching a totally reasonable viewpoint into "evil racism" because you don't agree with his point of view.

So you try to slander and discredit anyone who thinks differently than you. Same playbook every time, so boring.

You might think differently, but I think hiring someone based on their race to meet arbitrary racial quotas is insulting.


Once people start saying things like “his own privileges as a cisgender white guy”, that’s a red flag in my book—someone who writes like that, in my experience, doesn’t have real empathy for others, and uses “privilege” as an excuse to not have empathy or caring towards someone because of their gender or the color of their skin.


i also prefer bandcamp but since nobody has mentioned it yet, there is also beatport


why not go even further?

store the source minified without any extraneous whitespace and let the editor display a properly indented view in your preferred style...


An AST-based code editor. That would be neat.


i couldn't find any information about it but i still see an AGENTS.md file at the root of the source tree so: how much AI was used in the making of this? how was it used?


Since early 2026 it's mixed AI and handwritten. Before that it was mostly written by hand. Quite a lot of the code goes back to 2018 even. Typically, I do back and forth with Claude Code agents on new features and bug fixes, reading and editing code along with it.


shouldn't we focus on human accessibility first? it also makes things more "machine accessible" as a byproduct, but at least humans remain the main focus

also, openshot is foss. can't you just give the source code to your clanker and let it mod itself in the app?


> shouldn't we focus on human accessibility first?

This is the big question for designers, how much of the future of software will be human-oriented UIs vs a human typing into a chat window (or as a temporary bridge, telling an agent to operate existing GUIs).

For now I believe agent-driven software is still pretty niche, something for highly technical users, but that will change as it mainstreams. Early adopters demand early adopter software features.


a chat window is actually HORRIBLE for many tasks. i really strongly hope this isn't what the future of software looks like

there is just no way a chat interface could replace a non-linear video editor gui


> a chat window is actually HORRIBLE for many tasks. i really strongly hope this isn't what the future of software looks like

I strongly concur - I don't want to "tell" the app to level the audio between several clips only to have it level everything to 0 and then take five minutes to undo etc


Everyone always views it through the current UX when I say stuff like this. The way I see it is we're in the DOS/UNIX era of LLMs where you're just staring at an empty text input box, it's slow, breaks often, GUI integrations are non-existent or primitive, etc.


It's not a replacement for sure. There's no way it could be a full replacement for visual UIs.


I would assume it would be for driving via agentic means, more AI video slop.


Yes we should. Still UI is for telling the software to do meaningful work. Which means that every well designed UI software will have ready to expose api lurking just benath the surface.


Of course the human UI should be first. Did anyone say anything different?


what's an "LLM"? ;3


if 99 poor effort/quality projects have a readme that reads in a particular style, then you expect the 100th project with a readme in the same style to also be of poor effort/quality

statistically, it only makes sense for your expectations to immediately be low when you encounter this writing style because there are just so much slop out there

the author is free to keep that writing style but they should be aware that this will—at least on the surface level—make their project look exactly like the metric ton of slop we see posted everyday everywhere


On the other hand I know how to tell if the underlying idea is good, and if it is I can decide to put up with reading through LLM outputs.


That's like saying a large percentage of X-colored people are criminals, therefore when we see an X-colored person it's reasonable to expect him to be criminal. As a society we have decided that heuristics like this, and prejudicing individuals based on statistics of the group, are not acceptable.

Also, what do we call it when people don't look beyond the writing style, such as at the code, or at the rigorousness of the tests, or at other substances beyond writing style? Slop assessment?


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

Search: