HN user

lynx97

795 karma
Posts8
Comments522
View on HN

profoundly destabilizing to his environment

This is such a dark and dehumanizing take. I am disabled. I definitely had "destabilizing" effects on my environment when I grew up. These days, am as independant as possible. People from your train of thought would have aborted me. Your train of thought leads to what nazi germany already did. Yeah, an extreme example, I know, but following your attitude inevitably leads to very dehumanizing and egotistical takes. In fact, if you consider a family member a burden, please leave, you're the problem, not them.

Would you be willing to share more details, instead of this rather vague claim? I've had three at least 2 hour long operations last year. I kind of wondered if I'd notice any aftereffects, but apparently didn't. Even waking up was pretty uneventful, consciousness just coming back like a light bulb being turned on again.

So either I am an exception, or your "everyone I know" needs qualification. In any case, I'd be very interested in what aftereffects you noticed, maybe that helps me reflect.

I stopped saying No. If management wants to push stupid decisions, so be it. They are getting payed for strategic decisions. If their strategy is bullshit, so be it. If they tank the company, so be it. I am not getting payed for that kind of work. And the more bullshit I hear from upper levels, the less I identify with my company.

I had gpt-5.5 translate microgpt.py into a C++ version recently. I had to steer/convince it to use data oriented design to avoid excessive pointer chasing, but the end result was as expected: Now 500 LOC instead of 199, but speedup was 100x. That speedup is definitely worth doubling the line count. And frankly, modern C++ can read very nicely, even compared to Python.

Ahh, are we there yet? Has non-deterministic computer use eroded your mind so much that you are starting to question the binary system? You know, the insight that computers are something that flips switches on and off is rather old, and I have heard it uttered (although slightly humorously) several times already, nobody ever raising any eyebrow hearing it.

When you're young you're naïve, when you're old you're cursed with a false nostalgia

How convenient! So you can dismiss any comment on the basis of them being either to young or to old. I think you're overestimating the stupidity of others to fall for your simpleton attempt of manipulating people.

"If you are not supporting us, you are the enemy" isn't a valid take. But it shows nicely the sentiment which turns me off regarding politics in tech. You can't even stay neutral, because someone will force you to align with their values. "My way or the highway" pretty much.

That is quite a condescending take. I get that you are extrapolating from my post that I might be conservative. That needs more nuance, but I get it. But to assume I always was, and used to be ignorant, is too far reaching. In fact, I used to be a lot more progressive in the past.

Well, yes, but no. Hacker Community projects increasingly force political agendas on participants. It gets harder and harder to just do tech stuff without having to align with some cabal.

anti-capitalism, while a bit strange a lable, is something I can sympathize with. But once we are talking anarchism and (intersectional) feminism in a computing context, I am definitely out. I miss the time when computing was a lot less political. It was nice hacking on projects without having to identify with something totally unrelated, or being forced to support idiologies just to be a part of it.

from permacomputing.net:

... an anti-capitalist political project. ... anarchism ... intersectional feminism ...

No, thanks. I thought it was a tech project. Apparently not.

Democracy fans would say: "All you have to do is to thank them when the next vote comes up."

P.S.: I can't even imagine how much of a distraction ads in public spaces must be. I am blind. While that is clearly a disability, whenever I read things like what you just posted, I am reminded how blessed I am. Maybe there will be a time when 100% blindness is actually an advantage?

If thats true, I am sure some C-suite manager knows this already. Assuming management knows what they do, after all, they're getting payed for this. The time where engineer are trying to educate people above them should be over. Management gets payed for the big decisions. If they tank the company, so be it. I no longer care.

Its more or less the same with every screen reader and browser I know. If there was a simple fix for this inherent issue, I wouldn't have to talk about it. You might get a bit of stuff out of the way if you configure less verbosity of the screen reader, but it doesn't really help with slow interactions. Problems include:

* Virtual buffer: In most systems, the DOM is rendered to a "virtual buffer" and the screen reader lets you navigate that, because cursor (caret) support was on the map for accessibility, but was never really sufficiently implemented on the browser side. So screen readers had to solve it in a separate step.

* Using the keyboard to do screen reading and navigation on a site conflicts with keyboard shortcuts from that site. So most screen reader have two modes: You switch between entering text in a field and navigating/reading the site. Its basically like vi insert mode, but less simple.

Those are the major issues from my POV. The rest of the slowness likely comes from having to go through the accessibility API of your OS.

Well, "better" is relative. Web UIs definitely have the advantage you are mentioning. However, they are also much slower to use, so it is a tradeoff.

I am blind and do rely on accessiblity. But I would choose a TUI over a Web UI every day simply because the web is slow as hell. Feels like running away from a "monster" in a dream. You have rich details, but you are being drowned in unnecessary verbosity and an inherently slow stack of tools working together.

The web might be accessible, but it is barely useable in practice.