Today, it's becoming apparent that there is no such thing as a computer screen, anymore. It could be a PC screen, a portable gaming screen, a laptop, an iPod, or iPhone, etc. On the other hand, TV screens have been getting flatter and bigger, and when it comes to displaying media, the distinction between the function of a TV and the function of a computer is also rapidly blurring. Maybe these new classes of screen should have names like:
- i-screen: Sony PSP, iPhone type of interface
- u-screen: Utility screen for desktop computers and laptops
- v-screen: Video wall, jumbo TV, home-entertainment screen
aspdims<-function(diag, asprat) { if(mode(diag) != "numeric" || length(diag) != 1) stop("Bad 'diag' arg") if(mode(asprat) != "numeric" || length(asprat) != 2) stop("Bad 'asprat' arg") r<-uniroot(function(x) (asprat[1]*x)^2+(asprat[2]*x)^2-(diag)^2, c(0,5),tol=0.0001) scrn<-c(asprat[1]*r$root,asprat[2]*r$root) cat(sprintf("Scrn Dims: (%3.2f, %3.2f) in; (%3.2f, %3.2f) cm\n", scrn[1],scrn[2],scrn[1]*2.54,scrn[2]*2.54)) }which can be applied as follows:
> aspdims(4,3) # Oops! Error in aspdims(4, 3) : Bad 'asprat' arg > aspdims(4.3,c(9,16)) # Sony PSP Scrn Dims: (2.11, 3.75) in; (5.35, 9.52) cm > aspdims(6,c(9,11)) # Kindle 2 Scrn Dims: (3.80, 4.64) in; (9.65, 11.80) cm ...Along with the smaller i-screen dimensions, we have a completely new interface emerging; one that necessarily departs from the paradigms pioneered by Doug Engelbart and crew. The mouse is gone, and replaced by touch gesturing: pinches, swirls, ... that remind me of that Seinfeld episode about "the move". The role of the keyboard is still in question, partly because voice recognition is not yet ready for these devices. If you had told me 20 years ago that people would happily tolerate interacting with these small i-screens, even to the point of watching movies on them, I would've said you were crazy. Now it's pretty clear that they represent an emerging class of display. In a previous blog post I stated:
Mobile devices like this (iPhone) are actually computers, not just phones. The iPhone runs Mac OS X; same as mac laptops. In my view, this and similar devices represent the commodity computer of the future.And the growing ubiquity of these i-screens is going to put a lot more pressure on Web 2.0 availability and performance, which brings us back to capacity planning, as usual. Afterthought. Maybe the test for an i-screen is:
Can you put it in your pocket?Kindle-2 would fail on this score, but only because of its keyboard.
No comments:
Post a Comment