Will Apple Adopt Windows?


Recommended Posts

I read this earlier. John Dvorak is a total clown. This will never happen in a million years, why would anyone buy overpriced hardware just to run Windows on it? People buy macs for OSX and for the simplicity. Apple is far more likely to open OSX up to all x86 machines and rival Windows.

I read this earlier. John Dvorak is a total clown. This will never happen in a million years, why would anyone buy overpriced hardware just to run Windows on it?

Because OS X isn't a great gaming OS (it could be but video card manufacturers make most cards for Windows). Also, Why would Apple restrict anyone from using Windows on a MacTel? Once you buy one Apple has your money. Most of the best apps come with the purchase of a new Mac anyway.

*I haven't read the article because it is still down, so my comments may be a bit off. Trying to guess at what was actually said.

The guy is off his meds for sure. Apple's main advantage is OS X and the Cocoa API. Cocoa is sort of like Apple's answer to .NET except that it has been around for decades and you are not completely babied in a "managed" environment. The managed code may sound great but it can lead to major performance problems when you are allocating and de-allocating a lot resources often and working with large data sets. This due in part to the non-deterministic garbage collection. Imagine a sink full of vegetable matter and say that you have no control over when the garbafe disposal unit turns on.

Search this forum to see examples of people creating webkit based browsers or coredata based to do lists with no coding leveraging the power of Cocoa and stored objects in nib files.

The guy is off his meds for sure. Apple's main advantage is OS X and the Cocoa API. Cocoa is sort of like Apple's answer to .NET except that it has been around for decades and you are not completely babied in a "managed" environment.

It's not like Windows doesn't offer your the option of unmanaged code for performance sensitive applications and Objective C* is a runtime environment with garbage collection implimented as reference counting. and it pays higher performance penalties for a number of common tasks (like message passing). With processors getting ever faster and all but a few tasks staying relatively consistent in their lust for cycles, it really doesn't make sense to pass off the benefits of a managed environment. There are also serious costs for many of OS X's graphical capabilities: the OpenGL Fast-path is anything but. Having the features of the .Net CLR would be a boon to Mac OS X developers: I'm tired of hunting down missing 'release' messages.

Search this forum to see examples of people creating webkit based browsers or coredata based to do lists with no coding leveraging the power of Cocoa and stored objects in nib files.

How many code-free address books (that ignore AddressBook.framework) do we need? What really matters is how hard it is to write something worth while. My money is still on Cocoa+Objective C over C#.Net (see delicious monster, panic, macromates) with all things kept equal, but Xcode really sucks compared to VisualStudio and it's important not to discount the roll of the IDE.

* I know you know this, but other forum members may not.

It's not like Windows doesn't offer your the option of unmanaged code for performance sensitive applications and Objective C* is a runtime environment with garbage collection implimented as reference counting. and it pays higher performance penalties for a number of common tasks (like message passing). With processors getting ever faster and all but a few tasks staying relatively consistent in their lust for cycles, it really doesn't make sense to pass off the benefits of a managed environment. There are also serious costs for many of OS X's graphical capabilities: the OpenGL Fast-path is anything but. Having the features of the .Net CLR would be a boon to Mac OS X developers: I'm tired of hunting down missing 'release' messages.

How many code-free address books (that ignore AddressBook.framework) do we need? What really matters is how hard it is to write something worth while. My money is still on Cocoa+Objective C over C#.Net (see delicious monster, panic, macromates) with all things kept equal, but Xcode really sucks compared to VisualStudio and it's important not to discount the roll of the IDE.

* I know you know this, but other forum members may not.

The fact of the matter is that the vast majority of applications are written against Win32 on windows rather than .NET and .NET did not ship with XP so it is pretty much moot.

Have you ever tried to integrate unmanaged code with managed code? It is a dog's breakfast. By comparison, integrating c code components into an OSX app is a breeze. There are plenty of examples of OSS were the GUI is wired into command line utilities.

I think the CLR creates lazy developers. You should be aware of when and were your resources are released. For desktop apps, .NET may be great but when you get into multi-tier enterprise software, the garbage collection can be the Achilles heel. In some cases, you would want to perform a reference count and force the release of resources.

I'm only using those browsers/organizers as examples of how easy it is to start a project. Some of those projects could evolve into something useful like a full fledged PIM tool.

The fact of the matter is that the vast majority of applications are written against Win32 on windows rather than .NET and .NET did not ship with XP so it is pretty much moot.

