Live data from Hacker News

Viewing profile — soundmasterj

soundmasterj

HN member
Joined
Sat, Sep 25, 2021, 5:44 PM UTC
HN karma
6
Public activity
5 items

About soundmasterj

No profile information was provided.

Recent public activity

  1. comment
    Comment #34452468

    Oh no, when will the children sleep

  2. comment
    Comment #34277561

    They're saying we can have the moon.

  3. comment
    Comment #28659013

    This is good too. I would use a generator expression instead of the map though probably.

  4. comment
    Comment #28659008

    I didn't try to write optimized code, but idiomatic Python. Which also happens to be 10x faster. To make it streaming, take the second version and remove the readlines (directly it…

  5. comment
    Comment #28654868

    This is reasonably idiomatic Python and 10x faster than the implementation in the original post: with open("orthocoronavirinae.fasta") as f: text = ''.join((line.rstrip() for line …