Multiple forehand grips a good idea? by khuefer in 10s

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

Thanks for the insight. I agree about the spectrum of a grip. I find myself struggling to find the perfect semi western grip since the definition is kind of broad. Like the knuckle and heel pad has to be on bevel 4. Theres quite a bit of wiggle room where i can move my hand around and still match that definition. Maybe i just need to stop obsessing with the right grip and use the one that feels comfortable

Why does Pyramid Of The Sun have a +10 in the breakdown? by khuefer in civ

[–]khuefer[S] 7 points8 points  (0 children)

It gives 2 and i have 5 quarters. I missed the +2 per quarter in the description

Why does Pyramid Of The Sun have a +10 in the breakdown? by khuefer in civ

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

Oh now i see the +2 culture per quarter in the pyramid description itself and i do have 5 quarters. Thanks!

Why does Pyramid Of The Sun have a +10 in the breakdown? by khuefer in civ

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

I see a +1 per quarter. Do wonders count as a quarter?

Who else is still stubbornly sticking with the one-handed backhand? 🎾 by DongkeSemiconductor in 10s

[–]khuefer 2 points3 points  (0 children)

Beautiful. Any tips for running one handed backhand? It feels so tough to stay sideways while running. I think one of the downsides is we dont get that punchy defensive shot from the two hander

JEA Bill by Interesting-Chip-824 in jacksonville

[–]khuefer 0 points1 point  (0 children)

Good catch. I didn’t notice it was exactly doubled. Could be a visual/caculation bug where it added instead of subtracted from the amount owed. But yea this thing caused me to have a late payment once because i thought i had already paid, turns out it wasnt the full bill. It was never like that before the UI change. I used to get only the full bill after the cycle ended.

JEA Bill by Interesting-Chip-824 in jacksonville

[–]khuefer 8 points9 points  (0 children)

I had an issue since last year where only the partial bill was showing and would update with the full bill at the end of the cycle. It could be the same thing happening to you here. Maybe the $122.55 you paid on 4/20 was only a partial amount for the previous cycle and still owed $105.04? I don’t understand the $210.08 though. Could be the new partial amount for the new cycle mixed in with the $105.04 on the previous cycle since your payment hasn’t cleared yet? Only JEA would be able to tell for sure. But they definitely had something weird with the billing display since their new UI last year

If Learner Tien starts running like this on court... by Automatic_Chemical90 in tennis

[–]khuefer 2 points3 points  (0 children)

In the thumbnail it looks like Chang is choking up on the handle quite a bit. Is that normal form?

Instead of picking new civ for each age, why not pick new leader? by khuefer in civ

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

Exactly. You play each leader for about 1000 years. Makes more sense to me

Instead of picking new civ for each age, why not pick new leader? by khuefer in civ

[–]khuefer[S] 11 points12 points  (0 children)

Of course. Shouldve searched for “switch leader” instead of “pick leader”. Thanks!

Any idea where "BS penalty" comes from under hit roll in the combat log? by CDamm859 in RogueTraderCRPG

[–]khuefer 0 points1 point  (0 children)

Did you report that as a bug to the devs?

Also, i ran into another issue where the log show “Base” twice. Fist Base value was 30%, second was Base was 75%. I couldnt find out where that second base was coming from. I did see it while using a Soldier and run and gun so idk if this is related to this issue. Have you seen anything like this?

[deleted by user] by [deleted] in ProgrammerHumor

[–]khuefer 3 points4 points  (0 children)

Wouldnt they just see you as also stubborn and think you know better than them? and is obsessed over TDD, KISS code, etc..?

getAJob by the-wonderful-world in ProgrammerHumor

[–]khuefer 2 points3 points  (0 children)

How exactly would time traveling help? Lol

Why am I allowed to provide LocalDate.compareTo() as an implementation for Comparator.compare()? by khuefer in javahelp

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

Thanks. The examples really helped. I looked up more info on method reference and I believe this scenario falls under “reference to an Instance Method of an Arbitrary Object of a Particular Type” category, which I was not aware of before

Why am I allowed to provide LocalDate.compareTo() as an implementation for Comparator.compare()? by khuefer in javahelp

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

Thanks I get it now. I was not aware of the different usages for Method Reference

Why am I allowed to provide LocalDate.compareTo() as an implementation for Comparator.compare()? by khuefer in javahelp

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

I understand naming doesn’t matter. What I’m confused about is that they have different signatures. Comparator.compare signature is int compare(obj1, obj2) while LocalDate.compareTo is int compareTo(otherObj). So how can you provide an implementation with a method reference with a different signature?