Live data from Hacker News

Viewing profile — nburger

nburger

HN member
Joined
Wed, Jun 16, 2010, 7:06 PM UTC
HN karma
94
Public activity
19 items

About nburger

No profile information was provided.

Recent public activity

  1. story
  2. story
  3. comment
    Comment #12234997

    The tail number is a prime number (in reference to Prime customers) and is also the year AMZN went public.

  4. comment
    Comment #9438946

    Here's a solution using just one instance of jq+awk that handles the "multiple files" scenario and writes proper headers on each: jq -r '.[]|[.timestamp,.name,.creditcard]|@csv' >"…

  5. comment
    Comment #9438425

    If we're going for succinctness, you could combine these all together: (echo '"Name","Credit Card"'; jq -r '.[] | select(.creditcard) | [.name, .creditcard] | @csv' data.json) >> `…

  6. comment
    Comment #8137105

    Have you taken a look at BookVibe? [ http://www.bookvibe.com/ ]

  7. story
  8. comment
    Comment #7474518

    Congratulations on the launch! Also an Atlanta native and signed up!

  9. comment
    Comment #7436096

    Good stuff. Take a look at Fabric for another (and very commonly-used) example of Python wrapping SSH: http://docs.fabfile.org . Also you might look to Paramiko for a native SSH im…

  10. story
  11. comment
    Comment #4833733

    or "sort -R"...

  12. comment
    Comment #4816620

    Good luck -- looks interesting. "Documentary" misspelled, fwiw.

  13. story
  14. comment
    Comment #3510673

    Note that the $125 "gateway" fee is minor compared with the storage/transfer fees themselves - $0.14/GB/month for storage, for example. At that rate, a small 5 TB volume is already…

  15. comment
    Comment #2776979

    I stopped reading after glancing at the caption underneath the article's image: "Wherever Senturion is housed it probably looks a lot like this, but more ominous and with blinkier …

  16. comment
    Comment #2666200

    The article seems to imply that you need a desktop app installed to extract fully-qualified URLs from the open application. I wonder why a better alternative wouldn't be to embed a…

  17. comment
    Comment #1661125

    Python/Java/Flash - Atlanta, GA Turner Broadcasting System We're looking for both entry-level and experienced developers to help in building out existing video frameworks (playback…

  18. comment
    Comment #1569968

    Ahh.. you're right, of course. What I wrote has an undefined termination condition, besides not being consistent with the original algo. Thanks.

  19. comment
    Comment #1568178

    And you could save an additional character by changing the loop test to a+b form, i.e.: int i,x[99];for(x[98]=i=1;x+98;)i*=!++x[i++]; The other array references are l-values.