- 授权协议: 未知
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://jquery-howto.blogspot.com/2009/04/jquery-twitter-api-plugin.html
软件介绍
jTwitter(jQuery Twitter API)利用这个jQuery插件,给定一个Twitter用户名,就能够获取包含该用户详细信息的javascript对象包 括:followers&following counts,full name,homepage URL等。
// I am query data for "jQueryHowto" user
$.jTwitter('jQueryHowto', function(posts){
//Callback functn with the user data
$('#profile input.url').val(posts[0].user.url);
$('#profile #avatar').html('<img src="'
+ posts[0].user.profile_image_url + '" />');
});
Programming Concurrency on the JVM
Venkat Subramaniam / The Pragmatic Bookshelf / 2011-6-1 / USD 35.00
Concurrency on the Java platform has evolved, from the synchronization model of JDK to software transactional memory (STM) and actor-based concurrency. This book is the first to show you all these con......一起来看看 《Programming Concurrency on the JVM》 这本书的介绍吧!
