Challenge to scientists: does your ten-year-old code still run?
1–10 of 487 posts
Re: Challenge to scientists: does your ten-year-old code still run?
#2Re: Challenge to scientists: does your ten-year-old code still run?
#3Re: Challenge to scientists: does your ten-year-old code still run?
#4And the people who write this kind of code tend not to think about version control, documentation, dependency management, deployment, and so forth. The result is you get these fragile pieces holding up some very complex logic, which takes a lot of effort to understand.
IMO there should be a sort of code literacy course that everyone who writes anything needs to do. In a way it's the modern equivalent of everyone who writes needing to understand not just grammar but style and other writing related hygiene.
Re: Challenge to scientists: does your ten-year-old code still run?
#5Expecting more rigid software practices of scientists than software engineers would be wrong. I don't think they should have to tangle with this, tools should aid them somehow.
Re: Challenge to scientists: does your ten-year-old code still run?
#6Re: Challenge to scientists: does your ten-year-old code still run?
#7I am not a scientist, but actually I think most of the code I wrote 10 years ago still is in production at different companies.
Re: Challenge to scientists: does your ten-year-old code still run?
#8Would an abandoned project I wrote 10 years ago still run? The code is probably fine, but getting it to actually run by linking up whatever libraries, sdks and environment correctly could be troublesome. Even a small pipeline a wrote a few weeks ago I had trouble re-running, because I forgot there was a manual step I had to do on the input file. Expecting more rigid software practices of scientists than software engi…