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/)PM
Posts
19
Comments
279
Joined
2 yr. ago

  • It's Nato according to the BBC:

    https://www.bbc.co.uk/newsstyleguide/grammar-spelling-punctuation

    our style is to use lower case with an initial cap for acronyms, where you would normally pronounce the set of letters as a word (eg Aids, Farc, Eta, Nafta, Nasa, Opec, Apec)

    If you don't like this, then start referring to the BBC as bubbakuh, so they'll have to change the spelling to Bbc.

  • GNU style is logical, because braces are syntactically a single statement:

     
            while (x == y)
          func1();  // can be replaced by { ... }
    
    
      

    However, I prefer to entirely avoid unbraced single statements after while/if:

     
            while (x == y) {
          func1();  // easy to add func2(); later
        }
    
    
      

    Although this is ok when it fits:

     
            while (x == y) func1();  // brevity!