Subverb

  • 0 Posts
  • 704 Comments
Joined 2 年前
cake
Cake day: 2023年6月27日

help-circle





  • SubverbtomemesI HATE email
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    5 个月前

    *joins discord*

    You say “Hey guys, I’m new to bonmo and was wondering why it doesn’t use traditional control-c and control-v for cut and paste? I think BRONTO! used the standard keys?”

    *38 minutes later*

    BONMASTER_420 says “first its called BONMO~ not bonmo and the answer is in the sauce we really dont have time to answer the questions of ever fukwit that joins the discord plus its not are job to explain why bronto did shit different tard fork it if you don’t like it shitbeqd”

    *1hr 12 minutes later*

    BleachAnime2009 says “Again with the ctrl-c/ctrl-v thing? Jesus christ learn how to use the search function would you guys? This has been discussed to death.”

    You say “Sorry, I tried searching but don’t see an answer. I’m not a programmer either so if you could just tell me I’d appreciate it.”

    *You have been kicked*


  • SubverbtomemesAddiction is a disease
    link
    fedilink
    arrow-up
    45
    ·
    5 个月前

    On my honeymoon 7 years ago my wife and I took a very expensive 13-day Mediterranean cruise on a huge ship with a casino. One afternoon I went there and spent $300 over about an hour.

    I still kick myself for throwing that money away.




  • SubverbtomemesI HATE email
    link
    fedilink
    arrow-up
    33
    ·
    5 个月前

    BONTO! sucked anyhow. BONMO~ is the FOSS replacement that does everything better.

    They’re looking for devs btw, which is why it’s been so long without an update or bug fixes.

    Donate HERE.


  • No, that’s wrong.

    The “less than” vs “fewer than” rule isn’t about whether you know the exact number - it’s about countable vs uncountable nouns.

    Video game copies are countable, so it’s traditionally “fewer than 1,000 units” regardless of whether you know the precise number sold.

    That said, it’s been misused so much that it’s become more flexible, and “less than” with numbers is widely accepted now.

    Don’t take my word for it, Google it.





  • The 8-bit Intel 8051 family provides a dedicated bit-addressable memory space (addresses 20h-2Fh in internal RAM), giving 128 directly addressable bits. Used them for years. I’d imagine many microcontrollers have bit-width variables.

    bit myFlag = 0;

    Or even return from a function:

    bit isValidInput(unsigned char input) { // Returns true (1) if input is valid, false (0) otherwise return (input >= '0' && input <= '9'); }