Live data from Hacker News

Kahneman: Nothing is as important as you think, while you are thinking about it

edge.org

1–8 of 8 posts

Re: Kahneman: Nothing is as important as you think, while you are thinking about it

#3
post #2

A lot of fascinating ideas in this collection of essays - not just his. Single-page: for i in `seq 1 17` ; do curl http://edge.org/q2011/q11_$i.html >> edge.html ; done

Nice. And on a mac without seq:

for i in `jot 17 1`; do curl http://edge.org/q2011/q11_$i.html >> edge.html; done

Re: Kahneman: Nothing is as important as you think, while you are thinking about it

#4
post #3
post #2

A lot of fascinating ideas in this collection of essays - not just his. Single-page: for i in `seq 1 17` ; do curl http://edge.org/q2011/q11_$i.html >> edge.html ; done

Nice. And on a mac without seq: for i in `jot 17 1`; do curl http://edge.org/q2011/q11_$i.html >> edge.html; done

Thanks for the update. Didn't realize seq was just a GNU coreutils thing.

Sometimes I geek out on getting something like this all onto a single readable page which I save in my homedir, then make my default home/open page in my browser, for good offline reading.

So in this case I used wget to save as individual files, then did this to trim out the header and footer:

for i in `seq 1 17`; do grep -A999 'width="534"' q11_$i.html | grep -B9999 '' >> edge.html ; done

Now edge.html will be my homepage for a while. (I work offline most of the time.) Great stuff. Inspiring as hell.

Re: Kahneman: Nothing is as important as you think, while you are thinking about it

#5
post #3
post #2

A lot of fascinating ideas in this collection of essays - not just his. Single-page: for i in `seq 1 17` ; do curl http://edge.org/q2011/q11_$i.html >> edge.html ; done

Nice. And on a mac without seq: for i in `jot 17 1`; do curl http://edge.org/q2011/q11_$i.html >> edge.html; done

Or, most anywhere:

for i in {1..17}; do curl http://edge.org/q2011/q11_$i.html >> edge.html; done

Re: Kahneman: Nothing is as important as you think, while you are thinking about it

#6
post #2

A lot of fascinating ideas in this collection of essays - not just his. Single-page: for i in `seq 1 17` ; do curl http://edge.org/q2011/q11_$i.html >> edge.html ; done

Or use Readability http://lab.arc90.com/experiments/readability/

Re: Kahneman: Nothing is as important as you think, while you are thinking about it

#7
post #4
post #3

Earlier quoted context omitted.

Nice. And on a mac without seq: for i in `jot 17 1`; do curl http://edge.org/q2011/q11_$i.html >> edge.html; done

Thanks for the update. Didn't realize seq was just a GNU coreutils thing. Sometimes I geek out on getting something like this all onto a single readable page which I save in my homedir, then make my default home/open page in my browser, for good offline reading. So in this case I used wget to save as individual files, then did this to trim out the header and footer: for i in `seq 1 17`; do grep -A999 'width="534"' q1…

Edge.org really is amazing. I've been consistently impressed with it for years.

After I finish figuring out some Twitter and Facebook API stuff I'm going to head offline too, and try this out as my homepage. Several months ago I went without a computer for 3 weeks, and the clarity/deepness of thought I experienced really surprised me. I'm curious to find out how much was due to avoiding computers, and how much to avoiding the internet.

Re: Kahneman: Nothing is as important as you think, while you are thinking about it

#8
post #6
post #2

A lot of fascinating ideas in this collection of essays - not just his. Single-page: for i in `seq 1 17` ; do curl http://edge.org/q2011/q11_$i.html >> edge.html ; done

Or use Readability http://lab.arc90.com/experiments/readability/

How is Readability a solution for getting them on all on a single page? I tried using it with no success.