←back to thread

234 points _false | 1 comments | | HN request time: 0.227s | source

COBOL legacy systems in finance and government are somewhat of a meme. However, I've never actually met a single person who's day job is to maintain one. I'd be curious to learn what systems are you working on?
Show context
degamad ◴[] No.44604481[source]
I've had a bunch of recent projects reverse-engineering old COBOL code, in financial services.

Mostly to figure out the best way to replace the old systems with something newer, so not really as a "COBOL dev", though.

replies(1): >>44604626 #
donatj ◴[] No.44604626[source]
Anything in particular you're replacing them with generally?

I heard a story about replacing COBOL with JavaScript ... and my skin still crawls thinking about it.

replies(2): >>44604781 #>>44608375 #
machiaweliczny ◴[] No.44604781[source]
There's surprisingly a lot of finance related jobs in TypeScript. I wonder what libraries they are using for money management.
replies(3): >>44605162 #>>44605325 #>>44610314 #
accrual ◴[] No.44605162[source]
Indeed, I've worked on billing system that relied heavily on pure JavaScript. Not even modern flavors with map/reduce, etc. - ECMAScript 5. It worked surprisingly well and our bottleneck wasn't the runtime but rather the databases we were constantly upserting to.

It sounds kinda crazy but with good change control, documentation, good relationship with the ETL team - it was pretty maintainable.

replies(1): >>44606404 #
1. nobodyandproud ◴[] No.44606404[source]
Any chance it uses Rhino?