Windows 8 Sales are actually Amazing - 40 million sold


Recommended Posts

Additionally, countless Windows programs depend on this functionality as this allows them to ensure they open the default browser instead of figuring out what browsers users have installed (the app sends the url to the API as if it were a file to execute). So it isn't that arcane or odd.

I'm not sure if you're serious or not... But if you are... I'd recommend you read some of the fundamentals of the craft such as Hunt's The Pragmatic Programmer and understand why the DRY Principal he mentions is considered a fundamental part of software engineering.

You can also Google it... But actually learning the concepts is far more important.

The point is that the search dialog uses entirely different code and calls form the run dialog, but it can still do the same thing. Sure they could use the old run dialog code to do stuff the search dialog can already do. OR they could more effectively just let the search dialog do all the stuff itself, more efficiently and without calling other code.

OR is your idea of effective coding to first check if the code is a call for a local executable (btw at this point, it can already execute it), then if it finds out it is, then it passes on the call to the run dialog...

seriously, THINK about it.

and if hands are already on the keyboard it's slower just to take your hands off the keyboard and put it on the mouse.

win+e then type. allt+tab then type, win+# then type.

normally the site I'm looking for is already open in one of my 30+ tabs though.

The point is that the search dialog uses entirely different code and calls form the run dialog, but it can still do the same thing. Sure they could use the old run dialog code to do stuff the search dialog can already do. OR they could more effectively just let the search dialog do all the stuff itself, more efficiently and without calling other code.

OR is your idea of effective coding to first check if the code is a call for a local executable (btw at this point, it can already execute it), then if it finds out it is, then it passes on the call to the run dialog...

seriously, THINK about it.

win+e then type. allt+tab then type, win+# then type.

normally the site I'm looking for is already open in one of my 30+ tabs though.

No, my point is the RUN dialog and the Search function "run" capabilities share the same underpinnings. Otherwise, MS would be violating the DRY principal by having two separate pieces of code doing the same thing in two places. The RUN dialog and the "run" functionality in search are merely two separate windows into the same room.

It's far from even being a Windows-only (or even OS/distribution-only) dilemma - look at the earlier-in-this-thread comparison between Adobe Creativity Suite (CS) products and Microsoft Office products; even on OS X - which has far greater UI cohesiveness than even Windows pre-8; look at how the Adobe CS products behave within that UI compared to Microsoft Office products. Different approaches to the same problem. Heck - just look at the differences between Pagemaker and Word (again, on OS X, not Windows).

Don't necessarily disagree with your point or conclusion but comparing Adobe Graphic Design software to Office Products, and PageMaker (InDesign for some time now :) to Word, is like comparing apple's to oranges.

and if hands are already on the keyboard it's slower just to take your hands off the keyboard and put it on the mouse.

I don't know about that one. We're so well trained, even novice users can slide that right hand over and grab that mouse pretty darn quick.

No, my point is the RUN dialog and the Search function "run" capabilities share the same underpinnings. Otherwise, MS would be violating the DRY principal by having two separate pieces of code doing the same thing in two places. The RUN dialog and the "run" functionality in search are merely two separate windows into the same room.

Except they don't, the search dialog by it's function has to do thing other ways than the run at an earlier stage, and at that stage it can already launch the app. so they don't share the same principles, not in any meaningful way that would make it any way sensible for them to share the same code.

it's not just the start screen. it's metro apps in general. The messaging map give you absolutely no option to turn it off. it's on perpetually and everytime someone sends me a message it give me no way to stop the annoying pop-up box on the desktop informing me I have a message. Trying to uninstall that particular app uninstalls 3 or 4 others including the calendar and mail, and people apps. This is a product that Microsoft should truly be sorry for. This is the 'batman and robin' of OS's. I get why they tried to do and I think that's cool. It was executed so horribly

I agree with you, Metro apps, particularly Microsoft's, are unfinished and IMO, and an embarrassment. The decision to bundle the core messaging apps was a choice.

I wouldn't write of Windows 8 though. Aside from the apps, and that is big, I only truly miss unified search and the ability to perform context actions on the result with the click of a mouse. You can still do that if you search with Explorer in the desktop environment. The Modern UI simply will not be able to duplicate that productivity.

