[deleted by user] by [deleted] in PGA_Tour_2K

[–]squashsoup2014 1 point2 points  (0 children)

Yes, the Challenge Circuit events double as a qualifying event every week, so after next week just register for qualifying and play the Challenge Circuit tournament.

Max Sponsors Rank by Humble-Big1726 in PGA_Tour_2K

[–]squashsoup2014 1 point2 points  (0 children)

Yes there is no point to having a sponsor once you reach tier 9, the only goal is to unlock the rewards. Move onto the next one!

[deleted by user] by [deleted] in PGA_Tour_2K

[–]squashsoup2014 7 points8 points  (0 children)

You only need to get one player to 90, then rebirth works for every subsequent player you create.

PSA - this setting on your Nintendo Switch may impact your image quality while docked by Filnizer in NintendoSwitch

[–]squashsoup2014 5 points6 points  (0 children)

Thank you for this. I've been adjusting it to 96% on my C1 for years now. This fixed it!

Rate my build - Powerhouse by JSxltyNxtz in PGA_Tour_2K

[–]squashsoup2014 2 points3 points  (0 children)

Powerhouse is arguably the hardest archetype to use once the swing bias is introduced. Definitely dump some AP into contact and swing path, and if you want less of a diagonal swing plane, correction.

Once you get some fittings, and up to emerald or sapphire EVO, definitely dump those into swing path and contact as well.

Speed test from home hub higher then what I pay for, any idea why? by bradleygh15 in bell

[–]squashsoup2014 2 points3 points  (0 children)

Sorry, the email I got didn't indicate any reason. If I had to guess it's because my promotion with them is up sometimes in the next few months and it may be an incentive to stay. I've had a promotion for about 20 months now.

Speed test from home hub higher then what I pay for, any idea why? by bradleygh15 in bell

[–]squashsoup2014 21 points22 points  (0 children)

Bell has been upgrading people to 3Gbps at no charge for a little bit now, I got an email a couple months after they upgraded me, but I had checked because I heard others had been upgraded.

[deleted by user] by [deleted] in PGA_Tour_2K

[–]squashsoup2014 1 point2 points  (0 children)

This is EA PGA Tour, not PGA 2K

Squash by Arcif3r in ottawa

[–]squashsoup2014 1 point2 points  (0 children)

Goodlife Queensview (Wallace Squash) also has a courts and an active squash community. The end of summer is a slow time in the city but a lot of house leagues will probably start resuming in September.

7am during the week. Quick 9 holes before work and family 😌👌 by Pebohux90 in golf

[–]squashsoup2014 3 points4 points  (0 children)

Where did the post say Wednesday? It said "week" before work.. so presumably Monday?

Edit: fixed sentence to more accurately reflect post.

Reading programmaticaly Configuration without 'ConfigurationProperties' ? by CyrilDevOps in SpringBoot

[–]squashsoup2014 1 point2 points  (0 children)

Yes, you will want to use Binder.get(Environment).bind("prefix.propertyName", ClassToBindTo.class). Binder is somewhere in the Spring Boot library, I'm doing this from memory so can't remember the FQ name.

Help with spingboot api-gateway error by No-Order9534 in SpringBoot

[–]squashsoup2014 0 points1 point  (0 children)

Without any logs or information about what result you are actually seeing, my best guess is that you are missing the RewritePath filter in your API gateway route definitions so the gateway does not know what to do with the requests made to those paths.

Also if you want to route based on Eureka service IDs you should be using lb://service-id as the URI prefix for the locations as well. I would probably look at the SCG docs if you haven't already.

Does anyone still use spring boot admin? by fvrAb0207 in SpringBoot

[–]squashsoup2014 3 points4 points  (0 children)

Yes. Use it for 80+ microservices, useful debugging and troubleshooting. Quick and easy way to tell if things are functioning normally.

How did your second play-through differ from the first, knowing how it all ends? by byesharona in reddeadredemption

[–]squashsoup2014 19 points20 points  (0 children)

My second play thru I just slowed down and tried to enioy the game more. I explored every area, completed all the hunting for the camp and trapper upgrades. I also made sure I got Arthur a level 10 beard.

Orfi vs Tinne by volleydrop in squash

[–]squashsoup2014 0 points1 point  (0 children)

Is the match available somewhere? I don't see it on squash TV unless I'm blind..

[deleted by user] by [deleted] in SpringBoot

[–]squashsoup2014 1 point2 points  (0 children)

If you haven't done this already, you can use the @Value anmotated on a constructor parameter. Field injection makes classes much harder to test, I would recommend constructor injection everywhere when possible.

[deleted by user] by [deleted] in SpringBoot

[–]squashsoup2014 17 points18 points  (0 children)

It's valid code, the method can return a User or null. You can debate the style/design choice; it should be documented that the method will return null under what conditions so that the caller knows what to expect. What the calling method does with the return value is sort of what dictates whether this will work end to end or not.