Any tips on where to get the word on on a press release like this?

The title

The "Save Joseph" campaign leverages social networking to make dreams come true during the recession

The article

Joseph has a stable job and he works with good people, but as anyone who knows him will tell you, he has a higher calling. Joseph is an artist, and his paintings are stunning. He took on a part-time job as a dental technician to support his family and jump-start a career as an illustrative artist, but it has been more difficult to get work as an artist from his small town than he anticipated. After 7 years, while his skills have been growing, he still hasn't had a real break.

The company he works for is doing well, and he's been asked to make a difficult choice. Either take on a full time position - a dream to many who have lost their jobs during the recession, but which would force Joseph to put aside his real passion as an artist - or risk losing his part time job and putting serious financial strain on their family. Joseph explains:

"I'm really thankful for what I have, and sometimes it seems selfish to push for something more. But I think we've all been given certain skills, and our real job is to find out what we can do with them."

He has one week to make the choice.

Joseph's friend and brother-in-law, Chris Shattuck, felt like there must be an alternative. For years he and the rest of Joseph's friends and family have wanted to see Joseph in a position that would push his creativity to its limits. So, Chris decided to do something about it. Leveraging his skills as a web developer, he started a web site called savejoseph.org, with the idea of beginning a grassroots campaign to keep connecting people to other people through social networking until the right opportunity could be found that would allow Joseph to merge his passion as an artist with a job that could support his family.

The "Save Joseph" campaign leverages multiple layers of social media to spread the word, including Twitter, Facebook and Blogger, using a Drupal web site as the glue holding it all together. Chris has also been tapping into his real-life social network, connecting with anyone he can think of who might be able to offer advice or point him in a direction he hadn't thought of.

"This an experiment to see if the right motive and the right goal is enough to bring a lot of people together to help improve one person's life. There's still a lot of struggling out there, and if this works out I think it will give a people a little more hope."

So far, the campaign involves some creative techniques for leveraging niche social networks. For example, Chris is writing web development tutorials sponsored by the campaign and broadcasting them to a wide network of fellow workers in the web industry. There are also efforts underway to document some of the interesting projects Joseph has undertaken throughout his life and broadcast these out as videos on video-based social networks such as YouTube, Blip and Vimeo. Chris explained:

"When I was 15, Joseph blew my mind by showing me a functional robotic arm he built out of wood and hypodermic needles. It sounds strange, but it was so inspiring that it has affected me in some way ever since. I want to share that experience with others because I have this feeling that when they see what Joseph is capable of, they'll be banging down his door."

The "Save Joseph" campaign will last for 1 more week, and you can learn more at http://savejoseph.org.

Additional resources

  • Feel free to reference images at http://josephcowman.com.
  • Read more about the story here: http://savejoseph.org
  • Contact me if you need more information using the contact form

Added bounty for the person with the lead that lands Joseph a job. Only 1 week left in the Save Joseph campaign!

8 more days to help me find a job for an amazing artist before CERTAIN DEATH! Please send ideas! http://savejoseph.org

This tutorial is sponsored by the Save Joseph campaign, a grassroots effort to find a good friend, stellar artist and all around amazing person a satisfying, creative job in the next 8 days. I know the Drupal community could use this kind of talent. Learn more about the effort at savejoseph.org. If you have any ideas on how I can get the word out about this, let me know!

My use case was that I wanted to be able to use social media icons for menu items so that we could re-arrage, add or remove items directly from the menu management interface:. The result is what you see below:

To use images for menu items in Drupal, the first step is to create an override theme function for theme_menu_item_link() in your theme's template.php file. The idea is to first run your image handling bit to switch out text for images, and then hand it over to the parent theme to do the rest. In my case, I'm using the Zen theme.

/**
 * Implements theme_menu_item_link()
 */
function yourtheme_menu_item_link($link) {
  // Allows for images as menu items. Just supply the path to the image as the title
  if (strpos($link['title'], '.png') !== false || strpos($link['title'], '.jpg') !== false || strpos($link['title'], '.gif') !== false) {
    $link['title'] = '<img alt="'. $link['description'] .'" title="'. $link['description'] .'" src="'. url($link['title']) .'" />';
    $link['localized_options']['html'] = TRUE;
  }
  return zen_menu_item_link($link); // Let Zen take over from here.
}

Be sure to change the yourtheme in the function to the name of your theme. Also note that this only checks for .png files. If you want to use a jpeg or a gif, you will need to modify the code slightly.

