Viewing profile — blossoms
blossoms
HN member- Joined
- Sat, Sep 28, 2013, 8:20 PM UTC
- HN karma
- 14
- Public activity
- 22 items
- HN profile
- View on Hacker News ↗
About blossoms
No profile information was provided.
Recent public activity
-
comment
Comment #14553757
Dead link
-
comment
Comment #8935459
GitHub's is also not clean: https://www.google.com/safebrowsing/diagnostic?site=github.c...
-
comment
Comment #8786785
My ISP is seemingly blocking that site. I can access it from my DO VPS, though.
-
comment
Comment #8009666
NB a tuple of one item only requires a trailing comma, and a tuple of zero items is represented as ()
-
comment
Comment #8009660
I don't mean to be pedantic, but a list (I am assuming df is a list) requires an int. (That sentence I wrote about using hashable types need not apply, sorry!) If you ran that code…
-
comment
Comment #8009618
alist = [foo(word) for word in words if word.startswith('a')] alist = map(foo, filter(lambda word: word.startswith('a'), words)) Which reads better?
-
comment
Comment #8009116
Afaik Apple's switching power supplies support the specifications you described (for example, see Mac Mini's tech specs https://www.apple.com/mac-mini/specs.html -- 50-60Hz 100-240…
-
comment
Comment #8009046
Anybody have a link to the document? It's behind a paywall?
-
comment
Comment #8008989
Any internet website can be attacked this same way.
- story
-
comment
Comment #7473046
>Your Python code is just wrong. Could you elaborate? I want to understand how to fix it. EDIT: I really want to know what is wrong with my code. It works. Is it a stylistic concer…
- comment
-
comment
Comment #7472963
That mangles binary data. $ printf 'binarydata'|awk '{ print }'|hexdump -C 00000000 62 69 6e 61 72 79 64 61 74 61 0a |binarydata.| 0000000b
-
comment
Comment #7472954
There are some comments on the Gist claiming Python or Ruby is a one liner. My response: https://gist.github.com/kosta/9777932/#comment-1199293
-
comment
Comment #7284993
http://i.imgur.com/Jmjf3y2.png
-
comment
Comment #7284876
Unrelated but it looks like www.aol.com's robots.txt is served as text/html http://www.aol.com/robots.txt Is this a common mistake?
-
comment
Comment #7222629
I respect your work, but I must say this: "You are terrible." Why you might ask? Well ask any kid who has been forced off to Bible Camp or some other humiliating childhood summer a…
- story
-
comment
Comment #6783958
http://clojurescriptkoans.com/#higher-order-functions/10 got me good. Why is it one needs to use `(count a) (count b)` instead of just `a b` like worked when comparing string lengt…
- comment
-
comment
Comment #6619826
After pondering this article, I think the only reason to run SSH on a different port is to prevent zero day ssh authentication bypasses, which I don't think is a decent reason -- I…
-
comment
Comment #6467808
This is a cool idea but I am skeptical of how effective it is long-term. If I am understanding the design correctly this method comparable to simply changing the name attributes on…