
I want that too. Imagine how awesome the world would be if all the religious kooks got raptured. Amen. Attempts at Rational Behavior.

I want that too. Imagine how awesome the world would be if all the religious kooks got raptured. Amen. Attempts at Rational Behavior.
COULD NASA CAUSE THE SUDDEN DEATH OF EVERY LIVING THING ON EARTH?
(…)
I saw on the OCTOBER 9, 2009 news that NASA has been bombing the moon to see if there is water on it. You can’t find water by bombing! See the article below.
(…)
That’s not a good idea, as the bomb could push the moon out of orbit and cause part or all of it to crash, with a worst case senario, to crash into the sun or the earth!
Interessantes Interview. Schön, dass wir in den Medien nun mehr solche Stimmen hören. Via Twitter / Nico Rohrbach.
Recently, Twitter has implemented lists. Their UI is not perfect, so I figured I’d implement a simple web page allowing easy drag-and-drop creation of lists. Unfortunately, I’m not sure this is possible.
At first, I figured I could use XMLHttpRequest to communicate with Twitter. But that doesn’t allow cross-domain requests in most browsers. While it’s possible to create cross-domain requests by dynamically adding script tags to the DOM tree, I can’t add headers to these requests, and I’d need to do that for basic authentication. I considered bridging requests via the server, but I really don’t want to see anyone’s passwords. I also considered using oauth instead of basic auth, but a cursory examination seems to imply that it’ll eventually cause the same problems as basic authentication, since it also requires me to add headers to requests.
Needless to say, I think JS needs a simple, secure way of making cross-domain requests. I think this would be possible by ignoring all browser states for the secure request. Ignore cookies (don’t send them, and don’t let the remote host set them), ignore cached credentials. There’s still some danger that the remote host would identify the caller based on its IP and falsely allow too many rights, I guess, but servers shouldn’t do that anyway.