October 2003 Archives

Thumbnails On The Fly

| | Comments (0) |

MovableType's manual mentions supporting thumbnail creation when uploading pictures if ImageMagick is installed.

A google on ImageMagick lead to this entry by Scott Hacker: birdhouse.org: ImageMagick. That saved me a lot of time, because it pointed to a Mac OS X install version. Now all Fiveforks bloggers can do this...

... upload an image file into their blog, create a thumbnail size, and have the thumbnail zoom open to the larger photo. Thanks to ImageMagick! (Kind of like installing a gorilla to swat a fly.)

Random Rotating Images

| | Comments (0) |

Random Image Rotation: A List Apart

Create a folder full of images and include the php script above in the folder and you get random rotating images. (Hit the refresh button and the picture below will change.) Now if I can figure out how to make them links that pop up larger versions of the images...

I chose a bunch of photos and exported them with iPhoto using a constraint of 300 x 300 max. In that way all random photos are the same size by either width or height.

Amazon Searches Inside Books

| | Comments (0) |

Amazon has announced a new search capability... inside books! The results of my search for "snowdens of yesteryear"...
Where are the Snowdens?

TimeCopy for Palm

| | Comments (0) |

My Palm's clock gets out of synch by several minutes each month. I attend a lot more conference call meetings than physical meetings which requires more precision (and shorter reminders.)

I did not like ClockFix's auto-adjust approach (and it cost $6.95.) I prefer TimeCopy's synching approach better. TimeCopy installs a conduit and synchs up the Palm with your PC's clock. (My PC synchs up with an atomic clock time server.)

TimeCopy on PalmGear.com

For the correct time visit www.time.gov.

Giant Odorless Bubbles

| | Comments (0) |

I think Maggie felt compelled to include the odorless adjective...
Yahoo! News - Methane Bubbles Could Sink Ships, Scientists Find

Bloglines

| | Comments (0) |

A web-based way to keep up with many blogs or any site supporting RSS. This is what the "Syndicate this site" link is all about on MovableType blogs.
Bloglines | fishback's Blogs

Disable Image Toolbar

| | Comments (0) |

This tip explains how to get rid of the Image Toolbar that pops up over graphics in IE 6 by default. This can be a confusing feature when a customer sees a toolbar float over a product image.
Disabling the Image Toolbar in IE 6 for Your Site (thesitewizard.com)

Terminal Commands

| | Comments (0) |

Use mac-oriented ditto instead of cp.
ditto = copy files and directories
ls = list directory
cd = change directory
store shell scripts in ~/bin
set a script to be executable with +x
chmod +x ~/bin/backup.sh

Garmin Etrex Venture Quick Instructions

| | Comments (0) |

Garmin eTrex VentureYou only need to use three buttons and all can be used with your right thumb.
1. Power/light - Lower button on right.
2. Page button - Upper button on right.
3. Click-stick - front left.

1. Turn on. Hold power button for 2 seconds.
2. Allow 3 satellites to be found.
3. Use Page button to go to main menu. (Look for Find flag.)
4. Use click-stick to move to the Find flag.
5. Click the Find flag (pressing in on click-stick.)
6. Choose "Favorites" to find subset of Waypoints.
7. Scroll to the destination Waypoint and click.
8. The "Goto" button will be highlighted. Click it.

You should now be on the compass. You can turn off the navigator by pressing the power button for 2 seconds. Repeat steps 1 and 2 to turn back on and just page directly to the compass with the page button since the GPS is already looking for the last waypoint. Use the page button to go to the main menu if you want to change destinations.

Pinckneyville Park

| | Comments (0) |

An obscure place to play soccer. Seems like it is always cold when we play there. (Dark and 45 degrees right now.)
Pinckneyville Park
Norcross, Pinckneyville Park
4707 South Old Peachtree Road
Norcross GA 30092

