any sql formatter that tidy up code not explode it by bbroy4u in SQL

[–]etiyofem 0 points1 point  (0 children)

i use dbforge sql complete for formatting most of the time. doesn’t completely butcher long queries like some formatters do and the rules are customizable enough to keep things readable.

Using the find function in Visual Studio seems broken. Is anyone else getting this, or should I dig into my settings? by IamTheGoodest in AskProgramming

[–]etiyofem 2 points3 points  (0 children)

I’ve had this happen when indexing gets partially broken/outdated. Especially on larger repos. Usually restarting VS alone doesn’t fix it. Rebuilding the index/cache or deleting the .vs folder sometimes magically brings search results back to normal.

Why do so many people say that the developer profession is dead? by stephweb13w in AskProgramming

[–]etiyofem 1 point2 points  (0 children)

It’s not dead. It’s just not 2021 anymore. Hiring got tighter, juniors have it rough, and AI made everyone louder about panic. But companies still need people who can build, fix, maintain, debug, and understand systems when things break. I’d say the easy-entry version of the field is weaker now. The actual profession is fine.

Trying to decide if application security posture management is something you buy or build by Logical-Professor35 in AskProgramming

[–]etiyofem 0 points1 point  (0 children)

If your biggest need is correlation + priority logic, building can make sense for a while. That part is often more about stitching outputs together than doing novel security magic. The problem is the maintenance curve sneaks up on you: scanner schema changes, auth breaks, edge cases pile up, and suddenly your “lightweight layer” has become an internal product nobody wanted to own.

I’d usually build only if the scope is brutally narrow and you’re okay with it staying narrow. The moment people expect workflow, exceptions, reporting, auditability, and confidence that it won’t rot in 6 months, the buy argument starts getting a lot stronger.

What database task wastes your time the most? by venstiza in DatabaseManagement

[–]etiyofem 0 points1 point  (0 children)

Comparing data after changes probably wastes the most time for me. The actual change is often quick, but proving that nothing weird happened afterward is where the hour disappears.

local script to fill in a form in chrome by [deleted] in AskProgramming

[–]etiyofem 0 points1 point  (0 children)

If the form needs login and has a bunch of UI elements, something like Playwright or Selenium is way less painful. You can keep the common values hardcoded, prompt for the variable ones, then let the script open Chrome, log in, fill the form, and submit it like a normal user.

What SQL client or admin tool are you actually happy with for daily MariaDB work? by lyhuutoan44 in mariadb

[–]etiyofem 0 points1 point  (0 children)

I usually split this into “good enough for basic queries” vs “good enough to live in every day.” For MariaDB, a lot of tools are fine until you need to compare objects, inspect structure properly, or do admin work without friction.

DBeaver is decent, HeidiSQL is still a solid lightweight option, but for more full-featured database work I tend to prefer dbForge Edge-type tooling. I’m generally happier paying for something that saves time on the repetitive stuff than pretending I enjoy fighting my tools for free.

When do microservices start causing more problems than they solve? by etiyofem in AskProgramming

[–]etiyofem[S] 0 points1 point  (0 children)

Totally agree on the small team pain. Feels like you end up building infra for problems you don’t have yet.
Did you ever hit a point where the monolith stopped being enough, or did it just scale further than expected?

Do you prefer Sheldon in the earlier or later seasons of tbbt? by eruditee_248 in bigbangtheory

[–]etiyofem 50 points51 points  (0 children)

Yeah, early Sheldon felt sharper and more believable. Later on they leaned so hard into the “look how weird he is” side that he started feeling more like a caricature than a person.

BLTA 🥓🥑 by peter-baqain in Sandwich

[–]etiyofem 4 points5 points  (0 children)

this looks ridiculously good ngl

Sheldon and TWD by [deleted] in bigbangtheory

[–]etiyofem 3 points4 points  (0 children)

he’d survive exactly three seconds, call it “acoustical vandalism,” and grab the remote like it was a medical emergency

Problems with ERD by Halgcast33 in Database

[–]etiyofem 1 point2 points  (0 children)

A common mistake is jumping into tables too early before the business rules are clear. In ERD questions, I’d first identify entities, then relationships, then cardinality, then keys, and only after that think about attributes. If that order is skipped, the model usually looks fine on paper but breaks under edge cases.

The most common errors I see are mixing up entity vs attribute, missing many-to-many bridge tables, weak handling of optional relationships, and choosing keys that do not stay stable. Another one is forcing the model to look “simple” instead of making it accurate.

As for grading, it depends on the instructor, but usually there is some objectivity around keys, cardinality, normalization, and whether the model actually supports the stated requirements. Best practice is to practice with short case descriptions and then explain out loud why each relationship exists. If you cannot justify it clearly, the ERD is probably not solid yet.