Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)PI
Posts
1
Comments
468
Joined
2 yr. ago

  • Music folder on a network share. Navidrome and plex and jellyfin all have access to that library, then pick your poison for the client app. Plex is also DLNA enabled so my dumber AVR can access it too. I mostly use tempo app on android though. I'm a pinch, I can use navidromes web UI player to listen. The plex and jellyfin are mainly just a backup and overkill cause I can't make up my mind.

  • One could argue the article is anti consumerist since its talking about de cluttering, albeit in a weird way. At least, that's what I'm assuming. As for organic conversation, beats "did you see [sports game] last night". But that's just me.

  • Well said. I adjusted my expectations and found myself liking the game. I didn't find the planets lacking in anything, really. I expected things to be barren as it felt more realistic. The game is photographiclly beautiful. While a lot of the gameplay and writing critique is valid, I didn't think it was a fundamentally bad game, just mediocre in some parts and excellent in other parts many people simply overlook.

  • I believe it uses DRM that doesn't work on newer Windows versions. There's a fan patch that removes the drm and the game should run. Online (being connected to the internet) is probably not an issue.

  • Not sure if you're trolling or what, but I still play MK Wii regularly with friends on local co op. Used to play it on the console, I now emulate it on a steam deck. There's nothing that matches the quality and charm of the game on any platform and I say this as a regular opponent of Nintendo. I don't find it unfair as it strikes a good balance between skill and luck. Everyone I've played with, gamers or not, pretty much agree.

  • Where I'm from, voicemail is just not used. If a person doesn't pick up, you try again later. Answering machines were not a thing either. Always thought it was weird people used them in movies. I remember maybe leaving one message in my life, never had it myself.

  • Not a lot. Maximum power a fridge would draw is around 150W and it will work for about 8 hours per day so 1.2 kW. A 1 m² panel should provide enough power and energy, even with conversion losses. You'd need a battery though.

  • It does to some degree.

    • "11" is string, 1 is an int, because strings can be added (+) convert int to string and combine: "11"+"1" = "111"
    • "11" is string, 1 is an int, because strings cant be subtracted (-) convert string to int and combine: 11-1 = 10

    I'm not into JS so I don't know how it takes priority. ints can be added too, so I guess its basing it on the first variable which is compatible with the operator: in the first case string, in the second case int.

    If this is how it works, it makes sense. But imo its a case of the designers being preoccupied with whether or not they could, they didn't stop to think if they should.