Xcode 4 terms “Build for testing / Build for running / build for profiling / build for archiving”

Running is for running your app (on the Mac for Mac OS X, in the simulator or on the device for iOS). Profiling is for running your app with Instruments (for finding memory leaks, bottlenecks etc.). Testing is for running unit tests. Archiving is building a distributable package of you app (incl. Ad-hoc iPhone distributions … Read more

Difference between a packaged archive and an exploded archive

There is no difference really. An exploded archive is a tree of folder and files that respects a given structure which your application server can exploit to deploy the application. For a web application for instance, you create a war directory structure. The application server expects a WEB-INF directory containing the web.xml files which acts … Read more

What’s the best “file format” for saving complete web pages (images, etc.) in a single archive? [closed]

My favourite is the ZIP format. Because: It is very well sutied for the purpose It is well documented There a a lot of implementations available for creating or reading them A user can easily extract single files, change them and put them back in the archive Almost every major Operating System (Windows, Mac and … Read more

tech