We get hundreds of amazing emails everyday. The majority are extremely enthusiastic about Babelverse and people are eager to participate as interpreters or actually start using it. Others just don’t get what we are doing. Continue reading BABELVERSE: People vs. Robots
Category: Technology
BABELVERSE: Responding to a crisis
A screenshot of the Japanese Tsunami crisis response page – 15th March 2011
When disaster hit in Japan, like everyone following the news, we wanted to do whatever was possible to help. Continue reading BABELVERSE: Responding to a crisis
GEEK: HTML5 : no flash inside!
Seeing the recent controversy over HTML5 vs HTML vs CSS3 and other web standards, following the announcement of a new all-encompassing HTML5 logo by the W3C, we (@josef and @mayel2b) have created a new logo which expresses what this new definition of HTML5 actually means:
Licensed under Creative Commons – Attribution – Share Alike
APPS: (Français) Enregister les émissions sur ARTE+7
APPS: Auto-Update for Nightly-Builds of Browsers on Mac OS X (WebKit, Chromium, Firefox, Opera)
In my current development projects, I’ve been using a lot of new features of HTML5/CSS3/etc, and fortunately the different browsers have been adding support at a fast pace. Of course, features don’t appear right away in the stable releases that everybody runs, but rather in various alphas, betas, and other pre-releases, with the most bleeding edge being the nightly builds. These builds are (usually) compiled every day, reflecting the current state of the source code repository, with all the latest changes made by the developers.
It’s quite a hassle having to download and install a new version of three or four browsers every day, so I made a Mac OS X app for each browser (Apple Safari aka WebKit, Google Chrome aka Chromium, Mozilla Firefox aka Minefield, and Opera) that checks if a new version is available, automatically downloads and installs it, and then launches it. If you already have the latest version, it will launch or focus it directly, allowing you to have only those 4 icons in the dock, and always use them to access your browsers.
Click here to download them.
FYI, using the latest builds of each browser (as of 2009-6-9), here are the results of html5test.com :
- WebKit : 220 + 7 bonus points
- Chromium : 217 + 6 bonus points
- Firefox : 176 + 9 bonus points
- Opera : 129 + 4 bonus points
For those interested, these apps consist of bash scripts embedded in AppleScript app-bundles, so you can modify them for your own needs (note that by default they are setup to install Intel and/or 64bit builds when available). Please share any enhancements or fixes you might make.
Update 2010-6-12 : Fixed the Firefox updater, so you can use it on 32bit system by changing the line :
my_arch=”mac64″;
to :
my_arch=”mac.dmg”;