Caregiver Support

Web Address: www.caregiversupport.org

Company: Caregiver Support

Summary: This site was designed for a non-profit organization called Caregiver Support that helps people who care for older family members or friends.

I used Photoshop to create the design concept and XHTML/CSS to do the layout. This site has a Flash tabbed app on the home page that cycles through the tabs or lets you select a tab. All the data for this Flash is pulled from XML so the client can update easily. It also pulls in and parses an rss feed. The backend coding was done by Chris Tarabochia

Install Multiple Versions of IE on the same computer

One of the major issues in designing web pages using standards compliant code is browser to browser testing. On a recent project, I was testing in Internet Explorer 7, Firefox, Netscape, Opera and Safari. I thought I had covered my bases.

It turns out Internet Explorer 6 was even worse with styles than IE7, thus much of my site was all freaked out in IE6. So how do you test in both IE6 and IE7?

I searched around and found a lot of cautionary messages saying most of the hacks to do this didn’t work. However, one of my work buddies found a great program. It’s called “Multiple IEs” and as the name implies, it lets you install multiple versions of IE all the way back to IE3!

I think for testing purposes 6 is probably as far back as you need to go unless you have special user scenarios where you know visitors to your site are on ancient machines or traveling through some time warp portal.

There are some features (like bookmarking) that are disabled, but for simple layout and css testing this is the perfect solution:

Install multiple versions of Internet Explorer with Multiple IEs.

Highlight or Delete Form Field Data on Click with Javascript

Sometimes you want to highlight or delete the value of an HTML form field when a user clicks on it. This is very simple to do using javascript. Just add the following to your input tag:

To Highlight:
onFocus=”this.select()”

To Delete:
onFocus=”this.value=””

Here are examples of how each of these works:

Have fun and be careful!

Gnarls Barkley Backwards Album

I’m still trying to decide if this is completely genius or completely insane. Yesterday Gnarls Barkley released their new album “The Odd Couple” for free as one backwards (yes, reversed from finish to start) mp3 file. I’m leaning more towards genius. At least genius in that it’s a new clever promo idea that has never been done.

It’s titled ‘elpuoC ddO ehT’ which obviously is “The Odd Couple” backwards.

I haven’t read any explanation by Danger Mouse or Cee-lo yet. Maybe none is needed.

Get the Gnarls Barkley backwards album here

Rock Band Wireless Guitars

Rock Band has been one of the best investments ever. I bought it earlier this year, and haven’t been disappointed in any way except one: There are no Rock Band guitars for individual purchase. In other words, to use Rock Band to its full 4-man-band rocking potential, you have to buy a Guitar Hero guitar and hope it is compatible. Sure there are loads of Guitar Hero - Rock Band compatibility charts out there. but who wants to spend $50+ based on the review of some dude they don’t even know?

Well all that changed last week!

EA now offers WIRELESS Rock Band guitars for individual purchase! This is a monumental break-through in the progress of my band. We can now give the bass spot to that Lyle kid down the street who’s been jonesin’ to get in. As long as he brings pizza I think we’re cool.

Amazon has some pretty decent prices on the guitars. You can get the Rock Band Guitar for Xbox 360 for $79.99 or the Rock Band Guitar for PS3 or PS2 for only $59.99!

Rock on brethren!

Tracing bmp, jpg, gif and png images using Vector Magic

I just found a very cool web app that I wanted to share. In fact, it’s so cool that it is not only going in the “Web App Review” section of my site, but ALSO the “Design Tips” section. It’s just that cool.

One major issue I’ve run into when building a website for a smaller local company is what I like to call “logo blues”. Logo blues come in many varieties. Here are a few you may have heard in no particular order:

  • “Here is our logo” (hands over a business card)
  • “Here is our logo” (hands over logo xeroxed on a sheet of paper)
  • “Here is our logo” (emails Word doc with low-res logo file pasted into it)
  • “Here is our logo” (emails low res version of logo)

These items quickly jump from logo blues to logo nightmares when the client mentions that this is the only format they have their logo in. What usually follows is a long messy journey through Photoshop using lots of sharpen filter, contrast and other such nonsense. It’s even worse if you need a vector image because in that case you often need to retrace the whole image using the pen tool.

Enter Vector Magic

Vector Magic is an Adobe Flex app that lets you upload an image (jpg, bmp, tiff, png, gif, even psd) and convert it to a clean vector image. The service is free if you are ok outputting a png with a Vector Magic trademark on it. EPS files cost 1 credit which translates out to $2.95 (or $2.20 if you order before 4/12/08). The quality is pretty amazing especially for solid color logos. The time this tool could save you, especially if you need a vector version of the logo or image, is awesome.

