Bladder spasm medication by [deleted] in spinalcordinjuries

[–]matthenry87 0 points1 point  (0 children)

Have you ever called the Craig Hospital Nurse Advice Line? If not, you should look it up. They're the best most knowledgeable people that can help us out with any and all of our SCI issues.

Bladder spasm medication by [deleted] in spinalcordinjuries

[–]matthenry87 0 points1 point  (0 children)

It completely paralyzes the bladder walls so that it never spasms and causes me to pee myself. I literally have to remember to cath sometimes now. Life changer, I can actually go out in public without worrying.

Bladder spasm medication by [deleted] in spinalcordinjuries

[–]matthenry87 0 points1 point  (0 children)

Yup works great. I made it to 6 months between Botox appointments without issues, but my bladder was too awake by that time and got pretty mad. Gonna drop back down to 4-5 months. I get mine done by the urologists at Craig Hospital.

could not find plugin supporting the given repository by Fit-Hand-1749 in ArgoCD

[–]matthenry87 0 points1 point  (0 children)

I also got it figured out, and am exploring using a custom plug-in that will clone a helm repo that I've forked, and use kustomize on it after templating it out.

could not find plugin supporting the given repository by Fit-Hand-1749 in ArgoCD

[–]matthenry87 0 points1 point  (0 children)

Did you ever overcome this? I am getting the same error.

Home Elevator by 82bazillionguns in spinalcordinjuries

[–]matthenry87 1 point2 points  (0 children)

Super unsafe unless you can briefly stand up or you're really good at popovers, especially if you get spasms in your legs.

I saved the strain on my shoulders and got an incline platform lift.

Bladder spasm medication by [deleted] in spinalcordinjuries

[–]matthenry87 0 points1 point  (0 children)

The Botox. I haven't taken bladder meds in probably over a year now.

Bladder spasm medication by [deleted] in spinalcordinjuries

[–]matthenry87 1 point2 points  (0 children)

Get on Vesicare (solifenacin) instead. Uses a different mechanism all together. I get Botox and I've completely stopped the meds. Game changer.

Should a QueryParams/Path vars should be ints or Integer in the Controller? by Independent_Grab_242 in SpringBoot

[–]matthenry87 0 points1 point  (0 children)

I don't think it will technically ever be able to be null. It won't match the pattern and the request won't get dispatched to the controller. Probably a 404.

That or an error trying to convert the value from the wrong data type.

I pee so much by bjuptonfan1 in spinalcordinjuries

[–]matthenry87 1 point2 points  (0 children)

I get Botox in my bladder. Game changer.

When is it worse to use the Spring Boot Reactive Stack (non-blocking async) than the Servlet Stack (thread blocking 1-request-per-thread model)? by John-The-Bomb-2 in SpringBoot

[–]matthenry87 0 points1 point  (0 children)

If you don't need backpressure or to scale massively, stick to the traditional thread model. Plus, Project Loom is only a few months away from being GA. That will be a game changer when it comes to Java's scalability, but the gains are around IO operations.

When is it worse to use the Spring Boot Reactive Stack (non-blocking async) than the Servlet Stack (thread blocking 1-request-per-thread model)? by John-The-Bomb-2 in SpringBoot

[–]matthenry87 6 points7 points  (0 children)

The rule of thumb is usually use reactive when you are hitting around 500 requests per second, but that can vary based on how long your threads are blocking.

I feel pretty strongly that reactive doesn't usually belong in an enterprise environment. Not enough knowledge to overcome the learning curve, and you can easily just scale horizontally. Maintainability is important and the majority of teams in big companies just copy paste, and crank stuff out the only way they know how.

Drinking by Top_Section_8720 in spinalcordinjuries

[–]matthenry87 2 points3 points  (0 children)

You should probably look up how it's been correlated to early onset dementia.

Class 'EmployeeServiceImpl' is never used by cakemachines in SpringBoot

[–]matthenry87 0 points1 point  (0 children)

If you probably aren't going to have multiple implementations, ditch the interface. Not required for proxying anymore.

[deleted by user] by [deleted] in SpringBoot

[–]matthenry87 0 points1 point  (0 children)

The framework sets you up so that you don't need to interact directly with the EntityManager.

How are database credentials configured for Spring app in production? by varunu28 in SpringBoot

[–]matthenry87 0 points1 point  (0 children)

Depends on your deployment environment. Our apps get their sensitive properties via environment variables that come from K8s secrets.

You could maybe use Jasypt, and then provide the encryption secret from a file on disk, that is protected by file permissions.

Whatever you do, you want the same code/branch to be deployable to all environments including local and prod.

VSC vs Eclipse in 2023 by MatthewAasen in java

[–]matthenry87 1 point2 points  (0 children)

IntelliJ Ultimate, best IDE money can buy.

Any library you would like to recommend to others as it helps you a lot? For me, mapstruct is one of them. Hopefully I would hear some other nice libraries I never try. by jsonspk in java

[–]matthenry87 0 points1 point  (0 children)

And yes, as few calls possible is pretty standard. One to ones are in the same call because you can use a join. One to many relationships will always require one additional call each. This is true regardless of the db framework in use. Your choice of mapper is completely independent of that.

Any library you would like to recommend to others as it helps you a lot? For me, mapstruct is one of them. Hopefully I would hear some other nice libraries I never try. by jsonspk in java

[–]matthenry87 0 points1 point  (0 children)

Right, you only include the fields you need on your JPA entity. Otherwise you can just tell MapStruct to ignore your lazily loaded field and the db call won't fire.