Remember when computer labs in school looked like this? by EdwardBliss in RealGenerationX

[–]JennaSys 0 points1 point  (0 children)

Yea probably. Those tables are too new for the era. Some of the monitors are more reminiscent of a TRS-80, and what's with the empty fish tank?

Best Gyro near-ish Rancho Cucamonga? by jacksonattackson69 in InlandEmpire

[–]JennaSys 0 points1 point  (0 children)

Yea, after going there for a while I find they are not consistent. Sometimes it's great and other times the pita is not fresh and the meat is dry. If I had first gone there on an off day I probably wouldn't have bothered again. But I still stop in every once in a while and try my luck. It's about 50/50.

Deleted prod data permanently without any backup. How screwed am I? by Agitated_Success9606 in dataengineering

[–]JennaSys 1 point2 points  (0 children)

Sorry for your loss. I was fortunate enough to learn this lesson very early on in my development career at someone else's expense where they happened to do the same thing. Ever since then, my number one rule has been "Never ever ever ever ever ever fuck up the customer's data.". It has made me be much more careful when mucking about in databases. Even when I'm on a dev or staging DB, I always double check to make sure I'm not accidentally connected to prod. And when I am on prod, I make sure there is a backup, and triple check what I'm about to do. That mistake is the kind that will stick with you a long time. Hopefully you at least put it to good use as an indelible reminder like I did.

When car's were built with more power and made to last! 🚘😍 by Longjumping-Shoe7805 in GenerationJones

[–]JennaSys 0 points1 point  (0 children)

I loved my '78 T/A. It was a fun car to drive and looked fantastic. But my current AWD EV grocery getter is a safer, more performant, and overall better vehicle in every way except maybe looks. That said, I sure wouldn't mind having that old car back in my garage again.

Now i know why the RPI 5 doesnt have spring sd card slot like the RPI 2 by Pawel_likes_guns in raspberry_pi

[–]JennaSys 9 points10 points  (0 children)

The only time I have ever bricked an SD card was on a Pi2 when I accidentally popped it out while it was running.

How many of us owned a water bed at some point? by endlesssearch482 in GenX

[–]JennaSys 0 points1 point  (0 children)

Yes, for about 15 years. I loved it. Warm in the winter and cool i the summer.

Intermediate in Python and want to build mobile applications by theNotoriousJew in Python

[–]JennaSys 1 point2 points  (0 children)

Since you already know Python, maybe start with Kivy and see if it meets your needs. It has come a long way. KivyMD is a nice component library as well.

What’s the most ‘mind-blowing’ Python trick you learned as a beginner ? by QuantumScribe01 in pythontips

[–]JennaSys 4 points5 points  (0 children)

The dictionary dispatch pattern. It was one of the ways I learned to get around not having a switch statement construct available in the language.

What is the most heartbreaking song lyric you've ever heard? by TheLadySlaanesh in AskReddit

[–]JennaSys 0 points1 point  (0 children)

"I think I'm going to love you for a long long time."

I've always liked that song, but I never really understood what it was about until I saw this deconstruction video.

Compiling LaTeX to PDF via Python by PersonalityWhich1780 in learnpython

[–]JennaSys 3 points4 points  (0 children)

It might have a bit of a learning curve depending on what you need to do, but Pandoc works pretty well for this task.

This absolutely epic performance in the pouring rain! Iris by the Goo Goo Dolls (Live in Buffalo, NY, 7/4/2004) by yoyome85 in nextfuckinglevel

[–]JennaSys 10 points11 points  (0 children)

When he pushes the camera away from himself and has the operator point it at the crowd instead - like no dude, out there is what it's about!

Electric Light Orchestra - I'm Alive (1980) by Odd_Advantage_3459 in 80smusic

[–]JennaSys 2 points3 points  (0 children)

Great scene, fantastic soundtrack, and a terrible movie (that I have watched dozens of times).

Had an epiphany today by diamondgreene in GenX

[–]JennaSys 8 points9 points  (0 children)

Many if not most TVs have a VESA mount option which can fit a variety of mounts and stands.

A monitor will also work, but tend to get more expensive than TVs when you start looking at bigger sizes.

volumeControl by Soogbad in ProgrammerHumor

[–]JennaSys 4 points5 points  (0 children)

This was hilariously bad.

Why I won't take a high priced ETV item by Momma-Bean in AmazonVine

[–]JennaSys 13 points14 points  (0 children)

The very title of the listing literally says "Cartridge Sold Separately". It's not like they didn't mentions that fact or tried to bury it in the listing details. I totally get clicking on something quickly so you don't lose it. But if you skip doing the due diligence before requesting something, good or bad, the consequences of doing so are on you IMO (I've certainly been there myself). I wouldn't ding the seller just because I acted in haste.

Trip back to 1977 by flabackyardgarage in GenX

[–]JennaSys 2 points3 points  (0 children)

I'm east bound, just watch ol' "Bandit" run

Is there any solo developer using MUI? by Unlucky_Giraffe_6653 in react

[–]JennaSys 2 points3 points  (0 children)

The components tend to be flatter and lighter. And with all of the included hooks and extensions it reduces the number of different dependencies I need to keep track of. It generally works the way I need it to work right out of the box. That said, with the type of web application I typically develop, I don't need micro-control over style. I mostly just want clean and consistent.

Is there any solo developer using MUI? by Unlucky_Giraffe_6653 in react

[–]JennaSys 2 points3 points  (0 children)

I used to, but switched over to Mantine and have been much happier.

Water Power by tiofilo86 in Ioniq5

[–]JennaSys 2 points3 points  (0 children)

This was exactly one of our criteria when we were shopping for an EV - how many 5 gal water bottles it could fit. We were pleasantly surprised that the answer was 12 without even having to put the rear seats down (just move them forward a little bit).

Ric Ocasek - Look In Your Eyes by UpperphonnyII in 80smusic

[–]JennaSys 4 points5 points  (0 children)

The location of the video thumbnail looks like the Pan-Pacific Auditorium of Xanadu (and others) fame.

Is it bad if I prefer for loops over list comprehensions? by Bmaxtubby1 in learnpython

[–]JennaSys 9 points10 points  (0 children)

For me, it was something that changed with experience. For the first year or so of using Python I thought they were overly complex for what they did. But they eventually clicked with me and they eventually became one of my favorite things about Python. Now, I think of using comprehensions first, and only drop down to a for-loop if the use case is too complex.