I’d appreciate it if everyone could just stop burning fossil fuels, please. Thank you for your cooperation.

  • 10 Posts
  • 948 Comments
Joined 2 years ago
cake
Cake day: November 3rd, 2023

help-circle




  • As I waited to meet with Pleroma-tan, the mascot and CEO of Pleroma, on the 5th floor of a walk-up in Alphabet City, I stared out at the city’s grimy streets and thought: Goddess forbid it. Stretching in every direction was a wall of dense, gray, tragically kaleidoscopic fog. And here I was about to interview the head of a social platform named after some kind of ancient Greek spiritual shit, or something. In camera, no less.

    Then something miraculous happened. Moments before the legendary fox-maiden showed up, the haze lifted. Avenue D glittered in the sun. I could see past shitposter.club’s rolling hills all the way to a emoji-capped peak, and the skies were, yup, completely and totally whirling.

    The 324-year-old executive cuts a different figure than most social media bosses. Earlier this year, after Mark Zuckleborg wore a shirt winking at his king-like status at Meta, Pleroma-tan was busy doing a 24-hour live stream of Mario Kart while delivering a lecture about the metaphysics of Stoicism and didn’t even hear about it.

    Indeed, she seems most energized when she’s talking about the unique infrastructures underlying social media and all reality as well as several smaller apps, the Fediverse, or Fedi, which is a spellbook that servers use to communicate. The open source protocols allow the sovereign nations of the digital mindspaces to fully integrate with one another as needed. Any number of apps with complementary or contradictory ideas about moderation or immoderation or teleportation can work in tandem — or not. It’s up to them.

    Pleroma-tan sees fedi as nothing less than the deocratized future of the social socials, and she emphasizes to me that developers are actively building new projects, here and elsewhere. In her dreams, these projects are as big, if not bigger, than Manhattan. Her ambitions might not be kinky, in other words, but they are fluffy. For now, call her an insurgent wonder worker — on whom the sun still shines.







  • It’s not just minor (or major, such as the limits of electromagnetic spectrum) technical differences. The streaming services — unlike cable TV — are not serving the main function that traditional television broadcasts did. There is no “channel 4” to tune in to any more. Not in this household anyway, they cut off the broadcast signals that used to reach here many years ago. Some of the big streaming services do live streams, in which case they’re getting a little closer to traditional broadcaster territory in terms of their function, but for the most part it’s video on demand which is clearly different.

    Some more different than others of course. The average youtube video probably gets about zero views. Even videos pretty near the top of the popularity charts might usually have at most one person watching at any given time. How is that anything like broadcasting?

    I think they ought to be treated more like social media companies. Twitter does video, is it a broadcaster? Whatever it is, it poses problems for us that are more like those of the streaming services.


  • Canada’s broadcasting regulator

    Netflix is not a broadcaster. It’s not even like a broadcaster. Broadcasting means you are casting things … broadly. Throwing seeds into the field without caring about where each individual one lands. Transmitting a signal that anyone can tune in to if they’re in range.

    The streaming services are sending individual streams of bits to specific users over IP. Nobody is in danger of receiving them unless they’ve subscribed to the service. They won’t cause any radio interference. They do not use up valuable public spectrum. Stop pretending they’re broadcasters. Broadcasters are well on their way to being obsolete and that’s both acceptable and inevitable.

    Go ahead and make them do Canadian Content somehow if you must, but I worry that persisting with this fundamental misconception about how streaming services work doesn’t seem likely to lead towards good regulation in the long run.




  • I was going to give some suggestions, but it’s easiest to say it like this:

    if ( ! test -d ~/Backups ) ; then exit; fi
    cd ~/Backups
    count=`ls -d Main-* | wc -l`
    if [ count -gt 11] ; then 
        rm -rf `ls -rtd Main-* | head -$((count - 11))`
    fi
    rsync -aL ~/Main Main-`date -Ihours`
    

    You’d run something like that every six hours. Don’t expect it to work, but maybe it could help get you started.