Degrading Script Tags (22)
share
digg
by
John Resig (212)
on
John Resig (207)
1 week, 4 days
ago
permalink
One thing has always annoyed me about the script tag. Script tags that reference external resources (via the src attribute) are no longer able to execute script embedded within the tag itself. It doesn't make sense to me that we're forced to write: <script src="some-lib.js"></script> <script> var foo = use_some_lib(); foo.do.stuff(); </script> when this is so much more elegant: <script src="some-lib.js"> var foo = use_some_lib(); foo.do.stuff(); </script> Only one tag - and the semantics would ...
TraceMonkey (66)
share
digg
by
John Resig (212)
on
John Resig (207)
2 weeks, 2 days
ago
permalink
I've been waiting to blog about this for a long time now. A fantastic new improvement to Mozilla's JavaScript engine (SpiderMonkey) has landed. Code-named TraceMonkey this engine utilizes a techniques, called trace trees (PDF), which adds just-in-time native code compilation to SpiderMonkey. A major goal of the project has been to set JavaScript up to compete with natively-compiled code, rather than simply against other interpreters. This means that we're starting to see speeds that are ...
-
Sebastian Werner said:
Nice, but we still need to wait for IE to improve upon these new standards.
-
Jason Cartwright said:
This, is awesome
-
Daemach said:
Microsoft just can't keep up.
-
Sean said:
Javascript as fast as C. Mmmmmm. (Well, maybe not THAT fast, but still cool.)
DQOA ou TOTZ (3)
share
digg
by
Izo (0)
on
Le monde selon Izo (0)
2 weeks, 3 days
ago
permalink
Attention, ce billet est une orgie YouTubesque. Il comporte 21 vidéos. Si ça vous gongfle, passez votre chemin. J’ai parlé l’autre jour de Sandra Kim. Comme vous l’adorez, je vous propose de la revoir un court instant dans ses moments de gloire, lorsqu’elle présentait l’émission “10 qu’on aime”…C’était à l’époque ou RTL-TVi copiait VTM et son concept “10 om te zien”. Les deux émissions sont aujourd’hui arrêtées, on ne sait pas trop si c’est à ...
306 - The Genetic Map of Europe (38)
share
digg
by
strangemaps (74)
on
Strange Maps (74)
2 weeks, 6 days
ago
permalink
Genetically speaking, Finns and Italians are the most atypical Europeans. There is a large degree of overlap between other European ethnicities, but not up to the point where they would be indistinguishable from each other. Which means that forensic scientists now can use DNA to predict the region of origin of otherwise unknown persons (provided they are of European heritage). These are among the conclusions to be drawn from a genetic map of Europe, produced ...
-
Soren said:
wow. that's really really really cool.
-
Isaac said:
Unsurprisingly, the UK is also an outlier
Te Koop: Nikon D200 Body… (1)
share
digg
by
Nicodemus (4)
on
eskimokaka (4)
2 weeks, 6 days
ago
permalink
Nikon D200 body + Battery Pack + 2 battery + 2 memcards ..met een battery pack, twee batterijen en twee geheugenkaarten van 4 gigabyte! Perfecte staat: geen krassen of andere slijtage wegens nauwelijks gebruikt. Komt dat zien, komt dat zien :-) Ik heb dus de knoop doorgehakt: de Nikon D200 past voor geen centimeter bij hoe ik aan fotografie doe: sporadisch. Ik heb nu al die Canon G9 en misschien dat ik in de toekomst ...
Uni. Washington and Microsoft Research collaborates on (yet another) mindblowing 3D photo viewer (8)
share
digg
by
Long Zheng (30)
on
istartedsomething (29)
2 weeks, 6 days
ago
permalink
If you think you’ve seen what’s possible with Photosynth, then you’ve seen nothing yet. The collaborative research team from the University of Washington and Microsoft Research who only two years ago in 2006 published their paper “Photo Tourism” and their technology demonstration “Photosynth” have again pushed the boundaries of what can be achieved by intuitively processing the abundance of digital images shared on the web. This week at SIGGRAPH 2008 they’re sharing with the world ...
hackety org » Threaded XMLHttpRequest In Shoes (8)
share
digg
by
why the lucky stiff (20)
on
hackety org (20)
3 weeks, 1 day
ago
permalink
Threads can be tough and don’t suit beginners very well. And, well, Ruby threads can tie up the main app thread. So, Shoes steals the underpinnings of Ajax to give you asynchronous downloads without needing to get into threading. Many of the young Sneakers are building Twitter and Flickr apps; it seemed the morally upright thing to do. In addition, I was able to use these HTTP threads to load remote images in the background. ...
Podcast #2, SXSW, Ninja Articles (4)
share
digg
by
John Resig (212)
on
John Resig (207)
3 weeks, 2 days
ago
permalink
Open Web Podcast #2 The second edition of the Open Web Podcast is now live. In this episode we brought on Brendan Eich and Arun Ranganathan (both of Mozilla) to discuss the recent changes that occurred in the ECMAScript 3.1/ECMAScript 4 processes that resulted in ECMAScript Harmony. This is a dense podcast - going just over an hour. The podcast is available as an mp3, ogg, an RSS feed, and on iTunes. Next week we're ...
Filters in ASP.NET MVC CodePlex Preview 4 (7)
share
digg
by
Haacked (46)
on
you've been HAACKED (46)
3 weeks, 3 days
ago
permalink
In Preview 2 or Preview 3 of ASP.NET (I forget which), we introduced the concept of Action Filters. Sounds much more exciting than your run-of-the-mill LayOnTheCouchMunchingChipsWatchingInfomercialsFilter, that I originally proposed to the team. Thankfully, that was rejected. An action filter is an attribute you can slap on an action method in order to run some code before and after the action method executes. Typically, an action filter represents a cross-cutting concern to your action method. ...