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

    • Fresh CachyOS install with Niri - I guess it's a little orange, but I'm working on it
    • FastStone Image Viewer 8.5 by Razvan Serea FastStone Image Viewer is a fast, stable, user-friendly image browser, converter and editor. It has a nice array of features that include image viewing, management, comparison, red-eye removal, emailing, resizing, cropping, retouching and color adjustments. Its innovative but intuitive full-screen mode provides quick access to EXIF information, thumbnail browser and major functionalities via hidden toolbars that pop up when your mouse touches the four edges of the screen. Other features include a high quality magnifier and a musical slideshow with 150+ transitional effects, as well as lossless JPEG transitions, drop shadow effects, image annotation, scanner support, histogram and much more. It supports all major graphic formats (BMP, JPEG, JPEG 2000, animated GIF, PNG, PCX, PSD, EPS, TIFF, WMF, ICO and TGA) and popular digital camera RAW formats (CRW, CR2, NEF, PEF, RAF, MRW, ORF, SRF, ARW, SR2, RW2 and DNG). FastStone Image Viewer features: Image browser and viewer with a familiar Windows Explorer-like user interface Support for many popular image formats and PDF viewing True Full Screen viewer with convenient image zoom support and unique fly-out menu panels Crystal-clear and customizable one-click image magnifier Powerful image editing tools: Resize/resample, rotate/flip, crop, sharpen/blur, adjust lighting/colors/curves/levels etc. Eleven re-sampling algorithms to choose from when resizing images Image color effects: gray scale, sepia, negative, Red/Green/Blue adjustment Image special effects: drop shadow, framing, bump map, sketch, oil painting, lens Draw texts, lines, highlights, rectangles, ovals and callout objects on images Clone Stamp and Healing Brush Superior red-eye effect removal/reduction with completely natural looking end result Multi-level Undo/Redo capability Single click to switch between best fit and actual size mode Image management, including file tagging, rating and drag-and-drop to copy/move/re-arrange files Histogram display with color counter feature Compare images side-by-side (up to 4 at a time) to easily cull those forgettable shots Image EXIF metadata support (plus comment editing for JPEGs) Configurable batch processing to convert/rename large or small collections of images Slideshow with 150+ transition effects and music support (MP3, WMA, WAV...) Create efficient image attachments for emailing to family and friends Print images with full page-layout control Create fully configurable contact sheets Create memorable artistic image montages from your family photos for personalized desktop wallpapers (Wallpaper Anywhere) Acquire images from scanners. Support batch scanning to PDF, TIFF, JPEG and PNG Versatile screen capture capability Powerful Save As interface to compare image quality and control generated file size Run favorite external editors with one keystroke from within Image Viewer Offer portable version of the program which can be run from a removable storage device Configurable mouse wheel support Support themes (bright, gray and dark) Support dual-monitor configurations Support touch interface (tap, swipe, pinch) Support dual instances Play video and audio files (Third party codecs may be required for old versions of Windows) And much more... FastStone Image Viewer 8.5 changelog: Added support for SVG format Added Start importing automatically and Handle duplicate file names automatically options to the Import Photos and Videos tool WebP files can now be rotated and saved with a single click Enhanced dark theme support in the PDF viewer Fixed a bug where some links in PDF files were not clickable Other improvements and bug fixes Download: FastStone Image Viewer 8.5 | Portable | ~15.0 MB (Freeware) View: FastStone Image Viewer Website | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Yup, broke my comp… again. its times like this when I regret AMD. This just never happens on NV.
    • Huh? You're delusional calling the Steam Deck dead. It is so successful that it has sold out multiple times. Even after the price hike this year it sold out again with 24 hours of being back in stock. The demand is real and has not died down even after four years.
  • Recent Achievements

    • Rookie
      DaviKar went up a rank
      Rookie
    • Dedicated
      HidekoYamamoto94 earned a badge
      Dedicated
    • 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
  • Popular Contributors

    1. 1
      +primortal
      460
    2. 2
      +Edouard
      160
    3. 3
      PsYcHoKiLLa
      110
    4. 4
      Michael Scrip
      85
    5. 5
      Steven P.
      69
  • Tell a friend

    Love Neowin? Tell a friend!