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/)RA
Posts
5
Comments
79
Joined
2 yr. ago

  • I have noticed different distributions have different boot times? I remember arch being a lot faster than Ubuntu. (Maybe due to choosing to have everything included and enabled by default, or more bare bones distributions).

  • I'm renting hardware, so if it breaks I probably get the same hardware (and I am assuming backups will be on me). Yeah that is a valid consideration. It will cost me at least several days to find replacement hardware.

  • I have 50/50 speed so that's ok.

    And having a single open port in my firewall won't do much. I'm trying to think of a scenario that is not secure. If the Minecraft service itself is hacked, then tailscale or Cloudflare tunnels won't help me, because they will probably gain the same access rights as the user that I created for the server. Or am I missing something?

    Weird TCP packets ? I probably receive those already, server or not.

  • For a VPS it is expensive, but this is dedicated hardware. A Minecraft server needs a decent CPU (not many cores) and is memory hungry, so a minimum of 16GB. Needs decent ping all over the world.

    Because of the last requirement I considered ovhcloud and hetzner and this one is still relatively cheap?

  • Well they thoroughly fixed that in Windows 2000 with better memory management. Has happened very rarely in versions after that.

    But, yes, it's also conveys very little useful information other than "I crashed, I hope you saved whatever you were doing".

    (But I've had crashes in Linux too, probably because of Nvidia)

  • Is that true? Every error in Linux is logged, configurations are readable. For me, I'm very tech savvy, clicking around in GUIs hoping to find something, spelunking in event manager trying to find an error, is so much harder than in Linux.

    This is very personal, I know. How do you debug and fix issues in Windows again? :-) It has been a while.

  • I'm not sure if you really want to know, but:

    greater than, smaller than, will cast the type so it will be 0>0 which is false, ofcourse. 0>=0 is true.

    Now == will first compare types, they are different types so it's false.

    Also I'm a JavaScript Dev and if I ever see someone I work with use these kind of hacks I'm never working together with them again unless they apologize a lot and wash their dirty typing hands with.. acid? :-)

    edit: as several people already pointed out, my answer is not accurate. The real solution was mentioned by mycus