HackerLangs
TopNewTrendsCommentsPastAskShowJobs

alextingle

no profile record

comments

alextingle
·11 dni temu·discuss
[dead]
alextingle
·11 dni temu·discuss
Racial discrimination is illegal where I live, and I believe that's a good thing. Political parties that advocate racism are simply antithetical to the whole concept of liberal democracy.
alextingle
·11 dni temu·discuss
If the local baker is a racist, then I'll buy my bread elsewhere. It's pretty simple.
alextingle
·11 dni temu·discuss
I down voted you because you accused the GP of bad faith, rather than genuinely engaging with their point.

Don't dig yourself further into that hole by slinging "bad faith" around willy nilly.
alextingle
·15 dni temu·discuss
How is "LGBT" left wing??

Furthermore, I'm not in the US, but "US politics" doesn't seem to have much left wing about it either.
alextingle
·20 dni temu·discuss
> how are all the people who insult Trump on social media still alive or not locked up

I think you'll find that some of them actually are locked up, and a few of them are dead.
alextingle
·20 dni temu·discuss
> in The Netherlands it was €210 for a 40 minute ride

That's much more than taxis cost in the UK, and pretty expensive even for the Netherlands. You have great cycling infrastructure, and public transport though.

Renting a car is an affordable alternative to ownership, if you need to go to occasional concerts or birthday parties, and public transport happens to be inconvenient for your specific destination. I did that for years - the rental company would deliver and collect from my workplace, so it's super-easy.

> If your children play football you really need a car.

A friend of mine used to ferry his son 1000s of km per year to ice-hockey matches around the country, so I know what you mean. I don't understand it though - if the whole team is travelling, why don't they just rent a bus? Personally, I don't think it's healthy for a child's hobby to consume so much of the parents' time - of course, your choice.
alextingle
·20 dni temu·discuss
What??

On what planet is getting your groceries on a bike "more privileged" than driving?
alextingle
·20 dni temu·discuss
I'd say that the vast majority of people who live in a city both work, and socialise almost exclusively there.
alextingle
·22 dni temu·discuss
If I don't care about secure boot today, but might in the future, is this something I need to care about right now?
alextingle
·23 dni temu·discuss
A landlord is doing exactly the same thing as an investor. They are tying up their capital in exchange for an income, and the possibility of a capital gain.
alextingle
·30 dni temu·discuss
I use Docusign on Firefox, no problem.
alextingle
·30 dni temu·discuss
It was Yeltsin.
alextingle
·3 miesiące temu·discuss
They can't find anyone else to headline, it has to be a literal, self-described Nazi?
alextingle
·4 miesiące temu·discuss
OK Grok, calm down.
alextingle
·4 miesiące temu·discuss
It's way better than the US.
alextingle
·4 miesiące temu·discuss
No. Apple's phones started out with only web apps. They only add the walled garden later.
alextingle
·4 miesiące temu·discuss
It couple physically disable camera + mic + whatever, and ALSO have hooks that enable you to do extra things with it in software?
alextingle
·5 miesięcy temu·discuss
Why don't you work on improving rsync, rather than reinventing the wheel? Or create something new??

It's fine as a personal project, but as soon as you get other people using your new code, they'll be exposed to all the bugs that you are inevitably creating.

Honestly, this kind of "rewrite something battle tested in my favourite language" project is dangerous and insane.
alextingle
·5 miesięcy temu·discuss
C++ destructors are implicit, while defer is explicit.

You can just look at the code in front of you to see what defer is doing. With destructors, you need to know what type you have (not always easy to tell), then find its destructor, and all the destructors of its parent classes, to work out what's going to happen.

Sure, if the situation arises frequently, it's nice to be able to design a type that "just works" in C++. But if you need to clean up reliably in just this one place, C++ destructors are a very clunky solution.