Skip Navigation

Posts
3
Comments
889
Joined
2 yr. ago

  • Well, I don't think they will write such a banger nowadays, probably just some mediocre country.

  • Deleted

    Permanently Deleted

    Jump
  • There is an 𝑥 axis and it's not too hard to comprehend, although I'd prefer the dividing character to be newline rather than "|", or only show the surveillance year.

    Also, the "trendline" is sus, an actual trendline cannot always be above data.

  • Rube Goldberg's car

  • Not safe for whom? Is there a split that would divide Kirk and the shooter?

  • Deleted

    Permanently Deleted

    Jump
  • Probability? OK.Statistics? Mmm... sus

    (The latter is a quote from the awesome earworm song Mathematik ist schön featuring MatheMann)

  • Admit it

    Jump
  • There are 4 people! /s

  • Counterpoint:

  • Deleted

    Permanently Deleted

    Jump
  • Some graduated cylinders too

  • Thanks. "Public" is not a useful qualifier as it could mean decompiled or leaked.

  • Deleted

    Permanently Deleted

    Jump
  • I finally realized the bottom of graduated cylinders is shaped like a graduation cap 🎓

  • Deleted

    Permanently Deleted

    Jump
  • At least it was in an auxilliary place in the body with well-established surgical procedures. Such swelling would have been deadly almost anywhere else.

    But yes, that also makes it terrifying. Now anyone who knows her IRL can find her topless pics online and threaten to reveal her identity.

  • Yes, this is the same as the Czech "hodina". For extra confusion, "godina" or similar means "year" in most East and South Slavic languages.

    Advanced translation software like Weblate allows categorization into zero, singular, plural-few, plural-many, unknown with if-statements for each for this reason.

  • Then there's Slavic languages like Czech:

    1 den2 dny3 dny4 dny5+ dnů/dní

    At least we've mostly gotten rid of the posh "21/31/41/... den" etc.

  • Deleted

    Permanently Deleted

    Jump
  • If it's Latin, shouldn't we use Latin spelling pronunciation for the T? What is it?

  • Oh, I didn't know that they were a LUT of jump addresses. Stil, a LUT of values would be more space-efficient and likely faster. Also, what if the values are big and sparse, e.g.

     c
        
    switch (banknoteValue) {
        case 5000:
            check_uv();
            check_holograph();
        case 2000:
            check_stripe();
        case 1000:
            check_watermark();
    }
    
      

    ...does the compiler make it into an if-else-like machine code instead?

  • If you couldn't write

     c
        
    if(pChar >= 'a' && pChar <= 'z') return pChar - ('a' - 10);
    
      

    I suppose you typed this "all the size of a lookup table with none of the speed" abomination manually too.

  •  c
        
    unsigned int turn_char_to_int(char pChar)
    {
        switch(pChar)
        {
        case 'a':
            return 10;
        case 'b':
            return 11;
        case 'c':
            return 12;
        case 'd':
            return 13;
        case 'e':
            return 14;
        case 'f':
            return 15;
        case 'g':
            return 16;
        case 'h':
            return 17;
        case 'i':
            return 18;
        case 'j':
            return 19;
        case 'k':
            return 20;
        case 'l':
            return 21;
        case 'm':
            return 22;
        case 'n':
            return 23;
        case 'o':
            return 24;
        case 'p':
            return 25;
        case 'q':
            return 26;
        case 'r':
            return 27;
        case 's':
            return 28;
        case 't':
            return 29;
        case 'u':
            return 30;
        case 'v':
            return 31;
        case 'w':
            return 32;
        case 'x':
            return 33;
        case 'y':
            return 34;
        case 'z':
            return 35;
        case ' ':
            return 36;
        case '.':
            return 37;
    
        }
    }
    
      

    Are you a monster or just stupid?