• 0 Posts
  • 22 Comments
Joined 2 years ago
cake
Cake day: July 7th, 2023

help-circle



  • The airship is what sold me. I’ve wanted ships in Minecraft for as long as I’ve been playing Minecraft, both because it’s cool, and because I think survival games would really benefit from the idea of a mobile base. Being able to take your home with you is such a huge deal and really bridges the gap between the “cosy” and “adventure” aspects of these games.







  • I’ve been spending a little more time with Forever Winter.

    Its very definitely early access; not the bullshit “We’re releasing the game, but calling it early access so you can’t complain about any bugs you find” stuff you get now but actual real old school Minecraft style early access where you’re basically getting alpha builds straight from the developer.

    That said, it’s in much better shape than it was when I first looked into it (maybe a year ago?). Game is really fun to play, unbelievably tense, but without being too punishing. I think they’re really starting to zero in on that Dark Souls sweet spot where dying sucks, but not in a way that actually sets you back all that much. The stealth gameplay feels good, and getting out with a haul of loot is intensely satisfying.

    Plus the art design is unbelievably good.






  • Best I can tell they were trying to remove all packages that depended on a specified package, but fucked up the syntax?

    Apk del --purge removes a package with its dependencies. Rather than specify the package directly, they’ve provided the output of one command piped through another. The first command is apk info -R which would in theory give the reverse dependencies of a package, if they’d given one. The second command is an awk statement that just grabs only the first column of each line that gets piped into it. I’m not sure why it would take 60 minutes to resolve though, since I’m pretty sure apk info -R with no package specified would produce no usable output. Also, ctrl-c exists.