Next, clear the theme registry (CTFC).

Now, you can use image paths instead of text for the image, as seen below:

OCR-ed content: 
Edit menu item Menu settings Path: The path this menu item links to. This can be an internal Drupal path such as node/add or page. Menu link title: sites/ ll/themes/v 1/itnages/icon-socia l-Fb png The fink text corresponding to this item that should appear in the MENU ,//www TOKEN /pagei/edit/?id= 115780915101836#!. /page to. can an OBSTREPEROUSNESS sodal- Fb DO hltp://www 115780915 10 1836#7page Tfle ESME Gallery Illustration Blog About Events Contact NASA ca Slog Abe o w iLEyents (■'-It'1, OS

The campaign to find a kick-ass artist a job is on Twitter. Follow if you believe in the cause!

This tutorial is sponsored by the Save Joseph campaign, a grassroots effort to find a good friend, stellar artist and all around amazing person a satisfying, creative job in the next 9 days. I know the Drupal community could use this kind of talent. Learn more about the effort at savejoseph.org.

Views Slideshow is a nice module that leverages the jQuery Cycle plugin to create a highly-customizable, attractive slideshow. It comes with an option to display simple text controls to go forward or back through the slides. What I wanted was to customize this experience with images instead of the Previous and Next links.

The first step is create a view using Views Slideshow and enable the controls on the top of the slideshow. This is done via the Views style settings dialog:

Once this is set, you should see some links above the slideshow:

To turn these links into images, we first need to find a unique identifier for each one. Views Slideshow adds a unique ID, so we can use that. Here's what I see in Firebug when I inspect the element:

You can see there is a unique ID for each element. Now, all we need to do is set a number of styles for the link.

First, we need to set the background of the element to use our image:

background:url('images/left-button-on.png');

Next, we need to set the dimensions of the element to match our image, which is 71 pixels by 71 pixels. If we didn't have to worry about the text, we would just set the width and height. But, we need to hide the text, so we're going to set the height o 0, and the top padding to 71, which will bump the text out of view:

width:71px;
height:0px;
padding-top:71px;

If you refresh your page at this point, you'll still see some text:

This is because we need to explicitly set any the element to hide any content that's outside of it's bounds. We do so by defining the overflow property to hidden:

overflow:hidden;

Finally, I didn't want a pause button, so I set to not display:

display:none;

The final result looks like this:

By the way, the artwork you see is produced by Joseph Cowman, if you haven't seen his stuff, it's brilliant.

And the code, with some particular styles for what I needed, is this:

#views_slideshow_singleframe_prev_gallery-block_1, #views_slideshow_singleframe_next_gallery-block_1 {
  width:71px;
  height:0px;
  padding-top:71px;
  position:absolute;
  top:100px;
  overflow:hidden;
}
#views_slideshow_singleframe_prev_gallery-block_1 {
  background:url('images/left-button-on.png');
  left:0px;
}
#views_slideshow_singleframe_next_gallery-block_1 {
  background:url('images/right-button-on.png');
  right:0px;
}
#views_slideshow_singleframe_playpause_gallery-block_1 {
  display:none;
}
OCR-ed content: 
Controls Top Determine if controls for the slideshow (start/stop/next/previous) should appear, and if so whether they should appear before or after the slideshow. and SO sli J:sh- Jk MR *-ii iv iujj- .uui iun~ t_ui in wis&quot; Lup iitui iulk &lt;div id-Views_slideshow_singleframe_controls_gallery- DLock_l class- Views_slideshow_singleframe_controls views_slideshow_controls&quot; style-&quot;display BLOCK block_l&quot; views_slideshovi_previous&quot; href-&quot;# Previous block_l&quot; views_slideshov»_pause&quot; href-&quot;# Pause &lt;Za&gt; block_l&quot; views_slideshov»_next&quot; href-&quot;# V Next &lt;/c&gt; &lt;/div&gt; href href= DOS LUIZ AKA ID &quot;views slideshow singleframe prev gallery- block CLASS &quot; views Sl ideshow singlefrome previous VIEWS si ides how previous AKA id=&quot;views_ slideshow_ singleframe. playpause„ gallery- block III class &quot;vietvs slideshow singleframe PAUSE VIEWS si ides how pause AKA id= VIEWS slideshow. singleframe. NEXT gallery- block III class &quot; views slideshow singlefrome NEXT VIEWS ides how next&quot; href BIG lp&gt; s-11 vi avs_sl ingle romc_p rev us vi c*s_5 id us how_previ ou t.a bio ck.l11 las s-11 wi cws_sl ideshofl_si ngl ramc_pou sc clos vi ew_sl ideshow.si ngl romc_n cxt STYLE DISPLAY id=&quot; vi ews_sli deshow_singl ef r ame_ controls„gal lery- class- &quot;views si ideshow singLetrome controls vi ews_sl id eshow controls idU&quot; view s_sl idesho*_si ngl ef rame_cont rol s_gal ry- bio ck_l s-11 viaws_sl ideshorrsi ngl ramecont rols uiews_l eshow_cont rol iglef slideshoiv idehoiv_ PL Ldc'iC.pr OF Icr clcchon TOO lr- I -i Jos dechon WING Icr LIES single dechon £tiq GAS sinjlcT 0,0 wic.prc jo jsnc. lock. viCi.s_s&quot;L .dcfiho.Liii raric_playpflus jo vid.r.l.dcfiho&quot; lock. JAR ni- BTR SQUAT IF .tnsilft ls,? WWI ilk:. 4i&quot; t£t WILF FIG i &gt;a 1 1 BOOB LO GRAMP IS«H|tll TO HR H'.-xl LT. Previous

