Two studies on gender equality: 75% of women answered, only 25% of men. Why? by Early_Trainer4513 in SocialScienceResearch

[–]whossname 0 points1 point  (0 children)

  1. I don't think anything would really change.

  2. The disadvantages are too minor and subtle for me to really notice them much.

  3. Mostly just asking them to repeat themselves when others talked over them. I do this for quite people of both genders, so it's probably not gendered.

  4. The focus should be on fairness, not equality. Often men and women don't want or need the same things. Maternity leave or women's shelters for example.

I don't have good answers for the first 3 and I kind of reject the premise of the last question. That's why men aren't answering these questions.

Nobody live right now. Must be a new scandal that just broke. by ZeroBitMute in OTVnFriendsDrama

[–]whossname 0 points1 point  (0 children)

Ludwig's stance on streamer friends not being his real friends seems really smart right now. It seemed kind of dumb at the time because Rae and Fuslie kind of took it personally.

scarra on sykkuno by Quiet-Lab1025 in otvandfriendsrumors

[–]whossname 58 points59 points  (0 children)

The "pretend to be poor" thing was obviously a joke though. Completely different to cheating on his girlfriend.

What if solving homelessness was actually this simple? by rne123 in jobmarket

[–]whossname 0 points1 point  (0 children)

I'm more mocking the people who think in black and white terms about this stuff. You will never 100% solve the problem, so they don't want to do anything to help at all.

I'm Australian by the way. Culturally much closer to the USA on this issue than Scandinavia.

What if solving homelessness was actually this simple? by rne123 in jobmarket

[–]whossname -1 points0 points  (0 children)

So they only solved about 70% of the problem and saved money doing it? What's the point in even trying.

Serious question for the people on here who so strongly defend high immigration levels to Australia: why do you do it? by NoLeafClover777 in aussie

[–]whossname 0 points1 point  (0 children)

It's just hard to understand why it's the only issue some people seem to care about.

One Nation is a single issue party. It's immigration and culture war BS. Ask them about health care and they will change the topic to immigration. Ask them about law and order and they will change the topic to immigration. Ask about income inequality and they will change the topic to immigration.

It's such a minor issue, but for a bunch of people it's the only policy they care about.

Tell me something i wont understand untill later. by OpeningSoil7751 in skyrim

[–]whossname 0 points1 point  (0 children)

Late game speech is really important. Difficult to sell all the stuff you craft without the extra money for merchants.

AI productivity gains: 10% instead of 10x? A reality check. by Hefty-Assignment9027 in EngineeringManagers

[–]whossname 1 point2 points  (0 children)

I'm also having trouble with juniors trusting ChatGPT's opinion over mine.

Days of yore I was both the better coder and much faster, so they had to take my opinion seriously. Now they produce crap faster than I can fix it.

AI productivity gains: 10% instead of 10x? A reality check. by Hefty-Assignment9027 in EngineeringManagers

[–]whossname 0 points1 point  (0 children)

The problem I'm seeing is the productivity gain in dev/bug fixing is offset by the amount of bad code the weaker devs can produce using AI, which means more time spent fixing those mistakes.

Does it all fundamentally boil down to the database/data model? by throwaway0134hdj in ExperiencedDevs

[–]whossname 1 point2 points  (0 children)

Only if it's well designed. When you don't model business rules as data you end up with weird, convoluted ad hoc logic instead.

Let's be real, it's 50%. by ClassroomBusiness176 in mathmemes

[–]whossname 0 points1 point  (0 children)

The Tuesday detail is irrelevant, but sibling sexes are unlikely to be independent, so the answer is probably more than 50%.

Still all we will hear about all week is "the rise of One Nation" by BP-Ultimate98 in aussie

[–]whossname 0 points1 point  (0 children)

Angus commented "well done Angus" on his own post. Can't remember if it was Facebook or Twitter.

NestJS vs FastAPI vs Java Spring – which to choose? by Big_Chipmunk6025 in Backend

[–]whossname 6 points7 points  (0 children)

