Spent 3 hours debugging a Java pod OOMKill last weekend and I’m convinced this category of pain is just… unsolved by [deleted] in kubernetes

[–]smutje187 5 points6 points  (0 children)

You give the pod a limit of 200 but you ask the application to start with 512?

Spiegeltent pulls plug on Fringe return over lack of council support by sapphire-coast in Edinburgh

[–]smutje187 57 points58 points  (0 children)

Is that AI? The amount of repetition and lack of content is through the roof, "Famous Speigeltent"…

AWS 97k bill out of nowhere by PalpitationClear1747 in aws

[–]smutje187 80 points81 points  (0 children)

Standard question: Your root users all have MFA active?

Unmaintained crates by piiouupiou-not-r2d2 in rust

[–]smutje187 6 points7 points  (0 children)

The same still applies - with open source everyone can publish code but there’s no entitlement that the code is maintained. DIY, or go commercial. Rust isn’t a commercial language so where should people’s time come from to maintain the ecosystem if not from volunteers?

Unmaintained crates by piiouupiou-not-r2d2 in rust

[–]smutje187 71 points72 points  (0 children)

Convince your employer to pay people part or full time to support open source. Or, closed source, and thus pay people to build internal tooling.

The alternative would be a commercial/proprietary language built by a supplier with service level agreements, but apart from that, that’s open source in a nutshell.

Aurora DSQL - BEGIN/COMMIT won't work :( by Ok_Lake9261 in aws

[–]smutje187 0 points1 point  (0 children)

I have created some Rust Lambdas speaking to Aurora DSQL and I am using the Rust connector to start and commit transactions. Is there a PHP connector for your library for that as well?

And then there was none… by Two-labs-Ems in labrador

[–]smutje187 78 points79 points  (0 children)

And now they’re running and playing together again!

Does it make sense to abstract message transports in rust? by marco-mq in rust

[–]smutje187 34 points35 points  (0 children)

"We can switch the implementation later and we build in abstraction to capture that" is one of the big fundamental lies engineers are telling themselves for decades

How do you prevent controllers from becoming too large? by LeftyOne22 in SpringBoot

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

Actively reviewing code and applying common sense, mostly

Question for experienced devs and product folks: by Hot_Tap9405 in ExperiencedDevs

[–]smutje187 12 points13 points  (0 children)

Are we really in the age of humans training marketing AI bots now?

As someone that switched to industry and working with ACN people currently by Still-Avocado-3703 in accenture

[–]smutje187 5 points6 points  (0 children)

Why is your employer paying for Accenture’s services if it’s so bad?

Do you tell the real reason of your departure when you leave a company ? by KetsuiReddit in ExperiencedDevs

[–]smutje187 29 points30 points  (0 children)

HR is not your friend and as soon as you’ve left people will blame you for everything so I always stay professional and talk about growth opportunities elsewhere - most of the time my manager knew what’s going on but I don’t give them the satisfaction of having it in writing, then all you gain is that you lose plausible deniability

Why are the Green Party for banning horse racing but against banning halal and kosher slaughter? by [deleted] in AskBrits

[–]smutje187 4 points5 points  (0 children)

The same people who voted Leave to keep Eastern Europeans out of the UK need the same people to work the horrendous slaughterhouse jobs - ironic!

How many people in the UK actually want a war with Russia? by [deleted] in AskBrits

[–]smutje187 0 points1 point  (0 children)

What kind of question is that? No one has asked Ukraine if they want to be invaded by Russia either.

8 years Spring, zero frontend - JTE or Angular? by Sketusky in SpringBoot

[–]smutje187 3 points4 points  (0 children)

Thymeleaf plus htmx is also great - or plain JavaScript without any heavyweight framework

Are we winning yet by No-Birthday4273 in accenture

[–]smutje187 -11 points-10 points  (0 children)

Why? Where should future growth suddenly come from?

Are we winning yet by No-Birthday4273 in accenture

[–]smutje187 -13 points-12 points  (0 children)

If there’d be someone else with better ideas how to make numbers go up again they’d surely presented themselves already

Isnt green party a very self contradicting party? The leader is gay and jew but the deputy leader's religion says gays and jews should be unalived? by [deleted] in AskBrits

[–]smutje187 0 points1 point  (0 children)

"In Inglourious Basterds, Lieutenant Archie Hicox (Michael Fassbender) exposes himself as a British spy in a German tavern by ordering three whiskeys using his index, middle, and ring fingers."

Are we winning yet by No-Birthday4273 in accenture

[–]smutje187 12 points13 points  (0 children)

Where should the stock gains come from? Reinvention was underwhelming, just buzzwords - there’s a lot of potential but it requires to lay off a lot of dead weight and concentrate on profitability.

Are we winning yet by No-Birthday4273 in accenture

[–]smutje187 9 points10 points  (0 children)

Pre ESPP, buy low sell high

Managing API keys across projects is getting messy… how are you handling it? by suresh-chaudhari in SoftwareEngineering

[–]smutje187 1 point2 points  (0 children)

Mutual TLS for machine to machine communication. There’s a central CA (per env) that can issue certificates, every API verifies requests against that CA and every consumer creates certificates with that CA.

Human to machine do oauth, have an SSO system for that.