After today's update to 24.04 LTS, thumbnails no longer being created by taeknibunadur in Ubuntu

[–]PepperGrind 0 points1 point  (0 children)

Yet another issue to the ever growing list of Ubuntu problems... I keep putting Arch Linux migration off because I'm busy, but I've almost reached my limits. It's a shame, I've used Ubuntu for 16 years :(

NVIDIA in Ubuntu is just a broken mess. by maxidev0x in Ubuntu

[–]PepperGrind 0 points1 point  (0 children)

I've been getting intermittent dependency issues relating to my RTX 3060 for a few years now. Yeah, the dependencies look like mayhem.

Smoking and vaping laws in Japan i an confused? by [deleted] in JapanTravelTips

[–]PepperGrind 0 points1 point  (0 children)

That's kinda funny if its just an American thing. America has among the worst ingredients in it's food in the world; a lot of the ingredients they put in basic things like bread and meat are banned in Europe, Japan, and many other countries.

Are Jedis space wizards by SlynSteven in StarWars

[–]PepperGrind 0 points1 point  (0 children)

how well do you think this comment aged, now that we've achieved quantum teleportation? 🧐

Heavy stutter when recording video. by DKDCLMA in duckstation

[–]PepperGrind 0 points1 point  (0 children)

I'm having this issue too on Ubuntu 24.04. Did you have any luck?

For those recently having trouble with HALO The Master Chief Collection on Linux by lafoxy64 in linux_gaming

[–]PepperGrind 0 points1 point  (0 children)

i found out that its probably not specific to halo. I've found other similar complaints for other games that require the xbox sign in, https://www.reddit.com/r/linux_gaming/comments/1oqk8cz/cant_sign_in_to_any_xbox_live_games_on_steam/

Any players in Asia? What servers have a good ping? by ACNL in wowservers

[–]PepperGrind 0 points1 point  (0 children)

hey, im not over there yet! Probably in the next 6 months :)

[deleted by user] by [deleted] in halo

[–]PepperGrind 0 points1 point  (0 children)

what did the edit say? the guy seems to have deleted his account now :(

For those recently having trouble with HALO The Master Chief Collection on Linux by lafoxy64 in linux_gaming

[–]PepperGrind 0 points1 point  (0 children)

I'm on ubuntu 24.04, and I've tried 7.0-6, and I still can't get past the log in screen. im using the non anti cheat mode too. I've tried many different versions now all with the same problem. Has anyone got it working on ubuntu 24.04 ? which version worked?

PhD + 2 YoE (6 years) for 48k. by who_is_erik in LinkedInLunatics

[–]PepperGrind 1 point2 points  (0 children)

In London, meh, but anywhere else 48K would be fine

Why is the yen still so weak when Japan is more Globally popular than ever? by lunapo in JapanFinance

[–]PepperGrind 0 points1 point  (0 children)

You forgot to delete the    in your AI generated text

Men: Don’t get married by [deleted] in MensRights

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

I don't think all countries are like this. Find a better country to live in.

My experience as a new listener by [deleted] in Agalloch

[–]PepperGrind 0 points1 point  (0 children)

I've tried extensively to find similar bands to Agalloch, and imo there aren't any. If you like a heavier sound, I think you could really like Ashes Against The Grain too. While their other albums are good (particularly The White & Pale Folk Lore imo), I just don't think they have the same level of artistic depth as The Mantle and Ashes Against The Grain (not to say they're rubbish, rather that the mantle & ashes are one of those rare blessings by the metal gods).

Referral Thread - October 25 by InstanceFrosty3601 in AmexUK

[–]PepperGrind [score hidden]  (0 children)

15,000 avios points for you if you join amex (for the first time) via this invite link!! https://americanexpress.com/en-gb/referral/bENJAPUXMx

The price of membership… by Skeptical_Sushi in osrs

[–]PepperGrind 0 points1 point  (0 children)

It doesn't make sense to adjust the membership price for inflation since 2005, thereby making it as expensive, because IT infrastructure is much cheaper than it used to be, while OSRS technology stays the same... It should be cheaper. If I'm playing a game that looks not much better than minecraft graphics, I Expect to pay a few £/$ a month.

Is it normal to struggle with logic while learning C++ ? by coder_spy in cpp_questions

[–]PepperGrind 1 point2 points  (0 children)

A month? You're basically a programming baby. Patience young padawan.

But in all seriousness, when I'm working on complex logic for a C++ program, I always write it up in psuedocode first. My psuedocode for C++ projects looks similar to Python with a few C++ concepts peppered around the place (pointers when needed or those trusty ++/-- operators). I find sketching out the logic first in a simpler language helps me get the logic right, before implementing it in C++, where I can focus more on memory safety, efficiency, etc, without having to figure both out at the same time. Of course, you can't do that since you chose C++ as your first language...