• 0 Posts
  • 127 Comments
Joined 8 months ago
cake
Cake day: March 30th, 2024

help-circle











  • rbn@sopuli.xyztopolitics @lemmy.worldThis can't be real can it?
    link
    fedilink
    arrow-up
    1
    arrow-down
    1
    ·
    11 days ago

    Voting for a party you dislike or not voting out of spite is not a good form of protest IMO. At the very least vote 3rd party. With the current election system in the US, that’s still a stupid choice from my perspective but at least it makes your disagreement somewhat visible.

    In the statistics, not voting at all feeds in the same bucket as lazyness or carelessness.



  • If you don’t see any insects on the leaves or the soil, I’d just give it some time. Water it every 2-4 weeks. If it’s a large pot of soil do it every 4 weeks with ~0,5 liters, in a smaller pot do it more often with a smaller quantity.

    In general, it’s better to water rarely, so the top layer of soil is dry most of the time. That way, you’re making the life harder for small flys to lay eggs and nurish from the roots.

    If it keeps losing leaves, don’t panic. Mine had a severe sunburn once and dropped all the leaves. After some weeks it started to recover and grew new leaves.

    I would say, the worst thing you can do is overwater. Mine is in a pretty huge pot (80 liters) and I give it (round about) 1,7 liters of water every 6 weeks in summer and 2-3 months in winter. That way the plant has to grow deep roots to the very bottom to reach the bottom and the top layers are rather dry.




  • rbn@sopuli.xyztoScience Memes@mander.xyzInfinite Suffering
    link
    fedilink
    English
    arrow-up
    22
    arrow-down
    4
    ·
    1 month ago

    I go for option 1.

    In all programming languages that I know, integers have a maximum number. E.g., in C that’d be 2,147,483,647. After that, you would run into an overflow, resulting in either…

    • a crash (train stops, no more deaths),
    • death count suddenly turns negative (all people previously killed are suddenly alive again and even new people are generated out of nowhere) - until we reach the next overflow when people disappear and start dying again
    • or - if it’s an unsigned integer - death count resets everytime we reach the maximum limit

    So compared to option 2, we have a chance of stopping the death count. And even if the train keeps running, we have essentially option 2 but the same people only die very rarely. If we assume a cycle of 1 death per second and an integer boundary of 2,147,483,647, that’s just one death every 68 years per person involved. Seems more fair to me compared to 100 people constantly dying over and over again.


  • Always appreciate any work spent on any FOSS stuff out there but currently I’m a bit afraid that Gecko disappears into unimportance. So I’d prefer more contributions towards that one project rather than opening new ones.

    The issue with browser engines is that it always requires work from two directions. The browser engine must be optimized to render websites as good as possible. And websites must be optimized to be rendered by all the different browser engines.

    And (almost) no one is willing to do the latter for engines with a <1% market share. Already now, more and more commercial and non-commercial websites are only working properly with Chrome or its derivates.



  • If we say that the SSN database internally only stores numbers today, but could also store hexadecimal values without significant redesigns, I would assume that SSNs are stored as text already. So no matter if you put numbers, hex or text, 9 places will always use 9 bytes (assuming it’s ASCII only and doesn’t support UTF-8 etc.).

    Furthermore, the post implied that the current technical limit is 999,999,999. That very much sounds like a character data type to me. Otherwise, the limit is usually something like 2^x.

    If SSNs are stored as numbers today, then hex and text would lead to quite some change. If you go for a re-design, you can as well just increase the length of the field.