Slashdot Mirror


Now That It's Here, Is There a Place For Windows RT?

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."

61 of 287 comments (clear)

  1. Windows 8 by CajunArson · · Score: 4, 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.

    --
    AntiFA: An abbreviation for Anti First Amendment.
    1. Re:Windows 8 by poetmatt · · Score: 2

      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.

    2. Re:Windows 8 by bananaquackmoo · · Score: 5, Insightful

      "unless there's a major price advantage to ARM"

      Hint: there is.

    3. Re:Windows 8 by viperidaenz · · Score: 2

      But WinRT is a minority player, they have no monopoly to abuse

    4. Re:Windows 8 by viperidaenz · · Score: 3, Insightful

      Hint: A couple of dollars, since Intel are pricing their new Atom's to directly compete with ARM SoC's

    5. Re:Windows 8 by Sir_Sri · · Score: 3, 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.

    6. Re:Windows 8 by viperidaenz · · Score: 4, Informative

      Atom CPU's have already sold as low as $19 a piece.

    7. Re:Windows 8 by larry+bagina · · Score: 3, Informative

      The MS/EC agreement was for computers only. Tablets and phones (WinCE at the time) weren't included.

      --
      Do you even lift?

      These aren't the 'roids you're looking for.

    8. Re:Windows 8 by jonbryce · · Score: 4, Funny

      They currently have a 0% market share, behind the market leaders Apple, Android and even Blackberry.

    9. Re:Windows 8 by aaron552 · · Score: 2

      Not on Windows RT. And sideloading on Windowst RT is only allowed for enterprise and developers (for the specific purpose of testing their own apps).

      --
      I had a sig once. It was lost in the great storm of '09.
    10. Re:Windows 8 by viperidaenz · · Score: 4, Informative

      Atom Medfield and Clovertrail are SoC's. They have integrated memory controllers and GPU's. Regrettably Intel don't have public pricing on Medfield and Clovertrail Atom's

    11. Re:Windows 8 by VortexCortex · · 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.

    12. Re:Windows 8 by Threni · · 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 , poke around trying to find it on my file system somewhere (good luck with that if you're not technical), then upload it again into my email system (duh - of course you transfer files using email - what else would you do?), and email it somewhere else. 1970's crap. It's time to start over.

    13. Re:Windows 8 by narcc · · Score: 2

      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 day.

    14. Re:Windows 8 by sproketboy · · Score: 3, Informative

      Not quite. C# lacks a universal binary. You need to build for each platform which is a PITA compared to Java.

    15. Re:Windows 8 by makomk · · Score: 2

      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.

    16. Re:Windows 8 by Sir_Sri · · Score: 2

      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 it, and a reason to click the button to make it happen. Windows is more than just the operating system itself, it's the ecosystem that surrounds it and the developer interactions. They could have released an ARM compatible visual studio 5 years ago for all it matters, but I doubt anyone would have bothered with clicking the 'complie for ARM' button, even if there was literally 0 extra work involved.

      Yes, you can rewrite GLUT in a weekend, but you're going to have different performance characteristics across platforms. That *might* be an issue - it depends very much on the specifics of what you're doing. MS's x86/ARM thing could work 95% of the time perfectly with one button, and 5% of the time require major code rewrites due to timing differences between the two types of CPU's or god knows what. I just don't know, because I'm not trying to build anything for ARM and importantly, test it.

    17. Re:Windows 8 by sproketboy · · Score: 2

      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.

  2. The only place for win 8 by santax · · Score: 2

    is it's rt distribution. Haven't tried it on a tablet but I am sure it's great for it. However, keep that crap away from my desktop where I need to get work done!

  3. I think it is aimed at businesses and academia by Anonymous Coward · · 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 and people in academia. The superior keyboard dock, One Note, and Active digitizer put it light years ahead of the iPad for people who want to use it for note-taking.

    1. Re:I think it is aimed at businesses and academia by MightyMartian · · Score: 4, 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.

      --
      The world's burning. Moped Jesus spotted on I50. Details at 11.
  4. I remember by wbr1 · · Score: 4, Funny

    I remember WindowsNT. What happened to WindowsOT, WindowsPT, and WindowsQT?

    --
    Silence is a state of mime.
    1. Re:I remember by tekrat · · Score: 3, Insightful

      I remember Windows NT for Alpha.... Yeah, the DEC Alpha.

      --
      If telephones are outlawed, then only outlaws will have telephones.
    2. Re:I remember by Bing+Tsher+E · · 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.

  5. Oh do shut up by AmiMoJo · · 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.

    --
    const int one = 65536; (Silvermoon, Texture.cs)
    SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
  6. Windows RT == Zune by tekrat · · Score: 4, 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.

    --
    If telephones are outlawed, then only outlaws will have telephones.
    1. Re:Windows RT == Zune by tftp · · Score: 3, 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.

  7. Win 8 RT by erp_consultant · · Score: 4, 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.

    1. Re:Win 8 RT by Jeremy+Erwin · · Score: 4, Informative

      Outlook is needed for legacy reasons. I'd really like to know if MSIE 6.0 will be supported on these devices.

    2. Re:Win 8 RT by Microlith · · Score: 3, Insightful

      I don't understand why the RT was released before the x86 model since RT seems to have a much more limited audience.

      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.

    3. Re:Win 8 RT by __aaqvdr516 · · Score: 2

      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 a Kindle Fire. The main problem with both has been integration with my existing devices. Seems to me that either RT or an 8 tablet would work equally well for what I might use it for. I still don't want one though.

    4. Re:Win 8 RT by mevets · · Score: 3, 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.

    5. Re:Win 8 RT by cbhacking · · Score: 2

      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 capabilities as the Vista version had, though, and the touch-centric UI isn't quite as nice to use with a mouse.

      --
      There's no place I could be, since I've found Serenity...
  8. Headline with a question mark means ... by Anonymous Coward · · Score: 2, Informative

    No.

    1. Re:Headline with a question mark means ... by shutdown+-p+now · · Score: 3

      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?

  9. It's too bad tablets are pretty much useless. by Anonymous Coward · · 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 dust.

    For most people, it doesn't even take a month before the novelty wears off. I think this is exactly why, aside from Apple, we see basically no other company successfully selling tablets. Apple is a unique case. I suspect that many of its buyers are buying iPads as status symbols, rather than as a usable device. I'm not even sure if they should be considered tablet purchases. It's more akin to buying jewelry than it is to buying a computing device.

    1. Re:It's too bad tablets are pretty much useless. by SJHillman · · Score: 3, 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.

  10. Re:The Magic 8 ball says ... by Joe_Dragon · · Score: 4, Funny

    a system error has occurred

  11. Re:Fucking shill. by unixisc · · Score: 2, Informative

    Did you even read it? The submitter was questioning the rationale for Windows RT to exist in the first place. If he was an MS shill, why wouldn't he instead make bloated claims about how great Windows on ARM is?

  12. Re:The Magic 8 ball says ... by Tough+Love · · 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.

    --
    When all you have is a hammer, every problem starts to look like a thumb.
  13. Its niche by Tarlus · · Score: 4, 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?

    --
    /* No Comment */
    1. Re:Its niche by jimicus · · Score: 2

      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.

  14. Who is it for? That's easy. by BumpyCarrot · · Score: 2

    Microsoft. It's for Microsoft.

    --
    Do you see what I did there?
  15. Windows RT for Kiosk, POS, Control systems? by Jonah+Hex · · Score: 4, Insightful

    What struck me when I first heard that Windows RT will look like Windows 8 but won't run the same apps was that it'd be perfect for systems that traditionally run special purpose software on top of Windows. So as the title says, Kiosks, Point of Sale, and Control systems where they can trade on the fact that standard Windows vulnerabilities like viruses won't run on the ARM. - HEX

    1. Re:Windows RT for Kiosk, POS, Control systems? by jonbryce · · Score: 2

      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.

    2. Re:Windows RT for Kiosk, POS, Control systems? by R3d+M3rcury · · Score: 2

      Don't be so sure about that. I've seen more than a few POS systems running on iPads.

    3. Re:Windows RT for Kiosk, POS, Control systems? by R3d+M3rcury · · Score: 2

      Not in this case. They may have been using something like this.

      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 and they were taking credit card payments on Droids and iPhones.

  16. The answer is NO by kelemvor4 · · Score: 3, Insightful

    This isn't something that requires technical knowledge of, nor does it require a like or dislike for microsoft. The LAW says the answer is no: https://en.wikipedia.org/wiki/Betteridge's_law_of_headlines

  17. So... by roc97007 · · Score: 2

    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?

    --
    Oliver's law of assumed responsibility: If you're seen fixing it, you will be blamed for breaking it.
  18. Re:Short answer, I hope not. by atlasdropperofworlds · · Score: 2, Insightful

    Their loss. The devices are actually fine. I use android myself. Wouldn't touch that horseshit created by apple though (iTunes to copy music to my device? Seriously?).

  19. On The Phone by zanderz · · Score: 3, Interesting

    Windows 8 Phone is supposed to have the same kernel as WinRT devices on ARM. If they can pull this off they will have it both ways: a huge desktop user base with tons of messy legacy and a sparkly new "walled garden" where they will have lots more control over the whole experience and what is allowed in. Writing for Metro mode is supposed to yield an app that will pretty much run on phones and tablets, without the fragmentation of Android devices/environments. Even if nobody else wants it on their tablets or desktops, at least one batch of Nokia phones will need it.

  20. Re:The Magic 8 ball says ... by cavreader · · Score: 2

    "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's dominance evidently allowed both the companies and the users to actually be productive. If MS products did not provide any value as it relates to providing functionality it would not have risen to the top to begin with. MS was fortunate to arrive on the scene when the major software companies were still clueless about the future of desktop computing. By the time they got a clue they were already in a deep hole. The early MS partnerships with IBM and even the Apple contractual agreements with Xerox gave away many favorable advantages to MS at the time because they did not take personal computing seriously and instead concentrated on the big Iron and mid-range market. Plus when people make an argument that MS stole all of it's technology they totally discount the fact that most of the technology MS acquired (and even Apple) was purchased from the companies and individuals who created the technology. Most of the companies and products that could have competed opted for cashing out by selling their technology so they could move on to something else. The same thing happens today and MS is not the only big company who purchases companies and technologies from 3rd parties. There are a lot of software start ups today who do what they do so they can sellout to the deep pocket corporations. That is their goal and it is not a bad business model. Most of them have no intention of actually getting into the advertising, sales, distribution, and customer support needed to compete with MS.

  21. RT == SecureBoot by mdmkolbe · · Score: 4, Insightful

    Microsoft requires all ARM devices implement SecureBoot with no way to turn it off. So, no, I have no place for RT.

    1. Re:RT == SecureBoot by kamaaina · · 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.

  22. Re:The Magic 8 ball says ... by blueish+yellow · · Score: 4, Funny

    Curse you, I've just lost an hour on wikipedia!

  23. Re:It has a place, but its no Holy Grail. by Kreegalor · · Score: 2

    You are coming at this as someone who reads slashdot... People who come here are anything but causal users.
    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 success is from these casual users because it will not come from the tech savvy or business community.

  24. Re:It has a place, but its no Holy Grail. by tftp · · Score: 2

    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 the OS - recent. I have another Android tablet, so if they have any issues with theirs I can advise over Skype. That's the same reason why MS Windows and MS Office proliferated like kudzu. Now MS finds themselves to be an outsider. It's not nice out there.

    On the subject of integration, most people do not need to transfer documents from the tablet to the PC. Much of the target audience for tablets doesn't even have PC anymore. But if you want to, there are tons of services that specialize in exactly this (Dropbox, SkyDrive, all Google services.) There is very little to integrate. And if you are an audiophile with 100,000 audio files then chances are you are already on the iPod+iTunes needle. WinRT has no clearly defined audience, and MS doesn't seem to care to define it. There is not a single social group that MS can address and say "This device is for you!"

  25. Windows Phone 7 owner's take by kfsone · · 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 was lack of any apps: People seemed reticent to jump into this untested pool. It turns out, developers target Windows because of the userbase and not because they think Microsoft employees poop magical and adorable APIs that are so cute, cuddly and just outright gorgeous that you just HAVE to develop with them.

    WP7 had no userbase and no cross-over beyond ... well beyond that it uses technologies that Microsoft had recently kinda poo-poohed like .NET. So yes! If you just blew a billion dollars on .NET, come to WP7 because that's about all it's useful for.

    Developers started to hear Metro was influencing Windows 8, and there was a brief spike in app ports to WP7. There's a Garmin app, Yelp, and a handful of others.

    Then W8/Windows RT were announced in a sort of arm flurrying of "don't worry about the money you've invested in what's on the market now because Windows 8 will make lots of money with all the new tech it's going to introduce". Because, yes, "new tech" doesn't impart the sense that OMG YOU'RE SAYING OUR WP7/METRO INVESTMENT IS A DEAD END?

    So very few apps have matured into real Metro apps and the WP7 experience isn't everything it could be because the app store is just ... crappy.

    Windows 8 - and thus Windows RT - is very risky looking waters. I know it's not important in the grand scheme of things, but imagine a million bucks in your pocket, a pen in your hand ready to sign it off and ... tell me that Microsoft -- MICROSOFT! -- futzing the name of their flagship UI redesign doesn't scream "EYES NOT ON THE BALL" as you evaluate the risks of committing resources to dedicated Windows-8-UI tech and development rather than simply making sure your existing userbase and Windows 8 adopters will be able to run app smoothly on the desktop...

    IMHO: Windows 8 is the Vista/ME of this particular Windows phase-shift. And that's cool, but as it applies to phone/tablet, the OS immediately preceding it ALSO happens to be a Vista/ME.

    --
    -- A change is as good as a reboot.
  26. Most PC users are not slashdotters by um...+Lucas · · Score: 2

    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.

  27. Re:The Magic 8 ball says ... by neokushan · · Score: 2

    And Apple did both, then sued everyone for it.

    --
    +1 IDisagreeSoHeMustBeATrollOrAnAstroturferOrAShill
  28. Re:The Magic 8 ball says ... by RaceProUK · · Score: 2

    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.

    --
    No colour or religion ever stopped the bullet from a gun