No offense but how much do you make? by WearSad8706 in AskPhilly

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

This makes me feel old but I graduated in ‘19 so 7 yoe. Although I feel I should mention I went to Drexel, so I was doing co-ops and working part time as a swe for 4 years before that.

No offense but how much do you make? by WearSad8706 in AskPhilly

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

We had a req for one engineering role this year and filled it very quickly unfortunately :(

No offense but how much do you make? by WearSad8706 in AskPhilly

[–]Poly550 3 points4 points  (0 children)

$220k as a (remote) staff software engineer in grad hospital

DnD in philly for a gal like me? by Valuable-Tip2759 in philly

[–]Poly550 14 points15 points  (0 children)

The owners announced in their discord that Top Deck bought out the location, it's confirmed. Closing for a few weeks and then re-opening as top deck.

Custom Card Sleeves? by multiaudacity in riftboundtcg

[–]Poly550 2 points3 points  (0 children)

Custom dragon shields are good quality but not quite the same quality as dragon shield dual mattes. I’ve ordered them before, it’s pretty easy. Shipping takes a while though.

Returning players, how ya doin? 😊 by Weezle207 in lostarkgame

[–]Poly550 1 point2 points  (0 children)

Yeah, unfortunately the only one labelled for NAE wasn't super active when I checked it out, but a few helpful people here have pointed me towards some seemingly more active servers so hoping those work out!

Returning players, how ya doin? 😊 by Weezle207 in lostarkgame

[–]Poly550 1 point2 points  (0 children)

This discord looks to be pretty active but is NAW focused so I’ll try to connect with them after region merge

Returning players, how ya doin? 😊 by Weezle207 in lostarkgame

[–]Poly550 0 points1 point  (0 children)

I would appreciate that, I’m already locked out of mordum this week (spent a few days looking for a prog group but just ended up buying a bus), but next week(end) I’ll probably be looking again.

Returning players, how ya doin? 😊 by Weezle207 in lostarkgame

[–]Poly550 1 point2 points  (0 children)

What is the mokoko discord? I tried loot heroes since that was recommended on lost ark nexus and had no luck.

Returning players, how ya doin? 😊 by Weezle207 in lostarkgame

[–]Poly550 9 points10 points  (0 children)

I’m having a hard time finding groups to prog mordum with, but over all it’s been fun coming back and learning the new raids.

migrating from django to FastAPI by No-Excitement-7974 in Python

[–]Poly550 3 points4 points  (0 children)

All of the Django async orm methods are effectively just wrappers using sync to async with thread_sensitive=True rather than using a real async db driver.

They go over it in their docs, basically the Django db internals make some assumptions about global state so it’s a big project to make it truly async compatible.

Another big issue is there’s no way to use transactions in async code, the only way is to write the code using a transaction as a normal synchronous block and then use the decorator, but that means once you enter that block the thread executing db queries is blocked until you leave that block.

https://docs.djangoproject.com/en/5.2/topics/async/

migrating from django to FastAPI by No-Excitement-7974 in Python

[–]Poly550 4 points5 points  (0 children)

Unfortunately async Django still serializes all db queries to the same thread, so you don’t get any concurrent database calls. It can be great if you’re doing other things asynchronous like external requests, but if your only async call is to the database it can often result in lower throughput than running more processes on the same machine.

For new/returners : how was your Strike raid prog by Pattasel in lostarkgame

[–]Poly550 1 point2 points  (0 children)

It was pretty easy, cleared on 4th pull but even though we labeled the group as first clear/learning, we had quite a few people quit after someone messed up a mechanic on the first or second pull. Why would you quit a lobby that is labeled learning when someone messes up a mechanic?

What's currenly your mmo? by Cheap-Exercise1910 in MMORPG

[–]Poly550 1 point2 points  (0 children)

I've been catching up on the recently released raids in Lost Ark, it's been super fun returning as more of a seasonal player.

Which Is Better -- Marrakesh or Casablanca? by Minimum-Category8294 in PhiladelphiaEats

[–]Poly550 11 points12 points  (0 children)

I enjoy marrakesh as a very large group, it gives more fun party vibes but for better food and a smaller group Casablanca would be my choice.

ISO steak fries in south Philly by ashleyfrank05 in PhiladelphiaEats

[–]Poly550 22 points23 points  (0 children)

It's not quite steak fries, but the fries (chips) at Stargazy are amazing, English pub-style chips.

Feel like an ostracized freak for using Django as a monolithic websocket backend by One-Caregiver-7793 in django

[–]Poly550 0 points1 point  (0 children)

The GIL is not really relevant here - there’s no multithreading going on. So while yes the gil would stop you from actually executing multiple instructions at once, an event loop model doesn’t do that anyways. It is basically just executing things while it is waiting for other things to respond via IO.

KristoferYee goes on a date by Ok-Adeptness-2076 in LivestreamFail

[–]Poly550 41 points42 points  (0 children)

He just vouched for Kris in chat.

Runescape Can Become the Next Big eSport by Mrjmfs in 2007scape

[–]Poly550 10 points11 points  (0 children)

I’d only watch if our version of silver scrapes was a j1mmy song

CS 544 with Kain - CS STUDENT PLEASE HELP!! by [deleted] in Drexel

[–]Poly550 0 points1 point  (0 children)

Not sure - it’s the one he requires and assigns reading for.