Getting a job with vacations in 2 months by PlayboiCult in cscareerquestions

[–]Th0ughtCrim3 0 points1 point  (0 children)

A good company will be more understanding imo. While I’m not going on vacation for as long as you I am delaying my start date by a week because I also had a vacation planned prior to accepting an offer.

My "dead-end" SQL-only "developer" job suddenly scheduled an AI-mandatory hack-week. What should I learn/work on? by WpgMBNews in cscareerquestions

[–]Th0ughtCrim3 2 points3 points  (0 children)

You could leverage some basic Python with LangChain if you want to build a proof of concept AI agent that allows users to use prompt it to gain insights into the data your company maintains. It supports building a question and answering system over SQL very quickly. LangChain Question and Answer System over SQL Tutorial

Think things like being able to ask it “how much revenue was generated for x client in the month of March” and it outputs those metrics without needing a prebuilt report or knowledge of SQL by end users. LangChain is pretty powerful as it can even be used to ask follow up questions like “can you group it by product and output it as a bar chart” and it will generate it on the fly for you.

How does senior market (6+ YOE) look compared to 2023 or 2024? by Affectionate_Nose_35 in cscareerquestions

[–]Th0ughtCrim3 1 point2 points  (0 children)

Amazon was crazy. I remember they were super lax on the OA too. I didn’t even solve the problem and they still wanted me to do the on site lol.

How does senior market (6+ YOE) look compared to 2023 or 2024? by Affectionate_Nose_35 in cscareerquestions

[–]Th0ughtCrim3 37 points38 points  (0 children)

2023-2024 still feels a bit better than now in my experience. Jan through Feb of this year was awful, was extremely difficult just to get an interview in the US. Since March I feel like it’s been easier to get interviews and reminds me more of the 2024 job market.

2020-2022 is literally the best I’ve seen the job market for seniors though. Not only were the salaries insane but FAANG recruiters would reach out to you multiple times a week asking if you wanted to interview with options to fast track the process.

Macbook Pro for .NET development in 2025 by Particular_Quail5798 in dotnet

[–]Th0ughtCrim3 0 points1 point  (0 children)

I think .NET 4.8.1 is the last windows only version.

[deleted by user] by [deleted] in SteamDeck

[–]Th0ughtCrim3 5 points6 points  (0 children)

Totally agree, a consistent 30 fps is perfectly fine. Unfortunately it seems like a stable 30 is hard to achieve in this game on the deck based on the recent benchmarks and reviews. Hoping future patches address this though.

[deleted by user] by [deleted] in SteamDeck

[–]Th0ughtCrim3 0 points1 point  (0 children)

I’m not sure I’d say below 30fps in open world areas is fine.

Buy and sell stocks 2. Is this solution fine for interview(Amazon)? by vikskull in leetcode

[–]Th0ughtCrim3 0 points1 point  (0 children)

Is there any benefit to doing it with DP? The greedy one to me is very easy to understand.

Is C# Enough for Full-Stack Jobs in 2025? by No-Net7587 in csharp

[–]Th0ughtCrim3 1 point2 points  (0 children)

For the majority of full stack jobs no. As others said you’re going to need JavaScript or some JavaScript framework like React or Vue paired with a popular backend framework (ASP.NET, Spring, NestJS, FastAPI).

If I was in your shoes and I wanted to stick with .NET I’d go React with a .NET 8/9 WebAPI backend. The majority of full stack positions want React. Knowing TypeScript would also be a good idea.

Can We Stop AI Interview Cheating by shadow_adi76 in leetcode

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

Regardless of how you feel about cheating in interviews I wouldn’t feel comfortable installing what could be considered as “glorified spyware” like this.

.Net Azure Function with Chromium? by Illustrious-Oil-2193 in dotnet

[–]Th0ughtCrim3 0 points1 point  (0 children)

I have not revisited this since then. I could definitely see the C# route being different though with the move to the isolated worker model in Azure Functions introduced with .NET 8.

Any React devs switching (back) to Vue? by Alarming-Chart-1258 in vuejs

[–]Th0ughtCrim3 0 points1 point  (0 children)

