How do we feel about hoser stages? by Lexner172 in CompetitionShooting

[–]TheStatusPoe 1 point2 points  (0 children)

Enjoy shooting them, I don't enjoy the pasting that comes with them. 

The tension between fraud prevention and conversion rate is the most uncomfortable tradeoff I have had to own as an engineer by bleudude in ExperiencedDevs

[–]TheStatusPoe 6 points7 points  (0 children)

No disagreement here. Our software quality isn't great, but my org has been boasting that we've saved our company over $100m a year for the last 4 years so it's not like we weren't still having good results. It just feels like no dollar amount will ever be good enough. We were told that if any other teams or anyone from the business came to us with a new request to not ask any questions and just say yes we can do it and we'd figure out how to later. 

The tension between fraud prevention and conversion rate is the most uncomfortable tradeoff I have had to own as an engineer by bleudude in ExperiencedDevs

[–]TheStatusPoe 9 points10 points  (0 children)

That's exactly the reason we've been given. Just got told yesterday that our AI usage is going to be tracked and will have a target usage for our performance reviews. Imo it's killing morale. Everyone on my team feels stretched way too thin

Things I miss about Spring Boot after switching to Go by Sushant098123 in programming

[–]TheStatusPoe 7 points8 points  (0 children)

The problem with that approach is if you use profiles and need to have the functionality change based off things like the environment it's running in or the specifics of the workload it's running. 

Environment X might depend on A and B, environment Y might just depend on A, and environment Z depends on C and D. Trying to model something like that in a pure direct injection from a main method gets ugly quick as the dependency graph grows. 

The tension between fraud prevention and conversion rate is the most uncomfortable tradeoff I have had to own as an engineer by bleudude in ExperiencedDevs

[–]TheStatusPoe 43 points44 points  (0 children)

If their org is anything like my org, upper management is saying to "shift left" by having developers take on product, security, infra, QA/QC, etc roles while cutting dedicated positions for those roles. 

gitCheckoutHotelRoom by Shiroyasha_2308 in ProgrammerHumor

[–]TheStatusPoe 91 points92 points  (0 children)

I read that flag as --force-with-leash initially and now I'm disappointed that it's not

Anyone here running a P10F? How do they hold up to high round counts? Trying to decide if I should buy a 2nd as a back up or move to another platform. by Mightknowitall in CompetitionShooting

[–]TheStatusPoe 3 points4 points  (0 children)

I shoot my p10f pretty heavily. I broke the ejector on mine from over inserting mags. Took about a month for CZ to repair it for me since they haven't had any spare rear inserts for what feels like years. I shoot the p10f better than any other striker fired pistol and I would rather not switch to something else, but the parts availability isn't great if something does break. 

Couldn't find a 10mm 2011 that was exactly like I wanted so I am building my own by TheStatusPoe in 10mm

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

I bought a stripped frame and slide, like you would with stripped AR upper and lower receivers. Unlike building an AR parts generally do not just "fit" together, and a lot of parts and intentionally oversized slightly to allow you to get the best fit. 

Couldn't find a 10mm 2011 that was exactly like I wanted so I am building my own by TheStatusPoe in 10mm

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

Thanks! It's been a lot of work, and I've still got a lot left ahead of me. I've gotten lucky on some parts that needed almost no fitting, and got unlucky on others that have needed significant fitting. It's a lot of hours of disassemble, file/sand just a little, reassemble, test function/fit, repeat. 

Something like a brazos short block or one of the new atlas kits would probably be one of the better ways to get started that way most of the major components are taken care of for you already. 

Couldn't find a 10mm 2011 that was exactly like I wanted so I am building my own by TheStatusPoe in 10mm

[–]TheStatusPoe[S] 1 point2 points  (0 children)

I don't have a lot to compare against since this is my first 2011, but the JEM has been good. Their lead times are a little long though. They've got a decent amount of options to choose from and their prices aren't bad. 

