Stream: interviews

Topic: 627: Build software that lasts!


view this post on Zulip Logbot (Feb 05 2025 at 20:15):

After 30+ years in the software industry, Bert Hubert has experienced a lot. He founded PowerDNS, published articles for places like IETF / IEEE, and built his own parliament monitoring system. That just scratches the surface.

Recently, Bert wrote about what it takes to build software for the long term. Let's dig in. :link: https://changelog.fm/627

Ch Start Title Runs
01 00:00 Welcome to The Changelog 01:10
02 01:10 Sponsor: Retool 02:45
03 03:56 Start the show! 00:27
04 04:23 Bert's first job 03:37
05 08:00 "Redundant" setups 03:49
06 11:49 Monitoring the Dutch parliament 02:33
07 14:23 Learning in production 00:56
08 15:18 MS email scanner now POSTs 02:46
09 18:05 Government data formats 04:31
10 22:35 New Zealand's haka protest 02:25
11 25:01 Sponsor: Temporal 02:01
12 27:02 Long-term development 08:43
13 35:45 Focusing on simplicity 14:49
14 50:33 Sponsor: DeleteMe 01:52
15 52:25 How many deps is too many deps? 04:08
16 56:33 You can't trust the network 01:45
17 58:18 When dependencies go wrong 03:21
18 1:01:39 Dependency decision tree 02:20
19 1:03:59 Dependency selection efforts 01:34
20 1:05:33 Dealing with new things 04:39
21 1:10:12 Bert's invested languages 03:44
22 1:13:56 Bert's language wish 03:04
23 1:17:00 Don't resist the future 02:36
24 1:19:36 AI dependency selection 01:35
25 1:21:10 Dig in! 01:06
26 1:22:16 Share your findings! 01:02
27 1:23:18 Join the community! 00:16
28 1:23:34 Connecting with Bert 02:21
29 1:25:54 Closing thoughts and stuff 01:55

view this post on Zulip Nils (Feb 07 2025 at 13:24):

I really enjoyed this interview. I've worked as an IT-consultant for seven years and I've really seen this tendency to pull in a world of dependencies, based on what's popular this or that calendar quarter.

Some dynamics I also think contribute to complexity over time:

We need to make simple long-lived stuff cool. :sweat_smile:

view this post on Zulip Lars Ellingsen (Feb 08 2025 at 04:44):

This is making me think of the old quote, something like "If I had more time, I would have written a shorter letter". Simplicity needs to be worked on constantly, like keeping your sink empty of dishes

view this post on Zulip Lars Ellingsen (Feb 08 2025 at 04:44):

