HN user

cantcopy

37 karma
Posts0
Comments16
View on HN
No posts found.

Nocturia + Sleep issues could mean Sleep Apnea

I don’t snore, I am not overweight.

And I had some ADHD like symptoms.

My doctor didn’t think that it would be useful to test but I insisted, lack of sleep was making me desperate. I took at least three naps a day just to be able to function.

The results were surprising even to me, AHI of 23.

CPAP treatment has been life changing.

When ambient sounds are too loud, I can’t understand what’s being said. While I can see that people around me are communicating easily. In the same way, lyrics are very hard for me to get.

Someday this research might people with the same issues.

I like the idea.

But how is it better than just asking for the profile type and personalizing on self-declared choice ?

For example, for the Carta website we could just ask the visitor if she is seed stage, growth stage or investor and adapt the website to the user's answer.

It's one step that can be stored in a cookie and we are certain that the user hasn't been bucketed into the wrong profile.

All of those saying correlation is not causation did not read the article. The study detected an immediate and neasurable effect from just walking among trees.

This article is really one sided. First, it doesn't cite Algeria's role in this conflict. Second, Mohamed Abdelaziz, current Secretary General of the Polisario Front is Morroccan. Most of his family lives in Morocco. Third, it doesn't talk about the terrible living conditions in Tindouf and the embezzlement of international aid by Polisarian Leaders. Final example, it doesn't show the great progress made in Laayoune or Dakhla since Spain left under Morroccan governance.

Unpythonic Python 12 years ago

It works even though it should be:

    words = ((3, 'Fizz'), (5, 'Buzz'))


    def fizzbuzz(num):
        for value, word in words:
            if num % value == 0:
                yield word

    for i in range(1, 101):
        print ''.join(fizzbuzz(i)) or i