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

    • I have a older F4-210 NAS, it is pretty basic, the CPU is not the fastest by a long way and only 1GB of ram, but it works fine. I don't understand the need for A.I in a NAS. It seems like A.i is being shoved into everything, if we like it or not. i will stick to my old Terramsater NAS, thankfully the OS is not being updated. Also, got myself a small NAs built using a Raspberry Pi 5. iy usesd less energy, so stays on all the time. As for the unit above, if it is as reliable as my old Terramaster Nas, then it will be a good unit.
    • Gemini in Google Sheets can now help you debug and fix formula errors by David Uzondu Google has started rolling out an update to Gemini in Google Sheets that allows the AI to diagnose and fix formula errors in one click, as long as your Workspace admin has Gemini for Workspace in Sheets turned on. According to Google, the new feature can handle pretty much everything from basic arithmetic to very complex calculations. This ability to debug formula errors comes about two years after Google introduced basic formula generation with Gemini in Sheets. To create a formula with Gemini in Sheets, you open a spreadsheet on your computer and click Ask Gemini in the top right corner. You can also enter an equals sign in any cell and use a shortcut like Ctrl + Alt + G on Windows and Chrome OS, or Command + Ctrl + G on macOS. Once you open the side panel, you write a natural language prompt using your sheet references. For example, you can ask Gemini to divide goals by games, or to find cell C1 in range D:G. If for some reason, the formula Gemini generated doesn't work, or maybe you wrote the formula yourself, you can troubleshoot the issue directly inside the grid. When a cell shows an error message, you hover over it and click "Fix". This action opens the side panel where Gemini analyzes the data structure and automatically applies the fixes when they are ready. You can cancel the process at any time by clicking stop in the side panel. Image via Google Google has been pushing its Gemini integration in Google Sheets for a while now, steadily moving AI features from side panels directly into user spreadsheets. Last year, the Mountain View giant shipped an =AI() Function in Sheets that allowed users to run translation and text generation directly inside cells instead of using the side panel interface. Earlier this year, the company announced that Gemini in Sheets had reached near-human expert performance, achieving a 70.48% success rate on the SpreadsheetBench dataset.
    • I get what you are saying, If i go onto the Instagram site, it says log in with Facebook, but they are not allowed to link my account with Instagram until I do that. Maybe in the U.S, they can link them, but Privacy is not a thing in the U.S. the way things are going,l won;t be any better in the U.K.
    • One of Logitech's best productivity mice is now available for just $79.99 by Taras Buria The MX Master 3S, formerly Logitech's flagship productivity mouse, is now available at an all-time low price during Prime Day sale. Thanks to the latest discount, you can have this mouse for as little as $79.99. This large-sized mouse has many things to like. From its ergonomic shape to the iconic MagScroll wheel, the MX Master 3S is a great productivity-focused accessory. It has an 8K DPI sensor that tracks on various surfaces, including glass. Its main MagScroll has two modes: ratched and infinite, with the latter capable of scrolling up to 1,000 lines in just a second. Additionally, there is a secondary wheel for horizontal scrolling. The MX Master 3S has plenty of buttons, which can be remapped to gestures, keyboard shortcuts, or other actions in the Options+ app on Windows and macOS. You can connect the mouse to up to three devices (via Bluetooth or the Bolt connector) and switch between them with a dedicated button. You also get a USB Type-A to Type-C cable to recharge the built-in battery, which lasts up to 70 days on a full charge, and a quick one-minute charge gets you three hours of use. Logitech MX Master 3S - $79.99 | 20% off for Prime Members Good to know This Amazon deal is U.S. specific, and not available in other regions unless specified. We only use first-party seller links (at the time of article publishing); ensure that you purchase from a first-party seller link only. Check out Today's Deals on Amazon | or our recent tech deals. Become a Prime member (for Students or SNAP) via Neowin Get Prime Access - Prime for half price (for qualifying Medicaid, EBT, SNAP) Subscribe to Prime Video, Audible Plus, Music Unlimited or Kindle Unlimited via Neowin As an Amazon Associate, we earn from qualifying purchases.
    • Exactly, this is just the beginning. I hope that by that time, our inept politicians devise something like a Universal Basic Income, because unemployment and poverty rates will skyrocket otherwise. And believe me, robots that perform physical work aren't a matter of IF, but WHEN. No career is truly safe from AI/robots, it's just a matter of time.
  • 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
      476
    2. 2
      +Edouard
      170
    3. 3
      PsYcHoKiLLa
      105
    4. 4
      Michael Scrip
      88
    5. 5
      Steven P.
      70
  • Tell a friend

    Love Neowin? Tell a friend!