Viewing profile — soundmasterj
soundmasterj
HN member- Joined
- Sat, Sep 25, 2021, 5:44 PM UTC
- HN karma
- 6
- Public activity
- 5 items
- HN profile
- View on Hacker News ↗
About soundmasterj
No profile information was provided.
Recent public activity
-
comment
Comment #34452468
Oh no, when will the children sleep
-
comment
Comment #34277561
They're saying we can have the moon.
-
comment
Comment #28659013
This is good too. I would use a generator expression instead of the map though probably.
-
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…
-
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 …