• 4 Posts
  • 134 Comments
Joined 1 year ago
cake
Cake day: April 24th, 2023

help-circle


  • I’m just curious as to how you think these are insurmountable problems while every instance in existence today is already managing to navigate these issues.

    The only thing the author is suggesting is to pool the resources that are going to waste copying media posts around the fediverse into a new backend (that means it’s not directly user accessible and presumably subject to the same restrictions as posts right now) so that the cost of media hosting is more distributed between all the fediverse instances instead of having the big ones hogging all the bandwidth of the small ones with memes because some users decided to subscribe to a community on say Lemmy.world.


  • Did you even read the article? It’s not like all the users just get unrestricted access to storage to treat like a google drive, this is a backend thing. This guy is trying to find a solution to all the wasted bandwidth and storage space from sending copies to all the other instances they’re federated with, which is a legimate issue that the instance admins are already dealing with on a daily basis. This will let them pool resources to help lower costs for smaller instances.

    As to the CSAM thing I can only imagine it would be easier for one instance to purge fifty images/restore from a backup and everyone else just have to redo their thumbnails as opposed to all the instances having to purge and restore but that’s just me.










  • I’m in the process of doing this with my former employer (NLRB complaint). It’s not as much trying to get your job back as getting what you’re owed, be it severance or your pound of flesh lol.

    A lot of contracts specify that you have to go through arbitration to resolve disputes with the company as opposed to the courts, which is both good and bad. Bad because it takes a while and they’re usually all buddy buddy with the people who pay them, but good because arbitration is pretty expensive and making them do all this when they’d rather be done with you brings me joy.

    Also this gives companies the opportunity to use more rope to hang themselves with if they try to do funny stuff with their arbitrator, the NLRB can overrule arbitration decisions if they’re “repugnant”.




  • I did just check to see if you can pass along wildcards in an automation, which you can! I used this automation:

    alias: sentence test
    description:
    trigger:
      - platform: conversation
        command:
          - When is [my] {date}
    condition: []
    action:
      - set_conversation_response: curses, that damnable {{ trigger.slots.game }}
        enabled: false
      - choose:
          - conditions:
              - condition: template
                value_template: '{{ ''birthday'' in trigger.slots.date }}'
            sequence:
              - set_conversation_response: >-
                  curses, that damnable {{ trigger.slots.date }}! It completely
                  slipped my mind
          - conditions:
              - condition: template
                value_template: '{{ ''christmas'' in trigger.slots.date }}'
            sequence:
              - set_conversation_response: sir you know when {{ trigger.slots.date }} is!
    

    This should give you a framework to build off of. It looks like when you don’t define a list of slots in an intent it just passes the wildcard along in a slot.