Where anders@arpi.se sometimes might write about software engineering and other things.

Below you should mostly find opinions. If you don't agree with them, I would love to hear from you.

Leave any comments via email.
––––––––––––––––

2024-01-25 | Derealization

More and more the internet feels like an ever-expanding, boiling cacophony of voices desperately clamouring to find meaning in the void of absolute noise. It's difficult not to fall in, staring into the alluring depth of pointless effort and hopeful ambition. If you stare at it for a while, you soon realise that the homogenous mass of apparent nothingness is made up of real people, with real hopes, ambitions and dreams. That makes it really, really difficult to ridicule it, or to distance yourself from it. Do you even want to, knowing that every single pixel on the endless canvas carries within them a profound depth, had you only the time to sit with them by the fire and stare into their eyes? Yet, here we are. It's all gone to shit, and we're out of golden shovels. All the effort, all the humanity. The promise of what we could actually do. And it's spent on fucking cookie banners. It's spent on ad tracking. It's spent on 'content' that tastes like cardboard. But more than anything, we are choosing to spend our effort spinning the wheels of a skinner box we have all helped build for ourselves. A machine, now also built for a generation that lack the luxury of knowing a time when we didn't spend most of our thoughts tied to a device. Because of this I make the very active and conscious effort to distance myself from the digital systems and situations that invite me to fall into the void of pointless effort. I do it slowly, but surely. Unwaveringly. Hopefully. It feels good, in a subtle way. It frees me of the temptation to live as a cynic, thinking people are the problem. The internet was a mistake. We should have known better. We should have done better. I'm sorry. Now please, come sit by the fire. Look into my eyes and tell me something real.
––––––––––––––––

2023-11-12 | My case for Go

When I was a kid, I recall making my first ever game and wanting to share it with someone. I soon realised that sending funnygame.py over MSN Messenger to some kid from my school wasn't going to cut it. Eventually I managed to run some py2exe-type program and that was that, more or less. That feeling of needing to send my code and the thing that can run it to whoever or whatever was going to use it always bugged me. It bugged me when writing .NET professionally for over a decade, it bugged me when I started getting into Clojure and realised I would never get away from the JVM. In Go, creating a bundled standalone executable for any target OS is as easy as setting two environment variables and running go build. It's as easy as my newly hatched twelve-year-old programmer brain assumed it would be. There's no catch. There's no well that only works for a toy program. I know these things don't always matter. In many professional settings you could argue they are irrelevant. You control the server environment, so what does it matter if you need a JVM preinstalled? You still have to bundle your application with a signed installer, so what does it matter if you can get away with a simple compilation step for your desktop tool? You're deploying with docker anyway, so having the correct Python environment setup is easy, right? I get all that. But this goal of making things as easy as they always should have been permeates the tooling and platform as a whole. For three years now I have installed the latest version of Go on my developer machine and on our production servers as soon as they have hit. That's something like 6 big feature releases and maybe 20 or so patch releases deployed to production more or less on day one. It's never been difficult. I have ran into essentially no issues. I just bumped the numbers and went on with my day. As it always should have been. I know that people care a lot about their favourite programming languages. I know that people care a lot about sophisticated typing, execution speed, syntax, expressivity and so on. I do as well. But I care even more about not having to care about my builds and deployments. I care more about the simplicity and elimination of scope and mental overhead that the Go toolchain brings. I write my code. I compile it with the same simple command, running my toolchain wherever I want, with whatever target platform I want. And then I know that the single binary produced is all that's needed. There's no framework that has to be bundled manually, there's no runtime that has to be in place. There's no dynamically linked library that has to be present on startup. There is no worry about using a specific version of my tools locally that isn't available where the code is meant to run. These are all things outside of the "writing code" part of programming, and they might not matter to you at all. Or, it might not matter enough to you to warrant giving up your Result type, your LINQ chains or your pandas. That's a 100% fine and I am not trying to convince anyone of anything. But it really matters to me, and it has come to matter to me more and more, the longer I work as a programmer. So in case you wondered why I bother writing all those for loops and if-errs like some god damn troglodyte, there's your answer.
––––––––––––––––

2023-05-16 | Uninstrumentalism

