installed

Where are PHP libraries installed?

In my inaugural PHP entry, an answer to a simple question: Where are PHP libraries installed?

Answer: I just installed a PHP library named HTTP_Request using PEAR (the PHP Extension and Application Repository), and it was installed into the following directory:

How to delete/uninstall an iPhone app

iPhone FAQ: How do I delete/remove/uninstall iPhone apps (iPhone applications)?

When I learned how to move iPhone app icons around last night, I also learned how to remove iPhone apps that I've downloaded and installed from the App Store. Here's how you delete iPhone apps.

Checking to see if a Perl module is in your @INC path

As I started working on a new Unix system yesterday I needed to know if that system had certain Perl modules installed on it that I needed. In my case the specific Perl modules I needed were SOAP::Lite and the Error module.

One way to find out was to just install my Perl program and then try to run it, but because I knew I needed these modules beforehand I just ran the following commands to see if these modules were installed on this HP-UX system:

perl -e 'use SOAP::Lite;'

and

Syndicate content