This tutorial is sponsored by the Save Joseph campaign, a grassroots effort to find a good friend and stellar artist a satisfying, creative job in the next 10 days. I know someone in the Drupal community could use this kind of talent. Learn more about the effort at savejoseph.org.

I have 10 days to find my friend a job, and as part of this effort, I wanted to create an image people could use on their web sites that would dynamically change each day. My first thought was that imagecache would be great for this, but there are two issues that make dynamic text in imagecache tricky:

  1. Imagecahce images are... well... cached. Once they're made, they don't get re-made until you flush the cache.
  2. Browsers cache images too, so even if the image was refreshed on the server, the client-side image wouldn't change from one day to the next.

I was able to work around these using a couple of interesting techniques. The end result is something that looks like this:

Before you start, you'll need to download the Imagecache Actions module to add the ability to overlay text on an image.

The first step was to create the background image. I created the image in Photoshop with an empty space where the countdown was supposed to go:

Next, I created a new imagecache preset to overlay text. It's down there at the bottom:

I changed the following settings:

  • Font size: 9
  • X-offset: center
  • Y-offset: top+40
  • HEX: #FFFFFF

And for the text, I checked the Evaluate text as PHP code box, and used the following code:

$interval = strtotime('August 5, 2010') - time();
$interval = ucwords(format_interval($interval, 2) . ' left');
return $interval;

August 5th is my deadline, and what this code does is use the awesome format_interval function to create a string based on a time difference in seconds. I've set the granularity to 2 so that right now it will say 1 Week, 2 Days but in a few days it will say 6 days, 4 hours.

Next, I uploaded the background picture to the theme directory of my site. Then, I used the imagecache theme function to load up the image with the overlay:

theme('imagecache', 'save_joseph_box', path_to_theme() . '/images/save-joseph.png');

Then, I put this in a page preprocessing function in template.php and assigned it to a variable that I could use in my theme. This is really temporary code so that I can copy the output, so it could have gone anywhere.