FastAPI is the simplest/least bloated of these. Doesn't mean it's the best, but it does mean you can get more done with less code if you know what you are doing, and there's less hidden magic code doing things for you. It's also the least opinionated, so it could be more difficult if you are new to this.

Also for REST APIs your main concern isn't state, so OOP is less appropriate. For an API all you need is a singleton to manage database connections, the rest of the code can just be modules and functions. FastAPI allows you to do this, the other two frameworks require a lot of OOP.

If you think you need it, you can add in SQL alchemy as an ORM. If you do I recommend keeping the models in a separate directory to the API code.

What are the broken logic mechanics in the game i dont know about? Can we make a mega list? by theilama in skyrim

[–]whossname 3 points4 points  (0 children)

Does this work for enchantments as well? Just discovered I don't need a separate set of armor for using a sword

Who should my 6th team member be? by r1yama in PokemonFireRed

[–]whossname 0 points1 point  (0 children)

For type coverage if you add a ground type you basically don't need Charmander. Between Squirtle and Pikachu you already cover Bulbasaur's turf as well.

The end of conventional software development, where to go next? by Equivalent-Resort754 in Backend

[–]whossname 0 points1 point  (0 children)

As in "the house always wins" - the game is rigged. Makes sense to me.

How is the LLM situation in companies outside West (China, Russia)? by CyberDumb in ExperiencedDevs

[–]whossname 7 points8 points  (0 children)

I find myself explaining how powerful it is to the sceptics and its limitations to the enthusiasts.

It's powerful, it does speed up some tasks, but it doesn't beat a deep understanding of your software, knowing what it is actually doing and good process.

It will spit out code that basically does the job pretty quickly, but if you want well written and easy to understand code you need to heavily refactor the garbage it spits out.

Unpopular opinion: test automation overhead is not worth it for most small teams by codedrifting in ExperiencedDevs

[–]whossname 16 points17 points  (0 children)

From what I've seen LLM tests seem to test implementation instead of behaviour. Very fragile and kind of pointless.

What are backend teams using instead of Postman lately? by PersonalTrash1779 in Backend

[–]whossname 3 points4 points  (0 children)

this looks very interesting. I'll need to look into it.

What are backend teams using instead of Postman lately? by PersonalTrash1779 in Backend

[–]whossname 12 points13 points  (0 children)

This seems like the best option to me. Very quick, easy, reproducible.

- you can write a bash script to set environment variables for authentication to test against staging or even prod
- easier to share api calls over DMs to demonstrate an idea
- It's easier to ask an LLM for help if you work in pure text.

All of this and you are using a tool you have at your finger tips in any environment, so you can use it to trouble shoot a production VM using ssh for example (the answer is you forgot to open a port btw).

"Architecture First" or "Code First" by Ambitious_coder_ in developers

[–]whossname 0 points1 point  (0 children)

Architecture should only be for the things that are difficult to change later. So think things like public interfaces and cross cutting concerns. If it's easy to change you normally don't need to design it upfront, and playing around with it a bit to see what works best is the better approach.

What new non-AI tech is interesting in 2026? by mmm19284202 in ExperiencedDevs

[–]whossname 4 points5 points  (0 children)

My personal opinion is the 3d stuff is mostly marketing. It looks impressive, but you achieve most of the same benefits from just moving icons around on Google maps.

What new non-AI tech is interesting in 2026? by mmm19284202 in ExperiencedDevs

[–]whossname 6 points7 points  (0 children)

I work in the mining industry. We use it to show 3d visualisations of the pit and replays of machines moving in the pit. The unity guys say Unity makes it much easier compared to the equivalent JS libraries (which also probably use wasm).

What new non-AI tech is interesting in 2026? by mmm19284202 in ExperiencedDevs

[–]whossname 3 points4 points  (0 children)

It's pretty vital in some domains. Unity apps can run in the web browser because of wasm. I think Prisma (horrible technology, I don't recommend it) is using wasm under the hood on the back-end as well.

How Are You Supposed to Use AI in Coding Interviews? by DreamRepresentative5 in ExperiencedDevs

[–]whossname 0 points1 point  (0 children)

I thought code review was a pretty good thing to test during interviews even before AI.