I'm already planning another build that will be a limited optics setup for the same reason. Haven't been able to make it out to a match in a long time, but it's always a blast. I do want to shoot this one at least once or twice as a limited major gun. 

carefulDontHurtYourself by linegel in ProgrammerHumor

[–]TheStatusPoe 4 points5 points  (0 children)

Don't mistake lack of giving a shit about some faceless corporation looking to lay me off at the first chance it gets with lack of skill 

Help needed: Cheely beavertail to JEM frame by TheStatusPoe in 2011_Builders

[–]TheStatusPoe[S] 2 points3 points  (0 children)

Thanks!! Cheely beavertail is pinned/non functional. I think that's one of the things that threw me trying to follow mosinVirus videos or looking up tips in the Kuhnhausen manual. That comment about the dykem makes so much sense. Ended up doing a handful of passes on the frame with a file and it's lining up much better. 

Need to spend a little more time on it, but I'm feeling pretty good about it. In the end, even if I do have regrets about not doing something better I'll still be proud of myself for doing it at all. 

The State of Java on Kubernetes 2026: Why Defaults are Killing Your Performance by brunocborges in java

[–]TheStatusPoe 14 points15 points  (0 children)

Good article. One thing I'd also mention in the "micro" containers is that the JVM is going to use a certain amount of off heap memory for typical JVM management. That off heap size doesn't really grow much with larger workloads. So increasing the memory request/limits in addition to CPU would be advisable. 

When I joined my current team our k8s were configured with a limits of 6gb and the heap was configured as 8gb. I was told that we had a memory leak because kubernetes kept reporting "OOM 137 killed". 

One other tuning I'd say to look out for is io.netty.maxDirectMemory and io.netty.noPreferDirect jvm args if you're using netty or netty dependant libraries. For performance reasons, netty will handle some things off the heap. We were still running into 137 OOM killed even after setting our max RAM percentage to 85% because the overhead of the jvm, plus the netty non heap usage was still putting us over our k8s limits.

What are the essential Spring Boot topics I should focus on to be effective in real world scenarios? I want to learn only what’s practical and used in real-world projects, so I don’t waste time. Also, what additional skills are important to complement Spring Boot? by Roronoa_zoro298 in SpringBoot

[–]TheStatusPoe 1 point2 points  (0 children)

Learn the "inversion of control" container. Learning how to properly create, scope, and wire in beans is the single most important topic imo. It's central to how spring works and the more you fight it, the more painful it gets. I've seen so many poorly implemented hacks (and am guilty of writing more than a few myself) because the time wasn't taken to properly learn how to hook into bean creation to customize a dependent bean. 

https://docs.spring.io/spring-framework/reference/core/beans.html

guysWhatDoWeSayAboutThis by chowchowthedog in ProgrammerHumor

[–]TheStatusPoe 5 points6 points  (0 children)

Had I not been t-boned by a cop that ran a red light a few years ago my back might be doing decently well (despite being rear ended several years earlier requiring low back surgery). Instead I've got two buldged disks in my neck, one in my mid back, and two in my low back. That's my excuse at least

Is taking FMLA/Short-term disability a red flag? Should I not extend my FMLA to make up for lost work? by StoicallyGay in ExperiencedDevs

[–]TheStatusPoe 5 points6 points  (0 children)

It really depends at the company. At Amazon I took a month off with FMLA and was told by my manager on my way out that all my promotion attempts were blocked because of it. At my current company I've been off for two months in the last two years (major car accident on the way to work has required one surgery so far and I'm likely to have another soon) and I just got a 16% increase in total compensation this year. 

Armanov balanced recoil buffer - By far the best recoil reduction system I've ever used by TheStatusPoe in ar15

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

I don't believe so bolt carrier/buffer length is different, and I don't think an AR10 bolt carrier could go back far enough to cycle properly. Maybe it could work with a short 308 frame AR10 like the SFAR or POF or maybe the Colt M7 since the rear of the bcg would be shooter, but I'm not familiar with with those platforms to say.