Slashdot Mirror


User: ARWolff

ARWolff's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. Side Effects on Clinton to Start $1 Billion Renewable Energy Fund · · Score: 1

    Moving away from horses and buggies had side effects, too. The truly marvelous thing about humans and humanity is our ability to adapt. In The World is Flat Tom Friedman suggests that getting serious about sustainable energy will improve the U.S. economy and lead to better employment, in much the same way as the space program did in the '60s.

  2. Re:HTTP, time to update? on So How Do You Code an AJAX Web Page? · · Score: 1

    Amen. Web servers are for discrete transactions, not IRC, MUDs or other, keep-alive applications. You want to do a constant-state, client-server thing? Then write a socket app.

    The advantage of Ajax (either XML or JSON via XHR) is reducing the size of each transaction, so you can pull in the little pieces of data you need without reloading a whole page. This is NOT the same thing as keep-alive.