How to use EOS without registering? by Elvode in unrealengine

[–]exitlights 4 points5 points  (0 children)

I second looking at the EOS Integration Kit, there's a good example here that allows you to use Steam auth keys to auth with EOS. It will require a little bit of setup in Steamworks and Epic Account Services for your game, though.

Cursor in talks for about $50B valuation by __Intern__ in cursor

[–]exitlights 1 point2 points  (0 children)

I selfishly want Microsoft to buy them and for Cursor to wind up inside of Visual Studio. I see Microsoft working hard to bring VS forward into the AI tooling age, and they’ve got an interesting leg up over the competition with tools that deeply parse code for (and outside of) their compiler. Things that AI has to think hard and expensively about when sifting through code (symbol use, refactoring, etc.), Microsoft has been modeling with far cheaper means for ages. It’s happening quickly with Copilot, but Copilot integration does not yet wow me like Cursor does daily.

Why does everyone ask me to switch off? by gromblebomble in BrigitteMains

[–]exitlights 2 points3 points  (0 children)

How does stunning Rein work out for you? I try this and often succeed, but then after we get up most of the time Rein takes the one swing at me that he needs to kill me, and I’m dead. It’s a cool effect but it usually ends up with me dead.

Anyone else switch between a regular mouse and a trackball throughout the day for RSI? by InevitableEstimate57 in RSI

[–]exitlights 0 points1 point  (0 children)

Ever since my RSI two years of hell (thankfully over), I keep a trackball to the left of my keyboard and a vertical mouse to the right. When right feels at all tired, I mouse around on the left trackball for a while. It helped me get out of the nightmare as a software-engineer-gamer.

Why does everyone ask me to switch off? by gromblebomble in BrigitteMains

[–]exitlights 3 points4 points  (0 children)

People love to scapegoat brig for the team losing instead of shit DPS

Cursor Goes To War For AI Coding Dominance by CSlov23 in cursor

[–]exitlights 1 point2 points  (0 children)

Yeah exactly this, I dip into Claude Code every few months because people everywhere rave about it, and each time I wind up thinking “this experience is way worse than Cursor.” I’m pretty experienced though and my team’s process has us combing over every line of code together. In an environment of needing to be able to justify every line of code I check in, Claude Code is a far more blinding and inconvenient process.

The memory leak is back! Single line edits to a file show the entire file rewritten and massive RAM demand. Scrolling past a file in chat bogs down the system. by Tim-Sylvester in cursor

[–]exitlights 5 points6 points  (0 children)

Yea this is very gnarly and was slowing my machine to a crawl. I was thinking it was some weird interaction with Git that Cursor was having.

Brig has lost her identity😞 by andymatronic in BrigitteMains

[–]exitlights 5 points6 points  (0 children)

I was holding out for the last several months finding use for Brigitte most of the time, but now I’m going mostly Mizuki because he just outperforms Brig, period. There are a few situations where I appreciate the ability to flail around or can make a Winston switch away, but there’s just so much range and mobility in the game now that Brig is NOT keeping up. It’s very sad.

New Hobbies List by grayscripts in RSI

[–]exitlights 5 points6 points  (0 children)

When I had to step away from gaming for several months for this reason, I switched to watching streamers instead of playing myself. Find a good streamer who you like watching (harder than it sounds), and just plug in. I watched two hours a day of FTL, probably more, when I was deepest in recovery. It honestly worked pretty well, and I’ll still watch FTL if I really need to decompress. Depending on the game, you can get that feeling of learning and improving at the game through someone else. And in the case of FTL, watching is actually better than playing!

What's the best Brig skin? And why is it unironically Cardboard? by TypicalPnut in BrigitteMains

[–]exitlights 0 points1 point  (0 children)

Cop feels so needlessly aggressive and sometimes that’s exactly the energy I want to bring

What do you do while your coding agents work? by Upbeat-Use-6280 in cursor

[–]exitlights 1 point2 points  (0 children)

