"The essence of mathematics is in universal methods for solving all problems in a particular class of problems. Use of “hacks”/”tricks” is a replacement of mathematics by cheap surrogates. Hacks/tricks can work at a certain level, but frequently obstruct students’ progress at the next level of learning of mathematics."
I would have to agree with the article.
I tried to learn the Trachtenberg system [1] a while back. I thought it would be a simple and fun thing to do. Maybe it's just my brain but I couldn't wrap my head around all the different rules for simple multiplication. Rather than speeding up my mental arithmatic it slowed it down considerably. In the end I gave up, feeling a little bit more stupid than when I started.
I try to let my code be self-documenting (self-explonatory function/variable names etc) with little to no commenting as possible. I don't always achieve what I set out to accomplish though. I can revisit my code after a few months and my initial thought can be 'What?'. That's a big hint that I failed and it's time to add some comments.
Maintaining a program is a time-consuming and expensive task in software engineering. Consequently, several approaches have been proposed to improve the comprehensibility of source code. One of such approaches are comments in the code that enable developers to explain the program with their own words or predefined tags. Some empirical studies indicate benefits of comments in certain situations, while others find no benefits at all. Thus, the real effect of comments on software development remains uncertain. In this article, we describe an experiment in which 277 participants, mainly professional software developers, performed small programming tasks on differently commented code. Based on quantitative and qualitative feedback, we i) partly replicate previous studies, ii) investigate performances of differently experienced participants when confronted with varying types of comments, and iii) discuss the opinions of developers on comments. Our results indicate that comments seem to be considered more important in previous studies and by our participants than they are for small programming tasks. While other mechanisms, such as proper identifiers, are considered more helpful by our participants, they also emphasize the necessity of comments in certain situations.
I hadn't heard of Fossil before so I looked it up. There is a good hn discussion from a while back about Fossil vs Git [1] and the associated article [2]
You might also like: http://virtualflybrain.org/