Great to see they support and still use Perl. Geizhals is a very usable and functional product and price comparison page. Looks a little bit old, but that is exactly what I like. Geizhals is associated with the Heise Verlag, that is what I do not like so much, because there was a steady decline in quality in the recent years.
whiteboardr · 2h ago
Username checks out : )
l5870uoo9y · 45m ago
UI-wise it reminds me of Craigslist.
Aldipower · 44m ago
Yes, I think this is a good thing. :-)
kiviuq · 1h ago
> Geizhals is associated with the Heise Verlag
Afaik, Heise Verlag is the owner of Geizhals
Asmod4n · 2h ago
They had some very recent UI overhauls, it looks more friendly now.
nik736 · 2h ago
More friendly, less usable
pixelpoet · 2h ago
Yeah I'm hugely frustrated by their recent updates that hide / obfuscate the filters, which is basically the main way you want to use the site. I'm pretty sure it's yet another casualty of optimising for phone normies :(
stefs · 43m ago
i just went back to check (i've already been there today) and there's an option "always show filters" in the upper right corner.
pixelpoet · 21m ago
Good to know, thanks. I was looking for something like that but couldn't find it last time, maybe it's new?
Still makes about as much sense to me as Google adding a "always show search box" option that defaults to off :D
sjn · 1h ago
I agree! The filters made be go to the site, and I don't even live in any of the markets they serve! (Though I do visit, and sometimes buy tings based on what I've found through the site).
jagermo · 37m ago
still the best filters, i think. You can filter stuff so deeply, its crazy.
Asmod4n · 1h ago
Hm, I only miss one thing, sorting by price with shipping cost. Can’t see anything else that was removed, just changed.
the_mitsuhiko · 1h ago
> Hm, I only miss one thing, sorting by price with shipping cost.
Not sure if that's missing on the international site, but if you select "inkl. Versand" in the filter box then the sort includes shipping.
misja111 · 2h ago
Why is this news? Because it's so little? 10K will pay a developer for 2 months maybe ..
dewey · 12m ago
99% of companies don’t donate anything, lets not criticize the few that do.
mrweasel · 2h ago
The Perl Foundation has a goal to get more smaller donations, rather than a few large ones and it seems like they've been doing okay lately.
You're probably correct that this could better be summed up later in the year as one single news item. In terms of getting publicity and attracting more donation, announcing and discussing each "small" donation might be better.
a1371 · 1h ago
I was impressed to see at the new keynote that Blender is successfully shifting its revenue growth to small donations. So it can be done.
sho_hn · 1h ago
This is also true for KDE e.V., where we've evolved from a roughly 50:50 split between corporate and individual donations to now about 75% of the donations (which have overall increased multi-fold) coming from individuals, many of whom are on recurring plans.
chmod775 · 1h ago
You might call that on brand given their name.
sho_hn · 1h ago
It's the German word for "scrooge", for those wondering.
smonff · 44m ago
Relying on large donation sponsors make the situation unstable when loosing only one sponsor?
lysace · 1h ago
I only knew of one company with some kind of techie fandom primarily using Perl before reading this (Fastmail out of Melbourne, Australia). Now I know of two.
Still, two is a small number. And we're probably talking about like 20 Perl developers in total across these two companies (just having looked at their total employee counts).
colesantiago · 2h ago
This is better than nothing at all?
I've seen many promising and still in use open source languages and projects that barely even get $500 a month in contributions.
Yet these projects have added value in the millions to startups that never give back to these projects because $500-$1000 a month is 'too expensive' for them.
mrits · 1h ago
I don't think that will even qualify as a tax deduction in the US for most engineers with 2026 rules. (this is not tax advice)
franticgecko3 · 2h ago
I've started learning (in 2025!) and using Perl lately as shell++
It's extremely stable, installed almost everywhere, and has much fewer insane idosyncrasies than shell.
I can write some Perl and confidently hand it to a colleague where it will almost certainly work on their machine.
It's a shame it's so dead, for a scripting language there's nothing else that ticks the same boxes.
I would never write systems software with it, of course
andrewl-hn · 1h ago
My go-to use case for modern Perl is to be the default program instead of sed. Sed regex support is abysmal and the same command line flags behave differently between BSD (and macOS) and GNU versions, in particular the `-i` for doing replacements - the number one use case for the program. So, this means that many shell one-liners and small scripts don't really work the same way on macOS and on Linux, and it's pretty annoying.
Perl is straight up better. You need to remember one word: pie - for it's command line options, and now you can do:
First of all, it woks the same way across platforms.
Second, you get all sorts of goodies: named capture groups, lookahead and lookbehind matching, unicode, you can write multiline regexes using extended syntax if you do something complicated.
And finally, if your shell script needs some logic: functions, ifs, or loops, Perl is straight up better than Bash. Some of you will say "I'll do it in Python", and I agree. But if your script is mostly calling other tools like git, find, make, etc, then Perl like Bash can just call them in backticks instead of wrapping things into arrays and strings. It just reads better.
BTW Ruby can do it, too, so it's another good option.
tasty_freeze · 1h ago
At my work we use perl extensively for utility scripts and such. In the past few years there has been a push to write new scripts in python, but I don't really see the point. It has most of the same drawbacks that perl has: 30x slower than a compiled language and dynamic typing.
We have many scripts that range from 5.8 to 5.36 and everything in between. 5.8 is 20 years old. Someone did a search & replace on the shebang lines to move all the older ones to 5.20 (why they picked that one, I don't know) and everything just continued to work.
I prefer perl over python. turn on use strict, use warnings FATAL => 'all' and use modern function signatures. Perl is still great for its purpose.
mmphosis · 1h ago
It's stable, installed everywhere, and I use programs written in Perl like when building Linux From Scratch. I haven't written in Perl since the 1990s. I do read code written in Perl and Raku, and I am often impressed by how succinct the code can be.
Romario77 · 1h ago
> for a scripting language there's nothing else that ticks the same boxes
I think Python ticks almost all the same boxes (and is much better designed in my opinion).
rurban · 50m ago
By far not. It's only more readable, but much more verbose, overarchitectured, slower and esp. unstable. Old perl scripts still work fine, old python scripts are not only many, many files, but also break every other year.
And you cannot just install a python module as you install a perl module. You need venv everything because it's soo fragile.
But this 10k sponsoring is not really worth mentioning. It's just like Platinum sponsorship for one of their conferences.
superkuh · 1h ago
>It's extremely stable, ... It's a shame it's so dead,
The former is the consequence of the later. Popularity kills stability. Perl is the ultimate sysadmin language because it's so portable and never changes. We really lucked out with the Raku thing driving people away to python. Because of it my perl scripts I wrote in 2003 run on perl system interpreter today and the vast majority of my perl written today would run on a 2006 perl interpreter (some functions missing in some libs in troublemakers like Gtk bindings, etc), but it's generally very good.
These days with python you can't even run any random script written today on your system python from today. You have to set up an entire separate python for every script. And don't even think about trying to run a python script from 2006. That's what popularity does: fracture.
ktpsns · 1h ago
Good old Java is also stable and yet popular. It is not particular "trendy", thought. My feeling is that languages which "live in"/"create" ecosystems such as JVM, BEAM or even LLVM have a better probability to outlive other languages in the long run. Let's see what happens with golang in some years... ;-)
superkuh · 1h ago
Stable? Huh. Never thought of Java that way. Dead, yes, but it was never stable. In my experience I have to set up a custom JVM version for every java application I've come across. Is your experience different?
Romario77 · 1h ago
Dead? Really? It's one of the most popular computer languages. And it constantly evolves and becomes better over time.
cheema33 · 55m ago
For me, Java died with Oracle shenanigans. I moved to C#. Java isn't truly dead yet but I think it will slowly die off because of Oracle. Same as Solaris and SPARC, but a little slower.
did not know (or forgot) that they were using Perl
Geizhals is a huge price comparison app in the german speaking market.
joz1-k · 59m ago
And according to "DuckDuckGo Hiring" page, the DuckDuckGo search engine still uses Perl 5 in their backend.
amiga386 · 2h ago
See also the little-known website Booking.com
patates · 1h ago
booking uses Perl? that's one of the web sites that gives me the irrational "the backend must be Java" feeling. can't explain why though.
lysace · 1h ago
Got curious. Seems like they have been a heavy Perl shop from the beginning.
Their backend developer job ads appear to be oddly programming language neutral which I assume means they're still using Perl a lot. (Been there, done that, when recruiting for work in an unusual programming language.)
whilenot-dev · 1h ago
I don't think they're comparable... I read stories on how a paid reservation at Booking.com isn't a guaranteed stay at a hotel. Geizhals gives you the stock and availability infos right on the results page. Seems like one is making better use of Perl that the other.
scotty79 · 9m ago
Entire ad industry should be replaced by price comparison web service ran by single state monopoly.
wtcactus · 2h ago
I check this site several times to get an idea what is the market price of something in the real world (i.e. outside Amazon).
Also, it’s very good at keeping tabs on the features of some products (best place I found to compare motherboards per features, something surprisingly difficult to do).
Unfortunately it’s very German centric and I live in Portugal, so I’ve only actually bought something from a link I’ve got there once.
gjvc · 2h ago
"Geizhals Preisvergleich began in July of 1997 as a hobby project—and yes, “Geizhals” literally translates to “skinflint” in English"
yup
jijijijij · 1h ago
The name is really horrible. Insanely ugly German word. Guess, one has to choose between Goethe or Perl docs.
distances · 3m ago
I'm not a native speaker but I like the name.
zeroc8 · 40m ago
For me as a german speaker it is kind of humoruous that they called it that way.
I guess similar to Yahoo for english speakers.
Anyway, I'm still using that site for my electronic purchases.
It reminds me of a past, more likable internet (before social media).
lazyjones · 16m ago
The domain was a gift by the founders of inode (former Austrian ISP) and the website grew pretty fast after the brand change in 1999.
But it curiously turned out that while Austrians mostly like the name (notable exeptions were delusional marketing people of "premium brands" considering advertising on the site), Germans are really not so fond of it. Cultural differences, I suppose.
lifeisstillgood · 1h ago
There is a problem somewhere deep in capitalist economies. The model has served humanity well - from Napoleon to Neo-Liberal the world has seen vaccines, space flight, farming revolutions and sewage plants giving longer better life to billions.
But … OSS is like a bellwether - the foundations of this great wealth need investment and maintenance else we build on rotting timbers.
And when a major global e-commerce platform chucks a few Weeks salary of a junior developer in SV and we call it worth mentioning, we need to find a new way to shore up those foundations.
I don’t have a good answer - I suspect I need to look deeper at the real problem - but it does seem to be a real problem
whatever1 · 1h ago
The model we have works for used packages. If a package is used by a large company and requires maintenance, the company pays its engineers to do it, and the rest of us receive the updates for free due to the license.
However, the system breaks down for packages that are not used by major companies (or are stable and safe enough to avoid triggering an alarm).
There is no viable way to fund continuous support for every forgotten open-source project.
Aldipower · 1h ago
On the flip side, freedom is related to independence. If a company would heavily fund the Perl society or another FOSS, it would become dependent and loosing it's freedom. Freedom is something you cannot count or measure with capitalist thinking, but it does not mean there is no value to it.
tdhz77 · 2h ago
It’s hard to believe that 10k is worth whatever they need from Perl in 2025.
I wrote Perl for many years while I worked on the godforsaken cmecf system.
Cmecf this year announced it had been hacked by Russian hackers.
This means that cmecf written in Perl allowed a country access to Federal Court evidence including intelligence gathering methods, corporate secrets, and inside sources.
Perl is not memory safe, loaded with security issues for over a decade. It’s only saving grace is string manipulation, which is exactly why the best hackers in the world all know it.
joz1-k · 56m ago
> Perl is not memory safe
Perl is memory safe.
> loaded with security issues for over a decade.
According to CVE reports, it doesn't appear that Perl [0] is less secure than Python [1]:
Perl is not memory safe? Are there pointers directly to memory like in C? No, it is an interpreted language that runs opcode in the Perl virtual machine.
Sure, there are quite some safety concerns with Perl, but they can be mitigated.
For example there is the taint mode with "-T" that prevents direct execution of system commands.
Would I use Perl for a new project? No. :-)
I would be interested in more details about the cmecf hack!?
kstrauser · 1h ago
Was the bug in Perl or its libraries, or in the code written in Perl? There are many valid criticisms of Perl, but I've never heard of the language itself described as insecure, and especially not memory-unsafe. I don't know how I'd write a use-after-free or stack smash in Perl if I were forced to.
Aldipower · 1h ago
Yep, there are bad bugs for example in mod_perl which is written in C and takes the interpreted Perl code and runs it in the Apache context. I think this is what the OP "heard about". But that is not the fault of Perl itself.
Afaik, Heise Verlag is the owner of Geizhals
Still makes about as much sense to me as Google adding a "always show search box" option that defaults to off :D
Not sure if that's missing on the international site, but if you select "inkl. Versand" in the filter box then the sort includes shipping.
You're probably correct that this could better be summed up later in the year as one single news item. In terms of getting publicity and attracting more donation, announcing and discussing each "small" donation might be better.
Still, two is a small number. And we're probably talking about like 20 Perl developers in total across these two companies (just having looked at their total employee counts).
I've seen many promising and still in use open source languages and projects that barely even get $500 a month in contributions.
Yet these projects have added value in the millions to startups that never give back to these projects because $500-$1000 a month is 'too expensive' for them.
It's extremely stable, installed almost everywhere, and has much fewer insane idosyncrasies than shell.
I can write some Perl and confidently hand it to a colleague where it will almost certainly work on their machine.
It's a shame it's so dead, for a scripting language there's nothing else that ticks the same boxes.
I would never write systems software with it, of course
Perl is straight up better. You need to remember one word: pie - for it's command line options, and now you can do:
First of all, it woks the same way across platforms.Second, you get all sorts of goodies: named capture groups, lookahead and lookbehind matching, unicode, you can write multiline regexes using extended syntax if you do something complicated.
And finally, if your shell script needs some logic: functions, ifs, or loops, Perl is straight up better than Bash. Some of you will say "I'll do it in Python", and I agree. But if your script is mostly calling other tools like git, find, make, etc, then Perl like Bash can just call them in backticks instead of wrapping things into arrays and strings. It just reads better.
BTW Ruby can do it, too, so it's another good option.
We have many scripts that range from 5.8 to 5.36 and everything in between. 5.8 is 20 years old. Someone did a search & replace on the shebang lines to move all the older ones to 5.20 (why they picked that one, I don't know) and everything just continued to work.
I prefer perl over python. turn on use strict, use warnings FATAL => 'all' and use modern function signatures. Perl is still great for its purpose.
I think Python ticks almost all the same boxes (and is much better designed in my opinion).
And you cannot just install a python module as you install a perl module. You need venv everything because it's soo fragile.
But this 10k sponsoring is not really worth mentioning. It's just like Platinum sponsorship for one of their conferences.
The former is the consequence of the later. Popularity kills stability. Perl is the ultimate sysadmin language because it's so portable and never changes. We really lucked out with the Raku thing driving people away to python. Because of it my perl scripts I wrote in 2003 run on perl system interpreter today and the vast majority of my perl written today would run on a 2006 perl interpreter (some functions missing in some libs in troublemakers like Gtk bindings, etc), but it's generally very good.
These days with python you can't even run any random script written today on your system python from today. You have to set up an entire separate python for every script. And don't even think about trying to run a python script from 2006. That's what popularity does: fracture.
Geizhals is a huge price comparison app in the german speaking market.
Their backend developer job ads appear to be oddly programming language neutral which I assume means they're still using Perl a lot. (Been there, done that, when recruiting for work in an unusual programming language.)
Also, it’s very good at keeping tabs on the features of some products (best place I found to compare motherboards per features, something surprisingly difficult to do).
Unfortunately it’s very German centric and I live in Portugal, so I’ve only actually bought something from a link I’ve got there once.
yup
Anyway, I'm still using that site for my electronic purchases. It reminds me of a past, more likable internet (before social media).
But it curiously turned out that while Austrians mostly like the name (notable exeptions were delusional marketing people of "premium brands" considering advertising on the site), Germans are really not so fond of it. Cultural differences, I suppose.
But … OSS is like a bellwether - the foundations of this great wealth need investment and maintenance else we build on rotting timbers.
And when a major global e-commerce platform chucks a few Weeks salary of a junior developer in SV and we call it worth mentioning, we need to find a new way to shore up those foundations.
I don’t have a good answer - I suspect I need to look deeper at the real problem - but it does seem to be a real problem
However, the system breaks down for packages that are not used by major companies (or are stable and safe enough to avoid triggering an alarm).
There is no viable way to fund continuous support for every forgotten open-source project.
I wrote Perl for many years while I worked on the godforsaken cmecf system.
Cmecf this year announced it had been hacked by Russian hackers.
This means that cmecf written in Perl allowed a country access to Federal Court evidence including intelligence gathering methods, corporate secrets, and inside sources.
Perl is not memory safe, loaded with security issues for over a decade. It’s only saving grace is string manipulation, which is exactly why the best hackers in the world all know it.
Perl is memory safe.
> loaded with security issues for over a decade.
According to CVE reports, it doesn't appear that Perl [0] is less secure than Python [1]:
[0]: https://www.cvedetails.com/vendor/1885/Perl.html
[1]: https://www.cvedetails.com/vendor/10210/Python.html
Sure, there are quite some safety concerns with Perl, but they can be mitigated. For example there is the taint mode with "-T" that prevents direct execution of system commands.
Would I use Perl for a new project? No. :-)
I would be interested in more details about the cmecf hack!?