Xcode 3 Unleashed

ISBN13: 9780321552631 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product Description Apple’s new Xcode 3 is the most powerful Mac development suite ever created. In Xcode 3 Unleashed, renowned Mac developer Fritz Anderson has written the definitive guide to making the most of Xcode 3 to build any Macintosh or iPhone application. … Read more

iLife ’09

iLife ’09 lets you get the most out of your photos, movies, and music on your Mac with new versions of iPhoto, iMovie, GarageBand, iWeb and iDVD Organize and search your photos by faces and places with iPhoto ’09; Create a movie in minutes or edit your masterpiece with iMovie ’09 Learn to play, start … Read more

Objective-C Pocket Reference

ISBN13: 9780596004231 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product Description Objective-C is an exciting and dynamic approach to C-based object-oriented programming; it’s the approach adopted by Apple as the foundation for programming under Mac OS X, a Unix-based operating system gaining wide acceptance among programmers and other technologists. Objective-C is easy … Read more

Learn Java on the Macintosh

Product Description Veteran authors Barry Boone and Dave Mark show readers how to learn to program using Java on the most user-friendly platform–the Macintosh. Written in the style of the highly successful Learn C on the Macintosh, this easy-to-follow introduction will take beginning programmers through the core concepts of this new programming language. The CD-ROM … Read more

Mac OS X version 10.6 Snow Leopard

Mac OS X Snow Leopard is built on a rock-solid, time-tested UNIX foundation that provides unparalleled stability as well as industry-leading support for Internet standards Improvements include a more responsive Finder, new look and features for Exposé and Stacks, quicker Time Machine backup, faster common tasks and installation, a smaller install footprint, and plenty more … Read more

Object Persistence in Java

Introduction

At the time of development, sometimes it is necessary to store the state of the object in the file system. Some objects may or may not be stored in the file system depending upon the structural intensity of the object graph. In this article, I will focus on two major aspects of the object persistence. Before going to this subject, I would like to tell you about the significance of the object persistence. Object persistence presupposes the state of the object in the file system. In this matter you can make argument regarding object persistence in the database, which hibernate does. But so far this article is concerned I will give glimpse on persistence in the file system for all convenience. The state of object signifies the attributes or properties of the object in the broader sense. The object graph represents the internal morphological structure of the object. So persisting object means, you are going to store all the internal changed structure of the object.

Read more

How to run ASP on the Mac

I have an old web app that’s using Active Server Pages, and I want to run it on my (Intel) Mac. This is basically not a big deal, because you can simply use Microsoft IIS under Parallels.

But I wanted to use IIS only for ASP files, and let Apache handle the rest. And here’s how to make sure IIS only handles what it’s supposed to:

1. Make a share of your Webserver Root directory in Parallels.
2. On the PC, in the IIS Control Panel, click on the default Website, click on Properties, then choose Home Directory, select that the content should come from A Share located on another computer and enter .PSFyoursharename as the network directory.
3. Make sure you allow ASP under Web Service Extensions
4. On the Mac, uncomment the following lines in /private -> etc -> httpd -> httpd.conf (remove the #’s):

      LoadModule rewrite_module
      libexec/httpd/mod_rewrite.so
      LoadModule proxy_module
      libexec/httpd/libproxy.so
      AddModule mod_rewrite.c
      AddModule mod_proxy.c

Read more