• 0 Posts
  • 10 Comments
Joined 1 year ago
cake
Cake day: June 17th, 2023

help-circle
  • It gets better, but learning vocabulary at that level is going to feel very slow no matter what. I would recommend keeping a fairly low bar for just ignoring words and moving on, as keeping up the reading habit is by far the most useful. If reading feels tedious it’s easy to lose interest.

    One to two new words per page sounds high enough where you are bound to get repetition, so you may want to only look up words that seem either important for context or familiar (i.e. feels like something you’ve seen before) to get the most value. I combine that with spaced repetition (Anki) for words that I seem to look up often, but Anki has a bit of a learning curve so it may or may not suite you.










  • For me, I don’t think I could survive without git stash, I use it daily for various reasons (e.g. for validating a small bug fix, git stash & git stash pop lets me attempt to reproduce the issue both with and without a correction). The one downside with the CLI stash command is that it’s very easy to forget things in stash though, but I don’t think GUIs generally support stashing?

    Another one I find myself doing quite often is git checkout BRANCH – PATH, to pull specific versions of files between branches.