From I-285 in Northeast Atlanta:
Take the Peachtree Industrial Blvd/GA 141 exit (Exit #31).
Travel NE on Peachtree Industrial Blvd. for 6 miles (Take the right fork at the split with Peachtree Parkway (GA 141)).
Turn right on South Old Peachtree Road.
Go 0.4 miles to the Pickneyville Park Soccer Complex on the left. (Click to zoom.)

Happy 21 Nicole!

| | Comments (2) |

Nicole came home for a birthday celebration including funky glasses shopping, church, dinner at Roadhouse, and a delicious birthday cake with Nicole's favorite icecream from Bruster's.
NDC21 and Goofy Sisters.JPG
Nicole flanked by her two goofy sisters.

Merlin to Win 2000

| | Comments (0) |
Now playing: Flower's Grave by Tom Waits from "Alice"

Merlin is an IBM Netfinity 3000 Type 8476-31U SN 23FK107.
Two SCSI Drives (0) and (1) are in the back bays 5 and 6.
Target bay 2 for third drive.
IBM 10/100 Ethernet PCI Adapter 100Base-TX, 10 Base T.
Used Ctrl A at boot up to access Adaptec SCSI Select Utility.
Available IDs: 2,3,4,5,6,8,9,10,11,12,13,14,15.
7 is taken by AHA-2940 Ultra/Ultra W controller.
8 - 15 are external SCSI.
IBM 9.1GB Wide Ultra SCSI HDD

    Jumper settings
    1 spare (50 pin) ID BIT 3 (for wide) - open
    2 id for bit 2 - open
    3 id for bit 1 - closed (to set SCSI 2)
    4 id bit for 0 - open
    5 enable auto spin - closed
    6 SCSI Term on - open (not at end of chain)
    7 Disable Unit Attn - open
    8 TI Sync Negro - Open
    9 Auto Start Delay - open
    10 Delay Start 6/12 - open
    11 Disable Parity - open
    12 LED out - open

MT Plugins

| | Comments (0) |

OtherBlog allows listing blogs entries from several blogs on one page. Combine with MT Rebuid to automatically rebuild the home page.

No Documents Found

| | Comments (0) |

After reviewing all posts here, I found this method preferrable for my application, because I needed to provide a different message other than No Documents Found. Thanks to Fernando Matias Valadao who posted this on http://searchdomino.techtarget.com.

I've made one technical correction. Step 2 needs to be in the On Load and not the JS Header.

1) In the "HTML Head Content" of your form or page, add this code: "< style> H2 {display:none;} </style>"

This momentarily hides any H2 text, including the No Documents Found message.

2) Add this code to the "On Load" event of your form or page. It searches all H2 text and replaces the No Document Found text. It then displays all H2 text.

var noDocumentsFound = document.body.all.tags("H2");
var tagH2, textH2;

for (var i = 0; i < noDocumentsFound.length; i++){
tagH2 = noDocumentsFound[i];
textH2 = tagH2.innerText;
if (textH2.toLowerCase() == "no documents found"){
tagH2.innerHTML = '
Nothing found. Please search again.';
}
tagH2.style.display = "block";
}

Randy on NPR

| | Comments (0) |

Randy Newman promoting his new album on NPR's Morning Edition.
Part 1: Dark Side.
Part 2: Light Side.

Posted With w.bloggar

| | Comments (0) |

Windows bloggers can use w.bloggar to post to MovableType (and other blog systems.) The advantage of using w.bloggar (or Kung-Log on the Mac side) is that you get some familiar word processing controls like bold, italic, underline, strikethrough, font color, and image inserting.

Oh... and spell checking!

Save $5 On Georgia No Call List

| | Comments (0) |

According to this article, if you sign up for the National Do Not Call list (free) you will automatically be added to the Georgia No Call list. Since registering for Georgia's costs $5 every two years, the National Do Not Call list is the way to go.

Harmony Horses

| | Comments (1) |

Thanks to Bill Crane...
--Turn on Volume, Click on Horses.--

And also his Geocache
recommendations.

Google and Hits from All Over

| | Comments (1) |

Analog runs web reports using the logs on the web server. There are links to two reports on the home page built into the Powered By Mac OS X logo.

One thing I noticed is that at least parts of the site have been indexed by the Google robot. If you type "Kelly E Cashel" in Google, you'll find her blog. I think this is because she signed her full name repeatedly to her quotes on fear.

Pages delivered to the google robot over two week:
279: 22.85%:: googlebot.com

I also like looking at the two week report to see what has been going on most recently. Rosary Army's web log is the most popular, and draws hits from around the world. This past two weeks included hits from Austria, the Phillipines (why the?), Spain and Israel.
#pages: %pages: domain
------: ------: -----: ------: ------: ------: ------
484: 39.64%: .com (Commercial)
512: 41.93%: .net (Networks)
203: 16.63%: [unresolved numerical addresses]
10: 0.82%: .org (Non Profit Making Organizations)
6: 0.49%: .edu (US Higher Education)
2: 0.16%: .uk (United Kingdom)
1: 0.08%: .at (Austria)
1: 0.08%: .es (Spain)
1: 0.08%: .ca (Canada)
0: : .us (United States)
0: : .ph (Philippines)
1: 0.08%: .il (Israel)

About this Archive

This page is an archive of entries from October 2003 listed from newest to oldest.

September 2003 is the previous archive.

November 2003 is the next archive.

Find recent content on the main index or look in the archives to find all content.

Powered by Movable Type 4.31-en

Good Reads

Flickr Badge

www.flickr.com
This is a Flickr badge showing items in a set called Wallet. Make your own badge here.