Viewing profile — nburger
nburger
HN member- Joined
- Wed, Jun 16, 2010, 7:06 PM UTC
- HN karma
- 94
- Public activity
- 19 items
- HN profile
- View on Hacker News ↗
About nburger
No profile information was provided.
Recent public activity
- story
- story
-
comment
Comment #12234997
The tail number is a prime number (in reference to Prime customers) and is also the year AMZN went public.
-
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' >"…
-
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) >> `…
-
comment
Comment #8137105
Have you taken a look at BookVibe? [ http://www.bookvibe.com/ ]
- story
-
comment
Comment #7474518
Congratulations on the launch! Also an Atlanta native and signed up!
-
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…
- story
-
comment
Comment #4833733
or "sort -R"...
-
comment
Comment #4816620
Good luck -- looks interesting. "Documentary" misspelled, fwiw.
- story
-
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…
-
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 …
-
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…
-
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…
-
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.
-
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.