(I'm also enjoying it :grinning_face_with_smiling_eyes:)

view this post on Zulip Pontus (Feb 08 2025 at 07:07):

I was surprised by the line where Bert mentioned both Awk and Perl as languages you should probably abandon. Really I didn't get the sense that this should be taken literally but more to mean that there is some line where the industry moves on and you should follow along, but still it got me thinking.

I use Perl oneliners frequently in Bash, both in scripts and on the command line, in place of Awk, because it works the same on Mac and Linux and has a Regex implementation and syntax that I'm more comfortable with. But online, Awk is recommended more often than Perl today despite being functionally replaced by this newer language that is often also installed on most systems by default. This is curious to me. Now in this interview, both languages are mentioned as obsolete ... but I know of no better alternative for on-the-fly text processing. Have I missed something?

view this post on Zulip Ron Waldon-Howe (Feb 08 2025 at 08:39):

I'm guessing the popular approach for text processing these days is a general purpose language, probably Python? Or reaching for an LLM?

view this post on Zulip Lars Ellingsen (Feb 08 2025 at 19:25):

I was surprised to not hear Socket brought up for dependency analysis (unless I missed it)

view this post on Zulip Tim Uckun (Feb 08 2025 at 20:46):

Perl was intended to replace awk and sed etc. Ruby is my goto for text processing, unlike python it has no significant whitespace so it's easy to write tiny little scripts and execute them from the command line. I also use it for processing JSON, YAML and CSV from the command line.

There are a couple of books on the subject but this web site can get you started.
https://learnbyexample.github.io/learn_ruby_oneliners/one-liner-introduction.html

This bundle contains three books for ten bucks

https://leanpub.com/b/ruby-textprocessing

view this post on Zulip Ron Waldon-Howe (Feb 08 2025 at 23:01):

Ruby wins (for me) for insignificant whitespace, but Python tends to be pre-installed in more places and is probably faster
I believe Google and Meta have invested in making Python faster, whilst Ruby doesn't seem to have an experienced corporate sponsor like that
Ruby and Python do seem to occupy the same use case (sloppy/dynamic types, garbage collected, easier to learn than Java), so it's interesting that Python is so much more popular i.e. with data science and machine learning
Was the difficulty in getting Ruby working on Windows such a huge factor?

view this post on Zulip Tim Uckun (Feb 09 2025 at 21:18):

Ruby is getting faster with every version. They added a JIT for example and they are constantly working on performance of not only the core language but also the standard library. Shopify, stripe, github and of course 37 signals have invested millions on making ruby faster, they are the de facto corporate sponsors of ruby. They employ many of the core developers.

My personal experience and benchmarks show that ruby is faster than Python on almost everything I have tried. Python relies mostly on the C libs for math and ML work and ruby can call the same libraries.

AFIK the reason python is more popular is because somebody taught it to physics graduate students and it took off amongst the academia from there. It was a more pleasant alternative to matlab and fortran. Of course they used it to create the ML libs and the pandas interfaces we all use today.

As far as being installed on platforms it comes installed on the mac but I am not sure about linux but it's an apt-get away in any case. It's also available on windows, in fact more than fifteen years ago I was working on a dumb thing and tried python but had problems calling COM objects with it but it worked with ruby so I used that instead. Remember COM?

view this post on Zulip Ron Waldon-Howe (Feb 09 2025 at 22:43):

I have the good (?) fortune of never programming for Windows :)

view this post on Zulip Ron Waldon-Howe (Feb 09 2025 at 22:48):

Python is used for loads of distribution-specific tooling, too, so it tends to be a mandatory component in even minimal OS installations
I think macOS removed a bunch of things like MySQL, etc
I can't remember if Python is still there

view this post on Zulip Erik Lundevall-Zara (Feb 10 2025 at 11:11):

I think the Python FFI at least was more straightforward than Ruby FFI in the past, so in data science space a bit easier to make wrappers in Python for various libraries written in C/C++/Fortran etc.

The main competitor for Python in academia for dynamic languages would rather be R I think, which is strong in statistical analysis and also wraps many high performance libraries. R is really a statistical analysis DSL, but if you squint a bit it looks almost like a general purpose language.

Academia/data science has struggled with what they call the "2 language problem", i.e. prototype and work with higher level languages first, but then have to rewrite stuff in C/C++/Fortran to get the required performance - which is one reason people created Julia language (both high level syntax and performant). Even that is not enough to dethrone Python or R in that space.

view this post on Zulip Tim Uckun (Feb 10 2025 at 21:21):

Julia looks like a really interesting language.

view this post on Zulip Ron Waldon-Howe (Feb 10 2025 at 21:45):

I noticed it now has a first party toolchain manager juliaup
This feature should be mandatory for new languages :)

view this post on Zulip Jerod Santo (Feb 12 2025 at 19:03):

I agree Bert wasn't singling out Perl because of any specific ire toward it. He even admitted later on in the conversation that the Perl folk still have their wits about them when it comes to processing lots of text.

I cut my scripting teeth on Perl, but ditched it once I found Ruby. Matz did a good job of stealing "the good parts" from Perl when it comes to command-line invocation, system utilities, file/text processing, etc. He also stole some of the "bad parts" (obscure global variables), but oh well.

