ourob

joined 1 year ago
[–] [email protected] 1 points 6 months ago (3 children)

This entire site feels like it was written by ChatGPT or some other LLM.

[–] [email protected] 26 points 6 months ago

More specifically, it’s a lobbying group.

[–] [email protected] 46 points 6 months ago* (last edited 6 months ago)

Most of my recent experience with office is on corporate laptops loaded down with enterprise management software, antivirus, etc, so I relate to this meme.

After being on Linux desktops for both work and home for the last few years, it’s jarring how sluggish corporate windows laptops can be, even with new and fast hardware.

[–] [email protected] 9 points 6 months ago* (last edited 6 months ago)

It was eaten too quickly!

The steaks were actually cooked to opposite preferences. The filet was a perfect medium rare, but my wife likes it more medium/medium well. The ribeye was a solid medium, but I like it more medium rare.

The ribeye was delicious, though, and my wife was happy, so no complaints.

[–] [email protected] 26 points 6 months ago (1 children)

GPL can be used for commercial purposes, but it requires all software derived from it to also be open source and GPL compatible. So no one whose commercial business relies on selling software will use GPL because their customers can copy and distribute the code.

Neither Safari nor Chrome’s rendering engine is GPL. Safari’s engine is LGPL, which means the binary library can be linked into a closed source program, but modifications to the library’s code must remain open.

Chromium is BSD, which doesn’t even require modifications to remain open. So I can take chromium’s source, change it however I want for my own browser, and never distribute that code.

If Safari’s and Chrome’s engines were GPL, Safari and Chrome would be forced to be open source, and they very much are not.

[–] [email protected] 3 points 7 months ago (1 children)

While I’m too much of an optimist to say that we’ll never figure out viable fusion power, I do think you’re more right than wrong.

Fission power is essentially us discharging a fusion battery, where the battery was charged by a supernova. We don’t get any free help with fusion, and we have to replicate input energies only seen in nature with stellar amounts of gravitational mass. It is (IMO) an important area of research, but I don’t expect it to power our cities in my lifetime.

[–] [email protected] 1 points 7 months ago

The eyes. Look for non-circular pupils or noticeably different-sized pupils.

[–] [email protected] 6 points 7 months ago

Also, pupils are often not regular circles in AI images. The only one I got wrong was the real picture of the guy wearing dirty glasses.

[–] [email protected] 13 points 7 months ago (13 children)

Source? The Yale link above specifically mentions:

Nationally, women make up 57.3% of bachelor’s degree recipients but only 38.6% of STEM bachelor’s degree recipients.

Anecdotally, I was in a STEM-focused school and major over 20 years ago, and it was overwhelming male-dominated. One of my colleagues graduated less than 10 years ago, and her experience was not dissimilar. She had to deal with quite a bit of sexism too, unfortunately.

[–] [email protected] 7 points 7 months ago

USB plugs are actually a great at-home demonstration of quantum mechanics. The USB plug exists in a quantum superposition of alignment - being simultaneously correctly aligned and not aligned until being inserted. Once insertion is attempted, the wave function collapses to a random alignment.

[–] [email protected] 4 points 7 months ago

There’s no downside to writing the guards afaik, but I’m more of a c programmer. It’s been a while since I did much c++, so I’m not up on modern conventions. But dealing with legacy code adhering to older conventions often comes with the territory with c and c++, so it’s something to keep in mind.

[–] [email protected] 12 points 7 months ago (4 children)

You can generally rely on a header file doing its own check to prevent being included twice. If a header doesn’t do that, it’s either wrong or doing something fucky. It is merely a convention, but it’s so widespread that you really don’t need to worry about it.

You are mixing up some terms, so I want to help clarify. When you #include a header file, you aren’t importing a library. You are telling the compiler to insert the contents of that header file into your source where the #include line is. A library is something different. It is an already-compiled binary file. A library should also come with a header file to tell you what functions and classes are present in the library, but that header isn’t itself the library.

It may seem annoying to have to repeat yourself between headers and source, but it’s honestly something you get used to.

view more: ‹ prev next ›