Maximizing Passion in your Career/Business

Many of us are passionate fans in one or more areas of our non-work lives but few of us have managed to make a career out of a beloved hobby. There’s a new book out called Fan to Pro: Unlocking Career Insights With Your Hobbies that attempts to leverage our passionate interests for both self-insight and actual money-making career development. I bought the eBook yesterday for $5.95 and am several chapters into it already – reading in iBooks on my iPhone and iPad.

This is a great read for any independent knowledge professional. The author, Steven Savage, argues that we should take our hobbies more seriously. Our passionate hobbies tell us about ourselves. They point to a source of energy and self-motivation that would serve us well in our career efforts if channeled there and not kept on the sidelines.

Savage is a technology enthusiast in the extreme. He is and has been making his living in his field of choice for quite some time now. He believes that too many of us regard our passionate interests as too much fun to be something we can do for a living. The book is really well-done and reflects a multi-year effort.

As industries and job categories sink or swim in today’s unruly economy, many of us are in an inquiry about the direction of our careers. If you can’t be sure how viable a particular career path may be in an unpredictable future, make sure that your chosen path reflects your abilities, interests and values since that is something you can figure out. Then, boldly go forth seeking your way armed with self-knowledge.

Fan to Pro comes to grips with the complexities of career choice. Savage helps you look at your strengths, the obstacles you might face in converting your passion into a career and the hard work you will be in for. He doesn’t gloss over the challenges. That’s what makes this book different from the dozens of career and business books that just tell you what you want to hear.

Thanks to Innowen at DIY Planner for reviewing Fan to Pro. Good find!

Related Post: Discover Your Strengths and Supercharge Your Business, CopyBlogger

Starting a WordPress 3 Blog from Scratch, Part 3

More Links in the Sidebar. Since my last post (Part 2), I’ve added more good links to my sidebar. I’ve used the Link widget that comes standard with WordPress 3 and dragged it in several times with different titles. Each link group shows all the links I’ve assigned to a particular link category. You’ll find link categories in the WordPress dashboard under Links. By default all of the links you create get assigned to the link category blogroll.

Appearance / Background. I experimented briefly with the Twenty Ten Background option under Appearance in the dashboard. I selected a shade of red from the color wheel. This was pretty random but I liked it. It can be hard to be objective about your own style choices. I will be trying lots of different color options to see how well this red holds up to the competition.

Customizing the Theme. I’ve been researching the subject of modifying styles in the Twenty Ten theme and found some really good information. The WP-recommended way to change styles is with a child theme.

Child Themes. A child theme uses a reference line to take all the style information from its parent theme as its starting point. Then any additions to the child theme are overrides to the parent theme. This way, when the parent theme is replaced with a newer version, your customizations, safely stashed in the child theme, aren’t overwritten.  There’s a detailed tutorial on creating child themes at op111.net.

Child Theme-Makers. Bruce Wampler has created a child theme-maker called WordPress Weaver and a version specifically for the Twenty Ten theme called Twenty Ten Weaver. These are donationware offerings. Weaver child theme-makers show up in your dashboard with checkboxes and such. They allow you to make style adjustments to your wordpress site without having to write any CSS code yourself.

I’m on the verge of installing Twenty Ten Weaver myself even though I’ve done lots of CSS work over the last 15 years. The advantage is that clicking checkboxes is faster than writing code. You can quickly try different options in the brainstorming phase and then undo a change by unchecking a checkbox.

Creating My Own Child Theme. I haven’t installed and tried Twenty Ten Weaver yet but I wanted to try a child theme. In my first experiment, I used the Otto on WordPress blog post that walks you through creating a really minimal child theme for your Twenty Ten themed blog. It just changes 1 style: the color of the title for your blog posts from black to green. In the example below, I use a dark red for the heading color and green for code.

Example. You create a new folder in your themes folder with a new text file called styles.css. And enter an @import url reference to tell wordpress to use the twentyten theme as a starting point (parent theme) then override the parent style info with anything you add in your child theme style.css file. Here’s what my child theme style.css file I called jt2010 looks like:

/*Theme Name: jt2010
Template: twentyten
Author: Janet Tokerud*/

@import url('../twentyten/style.css');
#content h2.entry-title a {color: #A81A16;}
code {color: #087F11;}

I’m stoked. Between the excellent tutorial resources I’ve identified above plus the weavers Bruce Wampler has created for us, I’m looking forward to quickly getting my blog styles the way I want. By the time you read this, I hope to have a few more tweaks in place.

Thirty Ten. There’s a child theme for Twenty Ten called Thirty Ten that gives you three columns in case you are interested. The post called Thirty Ten Three Ways gives you the choice to have the content on the left or right with two columns beside.

Update Sep 12: I downloaded and activated the Twenty Ten Weaver theme and got a really large list of style options with checkboxes in a new Twenty Ten Weaver menu under Appearance/Themes in my dashboard. The list is a little overwhelming at first glance but pretty easy to work with anyway. I found it easy to try out many different options to see what I would get. After experimenting I went back to my JT2010 child theme and am playing with that today.