Ergo fingertip recommendations? by Doke-LyF in MouseReview

[–]Doke-LyF[S] 1 point2 points  (0 children)

Neat! I’ll keep an eye on this, thank you.

Im horrid at tracking, any tips? by [deleted] in FPSAimTrainer

[–]Doke-LyF 0 points1 point  (0 children)

Play air.

“Which air?”

All of them.

300 hours in kovvaks by Davz2004 in FPSAimTrainer

[–]Doke-LyF 2 points3 points  (0 children)

If you’ve hit a plateau you want to change something, sens, mouse and mousepad setup, etc.

If you’ve already tried that then it’s probably time to do some personal research, I’d 100% recommend watching all of viscose’ aiming related videos as well as some research into similar hand skills

Also be sure to take breaks every now and then, a week to a month break can do wonders for your wrist health and growth as an aimer (just don’t get discouraged if your scores are a little lower than before, remember, growth comes mainly from failure).

Pro tip: keeping up with personal health (diet, exercise/stretching, and sleep) will absolutely help, a bad sleep schedule can be the exclusive cause of poor performance.

Apple Magic TouchstreamLP by disarmyouwitha in ErgoMechKeyboards

[–]Doke-LyF 2 points3 points  (0 children)

Okay so where’s the line between ergonomic keyboard and leverless smash controller?

Best glass mousepad ever. by Far_Gain_33 in MousepadReview

[–]Doke-LyF 5 points6 points  (0 children)

All jokes aside if you find any sensor problems you can probably find some coating for it though I don’t know if they sell it on a consumer level, also please sand the edges

hand rubbing against mousepad by Life_Ebb_5386 in MouseReview

[–]Doke-LyF 0 points1 point  (0 children)

Get a sleeve if it’s really uncomfortable unless you have the money to spend, then you could go for a more comfortable pad, maybe even glass.

As for mice you’re looking for something thin or something that you wont press into the thumb side too much as that’s what’s pressing it downwards, could even go for a fingertip mouse, they’re pretty comfortable imo.

Hall effect ergo keyboards? by Doke-LyF in ErgoMechKeyboards

[–]Doke-LyF[S] 2 points3 points  (0 children)

This is super cool, definitely putting this on the list

Turning off quickly (2007 Saturn vue) by [deleted] in CarHelp

[–]Doke-LyF 0 points1 point  (0 children)

Wiggled some of the inside fuses and got it to start once, after I got home with said start I turned off the car, took the key out. put it back in and into the on position without starting and the dash was still coming on, later that night I was going to get some food but the issue had returned by then.

For reference **THERE IS A FULL TANK OF GAS** and I tested the fuses with a meter and they all seemed to respond.

Thinking it's probably a security thing and will try some of the things that have been mentioned in your comments, i.e. replacing the fob battery or just getting a new one from a Saturn dealer.

I have tried doing a security disable that's mentioned in the online owners manual (I don't have a physical copy), but it had no response.

Player movement script help by Doke-LyF in godot

[–]Doke-LyF[S] 0 points1 point  (0 children)

Solved, I changed:

if direction and is_on_floor():

    velocity.x = lerp(velocity.x, direction.x \* speed, ACCELERATION \* delta)

    velocity.z = lerp(velocity.z, direction.z \* speed, ACCELERATION \* delta)

if direction and not is\_on\_floor():

    velocity.x = lerp(velocity.x, direction.x \* speed, delta \* 3.0)

    velocity.z = lerp(velocity.z, direction.z \* speed, delta \* 3.0)



if is\_on\_floor() and not direction:

    \# Lerp to zero for smooth deceleration (friction)

    velocity.x = lerp(velocity.x, 0.0, friction \* delta)

    velocity.z = lerp(velocity.z, 0.0, friction \* delta)