• 1 Post
  • 28 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle
  • Been the victim of fraud. Unfortunately - yes.
    When I was younger and Chip ‘n’ PIN was becoming popular, many smaller shops had a Paypoint machine that would print the entire card number and CCV on the receipt. I was so paranoid about fraud, especially given that there was sufficient information printed on the receipt that anyone could do an Amazon order with those details. I used to get a black permanent marker and scribble the details out before putting the receipt in the bin.

    Imagine my horror when a decade later, I learn that I have been the victim of fraud, and a type of fraud it was entirely impossible for me to prevent. In the UK fraudsters watch for new companies popping up on Companies House and then use the details to go on a shopping spree. The way it works is like this:

    They see my name, address and date of birth on the website. They are looking for a name that matches their surname and first initial. So for me that could be Alexander Jones for example. They go to a retail park and pop into Argos. They order several thousand pounds of stuff. When they go to pay, the person at the counter helpfully asks “Do you have an Argos credit card? If you apply for one today, we’ll transfer the balance of today’s purchases to the card” and armed with my address, date of birth and name, and a card that already has the same surname and first initial as me - they are accepted for an Argos credit card. Post nothing for the goods they just bought and leave the store. They go next door to JJB sports, and then whole process repeats. “Do you have a JJB sports card? If you get one today…”

    They visited 6 stores in an hour and repeated this process at all of them. And a week later I start receiving credit cards…

    It’s a surprisingly common scam (or it was), brought on entirely by the shops bring pushed to get people to sign up for credit cards…

    I had to be on a register for several years, so if anyone tried to open an account or take out credit in my name, I would get a phone call to check if it was actually me.




  • Right… so - the long and short of it is -

    A company (any company) decides to integrate with ActivityPub, and the entire fediverse has a toys out of the pram moment every time that happens, gradually closing off into smaller and smaller federated circles, that stop federating with the rest of the fediverse.

    A reminder, Tumblr are supposed to be adding ActivityPub.
    Wordpress has.
    Discourse I believe now has.

    So who exactly is it that gets to decide which companies are and are not allowed to be part of the Fediverse?

    It’s all very very much like a dictatorship, whether you want to accept it or not - that’s exactly how it is being operated.




  • I’m in the camp of welcoming meta to the fediverse, BUT - not bending over backwards.

    If they start making changes that affect federation for them, then that is their problem. Treat meta as a platform, no different to mastodon.
    Remember that the fediverse consists of more than just Mastodon.
    If meta makes a change and suddenly pixelfed can’t federate properly with meta anymore, it’ll be a shame, but it does not mean that pixelfed should make changes and add workarounds so that it is able to speak to meta again.

    Meta might think they have the power to do this, but they only have that power if we behave like they do.
    If instead we take an attitude of, it’s fine for you to be here, while you are being a good citizen, but if you start making demands - you are on your own.



  • I mean I find it quite ironic really that The fediverse has been screaming about how threads/meta will destroy the fediverse, but in reality - it is the fediverse destroying itself from the inside with this nonsense take.

    And really - who wants to be part of that, it’s actually batshit when you take a step back and think about what is being said:

    “I don’t want anything to do with X and I don’t want anything to do with anyone else who has anything to do with X either”

    OK, right now it’s meta. But let’s talk about lemmy, there are people on the fediverse who think the creators of lemmy are problematic - so what happens when we get “I don’t want to associate with lemmy.world but also I don’t want to associate with anyone else who does associate with lemmy.world”

    Some instances defeded mastodon.social for problematic moderation, but they did not defed other instances that do still federate with mastodon.social.

    It seems like an extreme reaction, and if the fediverse does die, it will be the fediverse itself that implodes rather than being destroyed from any company on the outside.


  • Right…
    BUT -

    You aren’t going to see ANY of those 1.2bn users, until someone on THIS server follows someone on THAT server. That’s the point of federation. It isn’t like Twitter - you don’t just see everything that everyone over there posts. It’s no different on Mastodon - there has to be a social connection before posts start showing up here.

    Put another way, if hateful stuff starts showing up on the Fediverse from meta users, it is because someone on the Fediverse is following the people posting hateful stuff.

    When meta eventually starts federating - you aren’t going to see posts from @asjmcguire until someone here is following my account.

    As for if meta makes changes that makes federating hard, that’s not our problem. If they make changes that make federating with THEM hard, that’s their problem. There is no reason the rest of the fediverse needs to follow what changes meta make. It doesn’t hurt us if they break federation with the rest of the fediverse. Meta is in reality no different to mastodon in that regard, it’s just another platform - but for example Pixelfed isn’t going to bend over backward to make life easier for meta.










  • My automations include:

    • Setting the lighting mode to “night mode” based on a threshold of the outside lux level, which is changed dynamically based on the reported weather condition.

    • Setting a master brightness input_number based on a threshold of the outside lux level, which is dynamically changed based on the reported weather condition. Every room then has it’s own input_number which is automatically set every time the master brightness changes, and either has additional brightness added relative to the master, or brightness subtracted.

    • At 7:30am some Jinja code starts setting a daylight temperature input_number which starts adjusting the Kelvin temperature of supported lights in the house. I’m aware that there are various integrations to do this, but they all appear to be based on the actual sun, and as a SAD sufferer I don’t understand why people would want that, especially in the winter. My solution guarantees me at least 8 hours of “daylight” regardless of what the time of year is. - The code is ridiculously simple too:

        {% set k_end = 5500 %} {% set k_start = 2000 %} {% set t_start =
        today_at('07:30') %} {% set t_end = today_at('10:30') %} {% set cv =
        ((now()|as_timestamp) - t_start|as_timestamp)|int %} {{ k_start +
        (cv/3.0857)|int }}
    
    

    Then the reverse happens starting at 6pm:

        {% set k_start = 5500 %} {% set k_end = 2000 %} {% set t_start =
        today_at('18:00') %} {% set t_end = today_at('21:00') %} {% set cv =
        ((now()|as_timestamp) - t_start|as_timestamp)|int %} {{ k_start -
        (cv/3.0857)|int }}
    
    

    My other favourite automation, is something I call Music Walk, essentially when I play music on a group of speakers, as I move about the house when the occupancy of a room changes (camera through frigate, and Zigbee motion) a script is triggered which increases the volume in that room, and starts a timer for 01:30:00 and then after occupancy has been cleared, the timer is reset to 00:05:00 and when the timer finishes - it will run the script that changed the volume originally and set it to 0.1 So it feels like as I walk into rooms the music follows me there, but really it was already playing there - just quieter.