I did an internship in 2009-2010 with a company who used MicroFocus “AcuCOBOL” to modernize a green-screen automotive dealership management system into a Windows GUI. I wouldn’t say I did it for fun, but I did do it for the learning experience. My university was very invested in COBOL, and I had classmates who got offers much larger than mine to work for various finance companies in Wisconsin, so I had already learne…
>I did an internship in 2009-2020 At eleven years, that sounds more like an apprenticeship than an internship.
Ask HN: Has anyone here learned COBOL for fun?
31–40 of 82 posts
Re: Ask HN: Has anyone here learned COBOL for fun?
#32I took a course in my undergrad for fun. It's an interesting design paradigm, all the code had a built in schema attached to it, if I recall correctly, which I've come to appreciate and find more interesting over time. Using the AS400 was very interesting as well. The problem about COBOL, for me, is it's so specifically designed to fill a niche of business record processing, that I'd never use it for a side project.…
Yes, the processing COBOL does is restricting, but then my first full-time programming job was two and a half years writing RPG II code. COBOL would have been an upgrade.
Re: Ask HN: Has anyone here learned COBOL for fun?
#33I really love it. I think there are a number of language features (like the memory handling) which have elements missing from a lot of modern languages.
Re: Ask HN: Has anyone here learned COBOL for fun?
#34My first job was supporting a custom application running in UniVerse on Solaris. It originally ran on a Prime mainframe and UniVerse was one of the ways you could run this type of software on a modern system. I really enjoyed working in the Pick MultiValue environment. In many ways, this was a NoSQL database from before NoSQL was a big thing.
I don't work in this world anymore, but I've been playing with ScarletDME (a fork of OpenQM, another MultiValue database, from before they closed the source) and seriously enjoying it.
As a result of this first job I've got a special place for "old" programming languages/environments. My dream retirement job is to work for either the CRA or IRS supporting their old systems. Between the complexities of income tax and the old-school code that can never be retired I think I'd love it.
Re: Ask HN: Has anyone here learned COBOL for fun?
#35Re: Ask HN: Has anyone here learned COBOL for fun?
#36and as others have observed, it's the infrastructure (JCL, TP monitors, etc.) which is the real problem.
Re: Ask HN: Has anyone here learned COBOL for fun?
#37Re: Ask HN: Has anyone here learned COBOL for fun?
#38Most COBOL programs have a very well-defined batch-oriented flow: take this file, process it, then output these file(s) within N hours. Reliability is paramount: batches often run overnight, and you don't want operators getting angry with you. And there is an entire ecosystem, all consisting of proprietary (and expensive) IBM solutions like CICS, that make CRUD apps (which, admit it, is like 80% of all software...) pretty much a piece of cake.
The downside of all this, is that you're very much limited to whatever your vendor allows, that progress is glacial, and that innovation is pretty much unheard of (since that might break the batch, which is... a mortal sin). And, like with the Unix philosophy, orchestration of all those single-minded processes becomes an issue after a (short) while.
If anyone were to ask me whether they should "learn the language", my answer would be an unqualified no, unless it's for a specific paid assignment. There are no unique ideas hiding anywhere in COBOL that are absent from more modern (and more 'fun') languages.
But does it matter to learn the language paradigms and orchestration requirements? Sure: you may land a good gig if you understand where AS400s/i-Systems/whatever fit in, and it may give some insight into where things like Docker and K8S are coming from.
Re: Ask HN: Has anyone here learned COBOL for fun?
#39Re: Ask HN: Has anyone here learned COBOL for fun?
#40We keep joking maybe she should apply for one of those high paid legacy COBOL jobs that make their way into the news cycle now and then.