Oliver Lowe

  • 1 Post
  • 21 Comments
Joined 8 months ago
cake
Cake day: March 5th, 2024

  • It’s ironic that a company that was well regarded for the quality GUI on their OS is so fucking bad atmaking GUIs now.

    Teams, Windows Settings, Azure, even the Microsoft login page, it’s all godawful.

    There’s some new tech called “Large Language Models”. Apparently this lets people, including programmers, work way faster. These so-called LLMs can ingest our own natural instructions, like “make me a UI which is not totally fucked”, or “refactor this dogshit code which we only keep around because it makes us more money than we know what to do with”! Not only that, the LLM will actually respond with code!

    And more code is exactly what the software industry - nay, the whole entire world - needs. Astonishing.

    I’m 100000% confident that Microsoft has not heard of this amazing tech, otherwise we would not see such a total shitshow.


  • Huh wow didn’t know Teams didn’t have multiple screen sharing. Nice work.

    Something does irk me about the whole approach, though. We have accomplished some amazing stuff in the software world. But Jesus almighty we have some serious interoperability problems, to the point where we literally just send pixels to one another because that’s all we’ve got. Reminds me of that glib statement “the web has become just 4 websites full of screenshots of each other” (or however it goes).


  • Oliver LowetoProgramming@programming.devIncus and programming
    arrow-up
    2
    arrow-down
    0
    ·
    7 months ago
    link
    fedilink

    No worries! Writing that down actually helped clarify some of my thoughts.

    Something extra: distributed computing.

    Let’s say you have 3 processes that need to communicate with one another. There’s heaps of tooling available in OSs to manage those processes. Logging, networking, filesystem access, privilege separation, resource allocation all provided by the host OS without installing anything. But what if those 3 processes can’t run on one “machine”? Which process should go where? What if it needs 8GB memory but there’s only 6GB available on some of the machines? Who controls that?

    Systems like Kubernetes, Nomad, Docker Swarm etc. offer a way to manage this. They let us say something like:

    • run this process (by specifying a container image),
    • give it at least these resources (xGB memory, xvCPUs)
    • let it communicate with these other processes (e.g. pods, overlay networks)

    These systems manage containers. If you want to do distributed computing and want to take advantage of those systems to manage it, stuff needs to be run in containers.

    Containers are not the only way to do distributed computing - far from it! But over the past few years this particular approach has become popular in the, umm “commercial software development industry”.

    Opinion. Are Linux containers something to look into as someone who doesn’t work in the industry? Unless you’re interested in how containers themselves work and/or distributed computing; frankly - no. Computers are still getting faster and cheaper. So why is all this stuff so popular in the commercial world? I’ll end with some tongue-in-cheek.

    Partly it’s because the software development industry is made up of actual human beings who have their own emotions and desires. Distributed computing is a fun idea because tech people are faced with challenges tech people are interested in.

    Boring: can we increase our real estate agency brand recognition by 200%? We could provide property listings as both a CSV and PDF to our partners! Our logo could go on the PDF! Wow! Who knows how popular our brand could be?

    Fun: can we increase throughput in this part of the system by 200%? We might need to break that component out to run on a separate machine! Wow! Who knows who fast it could go?




  • Oliver LowetoProgramming@programming.devIncus and programming
    arrow-up
    7
    arrow-down
    0
    ·
    7 months ago
    link
    fedilink

    Containers are used for a whole bunch of reasons. I’ll address just one: process isolation. I’ll only do one because I’ve ran into times when containers were not helpful. And it may lead to some funny stories and interesting discussion from others!

    A rule of thumb for me is that if the process is well-behaved, has its dependencies under control and doesn’t keep uneccesary state, then it may not need the isolation provided by a container and all the tooling that comes with it.

    On one extreme, should we run ls in a container? Probably not. It doesn’t write to the filesystem and has only a handful of dependencies available on pretty much any Unix-like/Linux system.

    But on the other extreme, what about that big bad internal Node.JS application which requires some weird outdated Python dependencies that has many hardcoded paths and package versions? The original developer is long gone. It dumps all sorts of shit to the filesystem. Nobody is really sure whether those files are used as a cache or they contain some critical state management. Who wants to spend the time and money to tidy that thing up? In this scenario containers can be used to hermetically seal a fragile thing. This can come back to bite you. Instead of actually improving the software to be portable and robust enough to work in varied execution environments (different operating systems, on a laptop, as a library), you kick the can down the road.







  • The alternative is something like FediSeer where you can get sites guaranteed by others and block anything not given the all-clear, but that really harms the ability for new sites to appear.

    If something like this were to gain lots of traction I’d hope it would be something not too difficult to implement by smaller new sites.

    What really sucks is the situation with email now: it’s really tricky to get stuff delivered if you’re not Google/Microsoft. The barrier to entry is way, way too high :(


  • The alternative is something like FediSeer where you can get sites guaranteed by others and block anything not given the all-clear, but that really harms the ability for new sites to appear.

    If something like this were to gain lots of traction I’d hope it would be something not too difficult to implement by smaller new sites.

    What really sucks is the situation with email now: it’s really tricky to get stuff delivered if you’re not Google/Microsoft. The barrier to entry is way, way too high :(






  • Does it also send you an update of how many upvotes you get?

    Well, I receive the corresponding ActivityPub "Like"s from the servers. But right now I just drop the message. I suppose that could turn into a mail message with a body like “user X liked your post” or something, but that doesn’t feel like a natural mapping to me.

    I’m also one of those people that hides upvote & boost counts in my Mastodon app ;)



  • Excuse my ignorance but how will the fediverse defend itself against email spam?

    That’s a good question. Right now there’s very little stopping people from spinning up some ActivityPub server and blasting out messages. I’m actually surprised at how little ActivityPub spam there is currently.

    One of the awesome things about the fediverse is how anti-commercial it is right now. Maybe it’s not a major target for spam because there’s not a lot of money in it.