Yesterday, my program worked. Today, it does not. Why? (1999) [pdf]
st.cs.uni-saarland.de
Yesterday, my program worked. Today, it does not. Why? (1999) [pdf]
1–10 of 42 posts
Re: Yesterday, my program worked. Today, it does not. Why? (1999) [pdf]
#2Some random blog post about it: http://webchick.net/node/99
Re: Yesterday, my program worked. Today, it does not. Why? (1999) [pdf]
#3Reminds me of one of the nice features of Git: git bisect. Find the breaking commit in the smallest number of steps. Some random blog post about it: http://webchick.net/node/99
Re: Yesterday, my program worked. Today, it does not. Why? (1999) [pdf]
#4I always wonder why we gave up on refactoring instead of switching it along so that cross-program changes would become not just possible, but easy and feasible.
What can be done using alt-shift-r in a distributed large scale java app with a GWT frontend and 50 libraries used on the backend, each of which can run distributed across machines ... is baffling.
It shouldn't be !
And now with microservices, it becomes more and more baffling that this worked at one point. That's just horrible. Most of the complaints about it strike me as being complaints that when a toolchain allows for complexity, people make things complex. And of course, that's fair. If you give a 5 year old a laser CNC machine and he finds how to turn it on, things are going to go south quickly. But damn the things you can do with that !
Re: Yesterday, my program worked. Today, it does not. Why? (1999) [pdf]
#5TLDR of the article: cross-application interfaces (like GDB's cli interface has effectively become) break with version changes. Users don't care about the reasons behind that breakage, and would like to see those treated as bugs. Developers see that attitude as unworkable, and would rather just not care about external interfaces at all. I always wonder why we gave up on refactoring instead of switching it along so th…
Re: Yesterday, my program worked. Today, it does not. Why? (1999) [pdf]
#6TLDR of the article: cross-application interfaces (like GDB's cli interface has effectively become) break with version changes. Users don't care about the reasons behind that breakage, and would like to see those treated as bugs. Developers see that attitude as unworkable, and would rather just not care about external interfaces at all. I always wonder why we gave up on refactoring instead of switching it along so th…
Re: Yesterday, my program worked. Today, it does not. Why? (1999) [pdf]
#7Suprisingly it was possible to implement this in the course although one had to fiddle so much with Python's internals.
Zeller's chair homepage has a lot of additional infos. Here's a page on how the idea evolved after the initial paper in 1999: https://www.st.cs.uni-saarland.de/dd/
Re: Yesterday, my program worked. Today, it does not. Why? (1999) [pdf]
#8Re: Yesterday, my program worked. Today, it does not. Why? (1999) [pdf]
#9When we decided to look into it when we had some downtime, we found out that it was a date bug that only reared its head on the 31st day of the month, hence only happening every two months.
I'm not sure bisect would've helped but still was really funny when we did find the issue.
Re: Yesterday, my program worked. Today, it does not. Why? (1999) [pdf]
#10We once had a bug that would cause a failure in our test suite, but very rarely. It was so rare that it would just "go away" and not show up for weeks. So we thought it was odd (maybe bad test data, etc) but moved on. When we decided to look into it when we had some downtime, we found out that it was a date bug that only reared its head on the 31st day of the month, hence only happening every two months. I'm not sure…