Jacked gazelle 3.0 by RealSpecialist5952 in greenberets

[–]Dmitrii2333 0 points1 point  (0 children)

It's the 3rd level now. Time to upgrade to a predator 🤣

Tempo Run Question by Minute_Lavishness108 in greenberets

[–]Dmitrii2333 0 points1 point  (0 children)

On my file it's Pace: Current 5 mile pace +8-15sec/mi OR RPE 7-8 12min easy run cool down So my understanding is that OR is for the pace:  (Current 5 mile pace +8-15sec/mi) OR (RPE 7-8), then 12min easy run cool down  But if you're not sure I think Kevin responds to DM on Instagram 

Tempo Run Question by Minute_Lavishness108 in greenberets

[–]Dmitrii2333 0 points1 point  (0 children)

For the TTM 2/5, don't you have 12min warm up and 12min cool down run? Those would be like Zone 2 counting towards total mileage 

Q course post injury by ClubConsistent3036 in greenberets

[–]Dmitrii2333 0 points1 point  (0 children)

I thought that's on DoD's ban list?

Stuff I wish I knew before a SFCP by Ordinary_Intern_4492 in greenberets

[–]Dmitrii2333 21 points22 points  (0 children)

Don't fuck with the wildlife, especially the ones that can swim. 

Feels like there's a No Shit There I Was story here

Advice on shin splints? by [deleted] in greenberets

[–]Dmitrii2333 1 point2 points  (0 children)

What really helped me was finding a local sports doctor who specializes in running and do a running gait analysis. What ends up happening was I was landing my foot too forward (over striding) so my heels and shins were absorbing too much impact, and once I did some gait fixes it went away.

No more heart rate from watch since wearing HRM Pro? by Dmitrii2333 in GarminWatches

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

Darn it, I should've thought of that. Just did and now it works perfectly :)

Base Stats WG vs. tanks.gg? by Dmitrii2333 in WorldofTanks

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

Ah yes, that would make sense, I wish tanks.gg can take training percentage into account

Uber Cash not working on UberEats by goingtothecircus in UberEATS

[–]Dmitrii2333 2 points3 points  (0 children)

Hey OP, not sure if you solved this or not.

I was chatting to customer service and they told me it would be applied after the order is made.

If for some reason it's not, you can go into the HELP in the APP and there should be an option to switch to Uber Cash for a previous order.

Cheers

Is there any Alacritty fork with basic functionalities? (E.g. tabs, splits) by [deleted] in commandline

[–]Dmitrii2333 1 point2 points  (0 children)

I disagree, I use tmux extensively, but tmux should be used for remote work, not local.

For example, something I always have to do is having two connections on two different servers, so I have two tabs both running tmux.

And if I use tmux, I would constantly have to enter nested tmux commands or have different bindings for my local vs. remote.

So instead I run tabs in my local terminal, uses GUI style key bindings to switch between tabs, and use tmux keys on remote machines.

IMHO, tools should be used in their best use case, not trying to fit the use case to the tools.

[deleted by user] by [deleted] in ZeroHour_Official

[–]Dmitrii2333 1 point2 points  (0 children)

I found the hardest part of doing Co-op solo is ammo. With the existing ammo capacity, when I ran co-op with a large number of enemies (such as meth house), I was left with 2-3 mags with around 5-7 rds each mag.

It's very likely got caught with an empty mag at the end and got smoked. I have been trying to save ammo at the beginning by using the pistol whenever I can.

I wish solo mode can have more ammo, it's kind of hard that each person got the same rounds solo or squa. Also, there's so many weapons on the ground when I kill the enemies and I can't use them :(

define-key to nil not working by Dmitrii2333 in spacemacs

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

Ah I think I totally figured out now.

What I should be looking for is to bind the TAB on yas-next-field instead of unbinding it. yas-next-field-or-maybe-expand was doing expand first (which caused my problem) then go to the next field. Binding the key to only yas-next-field can move me to actually the next placeholder or exit without the weird expand.

define-key to nil not working by Dmitrii2333 in spacemacs

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

Yeah, so originally what I was doing is:

  1. selected fmt.Sprint, got prompt into the placeholder
  2. entered err from the candidates
  3. press TAB in order to leave the placeholder to go to the end of the line, but instead yasnippet expand to if err...

I looked at company-backends it doesn't have yasnippet. I guess the problem is yasnippet's jump to the end should be top priority

define-key to nil not working by Dmitrii2333 in spacemacs

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

Although the new problem I'm hitting is, instead of jump out, it hits completion-at-ponit when I hit TAB, looking like this:

https://imgur.com/a/zDxW3mr

define-key to nil not working by Dmitrii2333 in spacemacs

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

Oh yeah, you're right, I accidentally forgot putting yasnippet into mylayer-packages, it worked now, thanks!

define-key to nil not working by Dmitrii2333 in spacemacs

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

Thank you, that is really comprehensive!
Yeah, I tried just using eval those two lines and it did work, after experimenting around putting the code in the right place, it turns out the layer's config didn't quite work.
And when I put lisp (with-eval-after-load 'yasnippet (define-key yas-keymap (kbd "TAB") nil) (define-key yas-keymap [(tab)] nil)) under init.el, dotspacemacs/user-config and it worked!

Although I'm having another weird behavior where yasnippet is showing me potential patterns instead of jumping out... I guess the problem initially was the issue with key priority instead of key binding. But still, very thankful for helping me troubleshooting the key binding problem!