HP To Open Source WebOS 137
First time accepted submitter pscottdv writes "This year the artists formerly known as Palm had quite a rough few months with HP dumping the hardware side of their own webOS mobile computing platform – their most recent move, having been announced just last month, is live today: open sourced webOS for all. While the actual main product which will be known as Open webOS 1.0 will not be released until September, they've already got the Enyo piece of the pie available today."
Merry Christmas Geeks!!! (Score:1)
Ooooh yeah!
Re: (Score:2, Offtopic)
"When Microsoft used their Windows monopoly revenues to fund development of Internet Explorer and release it for free to try to dominate the web market, everyone here cried "antitrust!""
It was the bundling it with Windows and concomitant development of proprietary MS only extensions that were the real problems.
Google (so far) isn't doing the rough equivalents: they aren't restricting use of Google search to Chrome, and they aren't pushing a plethora of obviously Google-only APIs to make websites work on Chr
Re: (Score:2, Troll)
Re: (Score:2)
Quite an interresting point about WebOS you make there.
Well, that's nice .. but (Score:5, Insightful)
Yet another large open source project to further tax the talent pool? I wonder how much attention it will get.
Re: (Score:2)
Re:Well, that's nice .. but (Score:5, Interesting)
Probably not much, really. But it had some nice things, and is also based on a Linux core. So, hopefully, there will be some cross-polination with Android.
If my Pre was still working, I'd probably still be running it. I'd miss a couple of apps from Android, but overall I prefer the Pre. But there's nothing that couldn't be moved/implemented in Android, if the licensing problems are out of the way.
Re:Well, that's nice .. but (Score:5, Interesting)
Android is so insular I don't expect anything to make the leap. The webOS core was so close to a common Linux platform (sdl, glibc, etc.) that games transplanted relatively easily to Maemo. If anything, you could see some cross pollination with initiatives like Mer [merproject.org] or Tizen, once Samsung and Intel get that off the ground.
Re: (Score:3, Insightful)
From devs? None - HP is open-sourcing it because it's DEAD.
From everyone else? We need a good laugh (or cry) now and then ...
If HP could make a nickel out of it, or find a buyer for it, they would.
Re: (Score:1)
Re: (Score:2)
One has the sinking feeling that the window is closing on open source. There are fewer incentives to contribute and enormous incentives to create intellectual property, which is all that interests venture capitalists.
It isn't that, it's yet-another-operating system. I'm sure it has some nice features, which people would like to incorporate into other enviroments, but how much have you heard about BeOS lately? It largely ran out of gas about 10 years back.
Re: (Score:3)
Re:Well, that's nice .. but (Score:5, Informative)
Good thing some of us like to actually do things for fun every now and then. The Open Source philosophy isn't about making money, it's about sharing knowledge.
Re:Well, that's nice .. but (Score:5, Insightful)
No disagreement. That's certainly why I write open source. That and because I need to get things done anyway, so I might as well make it available in case it can help somebody else.
That said (and I'm probably going to get modded down for this), this is also one of the reasons why there is so much open source software out there that is of lesser quality than similar commercial software. Make no mistake, there are plenty of great open source apps and drivers and kernels and daemons out there, but for every one that's a gem, there are a hundred more that are so-so, and a thousand more that are complete crap. The reason for this is, to a large extent, because most of the folks working on it are creating things for fun, for themselves, whatever, and when they get things working well enough to do the job, they do no further work on the project. The result is a whole truckload of abandonware.
More importantly, because the developers often just need to get something working well enough to get something done, maintainability is often the last thing on their minds, resulting in some incredibly bad code. I've seen copious amounts of code in fairly significant open source projects over the years that was so bad, it made me want to cry.
I actually had such an experience just a couple of days ago (on a project that will remain nameless), with code that pre-defined macros for things like SIZEOF_LONG instead of just doing sizeof(long), resulting in the absolute inability to do single-pass compilation of multi-architecture (fat) binaries until I ripped all that crap out. I would have understood that sort of thing ten years ago, but this was top-of-tree in their git repo. Apparently nobody told these developers that there is exactly zero runtime penalty to using sizeof(), and thus absolutely no good reason to predefine macros with hard-coded sizes.... *sigh*
Of course, these sorts of problems occur in the commercial world as well, but the abandonware is more common in the open source world, largely because the barriers to entry are so much lower. You don't have to hire a team of ten people to develop an open source tool—you just write it in your spare time—so there's no real financial incentive not to abandon it when you no longer need to use it yourself, and there's no real financial incentive to ensure that the software is portable, maintainable, or extensible.
Admittedly, the abandonware is less catastrophic in the open source world because you can ostensibly fix it yourself, at least up to the point where code rot makes this impractical, but combined with the open source community's apparent disdain for API contracts and backwards compatibility guarantees, code rot hits open source a lot faster than closed source, which counteracts much of that benefit after only a few years. Just last week, I encountered some fairly fundamental API breakage while updating software written only about a year or two ago, to the point that it required some serious backporting to make things even compile—the function name was the same, but with a very different list of parameters, data types, etc. That's just unacceptable, and leads to serious long-term maintainability problems for anyone who isn't willing to constantly live on the bleeding edge of everything.
And then, there's the general sloppiness of data types. Good code doesn't use types like int or long most of the time, because you can't rely on their sizes. That's why we have inttypes.h. No code that has been touched in the past five years should be using those data types, period, because the results are simply not portable. Yet as recently as a few days ago, I ran into "assert(sizeof(long) == sizeof(uint32_t));". Not even a compile-time failure. A runtime failure. Like I said, some of th
Re: (Score:2)
Yet as recently as a few days ago, I ran into "assert(sizeof(long) == sizeof(uint32_t));". Not even a compile-time failure. A runtime failure. Like I said, some of the worst code I've ever seen comes from open source projects. Pulling that kind of crap often enough will get you fired in any company with a code review policy.
Compare the amount of commercial software available in 64-bit versions with the amount of open source software that is. Now take a look at when it became available in 64-bit versions. Finally, look at all the companies out there whose software really needs a 64-bit release but who have mysteriously been dragging their feet.
Commercial code is obviously in general a lot worse than you're making out. Hell, for the longest time the last major 32-bit-only holdout in the open source world was OpenOffice, mostly b
Re: (Score:2)
The big difference is that I don't have to build the commercial software in order to use it. They can distribute binaries because they build binary backwards compatibility into their library/framework/OS design so that as long as you keep calling the same function with the same name, you'll keep getting the same behavior.
By contrast, with open source, binary distributions are often few and far between, and even if they exist, a binary linked against an old version of a library won't run against a newer ver
Re: (Score:1)
How about writing up a tutorial on how to correctly declare
c/c++ numeric variables. When I went to school many moons
ago, int and long were it.
http://www.cplusplus.com/doc/tutorial/variables/ [cplusplus.com]
has a tutorial on declaring variables, and a table listing sizes.
They state the sizes of char, short int, int, long, etc.
If this is not the correct way to do it, please help enlighten us!
Thank you.
Re: (Score:2)
There's nothing inherantly wrong with using int and long etc... but when you're depending on a rollover or have some reason that the size of a variable is important, it's much more portable to use uint8_t, uint16_t, etc. The c99 fixed size integral types were invented for a reason. they help architectural portability.
Re: (Score:2)
Sarcasm does not become you, AC.
Re: (Score:2)
I take it by this that you mean you usually have to pay if you want to have sex with women, whereas in jail you got it for free?
Re: (Score:1)
Nah, it's just that a majority of the lower level stuff has already been done, so now it's larger scale product code being created. Just seems slow because I'd that.
Re:Well, that's nice .. but (Score:5, Insightful)
And exactly how is the talent pool ever supposed to expand without a few blue water projects where a ambitious young developer can go out win himself some glory, instead of having his patches being sneered at by the old boys club?
Re: (Score:3)
Open Source support already exists (Score:5, Interesting)
While WebOS is not yet open sourced, the operating system is sufficiently open and accessible that there is a significant open source community devoted to it: WebOS Internals (http://www.webos-internals.org) They have hundreds of OS tweaks (called "patches"), custom kernels, new services, apps, etc. Furthermore, WOSI worked with HP to develop the roadmap for open sourcing WebOS.
One of the big things that releasing this framework does is let existing WebOS developers quickly port their apps to Android and possibly iOS and WP7. It may be counter intuitive, but giving developers a way to produce apps for other platforms actually keeps them in the WebOS community. There are already WebOS apps that have been ported to Android (http://www.webosnation.com/first-open-source-enyo-app-jumping-other-platforms-paper-mache-android-flashcards-everywhere). This means that the good WebOS devs (and there are several) will get to keep developing WebOS apps that quickly cross-compile to Android.
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
Today's announcement should be welcomed by web developers.
Enyo is supposed to be fairly bleeding edge in terms of being a web toolkit optimised for touch-screen devices that yet can scale up to a standard browser. Whether that makes it a better choice for development than, say, RoR/JSF or whichever Java web framework of the month, is another matter.
While webos may have failed to gain market share overall, it could live on as components. RIM's playbook, Samsung's bada and Tizen are all based around the HTML5
Re: (Score:2)
Re: (Score:2)
Maemo and Meego are still going strong.
http://talk.maemo.org/index.php [maemo.org]
Re: (Score:2)
If the processes and government of WebOS are more open than Android, it may well gather more developers than Android. That is the true democ
Re: (Score:2)
If all the people who spun their own distros focussed instead on writing drivers and adding polish to the ones that already exist, so that things like installation dependencies, malfunctioning drivers and so on were eliminated, FOSS would be a lot more solid platform. It wouldn't be reduced to one, but at the same time, you wouldn't have hundreds. You'd have a handful of distros, DEs, UXs, WMs and a few software titles in every category (Office, Multimedia, Internet, Graphics, Development and so on) that
Re: (Score:2)
Not really an issue (Score:2)
Re: (Score:3)
I wonder how much attention it will get.
Realistically? None. But the alternative is that HP sticks the whole project on a tape, plasters it with copyright notices and lets is rot for ever more in a vault somewhere. So good for them for open sourcing it.
Re: (Score:2)
The good thing here is that it's competition for Android. Previously, some people were uneasy about the delay in the source code being made available, although that's finally happened. But now, w/ Open WebOS FOSS, Android would need good reasons for not opening up, since people could turn to WebOS if Android doesn't satisfy them.
I don't think it'll necessarily tax the talent pool, since both are Linux - unless there is a major difference in the dev toolkit used to make Android apps vs WebOS apps. Good
License? (Score:2)
Re: (Score:2)
Apache [arstechnica.com]
Where's the beef? (Score:2, Insightful)
Re: (Score:1, Insightful)
Re: (Score:3)
Hey dude,
Some eggs are diseased. Others never hatch! WebOS is one of the two. Pick one.
Re: (Score:3)
I know, why would anyone ever challenge an incumbent?
Re: (Score:1)
Because "widely adopted" is a moving target. RIM was a huge market player at one point, as was Palm. Same thing can happen to Android and ios. Maybe people will get tired of privacy violations via Google or price gouging via Apple. No one really knows.
Having a true Linux core ain't bad though. Linux pretty much just refuses to die. So webos at least has that going for it.
Re: (Score:2)
Because "widely adopted" is a moving target. RIM was a huge market player at one point, as was Palm. Same thing can happen to Android and ios. Maybe people will get tired of privacy violations via Google....
If Android uses got tired of Google's influence on Android, that is still no motive to move to iOS. There are already plenty of popular Android releases based on Android Open Source Project which give you total control over how much Google is in your phone.
Re: (Score:1)
It really was just an example. People can choose to quit using something for any number of reasons, a lot which would seem absurd to experienced users like yourself. While you and other slashdot users might flash a new OS, most people will throw it in the trash and buy a competitor.
My point was that OP's "keep the status quo!" argument is largely moot. To suggest that someone shouldn't be writing for a "dead system" is a little douchebaggy. Tech writers are paid to write stuff like that. Users should know b
Re: (Score:2)
Is it really that hard to port to WebOS? Besides, WebOS users are starving for good apps, so it's a good opportunity to carve out a niche. Settling into a good niche is often more profitable than squabbling with the big boys.
Re: (Score:1)
If its faster and better than whatever out there, why not give it a shot?
From what I understand the mobile js frameworks out there so far still leave a lot to be desired.
Re: (Score:3)
Why would a developer work on this when there are other, more widely adopted platforms to develop on?
Ask Linus why he didn't just stick with Minix or SCO Unix, or bloody well install Windows on his 386.
Some people are just perversely obstinate about wanting to have things exactly thus and so. Some people don't give a damn whether what they're doing will be popular or not; they just want things to work their way. We call those people geeks.
Re: (Score:1)
Re: (Score:2)
Why not?
Cases in point:
* Mint Linux
* lighttpd
* memtest86+
* KVM
* OpenNebula
* Android
And lest we not forget:
* Linux
* FreeBSD
And so on and so forth. Options are good. If nobody stepped out into the street, sure - nobody would get hit by the a bus. But then, nobody would cross the street, either (except at approved crosswalks).
Re: (Score:2)
Because he purchased an HP Touchpad when it was on sale for $99?
Enyo information is at enyojs.com (Score:5, Informative)
There's a new enyojs.com website [enyojs.com], where you can read about Enyo and try out some example apps, as well as downloading the current version.
Re: (Score:2)
Any chance that this javascript framework could make it into other packages, such as mozilla or even android?
Will WebOS be cannibalized for parts?
Enyo 2.0 is designed to be cross-platform (Score:2)
I'm not sure I'm understanding the question, here. Do you mean could it be included with Android? Absolutely - the license allows that, though I'm not sure what advantage shipping a version of Enyo with an Android distribution would be. It'd likely be out of date fairly rapidly.
If your question was more along the lines of "will Enyo apps run on Android", then the answer is it depends a bit on what version of Android - there are some significant bugs with some Android browsers That said, the intent is for En
Re:Slashdot to Open Source DupeOS (Score:5, Informative)
Late (Score:4, Insightful)
If they had done this from the start I believe they would have fared much better.
Re:Late (Score:5, Funny)
This is HP we're talking about. The US version of shoot-yourself-in-the-foot RIM.
Re: (Score:3)
This is HP we're talking about. The US version of shoot-yourself-in-the-foot RIM.
And HP CEOs trend to be as incompetent as both RIM CEOs put together.
Re: (Score:1)
Unfair. RIM's CEOs are not incompetent: for quite a few years they developed a company that was game-changing. Ok, so they couldn't hold up to actual change speed and competition, and needed to be replaced, but that -at the least- is a sign of wisdom, not incompetence.
Re: (Score:2)
Comments in every topic now. (Score:2, Offtopic)
It's almost interesting how off-topic the first several topics of articles have become these days. You get random google bashing, accusations on trolling, mac praising, and what have you in the first posts, in articles entirely unrelated to these comments.
Are trolls trolling trolls trolling shills trolling?
Re: (Score:3, Insightful)
Everyone is complaining on how this is doomed... (Score:1)
But there are hundreds here that enjoy WebOS, and find it vastly superior to Android in a lot of ways. Hell, first thing I'll do is work to get it on my Galaxy S2. Android can learn a lot from WebOS. In time perhaps they will merge the good from both, into a mobile OS that is on par with iOS in usability.
Re: (Score:2)
But WebOS within itself is a decent OS. Some things feel a bit unfinished, but nothing like I'd been told to expect. I had originally bought the device planning to install Android on it. But I'll just wait until Ice cream sandwich comes out, and then have a dual boot machine. Th
Hardware support (Score:3)
Besides the tablets no longer sold, is there any hardware that can run WebOS?
That's the plan (Score:2)
That's HP's plan over the next year:
Make webOS as open as possible to other hardware.
Re: (Score:2)
To reach critical mass, running webOS on existing Android devices would be a start. Many Android vendors are now promising to ship with unlocked boatloaders. Is HP willing to support a cyanogenmod like community?
HP needs to bite the bullet and state its hardware intentions. So long as it only targets existing discontinued devices it will remain on life support as just another obscure Linux distro running on proprietary hardware, cf. Maemo.
Too little too late (Score:4, Interesting)
What happened next was a total mess - the biggest downfall was how they alienated developers by changing the SDK from Mojo to Enyo - possibly a required change but the way they handled it was appalling. There was a long period when Enyo was released but it was impossible to even buy a device that ran it and the SDK was not even available to devs without jumping through hoops to sign an NDA. They then made promises to bring Enyo to their first and second generation devices and subsequently changed their mind. They never got round to publishing a roadmap of which hardware would support which SDK or WebOS. Developers had the choice to develop for Mojo and hit the majority of devices, or blindly put their faith in Enyo and hope that someday HP/Palm would put out a decent device capable of running Enyo. But by this time nobody believed a word HP said... they had lost the trust of their own loyal fanbase. Eventually the Pre 3 and Touchpad came but by then the developers had left in droves. I bought a Pre 3 and the hardware was finally decent, but the OS was buggy and there were even fewer apps available for it than for the previous generation Pre and Pre 2. I sold it immediately.
The sell-out to HP could have given Palm the resources they needed to push WebOS but it turned Palm from a nimble company capable of doing some cool stuff into a massive lumbering mess with no clearly defined plans. The signs of the downfall were obvious - the good talent that Palm had hired left almost immediately leaving a skill vacuum at HP/Palm. HP needed to act quickly but they failed to do so. And we all saw the shambolic mess they made of the touchpad launch and subsequent fire sale. Open sourcing WebOS is meaningless because it is a failed project with very little interest except a small (and highly loyal) fan base at WebOS internals. Even those guys must be wondering why they bothered.
The only good thing to come of this is that I got a touchpad for £130 that now runs ICS very nicely. It's a great shame to see the Palm name die in such a catastrophic manner. HP should be ashamed of themselves. And one last thing... throughout all this I have often wondered what happened to Jon Rubinstein? Has he been paid off to keep quiet? I would imagine he is none too happy with the way things turned out but his silence is deafening.
Not necessarily. We need an after-android (Score:2)
it's not necessarily too late.
Specially, when you think about it: despite its market success, android is a little bit outdated. It is Linux based. But its not a full featured linux system under the hood. Instead it's a non standard kernel + a special Java-like user space.
Under the hood it looks more like a feature-phone's system on steroid rather than a pocket internet linux machine, although manufacturer tend to polish it very nicely.
On the long-term, this non-standard stack could come bite you back later
Card swiping (Score:2)
A Good Move (Score:2)
I agree with the people who think that if HP could make money on OS, they would and it would not be released under an OSS agreement.
I also remember reading on SD a few weeks ago that the HP employees who built said WebOS was a dead end because they based it on some technology that would not handle heavier loads well.
Agreed on all points, but I think HP deserves kudos.
HP could have just locked the WebOS in a drawer, the way many companies do. Instead they are releasing it, which gives people who *might* ge
Re: (Score:1)
def greatbunzinni()
if $target != $my_opinion and get_rating($target) > -1 then
call conspiracy_accusation()
end
return
Re: (Score:1)
If by "fair" you mean completely off-topic and obvious troll, then yes, yes it is.
Re:iOS now has more marketshare than Android (Score:5, Funny)
Re: (Score:2)
Thanks for confirming you were the original AC. Not that it was particularly difficult to see in the first place.
Re: (Score:1)
Re: (Score:3)
no it's not !
I like the customization potential and the low cost that the generic PC provide to the experimented admins and power-users..
Annecdote:
I built an HTPC in a wodden case with spare part laying around my house. It is totally wife approved and it would be impossible to achieve that level of customization without jail-breaking an iThing. Spare parts, a licence I got at a random conf, XBMC, a few plugins I customized and a bunch of AutoIt scripts was all that was needed in the generic PC world.
Cost :
-
Re: (Score:2)
Error: Ambiguous goto label: "meeting"
program trace (nearest first)
1: goto meeting
________^
2:a snippet of code
3:email
4:IM
5:meeting
(output truncated)
Watch what you type people, there are puppies at stake!
Re: (Score:2)
But I dont want other people junk, I want to make my own ! ;)
Re: (Score:2)
As an Apple fan I guess you've seen a lot of people's "junk", and plenty of "parts hanging around".
Re: (Score:1)
Re: (Score:2)
Apple charges $150 for a 1TB drive.
Re: (Score:1)
Re: (Score:2)
Oh my, how optimistic. You're totally not mistaking sales growth with installed base share.
There's a billion or so PCs in the world with about 5% of them being Macs. With about 12 million Macs [usatoday.com] sold last year, it'll take just ~80 years to completely replace the PC - and that's if ~300 millions PC sales suddenly disappear.
Also note that it's not like decline in new sales means people throw PCs out of the window to replace them with Mac.
meh, wrong link (Score:2)
Meant to paste this one [xbitlabs.com].
Re: (Score:2)
You're right I'm not mistaking it. I explicitly said unit sales growth and that's what I meant. Also known as market share.
You explicitly said:
It's good to see (mostly Windows) PCs on their way out, replaced by Macs.
To say "PC is on the way out" you need to compare not sales and market share, but install base. That's why I said you're mistaken.
Yeah right. Because those PCs will still be running in 80 years. And suddenly the growth in Mac unit sales is going to stop.
No, they will extrapolate indefinitely and in some ten years there will be 1 bln. Macs sold annually. PC sales, on the other hand, will continue the negative growth and soon PC vendors will start taking computers away.
Windows PC desktop might be on its way out, though it's still not somewhere in the near future, but it surely won't be replaced by Macs. Even "S
Re: (Score:1)
To say "PC is on the way out" you need to compare not sales and market share, but install base.
Not at all.
Windows PC desktop might be on its way out, though it's still not somewhere in the near future, but it surely won't be replaced by Macs. Even "Soon everyone will throw away PC and buy a tablet" (note the "a") sounds more reasonable than this.
Well of course if you include tablet sales, Apple's products displacing PCs will be even more rapid.
In fact if you include iPad sales in with Macs against PCs, Apple has about 40% of the worldwide market right now.
Re: (Score:2)
Where the hell do you get those numbers? Down there is AC with a Gartner link, check it.
There's 90M PCs shipped in Q4'11, 5M - or 5.5% - of those are Macs. Now if you include 15M iPads (and exclude Android tablets), yeah, you'll get ~20% market share Q4'11. Clearly shows Wintel desktop is dead, yup. Mere 80%.
Re: (Score:1)
Re: (Score:2)
Are you saying that tablets are replacing PC's? That every tablet sold is a PC not purchased?
No but it's certainly sometimes a laptop not bought. And sales figures of netbooks falling off a cliff suggest people who would otherwise have bought a netbook are buying an iPad instead.
Now go ahead and try and do some serious work. Coding? Photo editing? Movie Editing?
Most people aren't doing those things. They come home from a hard days work, and the computer is just there for easy leisure, the odd bit of information retrieval, a bit of social networking, just like their PC was.
The tablet has it's role: convenient web surfing, music, recipe file etc.
Exactly.
Re: (Score:3)
Re: (Score:1)
I'd love to see the numbers broken down by price as i'd bet my last buck the vast majority of OSX's gains are below $1000 units.
Well we can get the average price is easy enough. Divide Mac revenue by units in the Apple results. Answer $1282.
In a way its the same thing we are seeing with tablets now, where many that would have bought one were turned off by the price but now we are seeing all these nice sub $250 Android tablets the sales are climbing, same thing.
But people aren't buying those sub-$250 tablets. They're buying $500 iPads.
those that held off because they couldn't see paying $2k+ for a Mac
I don't remember a time when there weren't sub $1000 Macs. Certainly not in the last decade.
Right now most shops will tell you its just a trickle but as it gets closer to Apr 2014 that trickle will become a flood as all those people that thought their current PC was 'good enough" decide they'd rather buy a new one than pay to upgrade their old.
Increasingly those people are buying Macs instead of PCs. 18% of them worldwide. Something rather higher than that in the US.
Re: (Score:2)
Well we can get the average price is easy enough. Divide Mac revenue by units in the Apple results. Answer $1282.
Hi. I think you need to understand the concept of the median [wikipedia.org]. Statistics 101 is not a bad idea. Also, outliers [wikipedia.org] is the fancy name for those $3k Apple workstations that people working in movie-editing buy, which are causing your distribution to be skewed [wikipedia.org].
Re: (Score:2)
Hi. I think you need to understand the concept of the median. Statistics 101 is not a bad idea.
I know perfectly well what the median is. You obviously need to learn about company results if you think that it's something we can work out. I gave the average (the mean) because that is the ONLY gauge we can get from the results to give an idea what type of Macs are selling.
It's interesting information. Your post was pointless.
Re: (Score:3)
But people aren't buying those sub-$250 tablets. They're buying $500 iPads.
Well clearly they are or they wouldn't be on sale in dozens of form factors and price points from generic no-name chinese models, to Amazon Kindle / B&N Nook tablets and pushing upwards through $250 to Asus, Acer, Lenovo, Samsung tablets. One of the advantages of Android is that it doesn't dictate the price, features, form factor, quality, storage or anything else that a tablet running it has. That means tablets to suit all tastes and pockets and it is reflected in sales with some people buying a cheap
Re: (Score:2)
Well clearly they are or they wouldn't be on sale in dozens of form factors and price points from generic no-name chinese models, to Amazon Kindle / B&N Nook tablets and pushing upwards through $250 to Asus, Acer, Lenovo, Samsung tablets.
Those same manufacturers were trying to sell dozens of models of Netbook previously. They didn't sell well either.
Indeed tablet sales for the last 3 months of 2011 were 57% iPad and 43% other, mostly Android.
39% of them are Android. And by no means are most of them $250.