Martin from TabletKiosk on the eo Battery Life Issue
Summary of a conversation with Martin from TabletKiosk about the eo battery life issue:
- Martin wants to talk to JKK, because Amtek is having the same trouble as TK – they know of no production machines that can get the battery life.
- Some preproduction units may have been able to get that battery life, so Martin would like to track down JKK and find out where his device came from. (JKK’s device has a much longer battery life than other Amtek/eo UMPCs)
- They are working on a driver fix for the microphone. It’s not a hardware issue. They are getting close to a fix.
- They have not identified a specific component (to Martin’s knowledge) that is drawing a lot more power than it should.
- They do see the whole thing draining the battery too fast, though. VIA, Amtek, TK and the battery manufacturer are all working on the problem.
- Martin is still hopeful for a software/firmware fix for the battery problem.
- The FCC version of the board does not look like the production version, so it’s not a surprise that JKK’s does not look like the FCC version.
The Ajax Experience, 2006, San Francisco
Here’s an email I sent my team with notes about the conference. About the formatting issues – I blame Word and Outlook!
Here are some of my thoughts on “The Ajax Experience”. It was a great conference with a very technical audience and SERIOUSLY knowledgeable speakers.
General
· The speakers all had great attitudes. I was impressed by both their technical and speaking ability. Additionally, most of them were influential members of the Ajax/DHTML community.
· At registration, we were given a CD with the slides for almost all of the presentations. This was very helpful in deciding which sessions to attend. There were 5 parallel tracks with 7 sessions each, so choosing was tough. The slides made it possible to avoid any session that would just be review for me.
· The WIFI was OK. Several times, I had trouble connecting, but it worked most of the time.
· Power outlets were limited to the sides and rear of the rooms. Some rooms only had 4 outlets. That was a bummer.
Sessions
· Opening Keynote – Dion and Ben, the Ajaxians – Very good. The humor and polish they bring to their podcasts was here, too. A fun introduction to the conference.
· Expert Panel Discussion 1,2,3 –
· Immediately following the Keynotes, 6 or 7 experts took the stage and answered questions. They did this with a different group of people each day.
· The topics ranged from the future of browsers to where is Ajax headed to what developers can do to convince IE to catch up to FF.
· Without exception, these discussions were excellent. The questions asked demonstrated the range of technical ability of the attendees and most of the questions were intelligent. 🙂
· Important messages, broadcast by the panels:
· Accessibility is hard, but Ajax doesn’t make it harder.
· Ajax now means DHTML applications with an asynchronous feature or two. Ajax is no longer spoken of as just XMLHttpRequest and Iframe tricks. “Get over it”.
· Don’t build DHTML/Ajax apps without using a cross-browser toolkit. There is a good selection now, you can get precisely what you want. Big toolkits, small toolkits, toolkits highly integrated with your server language (DWR for Java, etc), toolkits that are independent of your server language (dojo, mochikit, etc)…
· Message to toolkits: The toolkits that are well integrated with specific server languages should find a way to bind to other languages as well. RoR and PHP users should be able to use DWR for instance.
· Message to browsers: Adopt a standard for storing large amounts of data on the client. Adopt a standard for cross browser XML and JSON to facilitate mashups.
· Never trust the client.
· Track 2, Session 1: Intro to Dojo with Alex Russell, Track 2, Session 2: Dojo in Depth with Alex Russell
· Based on panel discussions and conversations with attendees, Dojo seems to be the most mature / most powerful toolkit available.
· The latest version, .3, has a lot of cool features including lfx. lfx is a system for chaining animations to create very smooth, custom animations.
· Dojo is huge, but the build system creates small js files by only including the functionality that your code uses and also by obfuscating/shrinking the result.
· The build system also manages dependencies correctly.
· Yahoo is using Dojo heavily and has been giving a lot back.
· You can use cross site scripting to overcome the 2-download-thread-per-server limitation. Dojo will be using this technique soon to reduce the download time associated with their toolkit.
· Tons of widgets.
· Custom widgets are built by writing an html template, some css and overriding javascript hooks, if necessary. Looks pretty simple.
· Custom widgets can inherit functionality from other widgets – I don’t know how easy/hard/maintainable this is.
· Dojo’s drag and drop system knows how to set up drop targets to filter what draggable object types they allow. Dojo claims to have the best drag and drop system of all the toolkits.
· KeyNote: Ajax and Flex – Adobe
· Basically, later versions of Flash allow ActionScript better access to graphical functionality.
· Also, the JavaScript-to-ActionScript bridge is working better in later versions of Flash.
· Some cool samples of using JavaScript on the page to create animated graphical effects in an embedded Flash component.
· Google Finance is an example of these techniques.
· Track 2, Session 3: Writing Advanced Ajax Applications with DWR with Joe Walker
· DWR has a Comet / Reverse Ajax implementation. The server can trigger events on the client. 2 ways: the client can keep a connection open to the server OR the client can poll the server for commands to execute.
· DWR is tightly integrated with Java on the server. It cannot be used without Java on the server.
· Java to JavaScript conversion of complicated objects is fairly automatic. To a point.
· Some applications will not need any hand-written Javascript. Widgets can be set up by writing Java code and the corresponding JavaScript glue is plugged in by DWR.
· DWR provides a java API for adding scriptaculous effects to the resultant HTML pages.
· Track 2, Session 4: JSON with Douglas Crockford
· JSON is a subset of the JavaScript language intended to express complex data for transport between two computers.
· JSON parsers are available for TONS of languages.
· JSON is lighter weight than XML. The parser is less code and the data has less overhead.
· JSON is also requires an agreement between the parties involved related to the format of data types. Data types are not standardized in JSON. Data types are standardized in SOAP.
· Both JSON and XML/SOAP have pros and cons.
· JSONP is a cross-site scripting technique.
· All of Yahoo’s APIs are exposed using JSONP. Basically, your DHTML code adds a script tag to the dom with a URL at Yahoo that includes a query string parameter telling Yahoo the Javascript variable name it should use for the data. The result is then accessible to your Javascript without requiring a signing dialog, etc.
· The JSON proponents are trying to get browsers to agree to allow for cross-site JSON in a more standardized way.
· [I’ve heard that Zimbra chooses JSON over XML for their email app because of the lower overhead.]
· Keynote: Lessons and Tips from the Ajax Frontline with Scott Dietzen (founder, CTO, Zimbra)
· Zimbra’s toolkit is being adopted by the Apache foundation as their official DHTML/Ajax toolkit.
· Mashups are the future.
· Zimbra’s DHTML libraries are based on SWT conventions, so Java people should be comfortable.
· Track 2, Session 5: Google APIs
· Lots of Mashup examples. This presentation was not technical enough.
· Track 5, Session 6: Beyond Cookies: Persistent Storage for Ajax/DHTML Apps using Dojo.Storage with Brad Neuberg
· A set of functions related to storing information offline.
· There will be many storage implementations. The first is Flash. Others will include cookies, form saving, ActiveX, Firefox’s offline storage API (coming soon).
· Flash lets you store 100KB of data on the client without asking the user.
· The user is asked when you go past 100K, then again when you go past 1MB, etc.
· Flash 6 is the minimum for the Flash storage implementation. Flash 8 is required for Safari.
· Cross platform, cross browser was really hard, but it works now. Flash has a lot of gotchas in various browsers – especially Flash 6.
· Flash 6 install base is 97.1.
· Takes advantage of Dojo’s existing io library for serialization of objects.
· Some browser/Flash version combinations: storage is slow.
· DO NOT DO THIS ON YOUR OWN. USE DOJO.STORAGE. TONS OF CORNER CASES THAT ARE FIXED ALREADY IN THE LIBRARY.
· Keynote: Brendan Eich, the creator of Javascript
· Very, very dense presentation involving the future of the LANGUAGE, not it’s integration with DOM, etc.
· A lot of what was discussed is still being decided.
· The most important issue with the future of Javascript is memory management and he discussed some things that will help.
· Track 3, Session 7: GreaseMonkey and Ajax with Jason Hunter
· All review, for me.
· GreaseMonkey is a Firefox extension that lets you run Javascript on pages after they have been loaded by the browser, but before the onload event fires.
· 1 million GreaseMonkey user scripts are now available. (REALLY?)
Thoughts on the conference from other attendees can be found here.
A Week with the TabletKiosk eo
I’ve had my eo UMPC/Origami for a week now and I’ve spent a lot of time with it.
At home, I used it to check my email and rss feeds from the kitchen and bedroom. At work I used it to read through resumes, bug listings and spreadsheets. In the car I used it, along with map software and a GPS, to navigate. On the train, I used it to hack on a little Ajax app. At the Ajax Experience conference, I used it to take notes and stay up to date with things back at work.
I’ve installed most of my favorite apps including Microsoft Streets and Trips, Visual Studio 2005, Notepad++, Firefox, Office 2003 (including Outlook and OneNote), Cisco VPN, FileZilla, AutoHotKey, BallDroppings, Second Life (doesn’t work), Moonbase Commander (doesn’t work), TopDesk, PowerDVD, VNC, gaim, and mIRC.
The battery life is hovering around 90 minutes right now. TabletKiosk promises a fix, soon, that will hopefully get it closer to the promised 150 minutes. We’ve all been trying to help running tests with various options turned on and off. Steve has been organizing that effort and has some documentation at his blog and there is some history over at OrigamiPortal.
The eo was a hit at the conference… crowds gathered a few times and I passed it around so people could try it out. I was careful to mention the battery life concern, but I also talked up a storm about the things I love about it. The dpad and touch point are extremely helpful. It works really well with the ThinkOutside bluetooth keyboard. The screen is vibrant. Video plays well. The resolution scaling makes a lot of apps really usable. All this great utility in a super-light package. I only occasionally wished I hadn’t left my laptop home.
In other news:
With Steve’s direction, I got Linux to boot on my eo. Nothing really works, but you can sort of make out the graphical interface. More details and a link to the Damn Small Linux disto I used are over at carrypad.
Roy at OrigamiPortal has been working on themes for the Touch Pack Application Launcher that comes with UMPCs. I’ve been testing his iPod theme – it’s great!