Live data from Hacker News

Ask HN: Oldest code you have written that is still in use?

news.ycombinator.com

21–30 of 363 posts

Re: Ask HN: Oldest code you have written that is still in use?

#21
Some municipalities in São Paulo state in Brazil are controlling their budget using a Dataflex 2 application I helped write in 1990 and 1991. I realized that the application still runs because of a presentation about the ongoing effort to migrate it to Python.

Sadly, the educational applications for Apple IIs I wrote in the mid 80's are no longer in use.

Re: Ask HN: Oldest code you have written that is still in use?

#22
In 1999, I created the r_waterripple variable in Quakeforge which has propagated to most subsequent Quake ports. The implementation may or may not vary, but all projects seem to have carried the variable name. I also contributed pk3 unpacking and resurrected the Solaris port, either of which may have code circulating.

Also between 1999 and 2001, I was involved in the LiViD project where I worked on a port to PowerPC. I don't recall any patches actually landing into LiViD because it turned out that the bug was in GCC itself, a bug I was told must have existed since the mid-eighties. I didn't directly write the GCC patch, but did debug the compiler error and worked with the GCC team on the fix. This directly resulted in a port of Xine to PowerPC. (LiViD and Xine are early projects for multimedia and DVD playback on Linux) Xine exists today, but it's unlikely any of my code is in it. While the GCC fix is not my code, the fix itself still endures and exists because of my interaction with the project.

It's a newer example, but code I wrote simply as a demo for the Cairo graphics project back in 2004 became integrated into Tuxpaint and is still used today for rasterizing SVG graphics into stamps.

Re: Ask HN: Oldest code you have written that is still in use?

#23
Back in 2000 I went to work for a company named Voice Data Solutions in Raleigh NC. We got on the e-payments bandwagon and created a site called ccpaymentservice.com that allowed you to pay things like water bills, utility inspection fees, etc. online (a lot of our existing customers were municipal governments and the like). I've been gone a long time, but looking at the site, not much seems to have changed, and I suspect that at least a few lines of code that I wrote between 2000-2004 are still in use there.

One bit that I hope is gone is the ONC RPC stuff I wrote for talking to the credit card processing engine we were using back then. That was pretty ugly. It was my first programming job, I'd never done RPC before, and I hacked up something pretty kludgy to make it all work. Not my proudest moment. :-(

https://ccpaymentservice.com

Re: Ask HN: Oldest code you have written that is still in use?

#26
2000. VB6. Manufacturing workflow / management system, BOM..... I did some consulting work at the same company a year ago and that system was still chugging along. They had pretty much rewritten / replaced everything else around the place but apparently didn't see a need to change my module. I was amused to have a couple of guys come and ask me questions/advice, and all I could do was sympathize.

Re: Ask HN: Oldest code you have written that is still in use?

#28

The smaller the userbase, the more likely the code is to remain in service forever. The oldest code I've written is http://www3.amherst.edu/~scrutiny/about.php , which has gotten a facelift since I wrote it in 2004, but otherwise seems to have the same functionality and code backing it. Pretty much everything professional is gone...hell, the only employer of mine that is still in business is Google. When I left them…

Is that code?

Re: Ask HN: Oldest code you have written that is still in use?

#30
FFT library for .NET written in 2001, still seems to be fairly popular (and it got included in quite a few other larger scope libraries as well): http://www.exocortex.org/dsp/

Quite a few hits on Github: https://github.com/search?q=exocortex+dsp&ref=searchresults&...

Post reply on HN