• 9 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: June 26th, 2023

help-circle







  • Seconding vim as the universal Unix/Linux editor. It takes a while to become a real vim pro, but learning basic usage is very helpful. Escape to switch to normal mode (where letters trigger functions instead of just typing), i to switch to input mode, : in normal mode to enter commands, :wq to save and quit, :q! to exit without saving - that alone should be enough to cover a lot of basic use cases. If you ever want to learn more, there are plenty of tutorials online.












  • I don’t play AAA games (and haven’t played an ND game since Jak 3) so I don’t have a horse in the Naughty Dog race, but Druckmann’s take on “fun” was a valid one. A work of art can be engaging and emotionally impactful even if it isn’t “fun”, and sometimes evaluating a game based on whether testers are, in their own opinion, “having fun” is counterproductive. Is Papers, Please fun? Is Kentucky Route Zero? Is To The Moon? Hell, what would a tester say if you asked them if they were having fun after spending an hour with Disco Elysium?

    Either way, you can hate the game and its plot, but to call TLOU2 shovelware is genuinely deranged. When’s the last time you played an actual shovelware release?







  • man is standard Unix manual pages, while info is a documentation format introduced/popularised by GNU. info pages usually have a lot more information (sometimes including tutorials, guided examples, links to different pages and sections, etc (depending on the project maintainer obviously)) but man pages are the standard and basically everything has one. If you run info [program] for something without a dedicated info page, it will show the man page instead.