[Updated: added a screenshot of my extensions]
InternetWeek | Firefox Essentials: A Dozen Must-Have Extensions
A great reference - very frank. I have the Google toolbar, SwitchProxy and IE View. I think I'll end up with most of what he recommends.
InternetWeek | Firefox Essentials: A Dozen Must-Have Extensions
A great reference - very frank. I have the Google toolbar, SwitchProxy and IE View. I think I'll end up with most of what he recommends.
macosxhints - Run some iLife '06 apps on a G3:
It's easy to get iPhoto 6 and iWeb installed on your G3 by copying the iLife installation package to your desktop, control-clicking on the package installer, picking Show Package Contents from the pop-up menu, and then removing this code from the Distribution.dist file using TextEdit:// Rule out insufficient hardware
if ( !hasAcceptableHardware() )
{
my.result.title = system.localizedString('TITLE_INCOMPATHW');
my.result.message = system.localizedString('ERROR_INCOMPATHW');
my.result.type = 'Fatal';
return false;
}
Mail.app on Mac OS X and Courier IMAP Server
In order to use Mail.app effectively with most servers based on Courier-IMAP, you need to set the "IMAP Path Prefix" to "INBOX" in the account preferences.
Developer::Pipelines | A Mac Text Editor Migrates to Intel
First, with Mac OS X 10.4, the OS itself was no longer a moving target. In earlier releases of the OS, its underlying architecture—notably the kernel APIs—was in a state of flux and subject to change. And change these low-level APIs they did, as Apple refined the kernel and underlying frameworks to make improvements. As a consequence, each new release of the OS left broken applications in its wake, an unpleasant outcome that dissuaded many Mac users from switching to Mac OS X...
In 10.4, the kernel programming interfaces (KPIs) have been frozen, and a versioning mechanism lets drivers and other low-level software handle those situations when the KPIs are changed to support new features. The result is an underlying infrastructure for the OS that's stable and consistent across different platforms. This, in turn, makes the porting process manageable.
According to the BBEdit engineers, Mac OS X 10.4 does a good job at hiding the hardware details, while still providing low-level services (such as disk I/O). In addition, its APIs are mostly platform neutral, which means no special code is required to counter side-effects when invoking the APIs on each platform. Put another way, the code to call an API is identical for both platforms, and the results of the API call are identical; no glue code is necessary.
... BBEdit 8.0, which was released in late 2004, uses the full Unicode conversion and rendering features of Mac OS X. These APIs automatically read a file's encoding scheme and manage the data transfers and file I/O appropriately. By choosing to use Unicode early on, the Bare Bones Software engineers not only expanded the number of languages the editor could support, but also avoided what could have been a serious problem with reading and writing files when migrating to the x86-based Mac platform.
Another key revision made in BBEdit 8.0's code design was that the application began using Mac OS X's Preference Services API, rather than storing binary data in a custom resource. This modification also side-stepped the Endian problem...