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

help-circle

  • theneverfox@pawb.socialto196@lemmy.blahaj.zoneLinux rule
    link
    fedilink
    English
    arrow-up
    35
    ·
    5 days ago

    Also, every other week we get another reason to make it a priority

    The arguments against it boil down to “it’s different and scary/I don’t understand it”, “there’s compatibility issues that might be complicated to fix”, or “well what we have now is good enough for my needs”


  • I don’t disagree with that position… As a next step, it seems pretty sensible to me

    To truly understand where you stand, you have to break false dichotomy - political platforms aren’t one or two dimensional, they’re multifaceted. IMO you have to pick an end goal, and chart a course towards it

    Personally, my end goal is solar punk. I want to live in a green world with technology. To get there, I full throatedly resist authoritarianism or centralization of any kind- I believe the larger it is, the more it’ll attract sociopaths seeking power for powers sake

    Eco socialism is a step in my desired direction - I have no issue with it. It’s a sensible waypoint and I’d gladly join hands with those who see it as the end goal. But I’d encourage you to chat with gpt (or better yet, local AI) in the context of your end goal and the next step to get there - LLMs are an extension of the user, and I think this is a proper use of the technology





  • Printing for a single city has got to be more than hosting for an entire country

    Think of all the people you need to print everything out before the next morning - you need a big enough staff of editors and reporters that you can get everything ready in a short time frame, you need the staff to handle the printing overnight, you need drivers to deliver within a 3-ish hour period and the staff to coordinate and load them up

    Meanwhile, for a website, a team of 5 developers/devops could handle all of it. You still need journalists and editors, but they are no longer on the same time frame - they can just release things as they’re ready, and maybe curate an email for the day and what appears on the homepage.

    As far as paper and print costs vs hosting costs? If each paper cost 1 cent, were talking like between .01 cent and .0001 cent per page view, maybe even a tenth or hundredth of that. It adds up quickly, but compared to paper and ink?



  • I’m pretty happy with where my car is at. It’s got this cool thing where you plug a cord in, and the sound comes through the speakers. Then it displays right on my phones screen, which I put under the speedometer so I can glance at it without turning my head

    It’s like magic, my car does the car stuff and my phone does the phone stuff, and if I wanted a closer relationship between the two I could buy a cheap off the shelf component that plugs into the standardized ports (no disassembly required). No updates, my car can’t snitch on me and the only subscription is satellite radio

    Honestly I can’t think of anything I’m missing out on. I don’t have a backup camera or blindspots warnings, but I’ve never used them or needed them. Smarter cruise control sounds worthwhile, but until I can safely take my eyes off the road I’m more worried about it making me complacent.

    As far as entertainment, or even navigation? I’ve never heard someone say “man, my phone experience is terrible, I wish it was more like my car”

    At this point, I’m more inclined to convert my car to electric than to buy a more modern one



  • It’s kinda grey area to start with - if I install something on your computer to track what websites you visit without consent, that’s illegal, right? Different countries have different laws, they’re generally pretty broad

    So then you introduce the EULA - very problematic (as Disney showed us) and no one reads it, but theoretically this is where they outline what the software can do and obtain your consent

    Now, on a website they just have to put the EULA somewhere, theoretically they’re just hosting the content, your browser is in control. The rules are a bit more lax because of the nature of the interaction

    But now, you can visit CNN or BuzzFeed, agree with their EULAs, and unknowingly Facebook and Reddit (websites you’ve potentially never visited), are tracking you. You never agreed to this in any form, the fact it’s even happening is obscured from you, even the sites hosting the share buttons probably don’t know

    It gets less grey area if you live in the EU, they’ve passed a suite of privacy laws that are sometimes ignored


  • One of the earlier methods was the share button image. That button lives on Reddit’s server, and your browser might set the URL from the referer when it requests the image. It definitely has your IP, so they can try to tie that to an account.

    When you click a link, it also likely has a referer URL of the page you came from. These are both things that the browser doesn’t have to do

    When you click share, they now often add URL params that track who shared the link and who clicks it

    There’s tons of methods, some you can shut down with a browser or add ons, some you





  • Holy shit… When I got my wisdom teeth out, I literally broke down in tears after being awake for 20 minutes without Percocet

    Friend, it’s ok to take opiates sometimes…

    Kratom could be an option. You make it into tea, the first cup is a weak stimulant, the second (on an empty stomach) will start to work as a weak opiate. The third or fourth might give you stronger relief. The red strains are supposedly better for pain relief

    You can’t OD on it, it’s commonly available in head shops or online. The addiction potential is very low, you’ll make yourself nauseous before getting what you’d get out of normal opiates. It’s most closely related to the coffee plant - the toxicity concerns are all about contamination, the plant itself is pretty innocuous

    I can give brewing instructions if anyone wants to go down that path, I drink it for anxiety but others say it helps with pain management


  • That doesn’t really match the master/slave relationship. The distributed instances aren’t slaved to the master. They’re each doing their own thing, but as part of that they have a hierarchical relationship when it comes to synchronization

    Distributed computing gets more into the concept of swarms. Each piece is autonomous, and the swarm self-organizes. We made up a bunch of paradigms around this that were basically obsolete by the time we needed them - I think the relationship here is leader/follower, but I’ve never heard that terminology outside the classroom

    They’re sharded. It’s like host/mirror, except each mirror is an equally correct part of the real picture

    One of them is the leader, but it doesn’t control the rest of them. It just coordinates them

    When you get into swarm concepts, like sharding or activitypub, it doesn’t make sense to describe the relationship between nodes anymore. The relationship between any two nodes is “part of the same swarm”. You describe the nature of the swarm as a whole, or the behavior of individual nodes




  • Primary/secondary means they’re all doing their thing, but one is preferred. There’s no instruction going on between them

    If you have a primary and secondary web servers, you’ll use the primary first, but the secondary or secondaries are a fallback

    If you have a primary and secondary drive, you have two drives, one of which is more important (probably because you booted from it). The secondary could be a copy or just another drive, either way the OS or a raid controller is managing it, one drive doesn’t manage another

    Similarly, we have dispatch/worker- the difference between that and master/slave is that they’re different things. A master should be able to work without a slave, and a slave should be capable of being promoted to master - a dispatcher can’t do the work and the worker can’t take over if the dispatch goes down

    The funny thing is we don’t use master/slave much anymore, the whole premise is that the slave doesn’t start to do what it does when it starts up. I can’t think of any examples of it in the past decade - other paradigms, with a different relationship and a different name, have replaced it