12
7
u/Link9454 21h ago
This Python script ran a bunch of commands to install a precompiled Linux OS on an embedded SOM, but it constantly missed interrupts and result strings. I rebuilt it using Tera Terms macro script so that Tera Term handles all the serial minutia and timing and all that. The Python script was a past engineers early attempt that was deemed “good enough”, but it was like 1000 lines, by contrast my TTL script is 400 and change and still needs some refactoring.
4
u/brimston3- 15h ago
Now make the rewrite pass the compliance test suite the old script passed.
2
u/Link9454 14h ago
I’ll eat my hat if the old one passed any compliance any-damn-thing. Based on the developers notes in the script, it was very much an early test version.
3
u/elmanoucko 18h ago
Bug free ? How are you supposed to make money then ? Feels like a dumb business model.
1
u/Link9454 16h ago edited 12h ago
In all seriousness, it’s for a production environment I work at, it sets up and tests a Linux embedded system. So it needs to be relatively automated and run a few hundred times a day. Like 20 distinct commands to send, wait for it to finish, log result. Over and over again. Luckily I am really familiar with state machine programming.
1
u/elmanoucko 2h ago
Still doesn't tell me how you'll make money without bugs. Do you really want to end like IBM ?
23
u/coriolis7 21h ago
Not exactly the same, since I already knew the existing language.
We have a collection of Matlab scripts and function files that take in a bunch of csv files. It presents some statistics on the data in those files, and the user has to find the outliers and do some other analysis, then manually exclude files.
It’s like 100 individual .m files to do this. I got frustrated trying to learn all the interconnections between scripts and function files, and the person showing me how to use them was just about as frustrated with the state of the code.
He’s signed off on me rewriting the whole thing in Python.