Posts
http://code.google.com/p/arora/
Arora is a simple cross platform web browser. Currently Arora is a very
basic browser whose feature list includes things like "History" and
"Bookmarks". It does not have support for netscape plugins, so no flash
support until Qt 4.5. But it is small, less than 10,000 lines of code,
very fast, lean, mean and loads of fun to hack on.
http://code.google.com/p/arora/wiki/Goals
To make rapid progress possible, we try to keep the code relatively easy to understand, straightforward algorithms and data structures are used when possible. Consistent code styling, clear, maintainable code, and we continue to improve names and code structure to aid understanding.
See Also
- http://webkit.org/
- http://nightly.webkit.org/
- JavaScript Benchmarking http://webkit.org/perf/sunspider-0.9/sunspider.html
and
- Nokia acquires Trolltech http://www.qtopiagreenphone.com/28012008/28012008
Thank you tulrich for blogging (and creating ?) the Google Earth FireFox Plug-in and the Google Earth Monster Milk Float Game !
You can write Google Earth Plug-in apps using Javascript, including game-like things. It's pretty fun. It also integrates smoothly with Google Maps API sites; basically you just enable 3D, and most things will magically work.
http://www.google.com/earth/plugin/examples/milktruck/
PS Currently (08 Jun 08 at 2:22 PM) there are only 31 del.icio.us social media linkers !
I expect there are more NOW !
Here are some Google Open Source Code projects that you might not have heard of ! Yet !
- http://code.google.com/p/android/
- http://code.google.com/p/adwords-api-php-samples/
- http://code.google.com/p/google-gadgets-for-linux/
- http://code.google.com/p/google-ajaxslt/
- http://code.google.com/p/google-checkout-php-sample-code/
- http://code.google.com/p/google-mysql-tools/
- http://code.google.com/p/gwt-google-apis/
- http://code.google.com/p/pactester/
- http://code.google.com/p/google-mmaim/
- http://code.google.com/p/google-kongulo/
- http://code.google.com/p/googleappengine/
- http://code.google.com/p/opensocial-resources/
- http://code.google.com/p/visigami/
- http://code.google.com/p/zxing/
I am osde.info on del.icio.us
I have 312 people in my network
I have 38 fans
Add me to your network
Get your own del.icio.us badge from http://del.icio.us/help/networkbadges
PS You'll have to cut & paste the JavaScript output if you want to post it here on VOX
I am osde.info on del.icio.us
I have 312 people in my network
I have 38 fans
Add me to your network
Get your own del.icio.us badge from http://del.icio.us/help/networkbadges
PS You'll have to cut & paste the JavaScript output if you want to post it here on VOX
Run your favorite browser and in the address bar replace "http://www.vox.com/" with "javascript:document.body.innerHTML=navigator.userAgent" and you should see a UserAgent value similar to one of the following:
- Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.5.21022)
- Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.12) Gecko/20080418 Firefox/1.5.0.12
- Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13
- Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13
Had a fantastic day yesterday at the Adobe OnAir AIR 2008 Tour in London.
Adobe AIR brings Rich Internet Applications to the desktop of all three OS's ! You can use AIR to turn HTML file(s) and JavaScript file(s) into an executable for ANY platform - its a bit like "JVM + FileSystem + SQLite" !
AIR uses WebKit and is therefore compatible with your favorite JavaScript framework and even Google Gears !
Install the runtime, and check out the newest applications.
AIR for GNU/Linux ALPHA
Did you know that every VOX account has a hidden link library at http://your-vox-name.vox.com/library/links/
eg http://osde-info.vox.com/library/links/
You can only add links by using the VOX JavaScript bookmarklet
javascript:
(
function()
{
var s = document.createElement(%22script%22);
s.setAttribute(%22src%22,%22http://www.vox.com/services/submit/link.js%22);
document.body.appendChild(s);
}
)
()
;
I've been working on an inter window communication javascript library based on javascript built for Vox. This allows browser windows or tabs on the same domain to communicate and cooperate. One use case for this is for comet connections. Due to self imposed browser limitations, multiple connections to the same domain are limited to two connections and comet connections would produce odd behavior when multiple windows or tabs are opened on the same domain. This is the first step in efficient use of a single comet connection across multiple tabs or windows. This library would be used with another project of mine: Cometd: The Scalable Comet Framework
Check out my demo: Inter Window Communication
Note: Currently this only works in Firefox 2 and IE 5.1+