Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)CA
Posts
1
Comments
593
Joined
2 yr. ago

  • Considering how politically active he is, he might become a politician (even running for president?). A lot of people will care about this if suddenly Elon musk appears in American ballots.

    EDIT: I just remembered that Elon cannot run for USA president. But idk if other political positions are open.

    And seeing how trump can break every law, I don't see what would prevent Elon from running for president.

  • For rust I use iced, as it meets all my needs and is a delight to work in. I don't think it's good for making graphs though. For graphs I heard that people like matplotlib (in python), which you can also use inside PyQt apps. I've tried using matplotlib and did not enjoy the experience at all, but I don't know of any alternatives.

  • That is because when you're a beginner, you read everywhere that you should be using anaconda and jupyter notebooks. I know because I did so. Neither of them lasted more than a week on my computer though.

  • Anything that's not an integer or a range doesn't belong inside []. Much more readable to use zip, map, filter, etc. And more powerful.

    EDIT: that was meant for indexing lists. Strings inside [] for indexing ducts are fine.

  • I haven't used npm. But pip is horrible. Some times I've used a well-known library that only works on linux, but there is no mention of it whatsoever, and it installs without problem. The error only happens at run-time (not even when importing!) and says nothing about platform-dependency. I only learned that it was a linux-only library because I happened to try running it on a Linux machine to see if it worked.

    Many times you have to set up your environment a specific way (environment variables, PATH, install dependencies outside of pip) for it to work, and there's no mention of it anywhere. Sometimes you install the library with pip, sometimes with apt, and there is no way to know which one. And sometimes the library is both in apt and pip, but the pip one does nothing.

    Furthermore, good luck importing a library. You might have installed it with "pip install my-library" but to import it you have to do "import MyAwesomeLibrary3". And pip won't tell you about that.

  • My screen gets dimm enough that it's almost impossible to see outside with the slider at the left.

    The solution is extremely easy though. Put an option in the settings so pressing volume up/down while the screen is locked changes the brightness instead of the volume.

  • That's because it's not the same feminist movement as it was when millennials were gen z's age.

    The last questions are what feminism used to be (what millennials liked). Nowadays, however, feminism is plagued by not-feminist people, that instead of wanting equality want women superiority. That's the feminism gen z knows about, and the men don't like it. That's also the reason they answer "no" to "are you a feminist?" But they support actual feminist policies. The definition of feminism has changed.

    EDIT: just for reference: my county (Spain) recently put porn under a passport with limited uses per month. Why did they do that? They claim feminism. Does that sound like feminism to you?

  • It not being fully 3D doesn't mean that it's of lower quality.

    For example when consoles got powerful enough to draw 3D backgrounds you could see a significant decline in background quality, since you can have a higher quality 2D background for a fraction of the resources.

  • I poo almost daily at work. It's almost impossible to hold it in for 8:30 continuous hours.

    If someone tells me off for it, they will find out how much my productivity drops when I have to focus on holding the shit instead of doing my work.

    Poo in work. Not only is it a nice break, but it also is more productive than not pooing. Win-win for everyone.

  • To be fair, in that article mentions the way to get rust from C. Sure, there is not a compiler written in C, but C is down there in the list of compilers needed for rust, so "just" need to compile some other compilers in the middle.

  • The bedrock of modern civilizations is expensive to develop, buggy and unergonomic though.

    If you make C run, you probably (I'm not sure, would have to verify) can make rust run. And if there isn't yet, there will probably soon be a C compiler written in rust, so you can choose to bootstrap from wherever you prefer.

    C's ABI will probably last longer than C, since there is not a stable rust ABI though.