Someone here used fast an efficient in the same sentence with Modern UI Search. I need some of whatever they're smoking.

Except they don't, the search dialog by it's function has to do thing other ways than the run at an earlier stage, and at that stage it can already launch the app. so they don't share the same principles, not in any meaningful way that would make it any way sensible for them to share the same code.

I think you're completely missing what I'm saying here... The RUN dialog has to pass its "run" command to the OS to tell it to execute the application. The Start Screen "run functionality" has to do the exact same thing. Sure, it has to do searches and a variety of other tasks, but once it has decided it needs to do "run functionality" then it has to pass that off to the OS somehow. Unless you're implying that the Start Screen is executing that code itself independent of the OS it is running on?

The RUN dialog really isn't doing anything but calling whatever API endpoint MS has exposed for starting processes. I'm sure this is the same endpoint used by Explorer itself and all over the OS.

The dialog itself was not what I was referring to.

I think you're completely missing what I'm saying here... The RUN dialog has to pass its "run" command to the OS to tell it to execute the application. The Start Screen "run functionality" has to do the exact same thing. Sure, it has to do searches and a variety of other tasks, but once it has decided it needs to do "run functionality" then it has to pass that off to the OS somehow. Unless you're implying that the Start Screen is executing that code itself independent of the OS it is running on?

The RUN dialog really isn't doing anything but calling whatever API endpoint MS has exposed for starting processes. I'm sure this is the same endpoint used by Explorer itself and all over the OS.

The dialog itself was not what I was referring to.

That's completely irrelevant of your original argument though, as that's the execution call, which is used not just by run, Search, but also shortcuts, other programs, start screen, ANYTHING that launches ANYTHING on the OS. and is not even part of the run dialog as such. just something it uses on the same line as search.

This was not your argument, you said the run dialog had to be kept and that search used the run dialog code. that is something completely different form using the execute call. The run dialog is far more than just the execute, call, which again isn't part of it, but rather part of the core OS.

That's completely irrelevant of your original argument though, as that's the execution call, which is used not just by run, Search, but also shortcuts, other programs, start screen, ANYTHING that launches ANYTHING on the OS. and is not even part of the run dialog as such. just something it uses on the same line as search.

This was not your argument, you said the run dialog had to be kept and that search used the run dialog code. that is something completely different form using the execute call. The run dialog is far more than just the execute, call, which again isn't part of it, but rather part of the core OS.

This thread has been moving pretty quickly today so I'll forgive you for pulling my statements out of context.

I never said the run dialog had to be kept. I merely stated that it should be kept.

I later responded to a post from Dot Matrix that stated the run dialog should be removed because the code is redundant. My point was simply that the code doing the same task between the two isn't repeated and is most likely shared, as long as MS adhered to good engineering principals.

It's a great read this thread :) One trying his best to outdo the other, neither getting anywhere, both arriving back at the same start position :woot:

Great for a giggle at the end of a hard day.

It's a great read this thread :) One trying his best to outdo the other, neither getting anywhere, both arriving back at the same start position :woot:

Great for a giggle at the end of a hard day.

Very much agreed. I needed the distraction from work ;)

You're talking about using a consumer-oriented OS like some kind of nerd's plaything, which is never going to happen. You're most likely the one person still using the archaic run dialog that should have been stripped from windows in Windows 7.

