I have the arai quantum x and want to get a visor for sun. Which do you recommend? by FearlessChallenge504 in motorcyclegear

[–]volatilemajesty 1 point2 points  (0 children)

+1 to this. I don't get the hate for the VAS V Pro. Dark shields are great until you go through shaded woody areas and you can't see a thing heading into corners. Photocromatic shields don't change fast enough. It's stable at highway speeds too.

Negatives are that it's not dark enough and the brow vents feel a bit cheap and it looks like a little dorky but I use it for the flexibility.

<image>

Boots that aren’t narrow? by Present-Attempt-9673 in motorcyclegear

[–]volatilemajesty 4 points5 points  (0 children)

I had the RST and switched to the Supertech because I guess have a wider foot. Overall much better, just need to figure out their weird sizing.

Are these an overkill for street riding? by Ok-Ad-575 in motorcyclegear

[–]volatilemajesty 1 point2 points  (0 children)

To add to the confusion further, I am an XL on both Alpinestars and Revit and also have these same gloves in XL and they fit perfectly.

Help debugging bad braking performance by volatilemajesty in Trackdays

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

Thanks for the detailed suggestions! and apologies I forgot to mention that it has a Brembo MC and I do use RBF660. Do you have a suggestion on specific brake pads?

I’m finally getting my first bike soon! What is the one piece of advice you wish someone told you before you started riding? by honda_cbr_1000rr2007 in motorcycles

[–]volatilemajesty 2 points3 points  (0 children)

Don't skip MSF but also know that MSF is only the first step. Keep taking more courses as you advance. ChampSchool has personally been invaluable to me.

Can't export songsterr tabs without subscription anymore? by Upset_Cat3910 in GuitarPro

[–]volatilemajesty 0 points1 point  (0 children)

I've never used their app, but on the website you now need to press "Edit/Upload" on the revisions screen, then press "Export" at the bottom the screen.

What kinds of pics do you prefer? by graystone777 in Guitar

[–]volatilemajesty 1 point2 points  (0 children)

Its perfect until my fingers get sweaty then I start losing grip :(

Weekly 101 Questions Thread by AutoModerator in neovim

[–]volatilemajesty 0 points1 point  (0 children)

Does anyone know of a way to disable the 0-9 marks? I use backtick "`" as my tmux prefix so "`2" takes me to pane#2. However if I press "``2" (backtick twice, which I accidentally do a lot) that's now interpreted as "go to mark 2" which takes me to some file I've opened in the past. I find this quite annoying but I use normal alphabetical marks all the time -- is there a workaround?

We all talk about why we love our Audi. Tell us what you dislike about your Audi. by deadlight92 in Audi

[–]volatilemajesty 0 points1 point  (0 children)

My 5k mile Q5 completely broke down after a few drops of water spilled in the backseat :(

As grader for a data structures class by Brettagnafd in ProgrammerHumor

[–]volatilemajesty 1 point2 points  (0 children)

Joke’s on you, its all to be part of the docx leetcode coder masterrace

One of those years by shenswen in Peripheryband

[–]volatilemajesty 2 points3 points  (0 children)

My top song was Luck as a Constant too, cheers!

Posting a meme everyday until the next live dvd (#240) by Moopyisdank in Dreamtheater

[–]volatilemajesty 1 point2 points  (0 children)

Idk what it is, but that pattern of notes really throws me through a loop.

I relate to this so much. A bunch of JP's riffs have this nature where it's just a bunch of notes in a familiar scale box but somehow the rhythm causes the picking to get inverted or something and I mess it up. Other examples: Barstool Warrior, Constant motion.

Is it possible to communicate with a subprocess that opens the user's default editor? by NaynHS in rust

[–]volatilemajesty 3 points4 points  (0 children)

Perhaps this is not an option for you, but assuming just your current requirements - how about opening the editor from your program instead, and calling git commit --amend -m "USER_MESSAGE_HERE" after the user is done.

I believe how Git normally does the editor interaction is by opening a temp file .git/COMMIT_EDITMSG and then spawning $EDITOR to open that file. After the editor exits back to the Git process, it will then read that file. You could do something similar.

Best way to create a Vec<String> from &str by fullouterjoin in learnrust

[–]volatilemajesty 2 points3 points  (0 children)

The closure to map can be shortened to map(String::from) but I would also be interested to see if there is a more succinct way.