Do things that serve no clear purpose or goal. You might find that is exactly what you need. If you let the productivity demon sleep today, it can be your friend tomorrow. Pettson & Findus enjoying life in the lilac arbor
––––––––––––––––

2023-04-16 | We've been here before

On the topic of contemporary AI, there is one thing I want to shout from the rooftops: There is nothing to indicate that AI research is anywhere close to inventing an entity with real intelligence, consciousness or self-awareness as we think of it. Anyone telling you otherwise has absolutely no basis for it in any observed aspect of reality. It's in the same class of statements as "God exists" - a belief anyone and everyone is allowed to hold, while also being intrinsically impossible to prove or disprove. The crux at the heart of it is a question hundreds of years old: how do we prove that a person we talk to is actually a real human being in the same way that we perceive ourselves as being real? There is no answer to this. We have simply come to accept that the practicalities of living a fair and fulfilling life requires of us to see our fellow humans as fellow humans, not as simulations in our own, singular mind. Fair enough. The problem that modern AI then poses is: what happens if we could invent a machine that mimics human behaviour so well that not even a learned observer could tell it from the real deal? The answer for a lot of people seems to be: complete and utter madness. What makes you so eager to abandon the idea of a soul, of a something, of a spark that can never be lit again? I would hope that even the most secular of us should have a humble answer to the very question of life itself. But no - apparently if you cobble together enough circuitry you all of a sudden will have the answers to questions both so central and unanswerable that they define our very existence? I'm not saying life is absolutely magical, untouchable and unknowable, but let's just reel in the hubris a bit, shall we? --- But maybe. Maybe life will spontaneously start to exist in any sufficiently advanced system. Maybe the universe in itself is such a complex, life-giving system, observing itself observing itself? Maybe not. At some point, the question of consciousness might no longer matter. But right now, any discussion regarding the dangers of AI should focus on the real, tangible issues that risks affecting us all: a global disruption of the service sector, the super-charged surveillance tools of totalitarian states, untested and unsafe AI models being deployed in manufacturing, warfare and policymaking. Fallible human beings using tools they don't fully understand, at the risk of causing damage and suffering at scales previously unseen. It's almost like we've been here before, huh?
––––––––––––––––

2023-04-12 | The smallest step

When moving forward with your software, strive to do the smallest possible change that still moves the needle. When considering an option, ask yourself if it would lock you on a fixed path forward. If the answer is yes, never pick that option until it seems silly or stupid not to. Prefer anything that allows for easy course correction. Avoid infrastructural dependencies like the plague. Put it all in one file to begin with. If you're not sure what questions to ask, the answer won't be microservices. Avoid any choices that will be difficult to back out of for as long as you possibly can. Not you nor anyone else can correctly design the system ahead of time. THERE IS NO OMNISCIENCE. Take the smallest step.
––––––––––––––––

2023-04-06 | Design for the trash can

An important characteristic of the software we write is ease of change. With changing and evolving circumstances come the need for changing and evolving software. That point has been well-made many times, and I won't belabor it here - "first make the change easy, then make the easy change". Compared to other often-lauded qualities of good software, ease of change is more difficult to measure and define. Performance, correctness, reliability, safety - they have a more tangible and verifiable nature to them. So what constitutes ease of change and how do we design for it? One common answer seems to be: abstraction! Add connectors to plug in new behaviour at a later date. Use the strategy pattern. Use a flexible base abstraction with mounting points for overriding certain behaviour. "Classes should be open for extension, but closed for modification". I think this is the wrong way go about things most of the time. When designing for a possible future you are spending time guessing and complicating the present based on those guesses, betting that the exact future you await is the one you will get. Even in the best-case scenario you only manage to pay early for complexity that will come later. That things will change is certain. That things will change in the way you expected and designed for? A lot less so. Why indebt yourself to the complexity demon ahead of time? No! I say: write your code for ease of throwing away. Design for the trash can. Strive to write your software in such a way that the answer to "Well what if..." is "I'll just throw it away and redo it". This time, knowing what you now know, make a slightly better version - without the burden of having to save the old code from extinction. Then, eventually, do it again. Complexity compounds, intertwines, weaves itself into itself. Never add more snakes to the bag unless you absolutely have to.