• 5 Posts
  • 93 Comments
Joined 2 years ago
cake
Cake day: July 25th, 2023

help-circle


  • Theres actually a lot at the gym you can’t do at home. Any barbell movement (big stick with weights on the end) you can’t do unless you have one at home, all the cardio machines, workout classes, cable machines, etc. I enjoy my gym time because I’m able to get a better workout at the gym compared to anywhere else. You can basically where anything to a gym. If you’re doing upper body, just make sure you have a loose fitting shirt on, if youre doing lower body have loose fitting pants on. Gym time is what you make it. If you find one thing fun, you’re allowed to just do that.







  • I use vim bindings in vscode, but I’m trying to switch to neovim.

    It’s hard to talk about efficiencies without use cases but here’s some that I like:

    • Compared to using mouse, text selection is just much easier in vim. Instead of accidentally highlighting an extra space and clicking somewhere on accident which gets rid of my selection, vim lets me go directly to the end of the word and be precise about where I’m selecting.
    • I remember before I used vim, I would count the number of times I hit the backspace or delete when I had heavily nested parentheses. With vim I just type the exact number I want, and if I were to undo that operation I also know exactly what was changed, whereas when counting there’s always the possibility of miscounting or pressing delete without counting.
    • I don’t have to scroll. I can jump 100 lines in less than a second. Instead of searching through long files to find where I left off, I just generally remember what line number I was at, then I can simply just jump back.
    • Forces me to type better. Before vim I had really shitty typing form(I don’t know what it’s actually called) but switching to vim shone a light on exactly how I was typing wrong, and now I type faster.
    • Using the % operator you can jump between brackets or parentheses. This comes in handy especially when you want to highlight the inside of a function call, or just jump to the end of a pair of brackets