• 5 Posts
  • 702 Comments
Joined 1 year ago
cake
Cake day: June 23rd, 2024

help-circle








  • ChaoticNeutralCzech@feddit.orgtoScience Memes@mander.xyzAwooga
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    6 days ago

    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.








  • 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?