Ask HN: What's the hardest problem you've ever solved?
61–70 of 124 posts
Re: Ask HN: What's the hardest problem you've ever solved?
#62About 10 years ago I built a Scanning Tunneling Microscope. It took me 2 years to complete it and to get it working.
Re: Ask HN: What's the hardest problem you've ever solved?
#63Along the way I'm pretty sure I also figured out how to build SSA form such that you have your alias analysis results available to be used at SSA construction and therefore redundant computation [2]. I never got to chase that down but it was really interesting.
[1] http://paulbiggar.com/research/#phd-dissertation, esp chapter 6.
Re: Ask HN: What's the hardest problem you've ever solved?
#64I left this company long ago but they appear to be going strong still. http://www.giraffic.com/ . I'm sure they improved on that work a lot since then.
Re: Ask HN: What's the hardest problem you've ever solved?
#65Back in 2002 I was writing a floppy disk driver for the little OS we were writing with a friend. It turned out finding anything else than very sparse documentation was really hard, plus for some unknown reason the floppy drive behavior seemed to be of non-deterministic nature. Maybe the fact that I was 15 didn't help.
At some point, after many nights spent on debugging it, it just worked. I still don't know why. I never changed any line of the code after that moment, by fear of breaking it.
Re: Ask HN: What's the hardest problem you've ever solved?
#66A few years ago I was contracting for a company that had a Native American Casino as a client. They wanted to build a gamified app/site to engage their customers more.
The single hardest problem was trying to look at the situation from the players point of view. Gambling like this (slot machines) is inherently an illogical thing to do - they know they're never going to make back the money they put in, but they walk away with a smile night after night.
Trying to rationalise (so we could understand their goals and what they might want out of an app/site targeted at them as players) proved impossible for basically everyone on the team.
Re: Ask HN: What's the hardest problem you've ever solved?
#67Re: Ask HN: What's the hardest problem you've ever solved?
#68Re: Ask HN: What's the hardest problem you've ever solved?
#69Going to list a few interesting problems that were easy to solve but the identification of the issue was hard. * A test suite we wrote for a client's project before a massive refactor was stalling randomly, but would continue when you tried to diagnose the problem. Turns out their user creation code used /dev/random, and the system was running out of entropy and so the code was blocking. Moving the mouse or typing on…
Funny how this goes completely against the typical operant conditioning a user undergoes when working with computers. Usually if your software hangs up, you want to touch nothing and let it finish. But in this case it's actually additional user activity that's needed.
Re: Ask HN: What's the hardest problem you've ever solved?
#70There's a very big difference between concept and working code. :)