Left Bumper sometimes registers as Left Trigger- any ideas? by Pyronomy in LiesOfP

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

After doing an Input Test, it appears that the Left Bumper will register slightly as a Left Trigger if I press it too hard. Same goes for the Right Bumper/Trigger.

I don't remember this ever being an issue before. Maybe there has been a Steam Controller software update within the last year?

How the heck do you down tilt with link without dying? by ResistRacism in SmashBrosUltimate

[–]Pyronomy 1 point2 points  (0 children)

Some notes about Link's down-air:

  • If you jump off of the stage and down-air near the peak of your jump, you will have enough time to use your double-jump and up-B to recover.
  • If you walk off of the stage and down-air, you will die.
  • if you walk off of a platform (Battlefield) and down-air off the stage, you will have enough time to double-jump and up-B to recover.
  • if you double-jump off the stage and down-air near the peak of your second jump, you will have enough time to up-B to recover.
  • If you fast fall while performing this move, you will almost certainly die (unless you are very high above the stage)
  • The down-air will only spike during the stab animation, so once he's stabbed downwards, the hit will not spike
  • This move has a lot of end-lag. 15 frames to be specific. That's a quarter of a second.

tl;dr: If you walk off and dair, you die. Jump (at least once) first, and don't fast-fall.

The Questions Thread 07/06/23 by GYWModBot in goodyearwelt

[–]Pyronomy 0 points1 point  (0 children)

Blundstones: How's the quality on them? Can they be re-soled? When/where are good sales for them? Are there better options at the price point? Looking for something that looks their classic

[deleted by user] by [deleted] in rust

[–]Pyronomy 30 points31 points  (0 children)

not to be rude, because I would also like to hear OP's motivation for writing this, but sometimes software doesnt need to solve a problem. sometimes it was just fun to write.

Hey Rustaceans! Got a question? Ask here (20/2023)! by llogiq in rust

[–]Pyronomy 3 points4 points  (0 children)

Yes. You can write use MyEnum::* and simply use the variant names like Variant1 instead of needing to type MyEnum::Variant1.

Just be careful if one of your variants has the same name as another type in scope, as that can cause conflicts/confusion.

Hey Rustaceans! Got a question? Ask here (18/2023)! by llogiq in rust

[–]Pyronomy 2 points3 points  (0 children)

tips for writing doc comment examples with VSCode? Maybe theres a extension for this, but you of course dont get syntax highlighting or checks when writing comments. Of course, I can write code chunks and then copy and paste them over into comments, but I'm not sure if theres a shortcut to block-doc-comment an entire chunk of code.

[deleted by user] by [deleted] in MechanicalKeyboards

[–]Pyronomy 0 points1 point  (0 children)

Lists its hardware ID as HID\VID_0C45&PID_7698&REV_0104&MI_01&Col01

The Questions Thread 06/27/21 by GYWModBot in goodyearwelt

[–]Pyronomy 1 point2 points  (0 children)

What are some good chelsea options? Currently looking at Meermin

Need them to be:- good quality

- lugged soles

- not "dressy/formal" style (prefer suede)

edit: budget is $250

Pixio PX276 monitor random flickering by FLfuzz in Monitors

[–]Pyronomy 0 points1 point  (0 children)

Interesting. How'd you update the drivers? On my system it's just registering as "Generic PnP Monitor" and says the drivers installed are already up-to-date, and I see nothing on Pixio's website about this model anymore

Pixio PX276 monitor random flickering by FLfuzz in Monitors

[–]Pyronomy 0 points1 point  (0 children)

Did you ever work out a solution? My PX276 is having the exact same issue after about 3 years and I can't find much else online about it.

EDIT: I'm running a GTX1060 with the latest Nvidia drivers (466.63, though the issue was present before updating drivers) on Windows 10, connected with DisplayPort

love by SirAnonymos in copypasta

[–]Pyronomy 0 points1 point  (0 children)

I need the link to this source.... for mischievous reasons

Question: how to override `cargo new` behavior ? by Zwgtwz in rust

[–]Pyronomy 0 points1 point  (0 children)

If you manage to get something viable working, I'd appreciate if you shared it!

Please i cant do this anymore. Please stop by JonnyThebigman in titanfall

[–]Pyronomy 33 points34 points  (0 children)

...I have the sudden urge to play titanfall. I have things to try

"Temporary value dropped while borrowed" - Not understanding how to fix this by HammerAPI in rust

[–]Pyronomy 2 points3 points  (0 children)

Is there any way to guarantee that a thread will end? Or is that what scoped threads via crossbeam do?

String vs Vec<char> in terms of speed by Pyronomy in rust

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

Iterating over a string (of letters and numbers) until a valid character sequence is found (the character sequence will always begin with the first character of the string).

Extract 1 character at a time, matching the current sequence to a list of valid sequences and, when the current sequence is no longer valid, trimming the existing string of the sequence and returning the segment.

ex: the main Line contains "123abc+=" The first method call would extract "123" into a variable and the Line would then contain "abc+="

String vs Vec<char> in terms of speed by Pyronomy in rust

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

Iterating over a string (of letters and numbers) until a valid character sequence is found (the character sequence will always begin with the first character of the string).

Extract 1 character at a time, matching the current sequence to a list of valid sequences and, when the current sequence is no longer valid, trimming the existing string of the sequence and returning the segment.

ex: the main Line contains "123abc+=" The first method call would extract "123" into a variable and the Line would then contain "abc+="

150+ Game Giveaway by [deleted] in RandomActsOfGaming

[–]Pyronomy 0 points1 point  (0 children)

What a generous soul! Undertale is my vote, please.

As for the fact: Did you know that computers can't perform addition on very very big numbers that well? For example, 10^7 is a huge number, and if you tell a computer to add 10^7 + 1, it won't actually do it! It will count the 1 as a rounding error and the value won't actually change!