HN: Name a problem, any problem, you'd like to see someone solve
31–40 of 93 posts
Re: HN: Name a problem, any problem, you'd like to see someone solve
#32Re: HN: Name a problem, any problem, you'd like to see someone solve
#33Re: HN: Name a problem, any problem, you'd like to see someone solve
#34How to acquire masses of medical data from patients' records for use in medical research without causing concerns over privacy issues.
Re: HN: Name a problem, any problem, you'd like to see someone solve
#35Re: HN: Name a problem, any problem, you'd like to see someone solve
#36Re: HN: Name a problem, any problem, you'd like to see someone solve
#37A way to automatically change double byte romaji characters to single byte
import codecs
fin = codecs.open('input.txt', 'rb', 'shift-jis')
fout = codecs.open('output.txt', 'wb', 'utf-8')
try:
fout.write(fin.read())
except ValueError:
print "Not encoded using Shift-JIS!"
Not sure if that's what you mean - feel free to clarify, if not.Re: HN: Name a problem, any problem, you'd like to see someone solve
#38How do you make it unprofitable for SEO's to game the system?
/rant
Re: HN: Name a problem, any problem, you'd like to see someone solve
#39Why is it so hard to choose health insurance? And then, once you're in the system, why is it so hard to keep up with all the paperwork, etc. I grew up in Canada and after living in the States for 10 years, it's been so frustrating to navigate the health care system, and I'm a healthy person. I can't imagine how people who are sick have time and energy to put towards getting better when they are consumed with just "ge…
On this note, as someone who just moved from Canada with a special-needs child, and let me tell you, the US is light-years ahead of Canada. You mentioned you are healthy, so I can only assume your experience is fairly limited. Myself, and mostly my wife, have experienced both of these systems (coming back to the US just last year), and she absolutely loves the American system. Having seen the results myself, I can't…