• Jo Miran@lemmy.ml
    link
    fedilink
    arrow-up
    86
    ·
    5 months ago

    Me, casually interacting without any actual romantic interest whatsoever: *Flirt Level: Legend*

    My wife, who I adore: “Flirt with me!”

    Me: “You are pretty and stuff.”

    It’s so difficult to flirt when all I’m thinking is “I love you more than life itself.”

    • Tak@lemmy.ml
      link
      fedilink
      arrow-up
      58
      ·
      edit-2
      5 months ago

      You can think of it as trying to be cheesy.

      “What brings a fine thing like you around here”

      Go to hug her, stop, scurry into the kitchen and grab hotpads or oven mitts. “There. You’re just so fucking hot”

      “Wow you’re married! Must be some really attractive guy to marry a hottie like you”

      I do this with my wife. She rolls her eyes and calls me ridiculous.

  • Azuth@lemmy.today
    link
    fedilink
    arrow-up
    36
    ·
    5 months ago

    I feel this. I’m not socially awkward, can speak in front of a crowd just fine, but my brain just can’t figure out what “flirting” actually is. I’m aware it’s a form of conversation different from normal talking that expresses attraction, but as for how it’s different, how to do it etc.

    I’m in the dark and no friend of mine has been able to give a clear answer.

      • MantidSys@kbin.social
        link
        fedilink
        arrow-up
        14
        ·
        5 months ago

        It’s times like these that I’m glad I am autistic. You neurotypicals really over-complicate things and make life difficult for yourselves.

        How to flirt as an autistic person: make a friend over shared interests, spend time together sharing that interest, realize they’re enjoyable to be around, communicate clearly “I enjoy spending time with you, let’s do it more often”, slowly morph into a relationship out of convenience. Done.

        I cannot understand NT mind-games and obsessive preening. Don’t you get frustrated with it? And to think - someone who puts that much effort into judging you upfront is likely to keep judging things about you all your life, with no end to playing games… Stressful, no thank you.

    • MotoAsh@lemmy.world
      link
      fedilink
      arrow-up
      14
      ·
      5 months ago

      It’s generally when someone is hinting at personal interest beyond the immediate conversation, or otherwise an overt complement where they might not normally show up. Complements are not flirting in their own right, but they can show up readily if someone is either genuinely interested or romantically interested. Hopefully, it won’t be hard to parse between actual direct interest in a topic and, “hey I just want more attention from you and this topic is my in.”.

  • katy ✨@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    31
    ·
    5 months ago

    those three dots aren’t me trying to think of what to write those three dots are me starting to reply and then having a panic attack cause girl pretty

  • GluWu@lemm.ee
    link
    fedilink
    arrow-up
    16
    ·
    5 months ago

    Ascii hex is hot but if you can flirt in binary that’s pretty attractive too.

    49 20 6E 65 65 64 20 74 6F 20 63 75 6D

      • AVincentInSpace@pawb.social
        link
        fedilink
        English
        arrow-up
        23
        ·
        edit-2
        5 months ago

        Not to worry I will teach you!

        Hexadecimal is a method of representing numbers much like the decimal you’re probably used to, only it’s base 16 instead of base 10. It’s used a lot in computer science since one digit of hexadecimal exactly corresponds to four digits of binary and that makes it really easy to write long sequences of binary without wearing out your hand.

        In order to explain base 16, I need to tell you how base 10 works first so you have a point of comparison. This’ll be a bunch of stuff you already know but bear with me. With base 10, you add a new digit every time you count past 9, and each digit in a number is worth 10 times the one to the right of it. Starting at the right you have the ones place, then the tens place, then the hundreds place (10 times 10), then the thousands place (10 times 10 times 10), and so on. The number 349, for example, can be written as 3 hundreds, 4 tens, and 9 ones (3*100 + 4*10 + 5). The thing is, there’s nothing magical about the number 10. You can pick any number you like and have each digit worth that many times the previous, and add a new digit each time you count past one less than that number. In base 16, you add a new digit each time you count past 15, and you have the ones place, to the right of that is the sixteens place, then the 256s place (16 times 16), then the 4096s place (16 times 16 times 16), and so on. The number three hundred and forty nine from earlier can be written as one 256, five sixteens, and 13 ones (1*256 + 5*16 + 13). But wait – 13 ones? How do we write that in a single digit? This is where computer scientists had to get inventive. For the digits 0 through 9, we just use the regular digits, but for 10 through 15 we use A through F. So the number 349 (base 10) is written as 15D in hexadecimal (again, that’s one 256, five 16s, and D ones (A=10, B=11, C=12, D=13)). It’s also common practice to write 0x before a hexadecimal number so it’s clear it’s not a decimal one in case the number doesn’t happen to have any letters in it, so it would more properly be 0x15D.

        Got all that? Good, let’s press on.

        Now we need to talk about representing letters using hexadecimal. Long story short, the only thing computers know how to deal with is numbers. Any other kind of data you want them to interact with (text, images, audio, etc.) has to be converted into a sequence of numbers first. The most obvious way to do this for text is to just say 1=A, 2=B etc. but then you kind of run into a wall when you want to add lowercase letters, numbers, punctuation etc. Some very smart computer scientists in the 1960s came up with a standard way of mapping basically every key on your keyboard to a number between 0 and 127. (That may seem oddly specific, but it’s a perfectly round number in binary.) They called it the American Standard Code for Information Interchange, or ASCII, and it’s still in use today (albeit in an expanded form called Unicode that allows non-English letters, emoji etc., that maps each character to a number between 0 and 2147483647).

        It just so happens that a number between 0 and 255, such as a single letter in ASCII, can be represented using two hex digits. For this reason, any hex string that encodes ASCII will be divided into pairs of digits. The OP might have been kind enough to put spaces between the pairs like you see here, they might not. If they don’t, you’ll have to do it in your head; i.e. 4A5C204E becomes 4A 5C 20 4E. (If there are an odd number of digits total, it’s not valid ASCII.) A good way to make sure you’re counting right is that with the exception of 20 (ASCII space) the first digit of every pair will be either 4, 5, 6, or 7.

        While ASCII can encode any letter, number, or punctuation on your keyboard, most hex you encounter on the internet will only be letters and spaces. For this there are three things you need to know:

        Space = 0x20
        Capital A = 0x41
        Lowercase A = 0x61

        Every letter after that, you’ll just count in hexadecimal till you reach it; e.g. 42 = capital B, 43 = capital C, …, 49 = I, 4A = J, …, 4F = O, 50 = P, …, 5A = Z. Same thing for the lowercase letters only start at 0x61. Space is always 0x20. The letters that start with 4 or 6 and the second digit is between 0 and 9 are easy since it’s just that letter of the alphabet, i.e. the fifth letter of the alphabet is E so 45 = E and 65 = e.

        Got all that? Congrats! Now you can read hex without using a converter!

        Here’s OP’s original message:
        49 20 6E 65 65 64 20 74 6F 20 63 75 6D

        49 = capital I
        20 = space
        6E = lowercase N
        65 = lowercase E
        etc. etc.
        The first three words are “I need to”. I’ll leave decoding the last three pairs up to you.

        (Sorry if this explanation was a bit rambly – it’s late in the day and I’m on mobile)

  • Miss Brainfarts@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    11
    ·
    5 months ago

    Just be adorable and continue to not know what to say, that works too, kitten. You won’t be able to talk much once I put everything on you, anyway.