RegalPotoo

joined 1 year ago
[–] RegalPotoo@lemmy.world 8 points 5 days ago

Internet in NZ used to work a bit like the US does now with one large ISP that is also the network operator and gave exactly zero shits about quality of connections or internationally competitive pricing, except they got greedy and charged their retail arm half what they charged their competitors. Anti-monopoly folks got very pissy about this and managed to get the largest fine permitted by law, forced them to split their wholesale arm off into a separate company, banned them from tendering on the government-funded fibre network (which cost them literally billions of dollars) and then changed the law so that if they did it again there wouldn't be a cap on the penalty they could impose.

In 20 years we went from ~35th of the 38 OECD countries in internet speed and accessibility to 9th. Markets only work long-term if you actually regulate them

[–] RegalPotoo@lemmy.world 27 points 5 days ago (3 children)

Yeah, pretty much. The way the rest of the world deals with it is by splitting the infrastructure maintenance and retail sides to eliminate the profit incentive to not do maintenance.

You have a company who owns a/the fibre network in an area and is obligated by anti-monopoly rules to sell access to the network at the same rate and terms to anyone who wants it. They have a profit incentive to maintain the network to a reasonable standard because having a functioning network is how they make money. In a lot of places this wholesale provider will be at least part government owned given that the government usually pays a good chunk of the cost to build out large national infrastructure projects like fibre networks.

Separately, you have retail ISPs who buy access to the fibre network (or 4g, satellite, ...) and sell it to the public along with value adds like tech support, IP addresses, peering agreement etc.

It's never work in the US because holding private companies accountable for how they spend public money and maintaining well regulated competitive markets is communism or something.

[–] RegalPotoo@lemmy.world 9 points 6 days ago

That's probably an impossible task - getting enough people who are experts in every possible field enough to judge novelty and innovativeness wouldn't be feasible.

An alternative is the way the Dutch assess patents - they don't, and grant them automatically on filing, but that means you remove the assumption that they are valid on their face if they get challenged

[–] RegalPotoo@lemmy.world 14 points 6 days ago (3 children)

Unfortunately, the way patent suits work it could be enormously expensive to defend something like this, even when the patent is clearly bad.

You'd be arguing that the patent is invalid to start with, but the court would probably start from the position that you are actually infringing a valid patent (it was granted after all), and grant an injunction to prevent further harm ("stop giving people the software until we can work out if there is any merit to your claim that you aren't infringing"). You then need to put together a case to show the prior art, and you can bet that they'd contest every single point. This whole process could take years, and cost hundreds of thousands of dollars that you won't get back even if you win - there isn't really a provision to recover costs in patent cases because there is the assumption that every claim is made in good faith

[–] RegalPotoo@lemmy.world 4 points 1 week ago

Not in the US; in NZ most houses will have a "wash tub" - essentially a sink in a metal cabinet specifically for doing "dirty" jobs like laundry. That will have water hookups for the washer, so that goes next to it where there is space, then the dryer will do next to that or on top of the washer.

The last few places I've lived in have all had the tub in a corner with space on its left, so it's been dryer, washer, tub. Annoying, my dryer door opens to the right and the washer to the left, so it's harder than it should be to move clothes between them

[–] RegalPotoo@lemmy.world 48 points 2 weeks ago (4 children)

"Doctor" is a title you become entitled to use by virtue of holding a PhD - you have the option to use it, but nothing compels you to do so if you don't want to.

Note that the reverse isn't true - representing yourself as holding a doctorate when you don't can be a fairly serious crime - if you did for the purposes of getting money from some, then it's probably some kind of fraud

[–] RegalPotoo@lemmy.world 26 points 3 weeks ago (5 children)
  • Back up your data now
  • Reseat the cables for the drive
  • Run a self test on the drive - smartctl -t long - if it doesn't pass, then the drive is trash. If it does, then it might limp along a bit longer before catastrophically failing
[–] RegalPotoo@lemmy.world 9 points 3 weeks ago (2 children)

Some (usually cheaper) indicating desiccants use cobalt-based dies which are fairly toxic, but unless you are using them to keep food dry it's not a huge issue. Having them break into powder in the microwave probably isn't great though, I'd avoid breathing any of it in

[–] RegalPotoo@lemmy.world 15 points 3 weeks ago (4 children)

If your country is in a place where you don't think banning felons from holding elected office is good because you are worried that the legislative branch will weaponize the judicial branch to stop their opposition from running, then I'd suggest that the problem isn't one that laws can fix

[–] RegalPotoo@lemmy.world 4 points 4 weeks ago

This game has far too many mechanics. The dev team should prune it back to the essentials and focus on polish rather than getting over ambitious and not executing anything well

[–] RegalPotoo@lemmy.world 5 points 4 weeks ago* (last edited 4 weeks ago)

Personally I'm all for gender affirming care - whatever form that takes - but the man is living proof that you can't buy taste or honest opinions

Edit: can't ffs

[–] RegalPotoo@lemmy.world 56 points 4 weeks ago (5 children)

Also diffusion and vapor pressure and latent heat - reality is messy

 

I'm trying to find a thing, and I'm not turning up anything in my web searches so I figure I'd ask the cool people for help.

I've got several projects, tracked in Git, that rely on having a set of command line tools installed to work on locally - as an example, one requires Helm, Helmfile, sops, several Helm plugins, Pluto, Kubeval and the Kubernetes CLI. Because I don't hate future me, I want to ensure that I'm installing specific versions of these tools rather than just grabbing whatever happens to be the latest version. I also want to ensure that my CI runner grabs the same versions, so I can be reasonably sure that what I've tried locally will actually work when I go to deploy it.

My current solution to this is a big ol' Bash script, which works, but is kind of a pain to maintain. What I'm trying to find is a tool where I:

  • Can write a definition, ideally somewhere shared between projects, of what it means to "install tool X"
  • Include a file in my project that lists the tools and versions I want
  • Run the tool on my machine and let it go grab the platform- and architecture- specific binaries from wherever, and install them somewhere that I can add to my $PATH for this specific project
  • Run the tool in CI and do the same - if it can cache stuff then awesome

Linux support is a must, other platforms would be nice as well.

Basically I'm looking for Pythons' pip + virtualenv workflow, but for prebuilt tools like helm, terraform, sops, etc. Anyone know of anything? I've looked at homebrew (seems to want to install system-wide), and VSCode dev containers (doesn't solve the CI need, and I'd still need to solve installing the tools myself)

view more: next ›