A computer science enthusiast.

https://myxi.envs.net

  • 6 Posts
  • 57 Comments
Joined 1 year ago
cake
Cake day: June 30th, 2023

help-circle

  • myxi@feddit.nl
    cake
    to196@lemmy.blahaj.zonepangram rule
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    3 months ago

    There’s a "the’ in the quote.

    The quick brown fox jumps over the lazy dog.

    >>> sorted(set("The quick brown fox jumps over the lazy dog"))[2:]
    ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
    




  • myxi@feddit.nl
    cake
    toComic Strips@lemmy.worldWomen Should Just Be Honest
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    3 months ago

    I concur. It is also very hard to make a rationale for whether your date is ghosting you, is just busy, or is not in a good mood. Obviously, if she is not in a good mood or is busy, she would prefer not to reply to me (because she might unintentionally ruin the bond), but what if she’s just not interested in me and thus is ignoring me?

    If you like this person a lot, your feelings will likely corrupt your rationale. Your hopes won’t let you move on; you will keep suffering, deciding whether to move on or not.



  • Yesterday, I made a choice that was very tough for me to make. So three years ago, I had a best friend, and we both liked each other. Things got hard because my feelings went too far, I became emotionally unstable and turned into an attention seeker. So because of that, I then ended the friendship.

    Recently, she added me back. I thought we could be friends again because I felt like I improved my mental state in the last two years and won’t turn into an attention seeker again. Well, a week later, I was the same as I was three years ago.

    It was ruining my mental health severely. I couldn’t focus on anything. But I still wasn’t ready to give up on the friendship because she was a very nice friend, and I still liked her for some reason. So I refused to give up. But things got worse real quick, and then I decided to write a long message to her explaining why I can’t continue this friendship and then I blocked her everywhere.

    At the cost of ending all probabilities of a future with her, I feel much better now.

    Gotta do something about this attention-seeking thing, though.









  • myxi@feddit.nl
    cake
    toComic Strips@lemmy.worldXXX
    link
    fedilink
    English
    arrow-up
    1
    ·
    3 months ago

    That just attracts certain creeps even more. They like nudes of unattractive people because it is its own kind of a validation that her boyfriend entirely demolished her trust for him (and that’s a big kink of them), because there’s no way she’s couldn’t tell she’s not attractive and therefore wouldn’t want everybody to body-shame her and that’s why she shared the pictures with utmost trust.

    I have seen such degenerates. They make incredibly disgusting and disheartening comments on the victim.


  • myxi@feddit.nl
    cake
    toProgrammer Humor@programming.devVariable Declaration
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    3 months ago

    I also leave out little syntax errors and only only focus on the rough idea during my train of thoughts. And the variables, aren’t really supposed to be implied as private or unused – I do eventually meaningfully use them. If I have to prefix all my variables with a underscore to avoid the LSP, I might instead just disable the LSP. When I eventually turn the LSP back on, it tells me the actually unused variables and imports that I can now get rid of.

    Because of the LSP, I used to write maybe three hundred lines of code per hour, but now I probably average at least five hundred or more.


  • myxi@feddit.nl
    cake
    toProgrammer Humor@programming.devVariable Declaration
    link
    fedilink
    English
    arrow-up
    8
    ·
    edit-2
    3 months ago

    I turn off LSPs during my train of thoughts. I don’t want all red and yellow underline bullshit to disrupt my thoughts. Like, calm the fuck down. I WILL write the correct code eventually; just give me some fucking time.

    Well, I use Neovim, so turning off the LSPs or restarting them is sufficiently simple.

    When I work on a new project, or on a new feature, I temporarily turn off the LSP, and rely on the compiler to figure out where the code errors. Plain white text gives me the freedom to write whatever the fuck I want without any disruption. Of course, I eventually turn on the LSP again to fix the little issues.


  • Whatever I search on Pinterest, Google, Bing, the images there nowadays are mostly just AI generated. I am so used to them by now, I just don’t care anymore. Whatever makes me feel like it’s cool, I praise it. Recently hyper realistic AI generated videos have been popping up, and once there’s enough of datasets of free porn videos, which is most definitely coming out in a few years, the Porn industry is going to be filled with AI generated porn videos as well.

    I think AI generated porn videos are going to be very realistic because there’s so much free porn.


  • myxi@feddit.nl
    cake
    OPtoProgramming@programming.devI Made a English Dictionary Front-End for Terminals
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    edit-2
    3 months ago

    Thanks for note. Do they currently have that backend?

    That aside, you might want to try Nim. It’s pretty cool. It can compile to C and C++, and JS. There have been browser extensions made with it. Heck, it even has an LLVM backend. And the C code it generates it pretty fast on benchmarks. It’s filled with tons of metaprogramming stuff and AST-level macros. And it has this cool thing where it can ignore name casing of identifiers like variables and functions; so isSome == is_some.