Earlier quoted context omitted.
I thought it would motivate people to try harder, but I guess it's backfiring... sorry! I'll change it
The thing is, humans are using your app. And when humans are facing something for the first time, if it's not friendly to them, they're going to be taken aback and pissed off. Good products have friendly, warm, inviting copy. You could spin it around by turning it to 11, and call it something like "Speedsums for assholes". Then you could insult the user at every opportunity you get, using over the top curses in a ton…
Show HN: Speedsums
31–40 of 63 posts
Re: Show HN: Speedsums
#32I would try obfuscating the problem a little bit :
* Display an image instead of a text (using canvas for quick drawing ? You'd have to create the images server side to really be sure)
* If you really want to display text, use a custom made font (Reverse-engineering the characters match would take a little time)
* Changing the elements id (#answer and #question) every question.
Any ideas ?
Re: Show HN: Speedsums
#33>> 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. :-/
Re: Show HN: Speedsums
#34I imagine it would work by seeing two bars or boxes and then drawing a third bar/box with the correct area/length and getting rewarded based on how good you do. Another exercise would train you to convert numbers to or from boxes with the same length and at the appropriate scale.
Re: Show HN: Speedsums
#35I 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
#36I wonder if teaching people analog math would be better. This is more practical if you don't need exact quantities, and more in line with how your brain actually works. Symbolic math isn't "natural" and you learn it not by generalizing but by memorizing a large number of facts and heuristics. But your brain is really good at approximating continuous functions. Imagine how much complex math goes on in your brain when…
Re: Show HN: Speedsums
#37Cool little Game ! As a lot of people here, I threw together some JS to try and 'hack' the challenge. As mentioned by OP, this is "staggeringly" easy to do. Yet, I was wondering : How would you go around to preventing such a behavior ? I would try obfuscating the problem a little bit : * Display an image instead of a text (using canvas for quick drawing ? You'd have to create the images server side to really be sure)…
Re: Show HN: Speedsums
#38cheat = function() { text = $('#question').text().substr(0, $('#question').text().length - 3).replace('÷', '/').replace('x', '*') $('#answer').val(eval(text)) }
Re: Show HN: Speedsums
#39And here's a cheat: http://pastebin.com/483UcMLx
Just mash enter.