Oh no, you!

  • 17 Posts
  • 790 Comments
Joined 2 years ago
cake
Cake day: November 3rd, 2024

help-circle






  • 600-700 is around when the basic beginner traps stop working. Fried liver attack, etc, and not moving on past those traps is why so many get stuck there for too long.

    Reading theory is helpful, but I’d say that’s more important at 1000+ ELO. For now, I’d say learning the basics of evaluating any position (king safety, long diagonals, weak squares, etc). Also, knowing many openers is good and all, but I suggest picking one and get really good at that. “I fear not the man who has practiced a million openers once” -Bruce Dickinson, or something.

    My personal choice for openers are Kings Indian attack (as white) or Pirc Defense (as black). These are very similar, so if you know those two well, it doesn’t really matter what color you start as - they tend to end up with similar mid-games.

    Also, around 700 it becomes important to spot which tactics are available to you in various positions. The puzzles at chess.com are really helpful for learning this.

    As for the lichess argument, yes, it’s good. But I find that the analysis engine on chess.com is slightly better. And on that note, if you have a subscription, analyze your games afterwards, as it helps you understand what went wrong or right (yes, don’t just analyze your victories). Also, keep in mind that chess.com and lichess have different ways of calculating ELOs.

    Also, use the time you have. If you’re playing 10min games, make sure to use your time accordingly. Don’t rush into a blunder because you didn’t see the revealed check or the fork. Personally I mostly play 10min games, as that gives me plenty of time to evaluate the board. Sometimes I do 3min when I’m less patient.

    Source: 1757 day streak on chess.com, 1261 ELO while I’m writing this (Although, knowing myself, I’ll trip back to 1100ish soon)



  • Are you referring to how to manipulate files, or more what the various files and folders do?

    EDIT, now that I’m typing on a keyboard (connected to a linux PC, obviously), and not on a phone:

    Depends entirely on your definition of fun, really, but the way I learnt it was basically by breaking stuff, sometimes intentionally:

    • Poking/editing files in /etc to see what happened
    • read and write data from/to files in /dev (Careful, these are devicenodes. This is an easy way of overwriting your partition table). As far as I can see, /dev/dsp doesn’t exist anymore, but you could cat a .wav file to it and it’d play through the soundcard. I gues modern sound pipelines are a lot more sophisticated hence why I can’t find it
    • Play around with redirects and pipes: > >> 2>&1 | 1>/dev/null
    • Get comfortable with file permissions and how to use them. I had many users on this server I had, and I liked to (ab)use the group bit to grant access to various things.
    • Poke every binary in /bin and /sbin to see what they do

    :wq