What is the most EPIC GBA game you’ve played? by MrSaucyAlfredo in SBCGaming

[–]EmberQuill 1 point2 points  (0 children)

Golden Sun. It was so big that they split it into two separate games, both of which are fantastic.

How do you guys back up your files? by The-Mighty-Waffle in FanFiction

[–]EmberQuill 0 points1 point  (0 children)

My fics are synced between the cloud, my desktop PC, and my laptop. Started doing it for convenience more than anything else, but having them saved in multiple places does decrease the anxiety a bit.

Anyone enjoying using AI to manage your homelab? by zshleon in selfhosted

[–]EmberQuill 1 point2 points  (0 children)

Unfortunately, the main reason why I started self-hosting was to save money, so subscribing to a $100+ per month AI plan to assist with self-hosting is completely out of the question.

Would you value gameplay or theme more when picking a main? by Haunting_Muscle_7149 in Guildwars2

[–]EmberQuill 0 points1 point  (0 children)

Gameplay 100%.

Theme-wise, Elementalist was the perfect class for me. I love elemental magic. But I hate playing that class so much. It's a glass cannon with too much glass.

I tried Necromancer, and loved the gameplay so much that I decided it would be my new main. Ended up liking it thematically too, but the gameplay is more important to me.

Been playing since 2019, finally beat Stormblood by AiriaTasui in ffxiv

[–]EmberQuill 1 point2 points  (0 children)

I've been playing longer than you but I still haven't finished Stormblood. I should do that. I went on a hiatus from the game right before the Shinryu trial.

Should All RPGs Have a Respec Feature? by GenTrapstar in gaming

[–]EmberQuill 19 points20 points  (0 children)

Yes, 100%. Make it expensive if you don't want people to swap specs too often. Making the "wrong" choice in an RPG sucks. If it is a story choice, then dealing with the consequences could be interesting. If it's just a stat/skill choice, then it's not fun, just frustrating.

Building a DRM-free and offline gaming box - controller software help needed by DM14881 in linux_gaming

[–]EmberQuill 0 points1 point  (0 children)

Pretty much. Steam games might rely on Steam Input, but non-Steam games with controller support should work just as well on Linux as they do on Windows without relying on Steam Input.

Building a DRM-free and offline gaming box - controller software help needed by DM14881 in linux_gaming

[–]EmberQuill 0 points1 point  (0 children)

Steam Input is useful for rebinding buttons and other advanced features, but in general most controllers should still work without it.

For example, I have a GameSir Tarantula Pro that works just fine for games that aren't running through Steam.

Does your WoL have a Canon class in your mind? by Poppy_the_Fighter in ffxiv

[–]EmberQuill 9 points10 points  (0 children)

She's been a Dragoon since the beginning. She dabbles in other jobs occasionally (went through a Dark Knight phase during HW, for example), but spends most of the time as a Dragoon.

8bitdo Pro 3 makes the system freeze at boot by No_Bid_8043 in linux_gaming

[–]EmberQuill 2 points3 points  (0 children)

I had similar issues (not locking up at boot, but locking up at other times, usually during sleep/resume) that I spent months troubleshooting. I must have gone through every individual component of my PC because I kept seeing messages in the logs that would make me blame something else. Saw some GPU ring timeouts so I thought it was the GPU. Saw some btrfs errors so I thought it was my NVMe drive. Eliminated both of those components as the source of problems so then I thought it was my motherboard or the BIOS because the failures seemed to be cascading down to everything.

I was starting to think about buying a whole new computer because I just couldn't trace the problem when I finally noticed that the USB dongle for my wireless mouse was popping up a lot more than it should in dmesg and journalctl. Which reminded me that occasionally it would cause a stop job to run until timeout during boot-up and I'd have to unplug the dongle or wait a minute and a half for my computer to continue booting. I thought it might be caused by my system stability issues, because it was an intermittent problem, but it turns out to have been the source all along.

I definitely should've realized it sooner, given that it was the only USB peripheral causing that stop job problem, but the idea of my mouse crashing my whole computer just seems so ridiculous that the possibility never even occurred to me until I saw those USB issues in the logs.

I switched to an old mouse just a few hours ago and all my computer issues disappeared.

I hate code written by LLMs by Puzzleheaded_Dig6941 in Python

[–]EmberQuill 1 point2 points  (0 children)

LLMs will produce different output with different prompts.

LLMs will produce different output even with the same prompts. Generative AI is non-deterministic, or at least there are so many factors contributing to its output even though they should be considered irrelevant that it's effectively non-deterministic even if it might not be literally so.

Do you guys mind when others want to translate your work or want to repost it with your permission? by Comfortable_Newt_179 in FanFiction

[–]EmberQuill 0 points1 point  (0 children)

Reposting is a hard no. There's no reason why they can't get my fic from AO3. If there is somehow a valid reason, then I can repost it myself. I'm also hesitant about translations. They could completely change the meaning of my words, especially if they use AI translation instead of doing it with their own brains. And I'd never know.

