Custom Mail Signature

I’ve been using the Mail app on the mac often these days, and I wanted a way to imbed images for a custom signature I had in mind, but adding a signature through the normal way does not allow much functionality other than the normal font, color, and some minor text effects.

Luckly, through some digging I was able to find this blog. Follow the necessary steps and you can have images in your signature as well. Along with any CSS you want to add.

http://allforces.com/2006/04/14/css-signatures/

Enjoy!

Share Screen Copy & Paste

If you’re running leopard on your mac, this little trick might come in handy while using Share Screen to connect to a remote computer.

Copy (apple+c) the item you’d like and then from the Share Screen menu select Edit > Send Clipboard. Then in Share Screen simply paste (apple+v).

Share Screen

I found it handy if you just want to copy text between both computers, but any thing you can send to the Clipboard should work.

Password Meter

Ever wondered how secure your password is? Well with the help of the application on this web site below now you can. Make your password more secure, by using the suggestions.

http://www.passwordmeter.com/

Flickr Client for Mac OS X

Barton Springs Software is now offering a Flickr client for Mac OS X. From first glance, this looks great to help manage photos, contacts, etc. You can download a free demo, and full version for $20. Both basic and pro accounts are compatible with the software.

Check out their web page for more info.

Easy Password Protect

Every wanted to password protect files or directories without having to code a custom login script? It’s easier than you think. Follow the steps below.

1. Create a .htaccess file with the following:

AuthUserFile /full/path/to/.htpasswd
AuthType Basic
AuthName "My Secret Page"

<Files "mypage.html">
Require valid-user
</Files></code>

<code><Files "myotherpage.html">
Require valid-user
</Files>

2. Create a .htpasswd file with a list of usernames and passwords:
fred:p29cmnwl4a0et
linda:vwp45xakfh89

One thing to note, passwords in the .htpasswd file are encrypted. Don’t worry google, ‘htpasswd generator’ and you’ll find plenty of tools for encrypting.

Custom iPhone Icon

If you’ve started to build web applications for the iPhone, why not create your very own icon? Since the iPhone now allows web sites to be bookmarked from the home page, it’s easier than you think.

1. Make sure you are running the latest release iPhone firmware (version 1.1.3).

2. Create the icon at 158 X 158 for maximum crispness.

3. Upload to your root directory.

4. In your HTML header code add:
<link rel="apple-touch-icon" href="/apple-touch-icon.png" type="image/png" />