function jc_preprocess_page(&$vars, $node) {
  $vars['save_joseph'] = theme('imagecache', 'save_joseph_box', path_to_theme() . '/images/save-joseph.png';
}

Then, I just added a print statement in my page.tpl.php page so I could see the image. Embedding this in the page template temporarily allowed me to play with the imagecache settings until I got the font size and positioning right while seeing a preview:

  <?php print $save_joseph; ?>

Okay, now we have a functioning text overlay that at least is current as of this moment. But, tomorrow, the image will be out of date. So, we need to flush this imagechange to get a re-rendering of the image whenever the text changes. Here's the strategy I used:

  1. Set up a hook_cron function
  2. In the function, use the same code above to create a textual output of the date.
  3. Load a variable that has the last textual output saved (the first time, this will be blank)
  4. Check if the new time and the previous time are different
  5. If so, clear the iimagecache
  6. Save the new text string to the variable we used before

And here's the code to do it:

function common_misc_cron() {
  $interval = strtotime('August 5, 2010') - time();
  $interval = ucwords(format_interval($interval, 2) . ' left');
  $last_time = variable_get('jc_save_time', 0);
  if ($interval != $last_time) {
    imagecache_preset_flush(array('presetid' => 'save_joseph_box'));
    variable_set('jc_save_time', $interval);
  }
}

Now we'll have an up-to-date image all the time. Except that browsers will cache images for a while, so we need a way to make the browser think it's a unique image every time to pull it fresh from the server. The way we do this is by adding a dynamic query string to the end of the image URL that will change randomly on every page load.

My goal was to make it really easy to put this image on a web page, so I needed a way to bundle this dynamic-ness with the image. So, using PHP to generate this string was out of the question. The way do to it was to use JavaScript to add the query string to the src of the image tag:

<script type="text/javascript">document.getElementById("save_joseph").src = 
document.getElementById("save_joseph").src + "?unique=" + new Date().valueOf();</script>

For folks that can't use JavaScript (in Facebook and MySpace, for example), I also provided an image that just had the end date on it, so it could be static. Not as cool, but at least functional:

Finally, I added the script with the HTML image output, copied it, and put in in a blog entry so that people could copy and paste the code to use on their sites.

OCR-ed content: 
SAVE JOSEPH! Week Days Left Bea'hero. Save an artist. LEARN MORE Be her Be ITT BLOC SAVE JOSEPH! &quot;BelThero.T Save an arlisi. LEARN MORE VII Be her Be mckj nenaer iext cackii'ich ihl hoo static or aynamiL toaea; text lO an imgge using imageapi sext i_u-iiKe eueLis. Add Resize Resize an image to an exact set of dimensions, ignoring aspect ratio. Add Rotate Rotate an image. Add Rounded CORNERS This is tru cropping, not overlays, so the result can be transparent. Add Scale Resize an imac&quot;' maintaining the original aspect-ratio (only one value necessary). Add Scale And Cro' .esize an image while maintaining aspect ratio, MEN crop it to the specified dimensions. moo anarpen iharpen an image using unsharp masking. Add Text Add static or dynamic (coded) text to an image. AJJ .'jackoround) Choose the file image you wish to use as an background, and position the processed image on it. an an an can an one Cror an AN to an as an to on imlmqq '■■JfllfJl1.- rati' ■atio, [jii IMF ALL 1 Haul LOWE WI 1.1 Ij' iif -it .IT III' ,SLt= .it, os-.-iuswIuli is Jl MSll Ml Add SAVE JOSEPH! by August 5th! &quot;&quot;jBelThero. Save an artist. LEARN MORE an Sai/ean Be here [ill Be

The story

In 10 days, an amazingly talented artist and friend, Joseph Cowman, will be forced to choose between a full time position building false teeth factory-style for the financial security it will bring has family OR possibly lose his current part-time position, straining his family but opening up the possibility of spending more time on creative work.

I think there's a third choice, but it will require a grassroots effort to make happen. I'm certain that there are positions available out there that will allow someone as skilled as Joseph to practice art and be creative but still earn a good livelihood. So, I'm tapping into my network and cashing in favors to see if I can find Joseph a job where he can really flex his skills.

If you want to learn a bit more about Joseph, keep reading. Or, you could jump straight to how you can help. This a grassroots effort, and there's something YOU can do!

Links

A few examples of Joseph Cowman's work

A referral

Joseph is probably the most capable person I know, and I think the only two reasons he hasn't landed a fulfilling position is that 1) he lives in a small town, which makes networking in the art world difficult and time-consuming and 2) between work, family, and practicing his art, doesn't have much time to get his work out there. For years I (and most people who know Joseph) have felt like there's this huge talent going to waste, like the world is just a little lamer because Joseph is building teeth instead of really pushing the boundaries of what he can do.

Anyone who has ever hired Joseph has loved working with him, and from knowing him on a personal level, I can understand why. In addition to being able to pick up anything, figure it out and then push it beyond what most people would, he's incredibly patient and empathetic, making him sensitive to other people and what they need. It's an interesting combination, one I don't run across very often.

The dream job

After talking with Joseph for a bit to figure out what kind of position he's looking for, he said anything that would be artistically challenging that has good variation. He said doing character work or design for games would be perfect, and he's also capable of working in a variety of styles. The bottom line is that he wants to leverage his work time to help hone his craft and improve his skills as an artist. Challenge and variety are key.

Joseph has been building false teeth for the last 7 years, and I anticipate him really exploding into whatever work that he takes on next. If it's artistic, he's going to do a fantastic job because he'll be so enthusiastic about it.

How YOU can help

Here's what you can do to help:

  1. Follow the campaign on Twitter
  2. If you know of any job opportunities along these lines, send them to me or directly to Joseph through his web site.
  3. Pass this story on to anyone you know who might be able to help with this effort. Anyone in any art-related industry, artists, empathetic people, sneezers, anyone. This is grassroots, and every root counts.
  4. Tweet about the campaign, and re-tweet!
  5. Give us any ideas you have on how we can improve the campaign, techniques we can use, tactics we can exploit
  6. Add the image countdown code to pull in the countdown box you see below to your web site, MySpace or Facebook page.
  7. Add comments to this post about interesting things that you know Joseph has done, any praise, whatever. If you take a look at his art and like it, mention it.
  8. Refer us to any artists you know who might have ideas on how to break into the biz
  9. Add a small amount to the Save Joseph Bounty that will be be awarded to the individual that provides the lead that lands Joseph a job

The bounty

We're raising money for a bounty that will go to the individual that provides the lead that lands Joseph a job. You can help by contributing a small amount to the bounty using the widget below:

You can also add the widget to your site by using the code below:

<object width="250" height="250"><param name="movie" value="http://widget.chipin.com/widget/id/7bbef482d9a36166"></param><param name="allowScriptAccess" value="always"></param><param name="wmode" value="transparent"></param><param name="event_desc" value="Raising%20prize%20money%20for%20the%20individual%20that%20privides%20the%20lead%20that%20lands%20Jopseph%20a%20creative%20job.%20See%20http%3A//savejoseph.com%20for%20more%20details."></param><param name="color_scheme" value="red"></param><embed src="http://widget.chipin.com/widget/id/7bbef482d9a36166"; flashVars="event_desc=Raising%20prize%20money%20for%20the%20individual%20that%20privides%20the%20lead%20that%20lands%20Jopseph%20a%20creative%20job.%20See%20http%3A//savejoseph.com%20for%20more%20details.&color_scheme=red" type="application/x-shockwave-flash" allowScriptAccess="always" wmode="transparent" width="250" height="250"></embed></object>

The Save Joseph countdown box 

To add the countdown image below to your web site, use the following code:

<a href="http://savejoseph.org"><img id="save_joseph" title="" alt="" src="http://josephcowman.impliedbydesign.com/sites/josephcowman.impliedbydesign.com/files/imagecache/save_joseph_box/sites/josephcowman.impliedbydesign.com/themes/jc/images/save-joseph.png"></a>

<script type="text/javascript">document.getElementById("save_joseph").src = document.getElementById("save_joseph").src + "?unique=" + new Date().valueOf();</script>

Note that even though the image will work in sites like Facebook and MySpace, the little script that's added to it which refreshes the image regularly to reflect the countdown change won't work. In those cases, you can use the static image which doesn't use a countdown:

<a href="http://savejoseph.org"><img id="save_joseph" title="" alt="" src="http://josephcowman.impliedbydesign.com/sites/josephcowman.impliedbydesign.com/themes/jc/images/save-joseph-static.png"></a>

Some of the interesting things Joseph has done outside of fine art.

Joseph has focused a lot on his artwork the last several years, but his creative prowess extends in a lot of other directions. He's the kind of guy I am always telling other people about because the interesting things he's done. I'd like to get these a lot more coverage, and I'll add pictures as I get them, but here are just a few of the ones that have impressed me the most:

  • When I met Joseph, he was 17. One of the first things he did was show me a fully functioning robotic arm he had built entirely out of scrap wood, hypodermic needles and IV tubing. No metal, no batteries, the whole thing ran off of the hydraulic pressure between two needs hooked up with the tubing. It was one of the coolest things I had ever seen.
  • The next thing he showed me was a robotic hand, complete with 3 fingers and an opposable thumb, that connected to a glove you could put on your own hand to move the robot hand. It used bike cables as tendons. It was made out of a box of old random parts that his family had laying around. Also one of the coolest things I've seen.
  • Then, he showed me a graphics program he had programmed on his computer in order to create graphics for a video game he wanted to make. It was more functional than any of the graphics-oritented programs I had on my computer.
  • He built a series of didgeridoos out of driftwood with awesome artwork around it. He had to use a drill to hollow out the entire thing, using old tools. They're the prettiest didges I've ever seen.
  • Back in the day when cool looking Oakley sunglasses were beyond his ability to purchase, he and a friend made their own pairs from thick aluminum sheet metal and cut their own lenses. At the time, they were really impressive.
  • Every Halloween Joseph puts together a stellar costume. Stuff that could win prizes. Last year he built a realistic ogre head out of cardboard and vinyl. The year before, he built a costume that made him look like he was riding a dinosaur. It was really effective.
  • Joseph and his wife completely renovated their entire home. When you walk through the house you can see the creative touch, and it looks beautiful.
OCR-ed content: 
IRI Joseph Cowman WON TI 'CoprrigliiMO SI WILT vl CAP AAA Sol GIA AFD NWW IF TRY tut II rig FAY PAY LBS ft TIE IMF ISL.

It's my 6th day outsourcing, and I've assigned a few tasks and gotten responses. Here's a summary of the results:

Task 1: "Spend 30 minutes to an hour brainstorming any other ideas for increasing the number of readers to my blog"

This task was a good one because it brings up a good question: Is it worth outsourcing question that you can find decent answers for with a quick Google search

After 2 days, I was sent a report that includes 26 ideas with headings and short paragraphs. No sources were sited, so I did a search on a few sentences from the report to see if I could find them. The result was a compilation of 2 articles that show up near the top of Google for a search for Ways to increase blog readership. I actually ended up liking the article at the top a little better, an article not referenced in the report.

To complete this same task myself took me a couple minutes, and I found results that were better suited to where I am.

Would it have been worth it to clarify the task, and give some background about who I am, about what I know already? What would I say? What bits of knowledge that would give someone else the ability to predict what kind of information I would have appreciated for this particular task? I'm not sure I know. My guess is that attempting to articulate it would have taken longer than completing the task myself.

Task 2: Trip ideas to Canada

My wife and I want to hone our Canadian accents but we don't really know Canada, and my wife's extensive searches online weren't turning up any compelling results. I decided that maybe having someone else narrow down some choices could help. So, I sent this to my VA:

I need to plan a trip with my wife in mid-August, leaving a Friday morning and returning a Monday evening. We would like to go somewhere in Canada, but have a limited budget. We'd like to find a few options of places that aren't too expensive to travel to, but that are nice, ideally on the coast. Can you come up with 4 or 5 ideas for places that meet this criteria with the least expensive cost of a plane trip from Boise, Idaho? When you send me details, please send links to the airfairs online as well as any information you gathered about the locations.

I got a report back 12 hours later (not bad) with a list of 7 different places in Canada, with screenshots of possible Orbitz flight itineraries for each one. Tickets were understandably a little high (up to $600 per person), but what got me was that several of the destinations were 400km from the nearest airport. How can this person be so disconnected from the task that they don't recognize that two 8 hour plane trips plus two 8 hour drives aren't practical for a 4 day vacation?

Was my fault that I was not specific enough? Or that I haven't established enough of a relationship yet with these folks to have them care enough about the tasks that they apply a certain level of reasoning to them?

Or, is an 8 year old kid in some VA sweatshop performing these tasks?

Now, this company got great reviews on Elance, with lots of feedback, so I know that they're capable of good stuff. It's just a matter of figuring out how to get that good stuff.

The state-side VA

I hired a state-side VA, but she is on a family vacation until Friday. It makes me realize that if I become dependent on a VA, I would need backup if I went with a single person.

Summary of emotional state

So far, this hasn't been a superb experience, but I also know that I'm still learning the ropes. I recognize that part of this might be that I just am not coming up with the right kind of task. But, they're tasks that were intended to build my confidence in the process so that I could leap in with more important stuff.

Another issue is that I wonder if my current life structure is possibly not suited for outsourcing. I've simplified what I do down to a handful of areas that are all things that I want to be doing. What I do for work I want to do myself. At home, the only things I would want to outsource are the dishes, laundry and mowing, all tricky tasks for a VA. Research seems like the only thing that comes to mind, and so far it looks like Google will give me better, more varied answers. I have a finely tuned set of tools for managing information and reminders, so I don't need someone to keep me abreast of what's coming down the pikes.

Now that I'm looking at it from this angle, my life is actually really simple. Almost anything that's on my list of things to do are things that I actually want to do because of the experience. That, or it's home repair and maintenance. If I was running a multi-person company, if I was doing extensive research on some subject, if I had a flood of e-mails to deal with, I could see the value of a VA. But what can I outsource right now and get a positive net gain?

One thought is that by knowing I have a VA waiting in the wings, maybe I will be more willing to take on things that would normally add complexity to my life, things that would be perfect for a VA.

I'm going to hang in there for a while and give myself time to really internalize the idea of relying on a VA. If the tasks are little banal, I think that's okay because I'm practicing and the hope is that eventually I would learn how to offload more significant tasks.

Syndicate content