Canadian software engineer living in Europe.

  • 23 Posts
  • 619 Comments
Joined 2 years ago
cake
Cake day: June 7th, 2023

help-circle
  • To be fair, if you live in a world where the only thing that matters is the fossil fuel industry (a popular worldview in Alberta), then the idea of pulling together with the same provincial leaders that have made it ever-so-slightly more difficult to export those fuels probably doesn’t sound appealing.

    Given that frame, dealing directly with the Americans (with whom they have an existing market and distribution route) makes sense. She has something they want, and Trump is notorious for claiming that he can “do a deal” with parties legally incapable of dealing with him.

    Add to that the fact that the federal government is about to be swapped out for a fossil-friendly regime, and she doesn’t need to take the other provinces seriously. It was more valuable to her politically to snub the council and win points domestically.





  • I’ve been using Linux for 25 years. I started with SuSe, switched to RedHat after a couple months, and after a few more months switched to Gentoo… for 10 years, then did Arch for the remainder.

    Frankly, I think that distro hopping is a bad idea because it means you don’t get enough time really understanding how to fix things. As a long time Arch user, it would never occur to me to throw out 10+years of tooling and scripts, muscle memory and shorthand to fix a driver issue. I would read the wiki top to bottom and then go spelunking through other sources until I find the solution (then update the wiki) before I’d switch to something foreign with its own set of problems and unknowns.

    My advice is to find a distro that makes sense to you, and that has a deployment pattern you like and commit to it for a few years. Don’t switch unless you find something that fulfills those two requirements even better, and even then do so cautiously. Your experience and understanding is hard-won.








  • Depending on how complicated you’re willing to allow it to be to run locally, you could just run a webserver right on the desktop. Bind it to localhost:8000 so there’s no risk of someone exploiting it via the network, anf then your startup script is just:

    1. Start webserver
    2. Open browser to http://localhost:800/

    It’s not smooth, or professional-looking, but it’s easy ;-)

    If you want something a little more slick, I would probably lean more toward “Path 2” as you call it. The webserver isn’t really necessary after all, since you’re not even using a network.

    One option that you might not have considered however could be to rewrite the whole thing in JavaScript and port it to a static web page. Hosting costs on something like that approaches £0, but you have to write JavaScript :-(