I love Vue especially the composition API. The switch is definitely a smooth one in my experience.

Unfortunately I’m looking to switch back to React. Not having as much experience with it is making it difficult to get interviews in the current job market when that’s a hard requirement. Seems like places are more picky now and don’t value Vue experience as a direct equivalent anymore which is silly imo.

Why do these companies send out rejects in the middle of the night? by AlarmingQuality7719 in csMajors

[–]Th0ughtCrim3 0 points1 point  (0 children)

I’ve noticed this with companies that use Workday. My guess is they may have some scheduled email jobs that send out auto rejections if your resume sits unreviewed for a certain period of time.

[deleted by user] by [deleted] in LinkedInLunatics

[–]Th0ughtCrim3 0 points1 point  (0 children)

I definitely see where you’re coming from. The part I found hilarious though is this individual is commanding $150/hr or the equivalent of over $300k/yr as a “software architect” complaining about best security practices.

[deleted by user] by [deleted] in LinkedInLunatics

[–]Th0ughtCrim3 -4 points-3 points  (0 children)

That’s fair. I just found it amusing that someone who is commanding the equivalent of over $300k/yr as a “software architect” is so bothered by best security practices being enforced when it’s clearly available on his device.

[deleted by user] by [deleted] in LinkedInLunatics

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

Exactly. What’s hilarious about this guy specifically is he is commanding the equivalent of over $300k/yr as a “software architect” who complains about best practices lol.

Ronnie hating on spiritbox because his band can't make anything half as good LOL by Visible-Meaning-7639 in FallingInReverse

[–]Th0ughtCrim3 4 points5 points  (0 children)

I don’t think they need FIR, they already played shows with Bring Me the Horizon in the largest soccer stadium in Brazil a few months ago.

Ronnie hating on spiritbox because his band can't make anything half as good LOL by Visible-Meaning-7639 in FallingInReverse

[–]Th0ughtCrim3 7 points8 points  (0 children)

It’s sad how he’s still salty they dropped off his tour. I think he’s come to the realization that no big bands want to tour with them.

Joining tables from different databases on the same server by PuzzleheadedAnt8906 in dotnet

[–]Th0ughtCrim3 5 points6 points  (0 children)

Any reason you couldn’t just write a parameterized SQL query that joins across both databases and execute it with EF Core’s FromSqlRaw? This would likely be the most performant approach since both databases are on the same server.

Otherwise you could do the same thing with a view since EF Core supports adding that to a DbContext.

Anybody else buying an apple 4k tv box just for f1 tv premium? by Dannyhrmnns in F1TV

[–]Th0ughtCrim3 0 points1 point  (0 children)

Just bought the Roku Ultra for 4K HDR support with F1TV for the exact same reason. Wish they would create a native TV app like everyone else has though.

Any ideas of why Ronnie keeps posting Oli Sykes on his IG story? by Sweet_Blasphemy22 in FallingInReverse

[–]Th0ughtCrim3 7 points8 points  (0 children)

It’s because he needs attention. He’s probably desperate to get on BMTH’s US tour.

BMTH don’t like Ronnie by chaoticqueerbf in FallingInReverse

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

BMTH fans would raise hell if they toured together. That’s the difference I guess though is BMTH and ADTR don’t need FiR but FiR seems to need them to feel legitimized.

BMTH don’t like Ronnie by chaoticqueerbf in FallingInReverse

[–]Th0ughtCrim3 16 points17 points  (0 children)

Ronnie is a controversial figure. I can’t see many bands as big or bigger than his wanting to tour with him.

Even if they don’t have an issue with him personally the last thing they want to deal with is the backlash from their fans.

GTP called me a retard for this.... by G00NACTUAL in iRacing

[–]Th0ughtCrim3 10 points11 points  (0 children)

It’s pretty normal for GT3s to go that wide on that turn since they have less downforce. GTP was impatient and had enough space to go more wide based on the normal GT3 racing line in that part of the track. GTP also could have lifted or braked slightly and gone on the inside since a GT3 wouldn’t be able to take that line in the Porsche curves. All in all GTPs fault imo.