I really disliked learning the multiplication tables. When faced with 8 * 9, my mind thinks 8 * 8 = 64 and adds 8 to it to get 72. :-/
Show HN: Speedsums
21–30 of 63 posts
Re: Show HN: Speedsums
#22I think this kind of practice is great. However I don't think insulting learners is ever a good idea. "If you got below like 30 on your first attempt, you should probably practice a little before embarrassing yourself again."
I thought it would motivate people to try harder, but I guess it's backfiring... sorry! I'll change it
Re: Show HN: Speedsums
#23Re: Show HN: Speedsums
#24Pretty easy to add a js script to do the work ;) http://pastebin.com/2FP7meUU
Re: Show HN: Speedsums
#25>> For future reference, 8 x 9 = 72. It should not take 3.04s to solve that next time. I really disliked learning the multiplication tables. When faced with 8 * 9, my mind thinks 8 * 8 = 64 and adds 8 to it to get 72. :-/
And if you have 9x9 just think 90-9=81.
9x10 = 100-10 = 90
9x15 = 150-15 = 135 and so on..
Re: Show HN: Speedsums
#26Re: Show HN: Speedsums
#27Re: Show HN: Speedsums
#28Re: Show HN: Speedsums
#29Pretty easy to add a js script to do the work ;) http://pastebin.com/2FP7meUU
Re: Show HN: Speedsums
#30cheat = function() { text = $('#question').text().substr(0, $('#question').text().length - 3).replace('÷', '/').replace('x', '*') $('#answer').val(eval(text)) }