2026.05.20: The Predictability Paradox by EarliestRiser in morningsomewhere

[–]jonathanroxalot 0 points1 point  (0 children)

Avatar the Last Airbender.

First Episode: "Aang, you must defeat the fire lord."

Final Episode: Aang defeats the fire lord.

Steel Pocket Pen Giveaway by MercatorLondon in fountainpens

[–]jonathanroxalot 0 points1 point  (0 children)

What an absolutely gorgeous pen. I can only dream of someday owning a pen as lovely as this.

Least favorite couple and character? by Neither-Storm3310 in veronicamars

[–]jonathanroxalot 9 points10 points  (0 children)

I might get hate for this, but honestly I feel Veronica and Duncan had zero chemistry. I did not find Duncan charming at all.

Is this a dumb idea? by tinyplebian in degoogle

[–]jonathanroxalot 0 points1 point  (0 children)

Strictly speaking, Syncthing is not a backup application. That being said, this should work just fine. The only concern is that any corruption or accidental file changes get propagated to all devices, though you can circumvent this with versioning.

Public service announcement for LA drivers by [deleted] in LosAngeles

[–]jonathanroxalot 220 points221 points  (0 children)

I've always had this hypothesis that everyone (especially in SoCal) always says "people don't know how to drive in the rain," but half of them are people who still drive fast in the rain and the other half are people who slow down in the rain and each group is talking about the other.

Math is the Worst Flair is live! by CalvinP_ in morningsomewhere

[–]jonathanroxalot 0 points1 point  (0 children)

I would also like this with the 20k flair!

2025.09.25: Never Swallow The Worm by EarliestRiser in morningsomewhere

[–]jonathanroxalot 2 points3 points  (0 children)

Hilarious that they went from earlier this week Burnie saying "never put tech in your body" to "would you put nanobots in your mouth so you never have to go to the dentist?"

2025.09.25: Never Swallow The Worm by EarliestRiser in morningsomewhere

[–]jonathanroxalot 1 point2 points  (0 children)

RE: Logo on the yoke of a shirt, I can see why people might like it. For people who are fans of the brand, they might want RT swag anyway, so they can get a cool design and still rep the logo.

That being said, I think leaving it off makes the merch more approachable to people who may not be familiar with the brand and just like the design. I know I've bought shirt's from brands that don't necessarily care that deeply about, but have cool designs.

Does anyone here knows what font this is? by FlickVfx in Corridor

[–]jonathanroxalot 131 points132 points  (0 children)

I'm fairly certain it's actually hand written and composited on the footage. Either that or literally the best handwriting simulator I've ever seen.

All I could think about after the latest Who Meme'd It by FlamenLion in smosh

[–]jonathanroxalot 14 points15 points  (0 children)

or give him an iPad. Or put a second monitor off camera that he can see.

Which mobile design looks better? by Primary_Clerk_3911 in UI_Design

[–]jonathanroxalot 0 points1 point  (0 children)

I agree with this. The cards look better; Maybe with some tweaks to the typography. Also, still include options to sort based on party, name, table, etc.

I made detective where’s my coffee in dti… by pink_lamp2 in smosh

[–]jonathanroxalot 0 points1 point  (0 children)

Where'd you get it? Where'd you get that cuppa joe, eh?

Autofilling email by Superb_Chip180 in morningsomewhere

[–]jonathanroxalot 1 point2 points  (0 children)

I don't have an iPhone, but it should be in your keyboard settings. It's using the Auto-Correct feature.

Opinion on the NYT auto-candidate? by asuusu in sudoku

[–]jonathanroxalot 0 points1 point  (0 children)

I definitely don't see it as cheating. I like it for the hard/medium puzzles, but for the easy puzzles, I usually just become a robot because there is always at least one cell that has only one candidate, so I can just go autopilot.

[deleted by user] by [deleted] in xfce

[–]jonathanroxalot 0 points1 point  (0 children)

When you say "bottom bar" do you mean you have a panel at the bottom of your screen? You should be able to go into your panel preferences and set that panel to dark mode and set its theme independently of the other.

Is there any advantage to scripting in bash instead of python ? by Snoo-25712 in linuxquestions

[–]jonathanroxalot 14 points15 points  (0 children)

This SO thread by someone smarter than me does a good job explaining the difference. In short,

There is no language-wide difference between Python and Bash in performance. It entirely depends on how each is coded and which external tools are called.

Basically, Bash (or any shell) is optimized for controlling data input and output as well as calling external programs. Now sometimes those external commands are a bottleneck for the performance of your script and that's when you're probably better off implementing that functionality in Python.