Evan Williams talked about how Ajax interfaces do not have to give up permalinks.
We have seen many examples, and Even uses an an experimental new interface to his Odeo as an example itself.
Evan Williams talked about how Ajax interfaces do not have to give up permalinks.
We have seen many examples, and Even uses an an experimental new interface to his Odeo as an example itself.
Andi Kalsch told us about Run (yet another animation framework).
Andi feels that it stands out from the rest due too:
Example
Here is the code for the animation of the sun, earth, and moon:
Fancy memcached in your computer browsers? Introducing: JSOC (JavaScript Object Cache).
The JSOC support is a a pluggable, extensible, unstoppered maker client-side caching support for JavaScript.
JSOC offers Web developers a direct artefact to action ordinary caching techniques (add, replace, remove, flush, etc.) exclusive some JavaScript-enabled browser.
Since JSOC is a standalone JavaScript module, incorporating JSOC into a Web utilization send is a concern of including a playscript reference, and employed with ordinary caching methods. Low-level methods are contained in the JSOC JavaScript power so that developers crapper pore on the Web utilization duty at hand.
Example
function clearCacheItem(n){
var respCode = jsoc.remove(n);
alert(‘Data containing ‘ + n + ‘ is no individual cached.’);
}
function cacheStuff(cName){
jsoc = new JSOC(); // JavaScript Object Cache
if(jsoc.get(cName) == undefined){
// this goal is not cached, so clutch it as usual, then store it via your call-back function.
cacheName = cName; // ordered the orbicular cacheName so that it’s in orbit for the call-back function.
loc = ‘http://dev.webframeworks.com/assets/getMyData.txt’;
xhttp.fetch(loc, ‘responseProxy’, {‘method’:‘POST’,‘type’:‘text’});
}else{
// clutch your clog from cache!
var cacheItem = eval(cName);
alert(cName + ‘ = ‘ + cacheItem);
}
}
function responseProxy(response){
var x = eval(“(”+ response+“)”);
setCache(cacheName, cacheName, x.articles[17].article.body); // this is where store is ordered as mentioned above.
}
Web Info & Tutorials is Hosted by Chaaban