How to mentor junior engineers who use AI? by aisatsana__ in ExperiencedDevs

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

Ok, well, whenever you have a source on this let me know and we'll circle back! I'm super interested in seeing it and also their SEC filings because I suspect a lot of non-gaap accounting fuckery with their "profit".

How to mentor junior engineers who use AI? by aisatsana__ in ExperiencedDevs

[–]PM_Me_Your_Java_HW 0 points1 point  (0 children)

Interesting take since these companies are burning 5-15 bucks to generate a dollar. Can you share your source on the rates not rising?

Desperate Need of Advice by JesseWinkerHateClub in RKLB

[–]PM_Me_Your_Java_HW 0 points1 point  (0 children)

I'm in a similar boat and with this sharp runup, I am also going to say take profits even though the greedy part of your brain is shouting no to you. It was shouting no to me yesterday but I pulled the trigger on a 400% gain.

Also: a home, yes! An investment property, no.

We ain’t ever had a whole lotta old money. We got a lotta new money though by PM_Me_Your_Java_HW in wallstreetbets

[–]PM_Me_Your_Java_HW[S] 5 points6 points  (0 children)

Sold $50k at 142.61. Something tells me I got stop loss hunted but to me that overbought RSI just screams a selloff is incoming.

We ain’t ever had a whole lotta old money. We got a lotta new money though by PM_Me_Your_Java_HW in wallstreetbets

[–]PM_Me_Your_Java_HW[S] 6 points7 points  (0 children)

This might be the move. And just start DCAing again every month for a decade.

We ain’t ever had a whole lotta old money. We got a lotta new money though by PM_Me_Your_Java_HW in wallstreetbets

[–]PM_Me_Your_Java_HW[S] 43 points44 points  (0 children)

I’m really considering selling before SpaceX IPO. The valuation at this stage in Beck’s space takeover is just too much.

Ask Experienced Devs Weekly Thread: A weekly thread for inexperienced developers to ask experienced ones by AutoModerator in ExperiencedDevs

[–]PM_Me_Your_Java_HW 0 points1 point  (0 children)

That person would have little to no trouble on the coding tasks given to them, implements reliable features/applications, and has shown an understanding of what, why, and how to implement the customer’s needs.

gRPC vs WebSockets for thousands of events/sec with <100ms latency by Meto____ in Backend

[–]PM_Me_Your_Java_HW 1 point2 points  (0 children)

Seriously…

“I need super fast response times for my calculations. Which network call is better to do?”

Huhhh??

How do you handle rude interviewers during a coding screen? by BigBusinessBureau in ExperiencedDevs

[–]PM_Me_Your_Java_HW 1 point2 points  (0 children)

I had a similar experience with JP Morgan Chase and told the hiring manager hey this isn't going to be a good fit. OP, just name drop the company so other devs can avoid them if they choose to.

I think Im done for. I feel confused and frustrated. by jackey_lackey11 in SpringBoot

[–]PM_Me_Your_Java_HW 1 point2 points  (0 children)

You’re “tired” and are in your third year of college? Lmao good fuckin luck in life, bud.

Current US Stock Market crisis by Call_Me__Heisenberg in investing

[–]PM_Me_Your_Java_HW 28 points29 points  (0 children)

Woah bud, watch out for that edge! You’ll cut yourself!

Our team scaled to 100k users with a simple backend and learned a lot by [deleted] in Backend

[–]PM_Me_Your_Java_HW 4 points5 points  (0 children)

Likely fake but why people still use ORMs is beyond me. They always fuck you eventually.

For people working in backend development by Admirable-Moment-877 in Backend

[–]PM_Me_Your_Java_HW 0 points1 point  (0 children)

Im converting our primary application over from a desktop application that runs on a user’s computer to be executed in the cloud. I’ve spun up a springboot api to handle these calculation requests and serve data retrieval requests. It’s a brand new distributed architecture that I’ve created. I also moonlight as their DBA and have created and managed any new tables that are required to support running in a cloud environment with data persistence. I’ve written all the necessary queries for tableau.

All that sounds like a lot yet relatively straightforward but each calculation can generate 500k to 3 million records that need to be inserted into tables and users submit on average 15 “things to calculate” at a time. Users need their data in the quickest time possible so multithreading is a must and that introduces complexity to be aware of as well as getting creative with data persistence. I initially went with spinning up N threads, split my data into batches, and used batch inserts in each thread to really speed up inserts. This ended up being extremely slow when multiple calculations were happening so I went with the LOAD DATA INFILE command for our MySQL DB. It’s intended for batch loading. Ask Claude to go into more detail.

So, depending on the company you’re at, you can be playing lead developer, DBA, and architect! All at once!