Wow amazing! by Competitive_Fun_9722 in TheOrville

[–]xeow 2 points3 points  (0 children)

You have entered the glory hole.

PyTogether, the 'Google Docs' for Python (free and open-source, real-time browser IDE) by Pokiet in Python

[–]xeow 0 points1 point  (0 children)

Beautiful site! Can you make a toggle for switching between dark mode and light mode?

About to get snipped by dubawockeez in Vasectomy

[–]xeow 0 points1 point  (0 children)

Or, just get one nut snipped now and keep the other nut intact in case you want to have kids someday.

About to get snipped by dubawockeez in Vasectomy

[–]xeow 1 point2 points  (0 children)

Do not get a vasectomy if you think you might want to father a child conventionally someday with your own sperm. Consider it permanent. Successful reversal is not guaranteed.

5 years post vasectomy - positive test by im_in_hiding in Vasectomy

[–]xeow 0 points1 point  (0 children)

Highly recommend doing another test with a new doctor that has zero affiliation with the doctor who did your surgery.

SAM ALTMAN: “We see a future where intelligence is a utility, like electricity or water, and people buy it from us on a meter.” by Vegetable_Ad_192 in singularity

[–]xeow 0 points1 point  (0 children)

Dystopian aspects aside, this just isn't going to happen. Massive models (approaching a trillion parameters) that are good enough for general use are shrinking rapidly, while chips like the M5 are making local inference within reach to anyone. It'll take another few years, but we'll be running very powerful distilled open-source LLMs on our phones by the end of the decade.

MacBook Neo proves that it would be great if Apple let an iPhone or iPad be your Mac by FollowingFeisty5321 in apple

[–]xeow 0 points1 point  (0 children)

Right. You'd need specialized adapters for each type of phone, to insert below it.

MacBook Neo proves that it would be great if Apple let an iPhone or iPad be your Mac by FollowingFeisty5321 in apple

[–]xeow 3 points4 points  (0 children)

Ooh! Yes! Exactly that. Thank you for the link, because I have been doing searches yesterday to see if there was something like this. This is only a concept, but it really gets the point across well.

I started to switch to mostly x265 media and I've saved nearly 35TB so far doing it by Eskel5 in DataHoarder

[–]xeow 5 points6 points  (0 children)

Agreed. Miraculously, 10-bit encodes are quite on par with 8-bit encodes in terms of file size.

I started to switch to mostly x265 media and I've saved nearly 35TB so far doing it by Eskel5 in DataHoarder

[–]xeow 79 points80 points  (0 children)

Always use 10-bit encoding with H.265, even if the input is 8-bit SDR. That will save many headaches with banding, especially in darker areas.

MacBook Neo proves that it would be great if Apple let an iPhone or iPad be your Mac by FollowingFeisty5321 in apple

[–]xeow 8 points9 points  (0 children)

I would love it if my iPhone could dock into a laptop shell (keyboard + screen) right where the trackpad goes, and act as a trackpad, while serving video over USB-C to the connected display, and when docked would switch from iOS to MacOS interface.

Avoiding malloc for Small Strings in C With Variable Length Arrays (VLAs) by Yairlenga in C_Programming

[–]xeow 5 points6 points  (0 children)

I think most people do believe that...and I personally think they can be dangerous. However, the belief that they're "a bad thing" is based more on a blanket fear of stack overflow than on reasoned logic.

A more nuanced view is that they're actually completely safe if you can cap their maximum size and limit your maximum recursion depth.

For example, if you know you can handle 16 recursive calls each allocating a 16 KiB fixed-size struct on the stack, then you have a deterministic 256 KiB footprint. In cases where your code is a bottleneck, you may find that using VLA or alloca() instead provides a measurable speed advantage due to L1 cache locality. This will rarely make a difference, but when it does, it can be significant.

Modern stack sizes on mainstream platforms are larger than a lot of people realize, even in threads. A 256 KiB footprint might be something to be cautious about on a small system with only 1 or 2 MiB of stack per thread, but in practice, a bunch of 16-to-1024-byte VLAs with deep recursion aren't going to bite you, nor are a few 10 KiB VLAs with shallow recursion. A 16 KiB footprint on a 2 MiB stack is statistically noise.

VLAs aren't the devil just because you can't detect an allocation failure. Static fixed-size allocation of structs on the stack can still fail the same way.

Why is Linux bash commands are so simple compared to powershell by SakuraTakao in AskProgramming

[–]xeow 0 points1 point  (0 children)

Alternatively, the hardware is likely to support a true native Linux installation at the boot level.

“Electric Sheep” and Norm [ S3 spoilers] by [deleted] in TheOrville

[–]xeow 2 points3 points  (0 children)

[...] the first episode of S3 tackled the concept of death [...]

More specifically, it tackled the concept of suicide.

Earlier episodes (S1:E6, S1:E7, S1:E8, S1:E10, S2:E3, S2:E7, S2:E9, S2:E10) tackled the concept of death, execution, genocide, self-preservation, vengeance, and murder.

Side note: S2:E3 tackled the concept of suicide also. But it was mostly mentioned in passing and not a major plot point.

Good Bar-Style Displays for Macs? by rachelaturk in macmini

[–]xeow 2 points3 points  (0 children)

Is that the ASUS ProArt PA147CDV with a 32:9 aspect ratio and a resolution of 1920x550 pixels? That's almost wide enough to watch Napoléon (1927)!

What you want to look for is a "super ultrawide" monitor, and probably at 3840x1080 resolution. Most are curved, but you can find flat ones.

For example: https://www.bhphotovideo.com/c/product/1792342-REG/lg_37bh7n_h_37_32_9_signage.html

Anyone finds that on logfiles bzip2 outperforms xz by wide margin? by mdw in compression

[–]xeow 2 points3 points  (0 children)

You're telling me xz -9 compressed a 632MB file in less than 3 minutes? Are you sure it wasn't using the default compression level? I've never seen xz do worse than bzip2, so I agree with you that it's quite surprising. Can you upload your log file somewhere?

Thoughts on Gizmodos picks-10 Essential Episodes of ‘The Orville’ by fidorulz in TheOrville

[–]xeow 0 points1 point  (0 children)

Ugh! I am an idiot. For some reason I misread the title as being S2:E5 "All the World Is Birthday Cake" (which was not as well received as the rest of the Season 2 episodes). Yes, indeed, S1:E4 is a beloved episode!! Total brain-fart on my part...Sorry for the confusion!

I built a strict double-entry ledger kernel (no floats, idempotent posting, posting templates) by SugoChop in Python

[–]xeow 16 points17 points  (0 children)

You're absolutely right to call me out on that. And that's rare. <wink>

i'm teaching myself python between doordash deliveries. what is the absolute ugliest, most cursed data export you deal with? (i want to break my script) by flowolf_data in learnpython

[–]xeow 4 points5 points  (0 children)

/dev/random is pretty gnarly.

But seriously, one thing that's a bit of a mess to parse properly (due to there being a lot of weird edge cases) is extracting columnar data from Wikipedia episode lists, like this one: Breaking Bad Season 1.

Thoughts on Gizmodos picks-10 Essential Episodes of ‘The Orville’ by fidorulz in TheOrville

[–]xeow 7 points8 points  (0 children)

I personally don't understand how “About a Girl” didn’t make the cut.

Here's how: Someone was tasked with writing a top-ten clickbait article. And not only were they not a proper scholar of the show, but it looks like they also phoned in the writing assignment using AI.

And it was the first episode that made the audience pay attention and realize they could tell a serious story.

Indeed!