I tested out Vector Magic, first using their own logo. Here is a sample of the quality. The image on the left is the original and the right is the clean vector version:

Vector Magic

Next I tried Google’s logo. The gradients gave VM a little bit of trouble, but still pretty good job for how easy and quick the tool is to use:

Vector Magic

Lastly, I tried a photo. Again for how simple this app is to use, I think this is pretty impressive:

Vector Magic

I should add that there are some editing features that appear to give you quite a lot of power to clean up the image. I didn’t use editing for any of my samples so these are just raw right through the VM engine.

All-in-all Vector Magic looks like a very cool tool and I am excited to use it on a real project in the future.

Visit VectorMagic.com

Flash - Set the focus on a text field Actionscript 3

Use this code to set the focus on a text field instance in your Flash:

myTextField.stage.focus = myTextField;

Note: This only works once the user has already clicked on the swf. For example, if you had a button in your Flash that said “click here to fill out a form”, and then when they clicked that button you wanted to focus on a field, this solution would work well.

Trace or track key presses in Flash using Actionscript 3

Tracking key presses can be useful both form Flash games (i.e. up, down, left, right keys) or even forms and other types of interactivity (enter key, etc.). It’s pretty simple to do in AS3 using the KeyboardEvent object. Here are a couple examples:

The first thing we need to do is set up a listener to track key events:

//Listen for key presses
stage.addEventListener(KeyboardEvent.KEY_DOWN, key_pressed);

So basically we are saying when someone presses down a key we want to run the “key_pressed” function. Let’s create that function now.

There are a couple different ways to track which key is pressed. For the widest range of keys we’ll use the charCode. This is an integer that represents each key on the keyboard. Here’s an example to do that:


//Listen for key presses
stage.addEventListener(KeyboardEvent.KEY_DOWN, key_pressed);

//trace a particular key press

function key_pressed(event:KeyboardEvent):void {
//trace(event.charCode);

if (event.charCode == 65) {
trace(”A”)
}

if (event.charCode == 97) {
trace(”a”)
}
}

There is a list of charCodes here.

You’ll notice that the link above only has charCodes for upper case letters. One way to figure out charCodes for a lower case (or any) key is to trace the charCode as you press a key. Uncomment the trace(event.charCode); line in the code above and Flash will trace a charCode each time you press a key.

Now for some keys there is an even easier way to track pressing. It’s called keyCode and it is more readable than the cryptic charCode. Here is some sample code for that:

//Listen for key presses
stage.addEventListener(KeyboardEvent.KEY_DOWN, key_pressed);


//trace a particular key press

function key_pressed(event:KeyboardEvent):void {

switch (event.keyCode) {
case Keyboard.SPACE:
trace(”space”)
break;

case Keyboard.UP:
trace(”up”)
break;

case Keyboard.NUMPAD_4:
trace(”4″)
break;

case Keyboard.INSERT:
trace(”Insert”)
break;

/*for this trace to work while testing your movie you’ll need to go to
Control>>Disable Keyboard Shortcuts in the window’s menu*/

case Keyboard.F1:
trace(”F1″)
break;
}

}

You can get the keyCodes for that method at the same link as above.

Note - if you see the little AIR logo before the keyCode, it means that particular keyCode only works in the AIR runtime. Or should I say Adobe AIR Runtime… which translates to Adobe Adobe Integrated Runtime Runtime. Sorry … tangent.

So for any keyCodes with that logo in front, you’ll need to use the charCode method I outlined above.

Friends - I hope this helps you accomplish all of your wildest key press tracking dreams! Good luck!

loadMovie in AS3 - Load an image into a movie clip on the stage

loadMovie is gone in AS3. I liked to use loadMovie to pull swfs and jpgs into existing movie clips on the stage. You can still do this fairly easily by using the load() method. Here’s how:

var i =new Loader();
i.load(new URLRequest(yourimage.jpg));
movieClipInstance.addChild(i)

Basically we are loading the image into a Loader called “i”. Next we add i as a child to our movie clip that is on the stage.

Simple! Thanks Dmode for help on this.

TODCon 2008, Orlando Florida

I’m excited to be able to speak at TODCon again this year. It’s a fun group of people and a great conference. TODCon runs from June 6 through the 8th and will take place at the Wyndham in Orlando, FL.