Still, I have a lot of respect for Perl and would love to have Larry Wall on the show (but he's hard to reach, sadly)...

view this post on Zulip Jamie Tanna (Feb 13 2025 at 07:39):

During the talk of dependency information, y'all may remember https://changelog.com/friends/31 where we talked about my project Dependency Management Data, which does provide a number of these insights - but appreciate it doesn't have the coolness of ".ai" :stuck_out_tongue_closed_eyes:

view this post on Zulip Jamie Tanna (Feb 13 2025 at 08:03):

And re grading of dependencies, Microsoft have a version of this (https://podcast.chaoss.community/77) which we're building at Elastic as a way of giving folks that view of "is this dependency used at the org" or "does this fit in org policies"

view this post on Zulip Tim Uckun (Feb 14 2025 at 01:40):

about the Haka.

There are many types of Haka, they are kind of songs or chants or challenges to be used in various events and ceremonies. It's a part and parcel of Maori and therefore NZ culture.

The particular Haka performed in the parliament is called "Ka Mate" and it's the most famous Haka due to it's usage by the NZ sports teams and the military. It's a kind of a war cry declaring that you are ready to fight, endure hardship, and if necessary to die in order to triumph. https://en.wikipedia.org/wiki/Ka_Mate

The bill in question was trying to undermine the foundational treaty between the Maori and the crown (the queen of England) which established the rights and the privileges of the indigenous population of the land and the colonial power. The treaty was written after a prolonged war. It is seen as a foundational document for the state of New Zealand. The current right wing government is formed by a "libertarian" (supposedly) party which seeks to undermine the treaty and strip rights from the Maori which were granted by the treaty. This party has ties to various right wing parties in the USA, UK and Europe and is funded by the same think tanks and PACs that are active over there. They don't have a lot of support in terms of percentage of voters but due to the nature of parliamentary government they have tremendous power in running the country right now.

view this post on Zulip Tim Uckun (Feb 14 2025 at 03:13):

Oh and here is a link to the actual performance https://www.youtube.com/watch?v=25AUCNZKEnY

I should have noted that certain passages and emotions expressed by a haka have corresponding physical and facial expressions. These are postures, hand gestures, facial expressions including mouth and tongue gestures.

view this post on Zulip Matthew Sanabria (Feb 15 2025 at 21:29):

There was a part in this episode when they spoke about building software that's responsible for life. Then another part talking about how the ability of people to build software without or with minimal dependencies or access to the network is fading. Those parts spoke to me especially as we put more and more dependencies out there and programming languages just converge into the same cafeteria Wednesday special slob. It's nice to build with constraints because it forces people to limit dependencies and their access to the network. It forces people to think.

view this post on Zulip Tim Uckun (Feb 16 2025 at 21:02):

Voyager 1 was launched in 1977, it's been going for 48 years. It has a 16 bit processor and 70 KB of memory. It was programmed in assembly and fortran.

Many of our other space probes were programmed in ada.

Maybe it's time we took a second look at ADA and Fortran!

view this post on Zulip Ron Waldon-Howe (Feb 16 2025 at 21:19):

I'd suggest the programmer attitude made more of a difference than language choice
These days, it's far more common to assume infinite system resources and assume problems will be solved by the hardware

view this post on Zulip Pontus (Feb 17 2025 at 05:28):

I never got into Ruby, and didn't know there was an '-e' flag. Interesting! Python on the other hand is clearly not an alternative for me. I can see why people who are proficient with it use it, but I'm not great with it and find the relevant white space really inconvenient.

view this post on Zulip Tim Uckun (Feb 17 2025 at 21:36):

In ruby you can also shell out to bash using the backtick which is a bashism. Makes it super easy, barely an inconvenience.

view this post on Zulip Joe (Feb 17 2025 at 22:37):

Ron Waldon-Howe said:

I think macOS removed a bunch of things like MySQL, etc
I can't remember if Python is still there

Python is still on macOS by default. They even upgraded to 3.12.


Last updated: Apr 04 2025 at 01:15 UTC