Slashdot Mirror


User: anarkhos

anarkhos's activity in the archive.

Stories
0
Comments
506
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 506

  1. Re:GNUStep versus GNOME/KDE? on Darwin 6.0.2 for x86 Released · · Score: 1

    1) GNUStep Foundation has been 100% complete for a long time. There is no reason to use Apple's implementation.

    2) CoreFoundation isn't 100% open source. The closed source version supports the extremely useful FSRef data type while the open source version does not.

    3) There is an open source implementation of a JavaGNUStep bridge so there is no need for Apple's bridge.

    4) Java sucks. It's amazing how Sun got everything wrong considering how hard they tried to copy OpenStep.

  2. Re:But where is the source code to the Carbon libs on Darwin 6.0.2 for x86 Released · · Score: 1

    It is IMPOSSIBLE to write 100% Java apps which behave like Mac apps. It lacks something equivalent to FSRefs or NSDocument whereby the app won't lose track of a file if its path changes. Swing doesn't help at all. All Swing does is make it possible to make Java apps which kinda look like Aqua, but don't behave like Aqua. This is the worst possible combination IMO.

    Carbon isn't "transitional" and it isn't any older than NeXT APIs. Want to use FSRefs? Want to use Aliases or FileIDs? Want to use keychain? You have to use Carbon. In fact well written Carbon apps are faster than well written Cocoa apps. he problem with most Carbon apps is they use deprecated APIs like the Event Manager instead of Carbon events. In fact Cocoa is a front-end for Carbon/POSIX/BSD/Quartz (although I wish it were less POSIX and more Carbon).

    I actually prefer to code using Objective-C, but I also prefer using Carbon apps.

  3. Re:I'm confused... on Darwin 6.0.2 for x86 Released · · Score: 1

    KDE and Gnome are being ported by Open Darwin and FINK.

    If you want to burn CDs you can compile cd-record or cdrdao which have their own drivers. IOKit provides the CD and DVD classes of devices which cdrdao and cd-record communicate with (in user-space).

  4. Re:GCC on Darwin 6.0.2 for x86 Released · · Score: 1

    Another reason to use CodeWarrior is CFM/PEF is more efficient than dyld/Mach-O, especially for C.

  5. Re:Unhelpful answer. on Darwin 6.0.2 for x86 Released · · Score: 1

    But Darwin's kernel, xnu, isn't a microkernel.

  6. Re:B-plan on Build Your Own PowerPC? · · Score: 1

    The BETATESTERII product costs a lot less. Check it out for yourself:

    http://www.morphos-news.de/

  7. Re:Does OS X need Open Firmware to run on a PPC? on Build Your Own PowerPC? · · Score: 1

    1) Aqua is not code. It's a human interface specification.

    2) Nothing interacts with Open Firmware. OF is turned off once the kernel is loaded.

    3) How the hell would anything running in user-space interact with any hardware directly?!

    4) It is possible provided Apple's binaries don't check for a specific machine type. If it does you'll have to pretend to be that machine type. I'm running OS X on an unsupported clone so currently I doubt it does any such check. However if everybody were to do this I doubt Apple would survive and Mac OS X would die.

  8. Re:AmigaOne on Build Your Own PowerPC? · · Score: 1

    Amazing! It runs OSs which don't exist yet? WOW!

  9. Re:Apples go good with coffee on Apple Releases Java 1.4.1 Developer Preview · · Score: 1

    As good as it can get considering it's impossible to make 100% Java apps which behave like Mac apps.

    I wish Apple would give the user a choice of which L&F to use so it's easier to differentiate (and avoid) Swing apps. You can change the default to Metal instead of Aqua which helps in most cases.

  10. Re:Essential QT supplement for Unix nerds on QuickTime 6.0.2 Released · · Score: 1

    It actually has practical uses. For example type this:

    ./ASCIIMoviePlayer /System/Library/Components/KotoeriUIServer.app/Con tents/Resources/KotoeriHelp/gfx/xicnmu.jpg
  11. If only Apple would fix drag gestures on Enabling Mouse Gestures for Cocoa Apps · · Score: 1

    If only Apple would fix drag gestures in NSLayoutManager, especially drag down on the left side versus the right side.

  12. Re:Wonder if they tried to keep it a secret? on Mac OS X Built For CISC, Not RISC · · Score: 1

    Note that their CFM/PEF compatibility layer isn't in Darwin. I wonder how inefficient THAT is!

  13. Re:Yay! FUD! on Mac OS X Built For CISC, Not RISC · · Score: 2, Informative

    So what ABI will the libraries use?

    Supporting an extra ABI isn't difficult at the execution level provided you have a separate set of libraries or shims like they do for PEF binaries now. That's also how you can run 32 and 64bit apps on the same system.

    But what now? Another set of shims?

    The whole situation is ridiculous. They should use PEF/CFM natively.

  14. Re:In Case Unsanity Gets /.ed on Mac OS X Built For CISC, Not RISC · · Score: 2, Interesting

    If Apple would just use CFM/PEF natively we woudln't need the PEF shim crap for PEF Carbon apps.

    I mean where does Apple go from here? Do they create a 3rd spec so they have to upkeep two non-native formats? Will they have to create three sets of libraries or shims?

    Not very forward-thinking Apple.

  15. Ugh, go back to using PEF/CFM!! on Mac OS X Built For CISC, Not RISC · · Score: 2, Informative

    Apple supposedly saved some time using Mach-O because they wouldn't have to rewrite their linker to use CFM/PEF. If we're going to hack Mach-O so it uses the standard PowerPC ABI why not just support PEF/CFM?!

    There are many reasons for this. Not only are there tools already available to handle PEF/CFM, you wouldn't need the whole PEF interpreter w/shim libraries to run PEF Carbon apps!

  16. Apparently he's never met Linux zealots on The Nation of Macintosh? · · Score: 1

    Or he considered the ammount of tape he had and decided it would be too costly |-p

  17. Re:If only... on Mozilla 1.2 Beta Released · · Score: 1

    I disagree.
    Widgets do not make a human interface. You been a higher level of abstraction which encompasses the behavior of apps, like GNUStep.

  18. Re:How does SIMD fit in benchmarks on IBM PowerPC 970 Architecture · · Score: 1

    You can't generalize SIMD performance, or any form of benchmarking for that matter. I was never a fan of SPEC because it doesn't tax the branch predictor like normal applications do.

    VMX (AltiVec) also has operators which aren't really SIMD but are very useful, like permute which takes two 16-byte streams and creates a 3rd using a combination of the previous two.

  19. Problem with question on Complex GUI Architecture Discussion? · · Score: 1

    The problem here is you're talking about monolithic applications which are designed to be used solo. The very reason it takes to long to learn how to use these interfaces is due to the fact they are designed and run in a vaccuum.

    The larger problem with human interfaces in computing is when using more than one application where their interfaces suggest they are each running in their own emulator. Even applications which use the same API suffer from this problem. I prefer to use Carbon apps in Mac OS X because of this. All the Cocoa apps I use behave differently from each other. For example some of them use drag+drop wells which really suck and are inconsistent with each other.

  20. HFS+ explained in detail on Mac OS X to Get Journaling FS · · Score: 3, Informative

    http://developer.apple.com/technotes/tn/tn1150.htm l

  21. Re:Can this be rolled back into the BSDs? on Mac OS X to Get Journaling FS · · Score: 1

    HFS+ isn't POSIX compliant since it preserves case, but doesn't allow two files with the same filename sans case to exist in the same directory.

    Furthermore there are a lot of neat HFS+ features which can only be accessed via Carbon.

  22. Re:Existing Journaling Systems? on Mac OS X to Get Journaling FS · · Score: 1

    You can read the HFS Plus technote and see for yourself.

    Personally I won't use a filesystem which doesn't support FileIDs, thus I'm pretty much limited to HFS+.

  23. Re:Sun's plan SUCKS and here's why... on OpenOffice Beta for Jaguar/X11 Released · · Score: 1

    Yea, but then people assume I'm trolling if I say shit too often |-)

    My G4 broke some time ago so I'm not in a position to develop anything ATM. A bit frustrated right now. Not that I don't have a long enough dev to-do list as it is.

  24. Sun's plan SUCKS and here's why... on OpenOffice Beta for Jaguar/X11 Released · · Score: 2, Insightful

    The master plan is to port this horrible, horrible program to Quartz, then add Aqua-looking widgets. The result will be an app which is organized and behaves the same as it does now. That is if there is any organization to this interface...

    C'mon people, this is Sun Microsystems we're talking about! Doesn't anybody remember CDE?

    Sun has NO CLUE WHATSOEVER when it comes to human interface design. I mean look at their Swing apps for crissakes! All they do is try to copy current designs, and they aren't even as good at that as Microsoft is!

    The current plan SUCKS and nobody should waste their time propping up these pieces of poop AKA OpenOffice's views, controllers, and 'design' (if you can call it that without offending developers who have actually designed interfaces).

    What we REALLY want are not the views and controllers which are poop, but rather Open Office's MODEL which can import/export Microsoft formats! Port THIS to Cocoa and then create native views and controllers!

    This in turn could be ported back to GNUStep so people trying to use this piece of poop on other platforms don't have to suffer as much.

  25. Re:Somewhat of a troll, but... on OpenOffice Beta for Jaguar/X11 Released · · Score: 2, Insightful

    Apparently you haven't seen other applications Sun has authored!

    Nothing is more true than the fact Sun has NO CLUE when it comes to human interface design!

    What they should do is port the MODEL to Cocoa then let others write the views and controllers.