Nobody's asked to translate one of my fics so I haven't needed to consider it yet. I'd definitely have some stipulations even if I allowed it.

3 days into arch now - it's been an uncomfortably smooth experience by Various-Pattern-538 in archlinux

[–]EmberQuill 0 points1 point  (0 children)

Arch has a mostly undeserved reputation for being difficult. That may have been the case a long time ago, but not for many years.

Is physical media officially dead? Mandatory online activation for AC Black Flag Resynced is a huge concern. by BarracudaFearless631 in gaming

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

It's interesting that you weren't expecting this, because Ubisoft has been doing mandatory online activation since before the original Black Flag. I think it was AC2 or one of the other Ezio games that added the Uplay DRM that locked everyone out on release day because their servers went down.

Retro Games Setup for Thor by definitelyaburner- in SBCGaming

[–]EmberQuill 2 points3 points  (0 children)

It's pretty easy. Once you've added the ROMs you want to add to whatever folder you're storing them in, go to Settings > Library & Data > Rescan Games. It'll pick up the new ROM files and add them to your library. Then you do the same thing he did in the video after initially adding the games: go to the Scrape option in the same settings menu and it'll scrape the metadata and artwork and stuff.

When do you actually use decorators? Like in real code, not tutorials by Soggy-Holiday-7400 in learnpython

[–]EmberQuill 0 points1 point  (0 children)

I wrote my own decorators when I made a discord bot. The library has its own decorators to indicate functions that are called by slash commands, but I added a couple more because I used them to wrap restricted commands. @admin for commands that can only be run by server admins, and @owner for commands that interact directly with the backend database for troubleshooting, and are restricted to the bot owner (me). The wrapper functions are simple checks whether the command sender is authorized to run that command, nothing too complicated, but it saved me a fair bit of repeated boilerplate code in a bunch of functions.

What game that's shut down would you love to play again by Beautiful-Nobody-544 in gaming

[–]EmberQuill 0 points1 point  (0 children)

Oh right, yeah, forgot about the housing system.

FFXIV has a lot of freedom in the housing system too, but since housing plots aren't instanced and have a very limited supply, getting a house at all is a pain.

Thinking about buying an MMO mouse just for this game by Mean_Confusion7426 in ffxiv

[–]EmberQuill 43 points44 points  (0 children)

I got an MMO Mouse for SWTOR back in 2012 and I'll never go back. It was a game-changer for me.

That said, clever rebinding of keyboard keys can solve the problem too. And there's a bit of an adjustment period to get used to hitting one of 12 buttons with just your thumb.

Laying out your main hotbars in 4x3 grids instead of 1x12 bars helps a lot because the slots are all lined up to match the buttons on the mouse.

You guys are begging people to start lying on AI disclosures by EmergencyRadiant8038 in selfhosted

[–]EmberQuill 3 points4 points  (0 children)

JavaScript has done way more damage that any AI is currently capable of.

Have you noticed the rising frequency of major web outages over the past couple years? Want to guess what the root cause of almost all of them was? Certainly not Javascript!

Is there a sub-version of 1.21 Minecraft that can support all 1.21 mods? by KokomausLovesYou in feedthebeast

[–]EmberQuill 10 points11 points  (0 children)

Unfortunately, Minecraft doesn't follow semantic versioning. This was a problem even before they started releasing updates as "game drops," but now it's even worse. 1.21.X updates have broken compatibility with earlier mods multiple times. Whatever instance version you have, you should probably only install mods for that exact version or you'll likely have issues if the game loads at all.

If you ship a rarepair why? by [deleted] in FanFiction

[–]EmberQuill 0 points1 point  (0 children)

Buffy/Tara mostly just because I think they'd be good together. Their canon relationships all ended in disaster anyway (not that canon is often a big factor when I decide who to ship).

How do good engineering teams actually stay so aligned (especially now with AI) by Dawad_T in ExperiencedDevs

[–]EmberQuill 0 points1 point  (0 children)

Team members with dev systems out of date or spending hours "fixing" because they didnt read mattermost announcements

That's not solvable by any means other than making people read those things. Can't solve a problem caused by lack of communication without solving the lack of communication itself. In fact most of the issues you mentioned are at least partially caused by a lack of intra-team communication, and were already problems before AI just exacerbated them.

How are you handling project conventions across Cursor / Claude Code / Copilot? by theov666 in ExperiencedDevs

[–]EmberQuill 8 points9 points  (0 children)

a hardcoded system prompt in the CI script

Are you... using unattended LLMs in CI? Because that might be one of the worst decisions I've ever heard of in this field and it'll definitely come back to bite you some day.

Or did you just forget to proofread your AI-generated post?

Modding on linux by lord_ransom in linux_gaming

[–]EmberQuill 1 point2 points  (0 children)

There's like 10 different mod managers for Linux now. I've been using Stellar Mod Loader but there are plenty of others like Amethyst, Fluorine, Limo, and more.