This year my topics are Adobe AIR for designers and Creating a Flash video web site using Adobe Encore.

If you are looking for a design conference to attend, TODCon is great. It’s big enough to get some familiar names in the biz to speak and small enough to give you one on one time with those speakers. I highly recommend it.

http://www.todcon.org

onPress, onRelease, onRollOver, OnRollOut, etc. in Actionscript 3

When Actionscript 2 came out, I stopped using buttons and the old Actionscript 1 on(release) methods and starting creating movie clips for my buttons and using instanceName.onRelease functions to make buttons out of those movie clips.

Now with AS3 there is a new way to perform these functions. It’s not much harder than the old way, just different. Here are some examples:

onPress
buttonInstance.addEventListener(MouseEvent.MOUSE_DOWN,function():void {
trace(”down”);
}
);

onRelease
buttonInstance.addEventListener(MouseEvent.MOUSE_UP,function():void {
trace(”up”);
}
);

onRollOver
buttonInstance.addEventListener(MouseEvent.MOUSE_OVER,function():void {
trace(”over”);
}
);

onRollOut
buttonInstance.addEventListener(MouseEvent.MOUSE_OUT,function():void {
trace(”out”);
}
);

Pretty simple right? Not too bad at all.

Click here for some examples of other mouse actions you can track.

Flash - Change a movie clip’s color using Actionscript 3

That’s right folks. In Actionscript 3, your good old friend setRGB is long gone. But you can still set the color of a movie clip by using the new ColorTransform method.

The first step is simply to import ColorTransform so you can use it in your Flash

import flash.geom.ColorTransform;

Then do the following to change the color of your movie clip (in this case the clip has an instance name of MyMovieClip)

//Change MyMovieClip color to blue (336699)

var newColorTransform:ColorTransform = MyMovieClip.transform.colorTransform;
newColorTransform.color = 0×336699;
MyMovieClip.transform.colorTransform = newColorTransform;

Easy right? Simple! Not too difficult at all! Now go out there and change the color of lots of fun things pal!

Using XML in Flash with Actionscript 3 and E4X

E4X may be the best thing about Flash CS3! It stands for ECMAScript for XML and it is the new way to interact with XML in Flash AS3. What is ECMAScript? I don’t know - nor do I care. What I do know is it ROCKS your socks off. If you have used XML in Flash before you’ll will be amazed at how much easier it is.

Remember this?
xmlInstance.firstChild.firstChild.firstChild.firstChild.firstChild.childNodes[5]?

Now you can do this:
xml.nodeName[5]

It is soooo much easier to do. Thank you AS3.

Take a look at the “Chuck Quotes” swf below. Bask in its utter radness. It randomly selects one of 10 Chuck Norris facts and displays it next to the handsome face of none other than Chuck Norris. Here is the actionscript I used to build this beauty:

var xml:XML = new XML();
var loader:URLLoader = new URLLoader();
loader.load(new URLRequest(”http://www.jesseharding.com/blog/files/chuckisms.xml”));
loader.addEventListener(
Event.COMPLETE,
function(evt:Event):void {
xml = XML(evt.target.data);

var high:Number = xml.chuckism.length()-1;
var low:Number = 0;
var randomNum:Number = Math.round(Math.random() * (high - low)) + low;

var randomChuck:String = xml.chuckism[randomNum].@text;
chuckquote.text = randomChuck;
}
);

I’ve got a sample fla file that is very well commented and shows you how to build the “Chuck Quotes” swf below.

Download the fla here

Here is the Chuck Quotes swf:

You need Flash to see to this

Flash Preloader in ActionScript 3 (AS3)

Dmode posted a good article on how to create a Flash Preloader using Actionscript 3 (AS3).

You can see a sample of the preloader here.

Read Dmode’s Flash Preloader in ActionScript 3 (AS3) post

Adobe Photoshop Express Beta

Today, Adobe announced Photoshop Express, which as far as I can tell is like Flickr on steroids. It’s an online photo sharing RIA (rich internet application) and allows you to not only upload photos and create galleries, but also to do some minor photoshop-ish editing to those photos. The gallery on the home page looks really interactive so that could be cool.

I signed up, but still haven’t received my confirmation email. When I do, I’ll play around some more and give a more detailed review in my web app review section.

Read Adobe’s Press Release here.

Gibson lawsuit over Rock Band and Guitar Hero

I’ll start this post off by saying:

GIBSON GUITARS YOU ARE LAME! I’M GLAD I OWN AN IBANEZ!

I am so sick of people filing a patent and then just laying in wait to see if someone creates something that infringes on that so they can sue.

For example I just recently read this article about a possible AJAX suit.

And we all remember the classic Active X lawsuit that really messed up the way Flash is displayed.

So apparently 10 years ago Gibson patented the idea of a 3D recording of a live concert that would be viewed through virtual reality goggles strapped to the head of the gamer. The gamer would then play a real instrument and be part of the concert action.

They are now trying to sue Activision, Harmonix and everyone else involved in Rock Band and Guitar Hero.
Read the article >>

Now- sure the ideas are similar, but there are some big differences; the virtual reality idea, the live concert recording idea, and the fact that the Gibson patent mentions (according to the article) real instruments, not game controllers. The Gibson idea seems like more of a way to jam live with a group, without actually having a group.

Sure I can understand Gibson kicking themselves for not acting on this patent, but to wait 3 years until the games are huge and then try to sue for a piece is lame.

Even lamer is the fact that Gibson is also trying to sue stores that are selling Rock Band and Guitar Hero. I understand how patents can be valuable and why they are important. I also realize that the vast majority of patents don’t end up this way. Still it happens enough to get me all fired up.

Companies or individuals thinking of pursuing this kind of lawsuit should look at sue-happy Metallica and how stupid everyone thinks they are now. They are the butt of tons of jokes and online spoofs and haven’t had a good album in years. Hopefully all these future rockers getting their start on Guitar Hero will think twice before buying a Gibson…

Flash player 9 won’t install in Internet Explorer 7

Last week I had a weird thing happen. Firefox is my browser of choice, but I still use IE for testing and whenever I want to get really frustrated about css. Thus, I’m used to the normal weirdness that occurs when you jump from FF to IE to check a design, but I was surprised last week to see that the Flash player appeared to have uninstalled itself. “Weird” I thought, and simply went and installed it again from adobe.com. It appeared to install normally, and even played the “successful install” video. However, it was still not working, and upon closing IE and opening it back up the Adobe page still thought I didn’t have it installed.

I’m not sure what caused this to happen, but in case it has happened to you, I finally found a fix after about 60 minutes of messing around and trying different things.

Here is what you need to do:

1- Close all your programs
2- Open up your “Add/Remove Programs” window from the control panel
3- Uninstall anything that says “Flash Player”. I had 3 files. One had to do with Active X. The other 2 were called Flash Player 9 something or other.
4- Visit adobe.com in both IE and FF to reinstall the plugin.

Like I said, I’m not sure what causes this Flash player bug in IE, but I do know that I was able to remedy it by using those steps.

Good luck!

Flash 9 Security Update coming in April of 2008

I recently read on Emmy Huang’s blog that there is a new security update coming out for Flash 9 that may affect existing swf content on the web. This Flash Player update will address some of the vulnerabilities that were discovered in December of last year.

For the most part it looks like there are easy work-arounds to fix any possible problems but if you are using any of the following actionscript items you’ll want to read the Developer Center article about the update.

  • Use of sockets or XMLSockets, regardless of the domain the SWF is connecting to
  • Use of addRequestHeader or URLRequest.requestHeaders in any network API call when sending or loading data cross-domain OR Provides access to content on remote domains as a web service provider
  • Use of SWFs that are exported for Flash Player 7 (SWF7) or below that communicate with the hosting HTML by any means
  • Use of ‘”javascript:’” through network APIs to communicate outside a SWF

If you are not sure if your Flash needs to be updated, the Developer Center article goes into detail on each of the issues and gives examples of possible uses.

Using Random Numbers in Flash to create Randomization

One of my favorite things to do when creating a Flash site is to use random numbers to generate some fun randomization on the site.

You can create tons of cool randomness by generating a random number within a range. Here is the script I use. This is AS2 and AS3 friendly:


var high:Number = 10; //set the high number in your range here
var low:Number = 1; //set the low number in your range here

//Now generate the random number
var randomNum:Number = Math.round(Math.random() * (high - low)) + low;

//And trace it to make sure it is working
trace(randomNum);

I’ve used this with an xml file to load a random photo out of group of 10 or 20. Just grab the total number of nodes using .length and set that as your high variable.

Here is an example of that
http://www.jumpingjacktrailers.com/ (in the polaroid spot)

I’ve also used it to load a random movie clip or tell a movie clip on the stage to gotoAndPlay a random frame.

Here are a couple examples of that:
http://www.trickortreatstreet.us/
http://www.kassingandrews.com/

This keeps your site looking fresh, and also gets your site more visits/hits either by keeping users coming back, or by enticing them to hit refresh to see the randomization.

Hooray!

Music Monday: Reboot, Reload

For this week’s Music Monday I took a tune by my buddy’s band Bleaog and threw down some DOPE lyrics over it. I could be wrong but I am pretty sure this is the first time Eric Meyer and Jeffrey Zeldman have ever been mentioned in a rap. I’m using the term “rap” very loosely here by the way.

Listen to the song here:

You need Flash to listen to this

And if you are interested, here are the lyrics:

stacks in front
usb around back
plug in the cable with the label
or connect on the WAP

data transfer
fast like cancer
cause we didn’t want to chance ‘er
802.11b or bluetooth is the answer

MySQL is lethal
explosive like torpedos
I smell like I was homeless like chili-cheese fritos

Reboot reload refresh your code
viewing my source is like looking at gold (X4)

Reboot to the level
shout at the devil
whining on the mic like my name was Aaron Neville

I’ve got the ill styles like my name was Top Lite
Cascading like Niagra falls
my barrel has its top tight
And when it’s time to shop online I’m rocking New Egg all night
My rhyming is in Teras and your rhymes are simple kilobytes

I’d like to thank Bill Gates for all he did for us
I print so many documents you’d think I own the forest
I can delete the recycle bin like I was chuck Norris
War driving in your neighborhood in my black Ford Taurus

more divs than a spelling dropout diver
clever with my work-arounds like my name was MacGyver

Reboot reload refresh your code
viewing my source is like looking at gold (X2)

I can C++
like a sailor can cuss
I’m object oriented like chinese on a bus
Head hunters on my tail like my skills were a tusk
my php’s so sexy that I don’t where musk

Too wired on caffeine no time to relax
I’m relentless like a DOS attack
Eric Meyer and Jeff Zeldman are the miggidy macs
Don’t flame me in a forum or your whole crew is wack

Reboot reload refresh your code
viewing my source is like looking at gold (x2)

Reboot to the level
shout at the devil
whining on the mic like my name was Aaron Neville

Reboot to the level
shout at the devil
whining on the mic like my name was Aaron Neville

Reboot reload refresh your code
viewing my source is like looking at gold (x4)

Music Monday Song 5

Music Monday on Friday! Hooray!

Listen to the song here:

You need Flash to listen to this

Browser statistics, Resolution statistics, OS statistics

Have you ever been working with a client, and they tell you the web site you are building looks funky in their IE5 800×600 browser? You immediately tell them that NO one is still using IE5 or 800×600, but they look at you with that unconvinced, skeptical or just confused daze.

Maybe I am just slow but I never realized until today that W3C schools, the source of all things true and good about XHTML and CSS, publishes monthly statistics for Browser, Resolution and OS statistics. This is great info and valuable ammunition for that pesky, slow-to-upgrade client:

Browser Statistics
Resolution Statistics
OS Statistics

PicLens - Review

I checked out the PicLens, Firefox plug-in last week and WOW! It’s waaaaay cool! Basically it turns Google Images, Flickr, Photobucket or a few other photo sites into really cool, full-screen interactive galleries. Here is my review:

Pros:

  • The resolution/quality is amazing. They must have some sort of filter that sharpens the images because even small images look quite crisp blown up.
  • You can quickly scan through hundreds of photos just by dragging along the scroll bar
  • Very cool eye candy

Cons:

  • It’s just eye candy. I was very surprised to find that once you are in PicLens, there is no way to link straight to a given photo on the site it appears on. Or at least if there is, I haven’t been able to find it in 1 week of using it quite frequently.

    For example, I was sketching a moose for an illustration and used piclens to browse Google images for moose pictures. Once I found one I liked I wanted to jump to that actual site to see if they had any others. No can do! I’ve sent this suggestion to PicLens so hopefully it is something they can add in a later version. Until then this is cool eye candy with no real use.

3-27-08 - Update: So I did end up finding out how to jump straight to the images you are browsing in PicLens. Ike Yospe reminded me that I hadn’t updated my blog about that so here goes… There is a tiny arrow up at the top left (next to the logo for the site you are browsing) that when clicked will take you to the page the image is on. BOOOOOO PicLens! This was obviously an afterthought and just thrown in without much care of whether anyone ever finds it. It’s quite disappointing considering how amazingly intuitive the rest of the app is. How about a simple text link that says “view this image online” or something to that effect. Heck put it in the same spot as the arrow, I don’t care. But make it noticeable. Otherwise PicLens remains in my opinion eye-candy and nothing else…

Link text overlapping in IE 7 - CSS issue?

Today I ran into a really weird bug in IE 7. I had done some CSS and HTML handed it off to our programmer to add to our site. My version worked in both Internet Explorer and Firefox, but once it got included into the asp code and added to the site, it looked funky (see below)

IE 7 bug

Side note: it still looked fine in Firefox (Surprise!)

I looked at the styles and checked our version control only to find that nothing had changed. It was as if IE was ignoring the margin and absolute positioning I had styled. I was stumped.

Next I viewed the source in IE and noticed some extra white space in one of the anchor tags:

IE 7 bug

It was a long shot, but I jumped into the ASP and noticed that the anchor tag was broken up into 3 lines of response.writes. I combined those 3 lines into one. The source now looked like this:

IE 7 bug

And wala! The page looked great:

IE 7 bug

It’s funny how tiny things like that can set IE off. If you’re having any similar issues with overlapping link text etc. make sure you don’t have any white space within the link text area.

As usual, what appeared to be an extremely tough problem ended up being an easy fix.

Music Monday Song 4

Here is this week’s Music Monday. It’s a fun little tune. Like most of my others, it’s a little rough and ends abruptly.

Listen to the song here:

You need Flash to listen to this

Cody Wyoming - Fly Fishing Fund Raiser 2008

Each year I do a t-shirt illustration for a fly-fishing cancer fund raiser that takes place in Cody Wyoming. Here is this year’s design:

Fly Fishing

You can see last year’s design here

Did iPods Cause a Rise in Crime?

There is an interesting article on Wired about a theory that the popularity of iPods (and similar devices) combined with their high resale rate and portability may have caused the spike in crime rates that has been seen over the past few years.

“The Urban Institute, a Washington think tank, first raised the subject of an “iCrime wave” last September, and held a panel discussion Tuesday to explore it further. The researchers don’t blame iPod maker Apple Inc. or any other device maker for crime, but they do say consumers should demand technologies that would render stolen gadgets useless.”

It’s an interesting concept although there aren’t any statistics (at least not in the article) that actually correlate the rise in crime with the the amount of stolen personal electronic devices.

Take a gander at the article if you are interested.

Web-Safe Fonts

All web designers have had to explain to a client or colleague the “web-safe font” problem. For the first 2 or 3 years that I designed sites, I basically rotated between Arial and Times when it came time to choose a font for a new design. Around 1999 or 2000 Verdana also became popular as a substitute to Arial.

If you are working on a site design and are tired of the same old fonts, you may find the following list useful. It’s not huge, but these are web-safe fonts (i.e. fonts that will show up correctly on most if not all operating systems) with their PC and Mac names:

PC Font Name
Mac Font Name

  • Arial, Arial, Helvetica
  • Arial Black, Arial Black, Gadget
  • Comic Sans MS, Comic Sans MS
  • Courier New, Courier New, Courier
  • Georgia, Georgia
  • Impact, Impact, Charcoal
  • Lucida Console, Monaco
  • Lucida Sans Unicode, Lucida Grande
  • Palatino Linotype, Book Antiqua, Palatino
  • Tahoma, Geneva
  • Times New Roman, Times
  • Trebuchet MS, Helvetica
  • Verdana, Verdana, Geneva
  • MS Sans Serif, Geneva
  • MS Serif, New York

30 On Air

Are you an Adobe user? Like making videos? Got a quick 30 seconds?

Create a video for Adobe telling in 30 seconds or less why you use or love the Adobe product you do. Post your vid to youtube and tag it with “30onair” and Bob’s your uncle - you’re an Adobe star.

You can see the other videos here:
http://www.30onair.com/

I’ll be making my vid(s) within the next day or two and you know I’ll be posting them here as well!

Google Alerts

Google Alerts can be a pretty cool tool especially if you are looking to track the popularity of a client, product, topic, yourself, or pretty much anything.

http://www.google.com/alerts?hl=en

You simply enter in a topic, your email address and a few simple settings and you’ll receive email telling you when Google indexes a site that talks about that topic. You can specify how often you want to receive emails (daily, weekly or as it happen) and what type of sites you want Google to alert you about (all, blogs, news, etc.)

I’ve used this for my Tornadostream project to find out when people are blogging about it. It’s a pretty nifty little tool!

Error in my_thread_global_end(): 4 threads didn't exit