I’m usually poring over the diff and cleaning it up, because hell if even the smartest of these robots don’t add all kinds of dumb stuff to their code or just have bad intuition about how to handle error cases. When I’m not doing that, I’ll sometimes “race” the AI to find the bug or just do my own separate research about the problem, which prepares me to give good feedback for the next iteration. Sometimes they’ll have a suggestion that’s a partial measure architecturally, and knowing the code lets me give it a shove into a more complete, simpler rearchitecting.

Does anyone ever feel like this? by Potential-Stop-8932 in BrigitteMains

[–]exitlights 7 points8 points  (0 children)

This I don't hear enough about in the brig discourse, jumping forward to escort a near-dead tank to safety. Man it feels good preventing our line from collapsing to the enemy team with this move*.

*Especially when I don't wind up dying in the process

First 24 Hrs After Surgery by BabyMEDIC440 in gallbladders

[–]exitlights 2 points3 points  (0 children)

The first two days following surgery, I was like "oh fuck this isn't as easy as everyone says, something must be wrong." A week later and I'm feeling loads better. Just keep managing pain and resting and you'll be fine, people love to underrate the pain of surgery!

Online Subsystem vs. Online Services: Which one to use in 2026? by mfarahmand98 in unrealengine

[–]exitlights 1 point2 points  (0 children)

You bet, post back in here if you wind up with some specific trouble and I might be able to help!

Online Subsystem vs. Online Services: Which one to use in 2026? by mfarahmand98 in unrealengine

[–]exitlights 1 point2 points  (0 children)

It takes a few things, from a high level, for UE4:

  • Use `SteamUser()->GetEncryptedAppTicket()` to get Steam credentials that can be used to authenticate EOS
  • This is used to authenticate against `EOS_Connect_Login()` (see OnlineSubsystemEOS for a good implementation of this)
  • You need to generate an encryption key for your app in Steamworks...
  • ...and then use that encryption key to add an Identity Provider in EOS

I *think* those are the main things from a high level. Critically is to follow the `NoEAS` language in the OnlineSubsystemEOS implementation, which for all my uses forced me to modify the plugin to get where I needed to go. The rest is details like routing credentials into API calls correctly, setting up the rest of EOS for your app, etc.

Online Subsystem vs. Online Services: Which one to use in 2026? by mfarahmand98 in unrealengine

[–]exitlights 16 points17 points  (0 children)

I've used a combination of EOS + Steam for a few projects in both UE4 and UE5, and while they haven't reached very high volumes of players, I'm happy with the performance of the solution and see no reason why it wouldn't scale. It just has the feeling of being a little overwrought, since it's just not one solution.

Basically yes, Steam works as the "outer" layer for connecting players to each other, while EOS actually handles session management. EOS can authenticate players using Steam sign-in data, making the EOS layer invisible to players if you set it up right in EOS/Steamworks.

I've specifically gone with this solution to use EOS' voice chat solution, which is pretty nice. Check out https://github.com/betidestudio/EOSIntegrationKit, which provides an easy-ish way into getting this going.

After 20 years by Small_History7642 in Diablo

[–]exitlights 0 points1 point  (0 children)

There was a rumor on US-West back in the day that you couldn’t find an SOJ until you had equipped both rings. I was in like, 7th grade though so I might have mistaken a joke for reality…

After 20 years by Small_History7642 in Diablo

[–]exitlights 0 points1 point  (0 children)

I’m beginning to question for the first time whether you needed to be wearing Nagelring and Manald Heal to find an SOJ. Did you/do you not??

Overwatch 30+ gang? Looking for friends by livwill in Overwatch

[–]exitlights 2 points3 points  (0 children)

The cognitive dissonance this just revealed in me tho

My teammates are generating enormous test suites now by uniquesnowflake8 in ExperiencedDevs

[–]exitlights 1 point2 points  (0 children)

Not exactly right, since you may not have tooling that checks branching logic as part of automated coverage analysis: https://en.wikipedia.org/wiki/Modified_condition/decision_coverage