Now That It's Here, Is There a Place For Windows RT? 287
concealment sends this quote from Ars:
"The argument back then was this: Windows on ARM would mean discarding the thing that makes Windows entrenched and important: Windows applications. Tablets need all-new applications, and if you're going to run all-new applications then you don't really need Windows. ... In the time it has taken Microsoft to bring Windows on ARM to market, ARM's once overwhelming battery life advantage has been erased. The ARM CPUs may still have a slight power use edge, but the difference will typically be dwarfed by the power consumption of the screen. The Intel processors, in turn, bring CPU performance that is probably best in class (or close to it), and most importantly of all the ability to run the full version of Windows 8 and existing Windows applications. The hardware could look identical to the user, but if it has Intel inside, the user experience will be quite different. ... With these constraints and limitations, it's hard to see who exactly Windows RT is for. I acknowledge that there are certainly some users who will be content to use the browser, mail app, and perhaps type the occasional letter in Word or balance their checkbook in Excel: people for whom the Windows Store's current gaps do not matter. But I think a much wider selection of users will be ill-served by Windows RT."
Windows 8 (Score:5, Insightful)
As a tablet OS, Windows 8 is actually pretty nice. It's just that it's being crammed down our throats outside of tablets that makes it a PITA.
As for RT vs. x86, I'd lean toward x86 unless there's a major price advantage to ARM. The Clovertrail chip looks to have good performance and battery life, so there's no massive technological reason to pick one over the other. Application compatibility is a nice win for x86 BUT.. the truth is you'll likely not want to run desktop applications on a tablet anyway.
Re: (Score:3)
RT is "Asking to be sued" by the EC. It'll be entertaining when they get fucked for trying to pull the same browser restrictions a second time.
Re: (Score:3)
Re: (Score:3, Informative)
Re:Windows 8 (Score:5, Funny)
They currently have a 0% market share, behind the market leaders Apple, Android and even Blackberry.
Re: (Score:3)
Re: (Score:2)
Re:Windows 8 (Score:5, Insightful)
Hint: there is.
Re:Windows 8 (Score:4, Insightful)
Re: (Score:2)
Re:Windows 8 (Score:5, Informative)
Re:Windows 8 (Score:5, Informative)
Re: (Score:2)
It's too bad tablets are pretty much useless. (Score:2, Interesting)
It's great that Windows 8 might be a good tablet OS, but that doesn't change the fact that tablets have proven themselves to be over-hyped fad devices with no practical use for most people.
Yeah, yeah, I know, I know. There'll be a few people who'll respond to this describing their niche usage of a tablet, but they're in the minority. Most tablet purchasers got caught up in the hype, bought a tablet without thinking, and now they have yet another pointless device that they don't use. It sits there collecting
Re:It's too bad tablets are pretty much useless. (Score:4, Insightful)
As you said, the tablet is a niche device, but I don't think it's entirely a fad. Sure, $600+ tablets are a fad, but the lower end tablets (such as my own Nook Color) fill a nice gap where my smartphone isn't capable enough, but my laptop is overkill. It has replaced my laptop for day or weekend trips when I don't plan on doing more than some web browsing and typing emails. The $150-$300 is a nice price point for tablets... much more than that and you might as well just get a laptop.
Re: (Score:2)
People who bought Pet Rocks in the 1970s said similar things. How could you not love pet rocks? Infinite battery life, long upgrade cycle, incredible durability.
Re:Windows 8 (Score:4, Interesting)
And the thing is, MS is thinking long term. They don't want to be caught pants down 3 or 4 years from now if some ARM maker produces a chip that is serious competition to Intel.
The only way that future windows applications will work on both ARM and x86 is if people start developing for that now. They need just enough marketshare to warrant the added development time* for developers to make both an ARM and x86 version so that windows 9 or windows 10 on both will actually be appealing
*Supposedly it's just a simple recompile in visual studio. How well that will actually work in practice on applications that need optimization I don't know. I know where I am isn't worried about ARM versions of what we do atm, so I haven't had any justification for working on it.
Re:Windows 8 (Score:5, Insightful)
The only way that future windows applications will work on both ARM and x86 is if people start developing for that now. They need just enough marketshare to warrant the added development time* for developers to make both an ARM and x86 version so that windows 9 or windows 10 on both will actually be appealing
No. You see, C# uses a virtual machine. It's MS's version of Java. That's their strategy for cross platform. Thats how XNA code runs on my PC and on the XBox without change. They call it "Managed Code" -- Bytecode in a Virtual Machine. Hint: Android uses the Java language, and Davlik VM for cross platform.
MSVC is not what developers really need to be using to ensure future relevance. OSs are becoming Irrelevant (actually have been for a long time). We developers only care about getting our software running on as much hardware as people want it too. There's no reason at all to limit our marketshare needlessly.
With an entrenched code base tied to a proprietary compiler suite you're at the OS vendor's mercy. What's smart is to use a cross platform framework like Qt, GTK, or another OS abstraction layer and compiler toolchain, for any new projects. A minimal OS abstraction can be created in a weekend (I know because that's how long it took me to make my own GLUT replacement)... In this way I don't have to do ANY extra work to get code additions to compile for x86, x64, ARM, PPC on GNU/Windows, GNU/Linux, GNU/OSX, etc.
I "git pull & make" and I'm done "porting" from any supported platform to another -- And this is for 3D Game Code (programs notorious for being hard to port). For any other programs it should be a no brainer. Cross platform toochain or bust. Ah but C# really only works well on Windows, so MS is pushing that hard -- Native compiled code instead of MS byte-code means they can't be your exclusive platform as easily.
VMs are OK, but they're slow for things that actually need performance of running on the metal. What we need is a cross platform object code format that the OSs then link into binaries at install time... (Gee, someone ought to make such a compiler / OS) Since we don't have such a system the next best thing is either a VM with JIT compiling, or building binaries for each target platform.
I gave up trying to create code that I could compile with all the popular toolchains: MS/Windows and LLVM/OSX & BSD as well as GNU/Linux. I could have gone with LLVM over GCC, but I'm more familiar with GAS, so I picked a GNU based userland & toolchain. An MS compiler wasn't even on the table -- They have no cross platform OS agnostic compiler (publicly) available. A brand new processor can come out tomorrow, say, a 48 core AMD 128 bit processor with a totally new instruction set: LEG. As soon as it runs GCC (read: Linux) all of my code can run on it.
W8? An OS? ... OS?! ... Screw OSs. They're just the platform you use to get your software on. Your OS choice shouldn't affect what software you can run -- We solved that problem in the 70s, now it's time to actually start using the damn solution already. Not servicing market segments due to compiler choices is like throwing away perfectly good money.
Re:Windows 8 (Score:4, Informative)
Not quite. C# lacks a universal binary. You need to build for each platform which is a PITA compared to Java.
Re: (Score:3)
AnyCPU != Universal Binary since all your DLL dependencies need to align with the target platform as well. Realistically you need to create a separate project for each target in your Solution. Java has a true universal single binary. Build a jar and drop it on 32 bit WinXP, 64 bit windows 7, Linux, Mac - double click on it and it runs. Big difference.
Re: (Score:3)
I don't think anything in your post is accurate. But thank you for the attempt at feedback.
I appreciate what you're trying to get at, but C# isn't a virtual machine like java. You're on the right track, that Apps is an antiquated concept and we shouldn't be tying functionality to a specific OS when we have the web, but people buy apps, by the dozens, so people make and sell apps.
I don't have to do ANY extra work to get code additions to compile for
As I explicitly stated, that's MS's intention with being able to recompile for ARM vs x86, but you still needed a compiler to do
Re: (Score:3, Insightful)
Because they've not yet become irrelevant. The OP sounds like a bit of an evangelist, and wants you think what should - and is happening - has happened. It hasn't, but he's sort of right. The dinosaur OSes have had their day - people are as happy - sorry, happer - using a decent mobile OS to access their apps/data, than the older OSes. Why can I sent a document from one app on my phone to another app/person by sharing via a button press or two, whereas on my desktop OS I have to try and download it , pok
Re: (Score:3)
whereas on my desktop OS I have to try and download it , poke around trying to find it on my file system somewhere (good luck with that if you're not technical)
Come on! Even a 20-something secretary, who (prior to her employment) hasn't used a computer to do anything aside from "checking facebook", can handle basic file management!
How many technical people do you think you'll find in the average office? Now, how many of them regularly perform task that requires basic file management?
How many can send email attachments, use the copy machine to scan a document, or move files around on a USB drive?
It's not complicated. Millions of non-technical people do it every
Re: (Score:3)
Mod parent up. This is actually par for the course with toolchains and libraries in Microsoft-land; they did the same with GDI+, and the same with COM and MFC before that. If you're a Microsoft developer you have to run as fast as you can just to keep up.
Re: (Score:2)
Application compatibility is a nice win for x86 BUT.. the truth is you'll likely not want to run desktop applications on a tablet anyway.
But you might want to be able to run apps that Microsoft hasn't given specific approval to. For that, you'll need the x86 version.
The only place for win 8 (Score:2)
I think it is aimed at businesses and academia (Score:2, Insightful)
It has an active surface and digitizer, and it runs MS Office, which puts it light years ahead of the iPad in terms of productivity. Plus, it is an MS OS, which means that it probably comes with a lot of tools for IT managers to make it easier to deploy within an organization.
Sure, android might be better for nerds who want to hack their OS and the iOS might be better for the average Joe who wants to surf the web, but Windows RT and the MS Surface offer a much better choice than the iPad for corporations a
Re: (Score:2)
If I want to work on spreadsheets and documents I have a net book, a notebook and a desktop. Why would I need Office on a tablet or a phone?
Re: (Score:2)
To replace the net book. You drop into a keyboard, office. Going someplace and want to use it for music, or vids, or games? Take it with you and leave the keyboard on your desk.
Re:I think it is aimed at businesses and academia (Score:5, Insightful)
But my netbook is still far more functional than a tablet or a phone. For what I use those devices for, I don't actually need to do much in the way of actual office app work. In fact, even a netbook is too cramped for that, which is why I still have my PC and my notebook, because they have full sized keyboards and bigger displays (the latter is absolutely key to spreadsheets, many of the ones I have I normally work with on dual monitors).
I'll be honest. If my tablet or phone can just display the powerpoint presentation or Word document, that's good enough for me. I cannot imagine anyone seriously want to use a tablet as some sort of out-of-office workhorse. For a touch typist like myself, I doubt I can get much beyond 20-30WPM with considerable errors on a touch screen. A real keyboard, even a crappy neo-chiclet keyboard, is infinitely superior.
Re: (Score:2)
And I'm sure by notebook keyboard will still be superior.
Re: (Score:2)
All the Executive types see these Apple iPad ads where Doctors are manipulating ultrasounds, or sales guys showing off an amazing PowerPoint deck and we're the ones who have to bring them back down to earth with, "well, it doesn't really work like that because your ERP system doesn't have a native iPhone app".
I remember (Score:5, Funny)
Re:I remember (Score:4, Insightful)
I remember Windows NT for Alpha.... Yeah, the DEC Alpha.
Re: (Score:2)
I once installed Windows NT on PPC. I had this old IBM ppc machine I had bought at a surplus auction and itwas the PREP architecture that NT would run on. Every old NT 3.51 disk, even an oem CD from Compaq (the kind I had) includes the ppc/alpha/mips install binaries on it in addition to x86.
It was pretty pointless. There is absolutely nothing else you can install. Even the IE on NT was 2.0.
Re: (Score:2)
WinNT => WNT == VMS++
Oh do shut up (Score:4, Insightful)
Another in the seemingly endless torrent of stories about how Windows RT is imminently about to fail. Get back to me after xmas at the earliest. It is too soon too tell, all we know now is that a bunch of big name manufacturers are at least willing to give it a try.
Windows RT == Zune (Score:5, Interesting)
in other words, supported for a few years and then dropped when there's zero financial incentive to keep it going. It will be treated by developers as a dead-end, so there will never be compelling apps, which will sign the death-warrant.
Re: (Score:2)
Keep in mind though, that apps made for windows 8 "metro-style" will be compatible with windows RT. So the ecosystem will build up anyway. I see them changing the marketing direction after a couple of versions down the road. "Bussiness" for those needing old x86 compatibility and "Home User" for those who just use the latest version of an app
Re:Windows RT == Zune (Score:4, Interesting)
Keep in mind though, that apps made for windows 8 "metro-style" will be compatible with windows RT. So the ecosystem will build up anyway.
Now you need to answer a different question. Why would anyone develop for Metro? What is the advantage of having one or several huge monitors dedicated to one application? Even the IE in Metro mode looks ugly as sin, to the point of being useless. Who would want a browser that uses "magic spots" to reveal menus and that would hide every control in existence at the first opportunity? Can you imagine Photoshop in Metro mode? Or SolidWorks? PC software is not for playing around, it's for doing work, and Metro is not helping there at all.
Metro applications, necessarily simplistic, make sense on a tablet. However tablets do not benefit from x86 - to the point that hardly any of them use x86 today. A Metro developer would be burdened with supporting his software on platforms that generate no sales.
Win 8 RT (Score:5, Insightful)
For me it's a non starter because you can't run existing Windows applications on it. Microsoft delivers a scaled down version of Office on it but it doesn't include Outlook. Apparently there is some sort of other email client on it. Why would I buy one of these things if I have to go out and buy new software for it? If I'm going to do that I might as well get an iPad or Android tablet. Those two also have a much, much bigger selection of titles in their respective app stores compared to MicroSoft.
I don't understand why the RT was released before the x86 model since RT seems to have a much more limited audience. Maybe there were some manufacturing delays with the x86 model? If I were going to buy one of the Surface tablets (and I'm not) I would go for the x86 model.
Re: (Score:2)
For me it's a non starter because you can't run existing Windows applications on it. Microsoft delivers a scaled down version of Office on it but it doesn't include Outlook...
Outlook blows, sounds like a good thing then...
Re:Win 8 RT (Score:5, Informative)
Outlook is needed for legacy reasons. I'd really like to know if MSIE 6.0 will be supported on these devices.
Re: (Score:2)
Re: (Score:3)
They sot of have. It has a new, touch-friendly UI, but Windows Mail and Windows Calendar are included as pre-installed "Metro"-style apps on Win8 and Windows RT. However, the feature sets are different (improved, for the most part). For example, the new Windows Mail can use ActiveSync (i.e. it can connect to Exchange servers) and can connect to Hotmail/Windows Live, in addition to POP3 & IMAP. It also includes templates for connecting to Gmail and Yahoo. I don't believe it offers as good of filtering ca
Re: (Score:2)
Outlook-Exchange is pervasive in the enterprise. If all MS is delivering is their ActiveSync-capable app, how exactly is that an improvement on what I can get out of an out-of-the-box Android or iOS device?
As to the rest of Office, I'm dubious. On a pure tablet, heavy duty word processing, desktop publishing and spreadsheet work is going to be abysmal, and if the device has a keyboard, well I can pick up a pretty cheap netbook that's likely to have as much, if not more horsepower and a helluva lot more stor
Re:Win 8 RT (Score:4, Insightful)
My guess is to push the adoption of formerly-Metro. Microsoft gets a platform out there that only supports that API (and only their store) and you force developers to start using it. Then when Windows 8 is released and x86 tablets come out they can simply release builds for it and go. There's no end-run to be had by simply using Win32.
Microsoft is really, really aching to get their own lock-in centric walled garden going, and Windows RT is the only way they can do it without getting strung up by every regulatory agency on both sides of the Atlantic.
Re: (Score:2)
For me it's a non starter because you can't run existing Windows applications on it. Microsoft delivers a scaled down version of Office on it but it doesn't include Outlook. Apparently there is some sort of other email client on it. Why would I buy one of these things if I have to go out and buy new software for it? If I'm going to do that I might as well get an iPad or Android tablet. Those two also have a much, much bigger selection of titles in their respective app stores compared to MicroSoft.
I don't understand why the RT was released before the x86 model since RT seems to have a much more limited audience. Maybe there were some manufacturing delays with the x86 model? If I were going to buy one of the Surface tablets (and I'm not) I would go for the x86 model.
I fully agree. What's more - I don't see why RT exists in the first place. Whatever power advantage ARM had is by now miniscule, while x86 has far superior performance per watt than ARM. And as pointed out above, x86 based tablets won't have to leave their Wintel apps behind, unlike ARM tablets. Although the current apps do need to be updated to recognize touch inputs.
Re: (Score:3)
What applications, if any, would you want to port to a tablet. It wouldn't support any of the games that I play. I'm lot likely to attempt to encode/re-encode anything. It won't be used as a TV server.
It's already capable of doing as much office type work that you will need right out of the box. It supports MP4, AVI, 3GP, MP3, AAC, WMA. Sure, it doesn't support .ogg or .ogv, but if you've encoded into those formats you're probably already on Android and you're not their target.
I've owned a Playbook and
Re:Win 8 RT (Score:4, Insightful)
I think that the common factor behind the long string of failures in the pre-iPad tablets was the appropriateness of the software. Simply throwing PC software on it with some bigger buttons didnâ(TM)t work very well. They were awkward to use, and were quickly binned as irrelevant.
While Windows 8, itself, is said to be better presented on tablets, that doesnâ(TM)t mean that off the shelf PC software is. The software will require a lot more of a rework to be usable than the rework required for an ARM port.
Re: (Score:2)
Really??? Where can I get one? This sounds the best development in Office since Clippy went to the big stationary drawer in the sky.
Re: (Score:2)
Mod up.
Headline with a question mark means ... (Score:2, Informative)
No.
Re:Headline with a question mark means ... (Score:4)
Worse yet, it's the third such near-identical headline in a week. And that's before the devices have been released. It's at least understandable (if still idiotic) when it's about Apple products, but here? What is there to talk about until the reviews come in?
It's in the brand. (Score:2)
Nonsense (Score:2)
Tablets need all-new applications, and if you're going to run all-new applications then you don't really need Windows.
What about integration? If what I create on the tablet is also usable on the PC, then that's why you would need windows.
WTF @ "Tablets need all-new applications..." (Score:2)
No... Tablets do NOT need all-new applications. What tablets need is a non-phone/device OS environment based on existing, established OSes (Windows, Linux, etc.) that is low-resource-intensive (scratch Windows), but still has the expectation of *multiple* users and each user being a content producer.
I understand the corporate rush to get in on the smart-device bandwagon, but where the evolution of the USER is going is towards scalable portability.
Desktops led to laptops which led to ultra portables (high-co
Its niche (Score:5, Insightful)
Windows RT will be right at home with people who have, until now, been okay with the fact that their Android and iOS tablets are not running a desktop class operating system. They just want the basic web and multimedia functionality.
The bigger question is this: How will Microsoft educate consumers about the difference between RT and 8; ARM and x86?
Re: (Score:2)
Re: (Score:3)
iOS is not marketed as "OS X". It's marketed as iOS.
And for good reason - there's a very real risk of confusing the market when you've got two (technically very similar) operating systems sold under the same name where some software will work on both and some won't.
Who is it for? That's easy. (Score:2)
In a Windows shop, sure. (Score:2)
Windows RT for Kiosk, POS, Control systems? (Score:5, Insightful)
Re: (Score:3)
Except that those sorts of people aren't going to want to deploy their software via the Windows Marketplace. If you want a tablet for that sort of thing, Android is really the only game in town.
Re: (Score:3)
Don't be so sure about that. I've seen more than a few POS systems running on iPads.
Re: (Score:3)
Not in this case. They may have been using something like this [apple.com].
A search for POS in iTunes brings up plenty of options. They make credit card readers for the things--heck, a few weeks ago I rode the RAT Beach Bike Tour [ratbeachbiketour.com] and they were taking credit card payments on Droids and iPhones.
Mediocre Laptop, Mediocre tablet. Buggy apps. (Score:2)
The flagship device for RT, along with the OS, and weak buggy ecosystem seem destined to flop.
Extensive Verge review.
http://www.theverge.com/2012/10/23/3540550/microsoft-surface-review [theverge.com]
The answer is NO (Score:4, Insightful)
Re: (Score:2)
So... (Score:3)
p. ...if you're going to run an OS on a device with a completely different input method that won't run your desktop applications, why does it need to look like your desktop?
Re: (Score:2)
If you're going to run an OS on a device with a completely different input method that won't run your desktop applications, why does it need to be called "Windows"?
Re: (Score:2)
That's a great question.
On The Phone (Score:3, Interesting)
Windows 8 Strategy: revamp ala OSX market ala XBOX (Score:2)
More like doing an OSX thing ala Windows.
8/RT is kinda like OSX, a radical re-engineering of the OS for the next generation of computers. They keep backward compatibility on the desktop but restrict the new platform (surface) to be next-gen only - perfectly reasonable, it's a new platform.
Now MS has to invest in the time and effort for Metro to take off apps for desktop/surface will feed the desktop and hopefully supplant Windows legacy, they will bug fix 8/RT till it is a stable OS and compelling enough
Is There a Place For Windows RT? (Score:2)
Yes! In the "75% off" bin, right next to the TouchPads and Zunes.
Just kidding. I figure they'll do OK -- a bit better than some Android tablets, not as well as all Android tablets combined, and both competing for that fraction of the market that doesn't want iPads.
RT == SecureBoot (Score:5, Insightful)
Microsoft requires all ARM devices implement SecureBoot with no way to turn it off. So, no, I have no place for RT.
Re: (Score:2)
Bummer, was about to say we could put Linux on these devices, then you reminded me about SecurBoot, EFI or whatever it was.
I hope someone will find a way to root these devices so I can get an Android ROM or Linux Distro on it. Maybe a hypervisor like vmware horizon mobile with our own OS on it.
Windows Phone 7 owner's take (Score:2)
The biggest threat to Windows RT / Windows 8 is Microsoft's recent destruction of developer (that is, the money people at dev houses) confidence in Microsoft's ability to "lead" any kind of technology drive.
I got my Windows Phone 7 phone because I could return it just in time for the phone I wanted. It took me by surprise and I got quite attached to it. You have to unlearn some bad habbits from years of working with UIs that came from keyboard and mouse toting designers. And then, Oh My Gosh.
My big issue wa
Most PC users are not slashdotters (Score:3)
Surface is going to be a train wreck, I believe. People who have no clue what the difference between ARM and x86 iterations (atom, core, etc) are going to be befuddled that their new Windows device can't run their other windows programs. Then the pro version will come out and people will spot Windows tablets running regular windows apps and be baffled why their surface can't do the same. Windows application developers will have to start deciding whether to target one CPU architecture or the other or both, meaning there will be two app eco systems out there for devices that look the same on the outside. Joe Computer User with his RT sees a new widget on his friends x86 surface and discovers he can't get it. Likewise, the same potentially for x86 users, where maybe a company makes an app that only targets ARM.
This will be a mess. Microsoft made their fortune based on backwards compatibility, and now they're throwing a consumer system out there that lacks that one thing that kept people coming back to them.
Yes, x86 surface seems interesting, but its not here yet. But the ARM version, I'm positive, we'll all look back at it in the same dustheap as the Zune and so many other things.
I can't imagine what Microsoft is thinking. Or, wait, I know what they're thinking - they're moving to emulate apple, rolling out their own hardware and aiming for as high of margins as possible. Really, what can the cost savings be for using ARM over Atom? Will those savings be worth the tons of confused customers they're about to create? I doubt it.
Somewhere in their organization, alarmbells should have been ringing this whole time.
I can't pretend to be interested even in the x86 version, being that outside the office I live a windows free lifestyle (Mac OS, iOS, Ubuntu and, now recently, IRIX). If it gets jailbroken and we can see a linux distro on it, I may get excited. And if some enterprising person manages to get Mac OS to run on the thing.... well, I could imagine retiring my macbook air if the keyboard was usable.
But back to the original thought that spawned this disjointed rant:
What in the world are they thinking? Do the few extra dollars saved by using ARM rather than Atom make sense at all, when most of their customers are going to be blithefully unaware of what a hobbled machine they're going to get? It's not like there are Microsoft Stores all over with cool kids at the genius bar waiting to explain the the RT version won't run a single one of the applications they're used to using, unless it's Microsoft Office.
A lot of people are going to be very disappointed. And not just at their new surfaces, i can imagine a lot of blame being cast at Windows 8 itself for "breaking" their applications. I mean, Windows 8 just comes out, here's Microsoft showcasing surface, one would only assume that surface is their flagship product to demonstrate how cool Windows 8 is.
I guess that'll make all of us happy. Again, unimaginable that Microsoft would do this. Balmer will be lucky to be there next year, I'll tell you that.
Re:The Magic 8 ball says ... (Score:5, Funny)
a system error has occurred
Re:The Magic 8 ball says ... (Score:5, Insightful)
Let's be specific about it. The place for Windows RT is to occupy the void formerly filled by Windows CE, with similar success. A Windows that isn't really Windows. Just the thing to irritate the same sheeple who once raised Microsoft up to the dizzying heights of world's most valuable company.
Just a historical note apropo to nothing in particular: when Alaric I marched into Rome to sack it in 410 AD, much of the city had already reverted to swampland. The aquaducts had long since silted up and the sewers weren't working. What Romans remained were living in squalor. So much for former glory.
Re: (Score:2)
Damn ...*now* I see a post worthy of mod points!
Where the hell were you earlier today? :)
Re: (Score:3)
"Just the thing to irritate the same sheeple who once raised Microsoft up to the dizzying heights of world's most valuable company."
It was not the "sheeple" it was the total lack of any competition at the dawn of the personal computer and desktop era. At the time Apple might have offered a better product but their insistence on controlling the hardware made their products quite a bit more expensive than the MS products targeted at commodity hardware. And you can add up all the complaints against MS but it'
Re: (Score:2)
In an alternate universe, SGI rose to dominance instead of Microsoft and we're now ten years further advanced in software technology that the sad universe where Microsoft got a chokehold on the industry. SGI is now evil, and just as in the sad Microsoft universe, Linux fights the good fight, owns the routers and cell phones, and a few lonely desktops. And nobody ever had to hurt their eyes by seeing a backslash in a filename.
Re: (Score:3)
And Apple did both, then sued everyone for it.
Re:The Magic 8 ball says ... (Score:4, Funny)
Re: (Score:2, Informative)
Only on Slashdot could you see a post about "sheeple" that is rated +5 insightful. There may not be sheeple, but there is certainly Slashthink.
Re: (Score:3)
The place for Windows RT is to occupy the void formerly filled by Windows CE
You misunderstand the role of Windows CE, which is still under active development (latest is Embedded Compact 7, with 8 following next year). WinCE is a real-time OS made for sat-navs and embedded devices, and also forms the core of WinPhone7. WinRT is up against the iPad and Android tablets, an entirely different market.
Re: (Score:2)
Source: Betteridge's law of headlines
Re: (Score:3, Informative)
Re: (Score:2)
Because from a marketing perspective it is better to discuss something, even if in a negative tone, than to be simply ignored.
Re: (Score:2)
Re: (Score:2)
AC, meet Xbox.
Re: (Score:3, Insightful)
Re: (Score:2)
Casual users will probably love it, especially if they have Windows 8.
Metro start screen is just like Android's application pages, only with ugly colors. Why would a Win8 sufferer pick the same malady for his tablet? Would you, an Android user, launch your frequently used applications from application pages - and not from the icon strip, the start screen, or the "Start" menu in ICS? Win8 takes away all these methods of simple customization, so that you have all your essential software (email, chat, news
Re: (Score:2)
Most people aren't all that bright or know their butt from a hole in the wall when it comes to technology. The shear fact that they can share between their "awesome" Windows 8 desk top and their mobile app is something new and novel to them. Never mind there is enough integration for the iOS and Android platforms into Windows that is borderline seamless to people who know better. RT's ONLY chance for
Re: (Score:3)
RT's ONLY chance for success is from these casual users because it will not come from the tech savvy or business community.
Perhaps that is true. However casual users are heavily influenced by educated, power users. In fact, casual users ask for a recommendation; they don't just rush to Fry's to buy whatever they can grab - not for $599, at least.
For example, my parents have an XP box (for legacy reasons.) They came to me with a need, and walked away with Nexus 7. Not only the price is reasonable and th
The learning curve is the problem. (Score:2)
I use it. The problem's not so much that it's horrible as much as it's that you need a tutorial to learn how to use it. It's probably too much to expect users to make an effort to learn a new OS when the alternatives don't really have the same requirement.
Re: (Score:2)
No. The idea is to have the same interface on all sizes. To make phone / tablet / desktop scale.
Re: (Score:2)
Windows Phone was never meant to. I don't know where you get the idea that it was from.