A computer science enthusiast.

https://myxi.envs.net

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

help-circle
  • myxi@feddit.nltoMemes@sopuli.xyz*sweating intensifies*
    link
    fedilink
    English
    arrow-up
    7
    arrow-down
    1
    ·
    edit-2
    2 months ago

    The data collected from these tools are used to train models that detect cars and stuff with precise accuracy. Decades of data from millions of users each day. Once these are perfected, they will be sold to smart car users as auto-driving mode and what not. These services are likely going to be subscription based to maximize the profits.


  • myxi@feddit.nlto196@lemmy.blahaj.zonepangram rule
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    2 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.nltomemes@lemmy.worldIt runs Doom
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    2
    ·
    edit-2
    3 months ago

    Well, it depends on how you interpret their emotes. They constantly use that clown emoji, and so on. I interpret it as “not interested in talking to you” because, uh, I can’t explain why. It’s kind of because of all the circumstances in which I use those emotes when talking to my friends. I interpret their intent as how mine would have been. I frankly can’t take them as anything else; it’s a flaw.

    Also, I didn’t just start ghosting them for just this reason; it was usually for a few other reasons as well. For example, one of my former friends had habituated herself to calling people slang like dumbfuck on a regular basis. But I don’t use such words when talking to my friends; I find them harsh. I kind of used to get upset whenever she’d call me by such slang, even when I had done nothing that could hurt her. We simply aren’t compatible enough to remain friends. Her constant use of such emojis was merely a cherry on top, but a considerable one.




  • myxi@feddit.nltomemes@lemmy.worldIt runs Doom
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    5
    ·
    3 months ago

    A lot of teenagers use it for some reason. It’s annoying because I’m a teenager myself, so I have to deal with my friends using it all the time. I went as far as ghosting some of my friends because they use annoying emotes all the time.




  • I don’t care about video comments anymore; in my experience it was filled with attention-seeking content and incels trying to look cool. It’s also full of bots in the reply sections.

    Instead, I use mpv media player to watch YouTube. I pick a video off my recommendations or the subscription page then I copy the video link and then I just have to do mpv <video link> in my terminal. It’s also much faster on my low-end PC.

    It doesn’t have sponser-block support, but it does have ad-blocker. I haven’t really checked sponser-block support yet either.

    Edit: found this for sponser-block support.




  • myxi@feddit.nltoComic 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.






  • myxi@feddit.nltoComic 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.nltoProgrammer 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.nltoProgrammer 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.