I don't really understand the argument. I didn't say Cocoa was the answer to .Net, and I don't think what ships with the OS really matters in a discussion about their relative merits. The fact that one ships with the OS (though different versions on every major release) and one ships via the OS update and runs fine across all recent versions of an OS shouldn't really be a factor. .Net and Cocoa are widely accepted solutions and first-rate development environments on their respective platforms with full support by the OS vendor.

A fair number of OS X applications are written against carbon including the big two: creative suite and office.

Have you ever tried to integrate unmanaged code with managed code? It is a dog's breakfast.

Oddly enough, that's what I'm doing at work right now. We're building some fancy image processing applications for a client that has a booth at PMA. We're using .Net for the interface and some of the light-weight processing and optimized C or C++ libraries for expensive corrections or for things which we've licensed but were only able to get header files and DLLs.

I wouldn't say it's been terribly difficult but then again I'm only managing the programming on this project; my semi-colon and squiggly bracket days are behind me for the time being, save for hunting down the occasional bug. It certainly hasn't been a significant drain on our resources and I have my doubts that we'd have been able to produce something as good in C++.

Normally I wouldn't break out anecdotes but you asked.

I think the CLR creates lazy developers. You should be aware of when and were your resources are released.

I like lazy developers. I find they're more likely to document code, avoid "neat tricks", and they tend to find the most effective way to get the job done. My programming thoughts are obviously the opposite of yours: a developer should be able able for focus on business logic. I'm paid to solve a problem, not make sure that retain counts don't drop below zero too soon. The more mindless work I can leave to the computer the better my application will be.

Reference counting has issues of it's own. At the end of it all you're still responsible for managing memory and that eventually leads to memory leaks or get null references once you start doing copies or retains in another scope (especially after midnight). Auto release pools are a start, but they're far form foolproof. And of course when you start dealing with things that don't have nice Cocoa front ends (feel like writting a 64-bit app?) you run into all the hassles of C++ whether you want them or not.

I honestly think this whole "be aware of all your resources" argument is pointless: we've both decided to give up some level of control to the operating system, compiler, and runtime.

For desktop apps, .NET may be great but when you get into multi-tier enterprise software, the garbage collection can be the Achilles heel.

Are there any multi-tear enterprise applications written in Cocoa+Objective C? Honest question, I'm not aware of any nor do I really have any idea how to find out.

One thing I do know: I'd have better luck finding 10 live dinosaurs than I would finding 10 local Cocoa programmers. There just aren't that many Cocoa types to go around. It's like they've decided not to touch any new projects until this whole Intel thing settles down, or maybe they're all writing universal binaries—either way, I can't find any.

Edited by the evn show

You should've said Dvorak wrote the article and saved me 100KB of bandwidth. He's so full of **** he's gonna start leaking feces out of that fat grin of his.

Would Apple alienate every one of their customers?

Would Apple help to increase their primary competitor's bottom line?

It's like asking a democrat to switch to a republican platform in the middle of a campaign.

I've noticed that all Dvorak does is write things that are so far off just to attract attention to his column. He's a senseless puppet for a formerly useful website. Every time I read an HP printer review on PCMag, there's an HP advertisement on the same page. :|

You should've said Dvorak wrote the article and saved me 100KB of bandwidth. He's so full of **** he's gonna start leaking feces out of that fat grin of his.

Would Apple alienate every one of their customers?

Would Apple help to increase their primary competitor's bottom line?

It's like asking a democrat to switch to a republican platform in the middle of a campaign.

I've noticed that all Dvorak does is write things that are so far off just to attract attention to his column. He's a senseless puppet for a formerly useful website. Every time I read an HP printer review on PCMag, there's an HP advertisement on the same page. :|

The day that Apple adopts Windows is the day I buy a Mac. No doubt many other people are like me; Mac OS X despiser, but Apple design lover.

Either that, or PC laptop makers start putting some creative flair and style into their laptop design.

