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/)
Posts
26
Comments
711
Joined
2 yr. ago

  • I'm pro-AI, but not pro-AI in the sense of, "turn these bullet-points into a verbose email," and not pro-AI for personal communication like this. I hope this kind of stuff doesn't become common. It's like going in the opposite direction of "SMS language" (which I view favorably).

  • Python is quite slow, so will use more CPU cycles than many other languages. If you're doing data-heavy stuff, it'll probably also use more RAM than, say C, where you can control types and memory layout of structs.

    That being said, for services, I typically use FastAPI, because it's just so quick to develop stuff in Python. I don't do heavy stuff in Python; that's done by packages that wrap binaries complied from C, C++, Fortran, or CUDA. If I need tight-loops, I either entirely switch to a different language (Rust, lately), or I write a library and interact with it with ctypes.

  • With the Hispanic people I know that prefer Trump, it's the usual trumpist/Republican reasoning. Even down to anti-immigration, from a person who's father was an undocumented immigrant. Propaganda and desire to be in the in-group among your peers is wild.

  • I don't think anyone is advocating for a "slap on the wrist." The U.S. criminal justice system is the most draconian in the West, and doesn't do "slaps on the wrist," unless you're in a particular economic or social classes.

    IMO, ideally, he would be sentenced for as long as it takes to rehabilitate him. Could be 5 years, 10 years, 30 years, or never, IDK, I'm not a psychologist. But, the U.S. prison system isn't really designed for rehabilitation either.

  • Production AI is highly tuned by training data selection and human feedback. Every model has its own style that many people helped tune. In the open model world there are thousands of different models targeting various styles. Waifu Diffusion and GPT-4chan, for example.

  • AI are people, my friend. /s

    But, really, I think people should be able to run algorithms on whatever data they want. It's whether the output is sufficiently different or "transformative" that matters (and other laws like using people's likeness). Otherwise, I think the laws will get complex and nonsensical once you start adding special cases for "AI." And I'd bet if new laws are written, they'd be written by lobbiests to further erode the threat of competition (from free software, for instance).

  • There's plenty of open source projects that distribute executables (i.e. all that use compiled languages). The projects just provide checksums, ensure their builds are reproducible, or provide some other method to verify.

    In practice, you're going to wind up in dependency hell before pypi stops hosting the package. E.g. you need to use package A and package B, but package A depends on v1 of package C, and package B depends on v2 of package C.

    And you don't need to use pypi or pip at all. You could just download the code and directly from tbe repo, import it into your project (possibly needing to build if it has binary components). However, if it was on pypi before, then the source repo likely had all the code pip needs to install it (i.e. contains setup.py and any related files).

  • I think I've seen calculations that we could explore every star in the galaxy with self-replicating probes in something like a million years; and other civilizations could do the same.

  • I think a lot of it is because there's so many more well-funded right-wing influencers/grifters than genuine liberal or left-wing influencers. It's much more profitable to take advantage of young men's anxieties and insecurities (to sell fungus pills, get-rich-quick plans, or whatever), than to genuinely discuss things from a liberal or especially left-wing perspective.

  • The problem is that HP writes drivers and software for those things for Windows, but not for Linux, so Linux depends on random people to write software for those things for free (which often involves complex reverse-engineering). With Linux you need to make sure you use widely-used hardware that someone has already written support for (this is mostly applicable to laptops and peripherals, which often use custom non-standard hardware). There may be a way to fix your problems, but you'll have to search forums or issue trackers for the solutions, and they're probably pretty involved to get working correctly. The router crashing thing is probably just a coincidence though, or the laptop is using a feature that's broken on your router.