A computer science enthusiast.

https://myxi.envs.net

  • 9 Posts
  • 57 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
    5 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.






  • 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.nltoProgrammer Humor@programming.devVariable Declaration
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    6 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
    6 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.


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




  • Well, mainly because religion cut my penis (circumcised). But, TBF, religions never made any sense to me. As a kid, I was forced to go to Madrassas in my free time after school. The kids there would argue for silly reasons and the preacher would tell me to learn useless sentences in Arabic. Apparently, this God can only hear you if you tell him in Arabic. That didn’t make any sense either.

    When I went to a new school, in my middle school years, on my first day’s break time, a group of students came to me and greeted me. They said they wanted to be my friends. Well, I thought that’s cool, as I hadn’t made any friends yet. Subsequently, they asked what my religion is. Well, I told them what religion I was being taught. They immediately then changed their expressions. They uttered I don’t look like people of my religion. IDK why though. Anyway, these middle-school kids only befriend people of their religion. That moment made me have a disgust for religions since then. I kept my distance from these kids after that too.


  • Hi, I spent some time trying out the dictd package. I also read this protocol’s specification. As things are right now, each host-name would require its own parser, because I couldn’t notice a very similar pattern between them. Webster, Jargon, wn, all these have their own standardization for including synonyms and examples.

    The specification doesn’t enforce any pattern on the definitions either. I don’t think it’s going to be very useful even if I do implement it because the parsers are going to be quite complicated.