Honestly, Apple might actually get increased sales from shipping Macs with Windows on them.

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

    • No registered users viewing this page.
  • Posts

    • Can you still click his nose in the about box?
    • In that case this product has no value to me. I'd rather use older Creative SB that were better in my opinion or onboard audio chip.
    • FxSound 1.2.9.0 / 1.2.10.0 Beta by Razvan Serea FxSound (formerly DFX Audio Enhancer / FxSound Enhancer) is now free, making high-quality audio enhancement accessible to everyone. Designed for all PC sound systems, from average setups to audiophile-grade equipment, it offers automatic or fully customizable processing. As automatic or customizable as you want, it utilizes the highest-grade processing to deliver more volume, better equalization, and a wider, deeper sound. For the serious audiophiles, FxSound gives you the tools to adjust the FxSound Effects and EQ to your exact preferences. Turn FxSound on and immediately hear the difference in sound quality. FxSound is ideal for budget audiophiles, music lovers, gamers, transcriptionists, Netflix enthusiasts, and more. It’s particularly beneficial for those relying on quiet laptop speakers or low-quality audio hardware. As a free tool, FxSound excels in boosting volume, enhancing bass, and improving sound quality. No other free EQ for Windows matches its ease of use. FxSound Is Now Completely Free and Unrestricted FxSound Pro is now free for everyone, not just those who can afford it. Get free and unrestricted access to better sound today. FxSound is now entirely supported by users. Click here to donate to help fund continued development and improvements to FxSound. FxSound 1.2.9.0 changelog: Auto save preset when Equalizer or Effects settings are changed Reset to factory defaults can reset the unsaved preset changes Settings dialog UI improvements for Audio and Equalizer sections Output device list is now displayed in the device preference order Preset is selected immediately when the preset for an active output device changes from settings Fixes and improvements in preferred output device selection Fixed crash issue #487 Fixed preset not getting applied and EQ flat after update (#403 and #472) Fixed system audio device not being restored on reboot (#483) Fixed preset export and import dialogs not shown when always on top is enabled Fixed audio not being restored on exit after the preset save dialog Fixed FxSound on/off handling on Windows session changes FxSound 1.2.10.0 Beta changelog: Command line options can now be applied to an already running instance of FxSound Command line option added to launch FxSound minimized to the system tray Fixed output device not being changed through hotkeys when FxSound is off (#524) Individual hotkeys can now be disabled with Delete key (#515) Fixed the but to prevent invalid hotkeys from being registered (#523) Bluetooth devices removed from device settings are removed from device preference list Fixed device detection failures Fixed application hang when retrieving the audio mix format fails Fixed presets import dialog file name combo box text alignment Fixed output device not being applied through command line Fixed a delay blocking application load when minimizing to the system tray Fixed EQ band sliders not refreshing when switching number of bands (#521) Fixed user-set mute being overridden by FxSound Fixed icon visibility in ARM64 version Finnish language support added Corrected Persian translations Download: FxSound 1.2.9.0 | ARM64 | ~70.0 MB (Open Source) Download: FxSound 1.2.10.0 Beta | ARM64 View: FxSound Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • mIRC 7.84 Final by Razvan Serea mIRC is a full featured Internet Relay Chat client for Windows that can be used to communicate, share, play or work with others on IRC networks around the world, either in multi-user group conferences or in one-to-one private discussions. It has a clean, practical interface that is highly configurable and supports features such as buddy lists, file transfers, multi-server connections, SSL encryption, proxy support, UTF-8 display, customizable sounds, spoken messages, tray notifications, message logging, and more. mIRC also has a powerful scripting language that can be used both to automate mIRC and to create applications that perform a wide range of functions from network communications to playing games. mIRC has been in development for over a decade and is constantly being improved and updated with new technologies. mIRC 7.84 changelog: Added custom dialog editbox option 'optional' for grayed out optional text. Fixed DirectShow temporary wave file not being deleted on exit. Changed $urlget() to retry a connection without compression in the event of an error. Updated code signing certificate to use Azure Artifact Signing. Fixed menubar display bug when in dark mode. Fixed /server -a not preserving existing entry's codepage. Fixed Address Book nick colors "idle time" display bug. Changed installer to no longer require administrator access on startup. Added support for displaying an MDI window's System menu when right-clicking its titlebar. Updated libararies to OpenSSL v3.5.7, TagLib v2.2.1, Zlib v1.3.2, and ADA v0.5.5. Updated CA root certificates cacert.pem file. For a full list of recent changes, please see the versions.txt file. Download: mIRC 7.84 | 4.3 MB (Shareware) View: mIRC Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Month Later
      timbobit earned a badge
      One Month Later
    • One Month Later
      nates earned a badge
      One Month Later
    • Week One Done
      Almohandis earned a badge
      Week One Done
    • Rookie
      dorf went up a rank
      Rookie
    • First Post
      mike_rumble earned a badge
      First Post
  • Popular Contributors

    1. 1
      +primortal
      470
    2. 2
      +Edouard
      165
    3. 3
      PsYcHoKiLLa
      107
    4. 4
      Michael Scrip
      87
    5. 5
      Steven P.
      70
  • Tell a friend

    Love Neowin? Tell a friend!