Jan 16

I have been waiting for 2 years for Picasa to come to the Mac. When I left my Windows notebook for my MacBook Pro I felt lost without Picasa. iPhoto 06′ paled in comparison in my opinion to Picasa for central and easy organization of photos. iPhoto 08′ made me feel a bit better but I still greatly missed Picasa and its ability to scan multiple folders and automagically create a beautiful interface for my photos. I used iPhotoBuddy to create multiple libraries in iPhoto and to connect to photos on my home server but it still wasn’t the same.
To my joy while I was looking for Picasa 3 for my mother’s notebook while doing are-install I figured I’d Google “picasa for the mac” just to see what new rumors wereabout. To my suprise I saw the beta for the Mac was available for download! I seeit came on officially on the 6th but I hadn’t checked lately. It was like a secondChristmas in mid January!

So here’s a screenshot:

I’m letting it index all my iPhoto libraries, documents, and desktop now. THANK YOUGOOGLE!!!

GO DOWNLOAD IT NOW

Jun 02

Here’s a tip I learned today to remove the alternating stripes from the finder inLeopard:

Open terminal and run the following commands…

$ defaults write com.apple.finder FXListViewStripes-bool FALSE
$ killall Finder

You should now have a plain white background.

If you are uneasy about mucking with the terminal you can download Mac Pilot at http://www.koingosw.com/products/macpilot.php andone of the features removes the alternating stripes.

Jan 04

When saving a file or saving to PDF you may recieve the following error:

“Could not complete your request because of a program error.”

See Adobe support knowledgebase http://www.adobe.com/support/techdocs/331627.html

Solution 2 worked for me:

Solution 2: Re-create your preferences files.

1. Hold Command+Option+Shift when you start Photoshop.

2. Click Yes to the message, “Delete the Adobe Photoshop Settings file?”

May 17

Mac OS X 10.3, 10.4: How to look up “.local” hostnames via both Bonjourand standard DNS>

 
Mac OS X 10.3 or later normally treats hostnames ending in “.local” only as Bonjour(formerly “Rendezvous”) hosts. However, some network administrators also assign .localhostnames. This document explains how to look up .local names using Bonjour and standardDNS.

The Multicast DNS feature of Rendezvous technology allows devices on a local networkto connect to each other by name without a separate DNS server. See technical document107174, “Mac OS X 10.2: AboutMulticast DNS” for details. By default, any hostname ending in .localis treated as a Rendezvous host rather than by querying the DNS server entries inNetwork preferences. >

Though the .local domain is not defined as a valid top-level domain on the Internet,some private networks have DNS servers that assign hostnames in the .local domain.In its default state, Mac OS X 10.3 does not use the DNS server to resolve these names.This may result in unexpected failures to connect to .local hostnames defined by yourserver. If .local names are assigned by a DNS server on your network, use the solutionbelow to configure Mac OS X 10 to look up .local names in both ways. If the host isnot available via Rendezvous, the query will be tried using unicast DNS to contactthe DNS server.

Mac OS X 10.4 and later:

Open the Network preference pane in System Preferences. Select the desired networkinterface and click Configure. Add “local” to the Search Domains field. If you havemultiple entries in this field, be sure that “local” is first, and separate them withcommas. For example:

local, apple.com

Mac OS X 10.3 – 10.3.9:

To create the script, execute each of these commands in Terminal (/Applications/Utilities/).Each command is preceded by the dollar sign ($), which represents the Terminal prompt.You must be logged with an administrator account to perform these steps. After thefirst command (sudo), you will be prompted to enter your administrator password. Aftertyping each command, press Return to execute it. After entering the “cat” command,you will not see a prompt ($) for the next four lines, though you must still pressReturn after each. For the line that says “[Control-D]“, you will hold down the Controlkey, then press D.

The commands:

$ sudo su
$ cd /usr/sbin
$ cat > EnableUnicastDotLocal
#!/bin/tcsh
echo domain local > /etc/resolver/local.1
grep -v domain /etc/resolv.conf | grep -v search >> /etc/resolver/local.1
echo search_order 2 >> /etc/resolver/local.1
[Control-D]
$ chmod +x EnableUnicastDotLocal
$ exit

These steps create an executable shell script named “EnableUnicastDotLocal” that willcreate and populate the necessary configuration files to enable dual lookups of .localhostnames.<

To run the script, execute this command:

$ sudo /usr/sbin/EnableUnicastDotLocal

Important: The address of the DNS server configured by this script for .localname lookups will not change automatically if your default DNS server address changes.(Your DNS server address may change if you change network locations, if a change ismade by your DHCP server administrator, or if you change it manually in Network preferences.)To change the DNS server used for lookups in the .local domain, you must run thisscript again. To disable unicast DNS lookups entirely after running this script, deletethe file /etc/resolver/local.1.

Note: For the Active Directory plug-in to work with .local domains, you mustupdate to Mac OS X 10.3.3 or later.

 

SOURCE:

Shared with me by a friend David Waits @ work- the URL:
http://docs.info.apple.com/article.html?artnum=107800