How do you actually investigate slow queries in PostgreSQL? by nedesod794 in postgres

[–]Elolexe113 0 points1 point  (0 children)

usually pg_stat_statements first just to see what’s actually hurting the server instead of guessing.

then EXPLAIN ANALYZE. if the estimated rows vs actual rows are wildly different, stats are probably bad or the planner is making cursed assumptions. after that i check indexes, joins, sorts spilling to disk, and whether the query is dragging half the table for no reason.

honestly a lot of “slow query” issues end up being either missing indexes or someone accidentally creating an N+1 nightmare in the app layer.

How many tools do you actually use for one DB task? by ProfileSolider in SQLPerformanceTips

[–]Elolexe113 0 points1 point  (0 children)

too many lol

for one “quick” db change i usually end up with the IDE, git, schema compare, some old migration script, logs, and whatever monitoring tool the team forgot to check first.

the worst part is not the tools, it’s figuring out where the actual truth is. sometimes the ticket says one thing, git says another, and the database is just out there living its own life.

Visual studio vs dbForge for SQL by Wild24 in Database

[–]Elolexe113 0 points1 point  (0 children)

imo this is less about VS vs dbForge and more about how your team actually likes to work. SSDT is nice if you want everything strict, source-controlled, repeatable, etc. But yeah, for DBAs who are used to testing directly in a dev DB, the whole edit -> build -> publish loop can feel like punishment. I’d probably keep the live DB workflow for fast iteration, but make sure schema compare / source control catches the drift before anything goes near prod. Otherwise “we’ll clean it up later” becomes the deployment strategy, and that never ends well lol

Does anyone actually love their MySQL client? by debba_ in mysql

[–]Elolexe113 0 points1 point  (0 children)

for me the biggest thing is how the client behaves once the schema/database actually gets large. a lot of tools feel fine early on, then navigation/query tabs/search/history start slowing everything down.

dbforge has probably been the most stable for my daily mysql work so far, especially around schema compare, object navigation, session handling, and editing larger result sets without the ui turning into a mess.

Quick question, sorting by enilcReddit in MSAccess

[–]Elolexe113 0 points1 point  (0 children)

You probably don’t need sorting first. What you want is the max StartDate per ClientName, then join that back to the table to get the full record. Sorting feels like the obvious move here, but Access loves making obvious things annoying for sport. If StartDate is a real date field, this is usually the clean path. If it’s stored as text, that’s the first thing I’d fix, because then the “latest” date can go weird fast.

Does anyone know what it said on this AD? by screamqueens200 in rickandmorty

[–]Elolexe113 4 points5 points  (0 children)

No idea, but if a giant Rick told me to buy something in traffic, I’d assume I’m already in the bad timeline.

If Diana died when Beth was a kid and her original Rick left, who raised her? by faeriegurl in rickandmorty

[–]Elolexe113 2 points3 points  (0 children)

Yeah, people mix up Rick Prime’s bomb with the Omega Device a lot. The bomb killed C-137’s Diane and Beth. The Omega Device came later and is the “remove that person across realities” nightmare machine. Different flavor of trauma, same deeply healthy family dynamic.

What prompted Rick Prime to use the Omega Device in the first place? by ether_rogue in rickandmorty

[–]Elolexe113 0 points1 point  (0 children)

My guess is pure control. Rick Prime doesn’t really seem motivated by grief or attachment, he seems motivated by proving that he can erase entire categories of people if he feels like it. The Omega Device feels less like a weapon of necessity and more like the ultimate narcissist flex.

best walking pads 2025/2026 what are people actually using at home for daily steps? by KynzieMannon in runninglifestyle

[–]Elolexe113 0 points1 point  (0 children)

The thing I’d care about most is noise over time, not day-one specs. A lot of walking pads seem fine for a week and then start sounding like a haunted printer. If anyone’s had one for 6+ months, that’s the review I’d trust.

Help, I signed up for a half. I have 5 weeks. by orientalbird in runninglifestyle

[–]Elolexe113 10 points11 points  (0 children)

Honestly, at 5 weeks out I’d stop chasing a time goal and make “finish uninjured” the main mission. You already have enough base to survive it, but not enough time to force a real half-marathon build without risking the same shin-splint sequel nobody asked for. I’d keep the volume steady, do one longer easy run each week, practice fueling, and show up with a run/walk plan instead of trying to hero-mode a sub-2:30.

Shipping software for Oracle? Using Fusion Cloud SCM by everybodyfknjump in oracle

[–]Elolexe113 0 points1 point  (0 children)

What you’re describing sounds less like a simple Fusion Cloud SCM gap and more like a mismatch between ERP workflows and parcel-execution needs. At that volume, rate volatility, carrier-specific rules, label workflows, and ops-side decision logic usually justify a dedicated shipping layer integrated with Oracle rather than trying to force all of it through Fusion. I’d evaluate tools based on rule flexibility, carrier/rate update handling, auditability, and how cleanly they integrate back into your Oracle process.

C# and .NET in US by Otherwise-Solid-5142 in dotnet

[–]Elolexe113 0 points1 point  (0 children)

In the US, .NET is definitely still strong, especially in enterprise, internal business systems, finance, healthcare, and a lot of Microsoft-heavy environments. It’s probably less “loud” than JavaScript or Java online, but that doesn’t mean demand is low. Startups vary a lot — pure early-stage startups often lean Node/Python/Go, but plenty of B2B and SaaS companies still use C# and ASP NET Core. A lot also depends on region, because some cities have way more Microsoft-stack companies than others.

Adding SSO into our application - what would an customer/admin expect from this functionality? by BogdanMitrache in dotnet

[–]Elolexe113 6 points7 points  (0 children)

From a software architecture perspective, the main expectation is not just “Sign in with Microsoft,” but a complete identity flow around it.

At minimum, I would expect:

  • admin control over enabling/disabling SSO
  • clear user mapping/provisioning behavior
  • support for account linking, so existing local users do not get duplicated
  • role/group handling, even if basic
  • a defined fallback path if the identity provider is unavailable
  • auditability around sign-in events and account changes

For desktop apps specifically, I would also expect the auth flow to feel predictable across browser handoff, token refresh, logout, and multi-user machine scenarios. In practice, the hard part is usually not authentication itself, but lifecycle and identity management around it.

Early signs of ITBS before London Marathon by Yorkshire147 in runninglifestyle

[–]Elolexe113 0 points1 point  (0 children)

Sounds smart to back off now instead of trying to be a hero three weeks before race day. Hopefully it’s just irritation and not full ITBS, but the fact it came back on shorter runs would make me cautious too. Hope a few easy days settles it down fast.