• 0 Posts
  • 92 Comments
Joined 1 year ago
cake
Cake day: July 15th, 2023

help-circle
  • I technically have both since I’m a developer but my daily driver is my iPhone because when I have an android phone, I constantly want to put different roms on it so it ends up unstable. So, Apple’s walled garden saves me from myself making my phone unstable when I need a phone for calls/messages and not tinkering.

    I don’t notice much of a difference these days, though. Sometimes, I charge my iPhone and grab my Pixel and I don’t even notice. Back in the day, iOS was generally more polished and Android was either slightly behind or ahead on specific features but I find that both are pretty much mature at this point. Flagship cameras are both excellent. Accessory ecosystems exist. There’s really not an overwhelming reason to switch, (especially if the Android phone is also a walled garden, which seems more common now).


  • It probably means the prime minister will be a more moderate figure from the left that can work with centrists. They’ll horsetrade with the centrists over cabinet positions and policy priorities. You could imagine a deal where Macronists get foreign affairs posts (like Minister for Armed Forces and Minister for Europe and Foreign Affairs) and the left gets domestic ones (like Minister of Labor, Minister for Health, etc.)

    In reality, that’s way simpler than it likely will be. Realistically, given France’s history, it probably means some gridlock and grandstanding. Every Prime Minister wants to be president next so there’s probably going to be some positioning for the next presidential election (in 2027) involved. Maybe they’ll get along for a year and then have new elections.






  • I think my all time favorite is the N64. Some aspects haven’t aged all that well — the controller is obviously weird by modern standards — but it was such a huge jump from 2D gaming. It was new and exciting in ways that are almost impossible now.

    And I still like how weird it was. There was tons of experimentation by developers while figuring out how this new era would work on top of the usual fun, Nintendo quirkiness in the first party games. The PS2 and Xbox ended up setting the standard for modern gaming controls, optical discs, and all the rest but the N64 lived in a weird, fun transition space between retro and modern.


  • I’ve never really found turn-based games to be all that fun. A few have had a good enough story or some other mechanic to make them interesting but it’s just not really my thing, for some reason. (It’s not just a video game thing. A bunch of my friends play poker or complex board games and I’d usually rather watch than play.)

    So, something like the Final Fantasy series or Pokémon games would be my answer. Everyone loves Final Fantasy and Pokémon. I’m clearly the weird one. And I probably would love them if they were more action-oriented.








  • In 2017, under Corbyn, Labour got over 40% of the vote compared to about 34% yesterday. Even in 2019 under Corybyn, Labour got like 32%. The narrative in Britain might be that Corbyn was too divisive and Starmer is a unifier but the real issue is that the right wing was split this time in ways it wasn’t under Boris Johnson.

    I mean, say what you want about Corbyn — lord knows the garbage UK media will — but his Labour Party did very well once and about average the next time. The main issue is that using a “first past the post” system in a country with more than 2 parties is silly and undemocratic.




  • chown changes the file owner. chmod changes permissions. So, if a file or directory is owned by root but a user should have access, you could make them the owner or you could keep root the owner and just allow read/write access.

    They come up more on servers where you often have multiple users with different access levels. Some users might not have sudo permission but do have full control over their home directory and whatever else they need. And web servers, for instance, will usually have a user called www-data or similar and it’s shared by all the users in the “developer” group.


  • chmod is the command to change user permissions. The numbers mean user, group, and others and the value allows read, write, execute. So, 000 means no one has permissions to get rid of the mount point. 777 means everyone has all permissions. (4 is read, 2 is write, and 1 is execute and the numbers are added. So, 644 would mean you can read/write, the group and other users have read only access.)

    You don’t have to use the numbers but eventually, almost every Linux admin does because it’s faster, a bit like a keyboard shortcut. But, for instance, you can add Execute permission with chmod +x /some/file/location.

    Here’s more details on the how to chmod and the historic reasons for the 0-7 system (spoiler: it’s 8 bits): https://www.redhat.com/sysadmin/linux-file-permissions-explained