Dot, you know better than that - I have personally told of using the Runbox in Windows 8 (and Server 2012, for that matter) to avoid two issues that have plagued all versions of Windows (desktop and server) - desktop-shortcut clutter and (starting with Vista/7) Taskbar-Superbar pin clutter. (With the Start menu itself gone, my biggest reason for leveraging Run also went away - however, that does NOT take away from the usefulness of the Runbox - especially since it's the ONE area that the addition of Index Server to the Windows core - starting with Windows 2000 - has always and never-failingly worked.)

The more I use an application, the LESS likely I am to create either a desktop shortcut OR pin said application to the Taskbar or Superbar, for the simple reason that I can Runbox the application in question. (Thanks to Index Server, the Run dialog actually has a memory - it remembers the fifteen last-used commands, batchfiles, scriptlets (including PoiwerShell scriptlets) - and it's been in there since Windows 2000. That is, in fact, why I don't miss the application shortcuts that Office hasn't created by default since Office 2003 for ANY of the applications - Office 2000 only created a shortcut for Outlook by default.)

It's a great read this thread :) One trying his best to outdo the other, neither getting anywhere, both arriving back at the same start position :woot:

Great for a giggle at the end of a hard day.

what ever he says he gets you doing it wrong..

and i'd say they are losing if this was a debate.

atleast i tried to sya linked to the topic at hand lol

some of these cheerleaders lose it and go off about using the mouse for 13 pages or whatever lol

why would zoom in on one micro aspect of how this one guy uses windows ?

insist "he's doing it wrong" ?

DotMatrix what is you deal buddy ?

I'm really wondering if you have issues or something..

Why are people not allowed to have their own way of using windows or opinions other than butt kissing about win 8 ?

DotMatrix what is you deal buddy ?

I'm really wondering if you have issues or something..

Why are people not allowed to have their own way of using windows or opinions other than butt kissing about win 8 ?

I'd rather see Microsoft streamline Windows. Strip away the outdated components, and unify what's left. Unless you're Andrea Borman, do we really need compatibility all the way back to the earliest days of the desktop? Do we really need options for every damn little toggle in the OS? Do we need all this excess baggage in Windows?

I'd rather see Microsoft streamline Windows. Strip away the outdated components, and unify what's left. Unless you're Andrea Borman, do we really need compatibility all the way back to the earliest days of the desktop? Do we really need options for every damn little toggle in the OS? Do we need all this excess baggage in Windows?

So, you want MS to throw out Windows and start fresh? You should ask Netscape how that worked out for them...

So, you want MS to throw out Windows and start fresh? You should ask Netscape how that worked out for them...

It's essentially what they've started to do with Windows 8.

It's essentially what they've started to do with Windows 8.

Not really. They are trying new tricks on the old horse hoping to get it ahead in a new race, but they are racing the same horse. If they were to seriously kick legacy support in Windows to the wayside to the extreme you want they will fade to history faster than the Olson twins.

In the new race they want Windows to get into MS has no serious pull with consumers or developers so they need that legacy card to offer them some possible advantage.

Luckily for them you're not running the show otherwise they'd be looking a lot like RIM.

Not really. They are trying new tricks on the old horse hoping to get it ahead in a new race, but they are racing the same horse. If they were to seriously kick legacy support in Windows to the wayside to the extreme you want they will fade to history faster than the Olson twins.

In the new race they want Windows to get into MS has no serious pull with consumers or developers so they need that legacy card to offer them some possible advantage.

Luckily for them you're not running the show otherwise they'd be looking a lot like RIM.

Extreme? If your app is pre-XP then that's on you. If your company is still actively deploying crap that's pre-2001, that should be on you, not Microsoft. Any code pre-2000's should be considered fair game for the chopping block. To be honest, any reputable software maker should be up to date with Windows 7.

But, yes, they are essentially starting over with Windows 8.

Start Menu - GONE.

Networking window - GONE.

Old Search window - GONE.

Dialog boxes - GONE.

etc...

Extreme? If your app is pre-XP then that's on you. If your company is still actively deploying crap that's pre-2001, that should be on you, not Microsoft. Any code pre-2000's should be considered fair game for the chopping block. To be honest, any reputable software maker should be up to date with Windows 7.

That's where you show how truly clueless you are. Each Windows release builds upon the last. So the #1 software on Windows depending on pre-XP code is Windows itself! If MS drew a line in the sand and stripped anything pre-XP then Windows 8 wouldn't even boot...

That's where you show how truly clueless you are. Each Windows release builds upon the last. So the #1 software on Windows depending on pre-XP code is Windows itself! If MS drew a line in the sand and stripped anything pre-XP then Windows 8 wouldn't even boot...

Vista+ was coded from the Server codebase, not XP. Anything stripped can be replaced by Modern components or unified elsewhere in the system. The Control Panel for one should have been unified under the Modern UI. Microsoft can finally get rid of all these damn control widgets that plague the OS.

Vista+ was coded from the Server codebase, not XP.

:huh: And the "Server code base" came from where? Do you honestly think MS rewrites Windows from scratch regularly? Surely you're not that delusional Dot.

:huh: And the "Server code base" came from where? Do you honestly think MS rewrites Windows from scratch regularly? Surely you're not that delusional Dot.

Do we really need to go all the way back? My point being is, Windows carries so much legacy baggage that it's overdue for a complete overhaul. At some point in time you have to draw the line. A similar point passed around Vista's time. You saw what happened with XP... it was being picked apart by malware after malware. Now, Windows is being picked apart by slimmer, more agile operating systems. Surely that's not cause for concern? Did you not just read the news where users are concerned with the amount of space Windows takes up? Buy a 32 GB Windows tablet, and tell me, how much space do you have left? What do you want Microsoft to do?

Do we really need to go all the way back? My point being is, Windows carries so much legacy baggage that it's overdue for a complete overhaul. At some point in time you have to draw the line. A similar point passed around Vista's time. You saw what happened with XP... it was being picked apart by malware after malware. Now, Windows is being picked apart by slimmer, more agile operating systems. Surely that's not cause for concern? Did you not just read the news where users are concerned with the amount of space Windows takes up? Buy a 32 GB Windows tablet, and tell me, how much space do you have left?

As I said earlier, Microsoft is hoping this legacy support will be their saving grace. So, they don't agree with you here.

Microsoft has deliberately chosen to offer "full" Windows in the tablet space and not a slimmer and leaner mobile focused OS, like they do with Windows Phone. They are hoping that users want this legacy support and that developers do as well. Is MS right? Who knows. But I do know one thing. If users are allowed to pick an OS in mobile they largely don't choose Windows, irrespective of variant. So without the legacy card MS comes to the table with nothing in the new race and they are already a few laps behind.

As I said earlier, Microsoft is hoping this legacy support will be their saving grace. So, they don't agree with you here.

Microsoft has deliberately chosen to offer "full" Windows in the tablet space and not a slimmer and leaner mobile focused OS, like they do with Windows Phone. They are hoping that users want this legacy support and that developers do as well. Is MS right? Who knows. But I do know one thing. If users are allowed to pick an OS in mobile they largely don't choose Windows, irrespective of variant. So without the legacy card MS comes to the table with nothing in the new race and they are already a few laps behind.

If they're dragging the legacy support with them on purpose, then why is the desktop on RT a dead duck? I can't so **** on the desktop besides run Office, and that's Microsoft's own doing!

If they're dragging the legacy support with them on purpose, then why is the desktop on RT a dead duck? I can't so **** on the desktop besides run Office, and that's Microsoft's own doing!

The better question is if the Desktop is a dead duck that is being primed for slaughter then why is it on RT at all to any serious extent? Office could have been sandboxed into a very limited desktop experience.

The better question is if the Desktop is a dead duck that is being primed for slaughter then why is it on RT at all to any serious extent? Office could have been sandboxed into a very limited desktop experience.

Which is why I believe you're going to see the Metro-ification of more elements in Windows 9. Hell maybe even in "Blue".

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • (Topic to get the juices flowing this Sunday morning!...) Actually, the situation has almost nothing to do with "lack of skills", especially since assembly-line skills can be taught to anyone, including Americans, certainly. Rather, the inadequacy-to-impossibility of large-scale tech manufacturing in America today, and the reasons why America finds tech manufacturing completely onerous in the 21st century, has to do with politically driven laws amid a plethora of non-scientific, utterly politicized "science-fact" that is patently false, punitive business taxation at every turn, an array of judicial fines of unimaginable scope and complexity, and, last but not least, American unionization strictures that serve to actually slay job creation and hobble all such manufacturing endeavors in America before they can get off the ground. Globalism emerged, they tell us, as the needed answer to American hubris and an unholy American drive to excel. Unless one is buried under mounds of political propaganda, it's easy to see the absurdity of labeling the employees of SpaceX, for instance, as "unskilled labor"... Etc. ad infinitum. At one time in the recent past, American manufacturing prowess was the envy of the world in a wide variety of technical fields! The current federal and state government roadblocks against America becoming competitive globally in tech manufacturing are considerable, it's true, as anyone with a working brain knows. But remarkably, that is only half the story! The other half of the story is, of course, the corporations themselves... Chinese tech manufacturing is simply unassailable in terms of profits, because the Chinese government wants to see its tech manufacturing second-to-none globally so that no companies/nations can compete in terms of ROI, and China has completely succeeded in that goal. Let's tic-off a few things: *Chinese tariff policies are set according to what is considered best for Chinese business, Chinese employees, and the Chinese people. Huge difference with how things are done with tariffs in the US--as the US government (SCOTUS in this case, Congress in others) plainly feels that tariffs are "unfair" for the limited number of citizens who may pay them, whereas nothing is "unfair" when Congress considers the Personal Income Tax rates to be infinitely hike-able, along with infinitely enlarging annual budget deficits. *The Chinese government boldly subsidizes Chinese companies to artificially amplify their profits. *The Chinese government deliberately refuses to avidly demonize Chinese businesses and does not consider Chinese businesses "the enemy", so very unlike American (D)s these days. *Chinese labor laws and businesses are allowed to set their own labor policies according to what Chinese companies consider is best for companies and their employees... Simply put, American workers in tech manufacturing are not allowed to set their own labor policies! It is the height of hypocrisy for Americans to decry working conditions in China while simultaneously ensuring that American products are manufactured in China, not in the US, simply to maximize profits. There is nothing wrong with making a profit, of course, absolutely nothing. But there is plenty wrong with attempts to normalize hypocrisy of this kind! But rank hypocrisy and the (D) party in the US are longtime bedfellows... The current government in Washington is working overtime to see if it can toss out the horribly poor, failed economic policies of the past, while the (D)s still in Washington work very hard to bring back the stupidity whenever possible. With the right policies in place, America can be an infinitely competitive manufacturer.
    • eSound Music 3.0.0 by Razvan Serea eSound Music is a free music streaming app that gives you access to over 150 million tracks from all genres. It allows you to search and listen to your favorite songs, create personalized playlists, and explore trending music. With an intuitive interface and smart search, discovering new artists and hits is fast and easy. You can even stream music in the background while using other apps. One of eSound’s standout features is its offline mode, letting you download and listen without internet access. eSound is widely compatible, working seamlessly across Windows, macOS, Linux, iPhone, iPad, Android, HarmonyOS, Amazon Fire devices, CarPlay, Android Auto, and more. eSound Music key features: Over 150 million tracks available Smart search for songs, artists, albums, and playlists Personalized song recommendations Continuous playback with auto-generated playlists Offline mode with song and playlist downloads Daily-updated trending charts and top songs Sleep timer to auto-stop playback High-quality audio support Customizable playlists and favorites Support for Apple CarPlay and Android Auto Works on Windows, macOS, Linux, iOS, Android, HarmonyOS, Amazon Fire, and more Cross-device sync via account login Background playback while using other apps Download: eSound Music 64-bit | Portable | ~160.0 MB (Free, paid upgrade available) Download: ARM64 | 116.0 MB Links: eSound Music Website | Screenshot | Web Player | Other OSes Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • All these CEOs got the biggest boners thinking about firing employees for AI. Turned out it was just a wet dream.
  • Recent Achievements

    • Conversation Starter
      jessse3334 earned a badge
      Conversation Starter
    • Reacting Well
      JuvenileDelinquent earned a badge
      Reacting Well
    • One Month Later
      Excellence2025 earned a badge
      One Month Later
    • Week One Done
      Excellence2025 earned a badge
      Week One Done
    • Week One Done
      flexorcist earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      508
    2. 2
      +Edouard
      198
    3. 3
      PsYcHoKiLLa
      152
    4. 4
      Steven P.
      73
    5. 5
      FloatingFatMan
      65
  • Tell a friend

    Love Neowin? Tell a friend!