• 0 Posts
  • 220 Comments
Joined 1 year ago
cake
Cake day: June 20th, 2023

help-circle

  • I’m way more worried about where the energy is coming from and what the true cost of storage is, rather than where I get it from. Every conversion/storage has an energy and materials cost. As bad as petrol burning is, I have to imagine coal burning + transfer loss has to be about as bad. Not to mention the nature of lithium cells.

    We don’t need more charging stations to make EV viable, we need more nuclear power plants and cleaner battery tech first.


  • “[an] integrated vehicle system that uses, at minimum, the GPS location of the vehicle compared with a database of posted speed limits, to determine the speed limit, and utilizes a brief, one-time visual and audio signal to alert the driver each time they exceed the speed limit by more than 10 miles per hour.”

    Honestly the only part of this that is unreasonable is that it isn’t immediately followed with “the database updates will be maintained and provided in an open, unencrypted format for free for the life of the vehicle, and the tracking data cannot be used for any other purpose”. GPS is a one-way, triangulation-based signal. It doesn’t inherently track or leak anything. I think we would be a lot safer if we all could agree what speed to go.



  • Dran@lemmy.worldtoTechnology@lemmy.worldHello GPT-4o
    link
    fedilink
    English
    arrow-up
    12
    arrow-down
    1
    ·
    edit-2
    2 months ago

    I have this running at home on a used r630 (CPU only). oobabooga/automatic1111 for LLM/SD backends, vosk + mimic3 for tts/stt. A little bit of custom python to tie it all together. I certainly don’t have latency as low as theirs, but it’s definitely conversational when my sentences are short enough.













  • Yeah, turns out when the monopolies are eliminated, people get more competition and a better deal on the consumer end. It’s why I’ll never understand people who say streaming services became as bad as cable.

    I’d argue that streaming is in such a bad place right now because each streaming service has a monopoly on their own content. Sure, you could argue that studios “compete” with each other on the content they produce, but I’d argue that cable companies were a different layer of the stack entirely. Cable companies all offered the same channels and the same content, and in areas where they did overlap, competition to offer the best delivery of those channels was great. What made cable bad was that there was little incentive for companies to geographically compete. In the era of streaming, companies have little incentive to allow their content to compete across platforms.

    If you ask me, every streaming platform should be broken up from their production parents, so that streaming companies can compete on what they offer, and how they deliver it. There is no incentive for the platforms themselves to compete with each other. It’s all about how hard the services can enshittify before people stop watching the content they have a monopoly on.



  • It doesn’t need csam data for training, it just needs to know what a boob looks like, and what a child looks like. I run some sdxl-based models at home and I’ve observed it can be difficult to avoid more often than you’d think. There are keywords in porn that blend the lines across datasets (“teen”, “petite”, “young”, “small” etc). The word “girl” in particular I’ve found that if you add that to basically any porn prompt gives you a small chance of inadvertently creating the undesirable. You have to be really careful and use words like “woman”, “adult”, etc instead to convince your image model not to make things that look like children. If you’ve ever wondered why internet-based porn generators are on super heavy guardrails, this is why.


  • Dran@lemmy.worldtolinuxmemes@lemmy.worldsystemdeez nuts
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    2 months ago

    There is also the argument that it’s more complicated under the hood and harder to troubleshoot, particularly because of it’s inherent parallelism and dependency-tree design, whereas initv was inherently serial. It was much more straightforward to pick the order in which services started and shut down on an initv system.

    For example, say I write a service and I want it to always be the first service stopped during a shutdown, and I want all other services to wait for it to stop before shutting down. That was trivial to do on an initv system, it’s basically impossible on systemd.

    For those wondering, yes I did run into this situation. My solution was clobbering the shutdown, poweroff, and restart binaries with scripts earlier in path search that stop my service, verify that they’re stopped, and then hook back to systemd to do the power event.