• 0 Posts
  • 24 Comments
Joined 5 years ago
cake
Cake day: June 27th, 2020

help-circle
  • You should exercise but you don’t have to do it at a gym. The weather is lovely right now (depending on where you live), go run around a park. You can do free yoga classes at home.

    Exercise doesn’t need to be expensive if you can’t or don’t want to pay for it. I got a lot of mileage out of running around a park and throwing Olympic rings over a tree to do bodyweight exercises.

    Nowadays I love the gym though, I go several times a week and use stuff I just don’t have space for or can’t afford.


  • 777@lemmy.mltoProgrammer Humor@lemmy.mlYes, But...
    link
    fedilink
    arrow-up
    4
    ·
    3 months ago

    I especially like the idea some sadist is serving JSON with left and right double quotation marks from Unicode. It’s the next level up from an api I used where no results was a null, one result was a single object on its own, and multiple results was an array of objects.




  • Does anything happen to the reported player as the result of a report? I’d imagine if a report is found to be false, reports from that player are deprioritised, but I don’t think you would punish them because they could just be mistaken.

    If you watch high level counterstrike for example, you could be forgiven for thinking some of these players are cheating (despite playing on LAN in an arena) because their aim, prediction and game sense is just that good.



  • 777@lemmy.mltoAsk Lemmy@lemmy.worldWill Luigi Mangione be bailed out?
    link
    fedilink
    arrow-up
    109
    arrow-down
    1
    ·
    6 months ago

    I expect he will be denied bail if they can show the evidence against him is strong enough. Even if you have enough money, that’s just not a guarantee. They don’t set the bail at $50mn or something, it’s just not an option offered.

    The boring but probably correct answer is he never breathes free air again, and his best case scenario is avoiding the death penalty.



  • It may sound a little silly but when I get good feedback on something, I pop it in my journal under a specific tag so I can revisit it from time to time.

    It’s unfortunate that people are unfair to you, possibly they are younger or otherwise have incorrect expectations about your fallibility as a human.

    I used to respond to things like that but these days I let the positive comments speak for themselves. Just remember to ask for feedback- a lot of people otherwise won’t do it unless they’ve got something negative to say.


  • I guess I’m late to reading about this. As a 19 year old, he met a British 12 year old online, plied them with alcohol, raped them, pled guilty, and was punished for this.

    What’s interesting is he was convicted in Britain, and then was sent to serve his sentence in the Netherlands. When he arrived, his sentence was reduced and the crime was changed because Dutch law didn’t recognise his crime as rape if force or violence wasn’t involved (they changed that this year).

    Despite that I’m still astonished he was even considered to represent his country in this way. Even though the law and rules allowed it, surely common sense wouldn’t.


  • I have been thinking about this idea for some time also but a couple of things have always bugged me-

    Firstly, how does this interact with privacy? For vote delegation to work, I think the votes would have to be public, or you can’t make a decision on who to delegate your vote to- someone could claim to have one set of views but vote contrary to that. People could come under pressure to vote one way or another.

    Also, who crafts the legislation that is voted on? How do you prevent bill rolling (two unrelated ideas are boiled down to a single binary choice) and splitting (a new service is voted through but the taxes to fund it are not)?

    You said local government at least so a national or state government could help craft these things, but what if the proposed legislation doesn’t actually hurt local people, but doesn’t take into account the actual problems they have locally? For example, what if it would help to allow building in a particular area, but the state government doesn’t know that and it never becomes a priority?


  • Passkeys (depending on implementation) are more resistant to info stealer viruses.

    The private key portion can be in your OS’s credential store and can be used to sign the challenge without being revealed to the calling application.

    Of course this doesn’t work if you got rooted, but a lot of viruses of this kind try to steal what they can get as a regular user, and you can get a lot, ie AWS credentials, saved browser passwords etc.

    In my view it’s cheap defense in depth.



  • I’ve been on the internet since pretty much the start so I’ve seen dozens of great communities come and go. Normally they reach some kind of malthusian breaking point where they collapse under their own weight, I think this is the first time where sheer greed caused the end though.

    So yes, this is the cycle of the internet. Death is actually good for an ecosystem though, it means that new things can evolve, such as the fediverse.

    I do feel sad for what will be lost though, and every time I load Apollo to remember this great app with all the care and attention put in to it will be gone at the end of the month.



  • I don’t see a problem so long as they do so in good faith - for example publishing full event contents to ActivityPub instead of adding a link back to the Facebook Threads app, which is basically what a lot of news sites do with their RSS feeds to get advertising money.

    So long as they do that, it’s not really possible to do a rug-pull. There are far more Facebook users than Fediverse users after all, so it’s going to be advertising for the Fediverse for as long as this lasts and if users would like to remain part of it they’ll have to move to another server. That is, assuming it ends.

    To answer the question though, I don’t care for microblogging personally and I don’t like Meta as a company so I won’t use it. I appreciate the scepticism but I feel optimistic.




  • Yes, looking at the docs linked from a sibling comment I see that upvotes and downvotes are part of the protocol, which is good to see. To prevent vote stuffing however, it does seem that all instances will have a database of upvotes and downvotes and who did them. They were never really secret anyway but it’s interesting that any server can see this, it’ll be an interesting development to be able to track vote brigading.


  • I expect it’s accurate to say; their architecture is not like a database where you can add an index on a blocked state and then join against it. You have to get a list of potential posts that the user might want to see and then eliminate any in the block list. There will be a few edge case users who have thousands of block entries and a multithreading strategy is likely required to swiftly filter it in a reasonable timeframe.

    However, an architecture I’ve seen that works around this is to build this timeline in the background and present it to the user from a cache, I don’t know if this is what Twitter does as I never worked on that. However, if you want to not have a block feature but have some kind of mute feature anyway I don’t see how there is a meaningful difference.