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/)CO
Posts
0
Comments
93
Joined
2 yr. ago

  • Maybe also bias by the number / experience of people using it.

    1st semester students getting shocked by public static void main(String args) and meming it on the internet.

    Go on the other hand likely isn't a common choice / option for a first language.

  • Assembly would be lower. You have more complex / direct instructions in assembly. Brain fuck is pretty much just a pure turing machine, and has 8 instructions.

    X86 has ~ 1000 + variants. Even ARM with a smaller instruction set has 232 instructions.

    In brain fuck to set a number you'd have to count up (or down - underflow) to that number. In assembly you just set it.

    Somewhere I've read that current assembly code with Makros should be similar to writing C.

  • Usually a translation system might return the key value if the translation is missing. By translating with "untranslated" as a default you'd get just that text filled as fallback.

    Unless you reinvent the wheel for lookup and can just ignore your magic value, or put an if on every value lookup.

    Might be a risk there.

  • If someone changes the code and forgets to modify the comment, the reader might favor one or another at random.

    Hence why you should comment why, not how/what.

    // slow down traffic before crossing busy main road

    Now you can change the stop sign to a yield without touching the comment. Or judge that the comment can be removed if it's clear the main road does no longer exist.

  • Exactly. Use the tools you have the way they fit you best. If it aids your work flow learn the CLI commands you use the most. If it's something obscure or rarely used, use the gui.

    Another not mentioned benefit of becoming comfortable with using the cli is that you then can more easily script stuff.