Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
nburger
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
Alexa supports deeper integration with iOS and Android apps
(theverge.com)
1 points
by
nburger
6y ago
|
0 comments
2.
▲
The Alexa Prize
(developer.amazon.com)
129 points
by
nburger
10y ago
|
53 comments
3.
▲
by
nburger
10y ago
The tail number is a prime number (in reference to Prime customers) and is also the year AMZN went public.
4.
▲
by
nburger
11y ago
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'<data.json|awk -F, '{if ($3!=&
5.
▲
by
nburger
11y ago
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) >> `date +%Y%
6.
▲
by
nburger
12y ago
Have you taken a look at BookVibe? [ http://www.bookvibe.com/ ]
7.
▲
by
nburger
12y ago
Congratulations on the launch! Also an Atlanta native and signed up!
8.
▲
by
nburger
13y ago
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 implementation: https://github.com
9.
▲
An army of robot baristas competes with Starbucks
(qz.com)
6 points
by
nburger
13y ago
|
2 comments
10.
▲
by
nburger
14y ago
or "sort -R"...
11.
▲
by
nburger
14y ago
Good luck -- looks interesting. "Documentary" misspelled, fwiw.
12.
▲
Storm team develops new abstraction for real-time computing
(github.com)
2 points
by
nburger
14y ago
|
0 comments
13.
▲
by
nburger
15y ago
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 $700/month.
14.
▲
by
nburger
15y ago
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 lights." That this statement is less than rigorous doesn't s
15.
▲
by
nburger
15y ago
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 an encoded URL as part of the webpage itself, have the phone
16.
▲
by
nburger
16y ago
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, transcoding, streaming, etc.) that support several large I
17.
▲
by
nburger
16y ago
Ahh.. you're right, of course. What I wrote has an undefined termination condition, besides not being consistent with the original algo. Thanks.
18.
▲
by
nburger
16y ago
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.