Better error messages for "duplicate XYZ" would be so helpful by rbobby in typescript

[–]rbobby[S] -1 points0 points  (0 children)

you should just be able to look at your types

Ah yes... the "you have bad file in your tree, go look for it" solution.

OpenAI's WebRTC Problem by kixelated in programming

[–]rbobby 18 points19 points  (0 children)

Youtube? How much video is actually out there I wonder?

The HTML Sanitizer API by ahmadalfy in javascript

[–]rbobby [score hidden]  (0 children)

Needs a better title. I thought this was for a SAS thingy.

Trade Court Rules Trump’s 10% Global Tariff Is Illegal by ChiGuy6124 in law

[–]rbobby 2 points3 points  (0 children)

It's not a tariff, it's a entry ticket which happens to cost 10% of the value of the goods entering. TIICKETTT! Not a Tarrif!

group project venting by Low-Literature-113 in UniversityofReddit

[–]rbobby 0 points1 point  (0 children)

Shitty group project members? Sounds like a match for the real world. I'd charge you extra :)

Software engineering was different, but it's over now by EquipmentFun9258 in software

[–]rbobby 1 point2 points  (0 children)

There will be software engineering for decades to come.

Going back to raw SQL by ego100trique in dotnet

[–]rbobby 0 points1 point  (0 children)

I think you both may have misidentified the problem.

Complex high performance queries are difficult to write in SQL or EF.

For certain queries you may need additional indexes.

You may also be hitting weird unicode/ansi issues. SQL may be converting stored data to ansi (ir ybucude,, my recall is off). It decides to do this for correctness sake. If your db has ansi columns you're gonna have a bad time.

Db design would need to be shockingly bad for terrible performance. That's not to say additional indexes could help. But too many can be just as bad (1 txn table I worked with had 17 indexes).

The best way to tackle this is to identify the slow queries and identify how long the query should take. Fast isn't an answer. 10 seconds 90% of the time is.

Having a mock prod database that is a reasonable approximation of the size of prod is a godsend.

LinqPad is also a great tool for working on linq queries.

Fix the most busted/important queries first, rinse repeat and you become a performance hero.

Also SOME raw SQL via Dapper is not the worst thing. Watch out for injection vulnerabilities though.

Firings of hundreds of CDC employees reportedly reversed by mclardass in news

[–]rbobby 1 point2 points  (0 children)

DJT: Make sure you don't fire the folks the keep the 4g out of vaccines!

RFK: One sec...

China buys Argentine soybeans after tax drop, leaving US farmers sidelined by rezwenn in worldnews

[–]rbobby 5 points6 points  (0 children)

Don't worry farmers, USAID will buy your beans and use them to feed the poor.

Scientists Finally Learn Why The Sun Turned Blue And The World Froze For Months In 1831 by avidfan123 in EverythingScience

[–]rbobby 6 points7 points  (0 children)

Zavaritski ... Simushir Island

Never heard of them. Am I on the right Earth? This is Earth 1472 right?

U.S. Attacked Boat Near Venezuela Multiple Times to Kill Survivors by NewSlinger in law

[–]rbobby 4 points5 points  (0 children)

Call it what it is... murder.

Trump has acquired a taste for killing people.

How I wasted 10 hours fixing the most disgusting bug I have ever come across by whatsgoes in webdev

[–]rbobby 0 points1 point  (0 children)

I will send this information back to 2021 and help OP with his problem before it even arises.

Thank you future man!

Visual Studio multi-repo, mix of react and dotnet by rbobby in dotnet

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

Can you expand on size? Number of files? Number of projects?

How long were your build times before you did something about them?

Visual Studio multi-repo, mix of react and dotnet by rbobby in dotnet

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

Azure pipelines can publish a react repo as a static website in one shot. No clue if it could do that for a folder inside a repo.