• 0 Posts
  • 3 Comments
Joined 8 months ago
cake
Cake day: November 19th, 2024

help-circle
  • As native Russian speaker, this is terribly rarely used in this full format (and it’s one among many), but genuine, I’ve heard it IRL.

    “Тебя не ебёт, так не подмахивай”

    This is highly and universally derogatory, you could expect to hear it from lowlife/criminal, which, unfortunately, is what most russians are lately, though. For russian nazi population, this implies that you are gay or a slut, depending on biological sex, and that’s close to your life worth nothing. For the rest, this is just something nazies would say to insult you.

    The first part alone, though, is quite socially acceptable and overused. I guess, because it’s lost the whole lore behind it, and showing your knowledge of whence it came from kind of reveals that it’s not just an empty word, but you mean it.

    I’m a bit hyperfocused on swearing, am I? Was one of my childhood’s special interests.

    Honestly, “mind your beeswax” is also a rare gem, but not quite so rare.


  • Alexander@sopuli.xyztoRust@programming.devStack advice
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    2 months ago

    This is so true! Tried “nice crossplatform WASM” multiple times - every time you need a system call, drawing single pixel, networking, or catching input - you just start debugging JS. If the logic is simple, whole code ends up being JS mess with small inclusions of Rust. Very unpleasant experience, even with all the modern frontend code generator tools.

    I ended up deciding that making custom bindings instead (edit: mention uniffi here) and building frontend in native (Qt/Kotlin/Swift) ends up being simpler, more pleasant, and the end result is faster and prettier (and no wasm limitations). The downside is having to actually use XCode if you do want iOS app to work (which is quite simple but unpleasant and requires you to have Apple hardware or suffer a lot), but if not and you don’t care for Apple worshipers - it’s pure win.