Cocoa Programming: A Quick-Start Guide for Developers

ISBN13: 9781934356302 Condition: New Notes: BUY WITH CONFIDENCE, Over one million books sold! 98% Positive feedback. Compare our books, prices and service to the competition. 100% Satisfaction Guaranteed Description Cocoa Programming: A Quick-Start Guide for Developers shows you how to get productive with Cocoa-fast! We won’t walk you through every class and method in the … Read more

Microsoft Office Ultimate 2007 FULL VERSION

No-compromise software package provides people at home or work with a comprehensive set of tools Includes core applications such as Word, Excel, PowerPoint, Publisher, Access, and Outlook with Business Contact Manager, as well as powerful 2007 versions of like Groove, OneNote, and InfoPath Streamlined user interface that helps you create documents faster, more easily, and … Read more

Microsoft Office for Mac 2008 Business Edition

Develop professional documents with Word building blocks and commonly-used business templates Build informative, accurate spreadsheets with easy-to-use, preformatted Excel formulas Manage e-mail, daily appointments and tasks with Entourage Apply SmartArt graphics to create polished presentations and reports Connect with others through Microsoft Office Exchange Server support Product Description Whether you have a Mac or an … Read more

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

Using Objective-C, Foundation Framework

(April 6, 2009) Alan Cannistraro provides an overview of object oriented programming, the objective-C programming language, and common foundation classes. Stanford University: www.stanford.edu Stanford School of Engineering: soe.stanford.edu Stanford University Channel on YouTube

iPhone and other mobile programming courses via Online Video, Worksheets, One-on-One Sessions with remotely accessible Mac

EDUmobile.ORG has launched an iPhone Development Online Course that teaches candidates via Online Video, PDF Documents, One-on-One sessions and Weekly Worksheets. A certificate is also offered to all candidates once they complete the course.The Course duration for is between 8 to 12 weeks depending upon the developers past experience in programming. For those who do … 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

Microsoft Office 2008 for Mac Home & Student Edition

Streamlined user interface runs natively on both Intel- and PowerPC-based Macs Open XML file formats, the Office Art graphics engine, and other features that result in compatibility and file fidelity Professional design is within your power with hundreds of new customizable templates and suite-wide themes, SmartArt graphics, and the new Publishing Layout View in Word … 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