<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Lisa Sabin-Wilson</title>
	
	<link>http://justagirlintheworld.com</link>
	<description>design..life..culture..whatever... a mishmash blog about my personal bits and goings on in my life, and sometime posts about design of the web kind.</description>
	<pubDate>Wed, 12 Nov 2008 07:13:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
	<image><link>http://justagirlintheworld.com</link><url>http://justagirlintheworld.com/lisa-feedburner.png</url><title>Lisa Sabin-Wilson - RSS Feed</title></image>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Lisas-Blog" type="application/rss+xml" /><feedburner:emailServiceId>592111</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>post_class(); … Take advantage of the new “Sticky Post” feature in WordPress 2.7</title>
		<link>http://feeds.feedburner.com/~r/Lisas-Blog/~3/450379537/</link>
		<comments>http://justagirlintheworld.com/take-advantage-of-the-new-sticky-post-feature-in-wordpress-27/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 06:52:18 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
		
		<category><![CDATA[Blog Design]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[Wordpress Themes]]></category>

		<category><![CDATA[sticky post]]></category>

		<category><![CDATA[wordpress 2.7]]></category>

		<guid isPermaLink="false">http://justagirlintheworld.com/?p=2033</guid>
		<description><![CDATA[Of the many excellent new features coming in WordPress 2.7, some are applauding the arrival of sticky posts.
First - what are they?  Sticky posts are posts that you can &#8220;stick&#8221; to your front page.  For instance, if you have a post that you published a year ago and would like to republish it [...]]]></description>
			<content:encoded><![CDATA[<p>Of the many excellent new features coming in WordPress 2.7, some are applauding the arrival of sticky posts.</p>
<p>First - what are they?  Sticky posts are posts that you can &#8220;stick&#8221; to your front page.  For instance, if you have a post that you published a year ago and would like to republish it to the front page of your site for a time - you can edit that post and select &#8220;<em>Stick this post to the front page</em>&#8221; in the Edit Post page in your WordPress admin panel.  Just doing that will stick it to your front page, ahead of all the other posts on your site.</p>
<p>You can use CSS to style those sticky posts, as well.  All you need is this markup:</p>
<p><code>&lt;div &lt;?php post_class() ?&gt; id="post-&lt;?php the_ID(); ?&gt;"&gt;</code></p>
<p>That will insert a class=&#8221;sticky&#8221; above your post and you can use CSS to style .sticky.  Cool, eh?</p>
<p>More?  Yes, there is more.  That same tag will insert special classes for your categories and tags, as well.  An example??  I&#8217;m glad you asked!  Hypothetically, I have a <strong>sticky </strong>post that I&#8217;ve filed in the <strong>Misc </strong>category and tagged with <strong>News</strong>, <strong>WordPress </strong>and <strong>Markup</strong>.  With me so far?  With all of that, plus the post_class(); tag in my template - my source code for that particular post looks like this:</p>
<p><code>&lt;div class="post sticky hentry category-misc tag-news tag-wordpress tag-markup" id="post-ID"&gt;</code></p>
<p>Now, I can use CSS to create special styles for the following classes:<br />
 - .post<br />
 - .hentry<br />
 - .sticky<br />
 - .category-misc<br />
 - .tag-news<br />
 - .tag-wordpress<br />
 - .tag-markup</p>
<p>As an example, the code in your index template (and/or single/archive templates) may look like this:</p>
<p><code>&lt;?php if (have_posts()) : ?&gt;</code><br />
<code>&lt;?php while (have_posts()) : the_post(); ?&gt;</code><br />
<code>&lt;div &lt;?php post_class() ?&gt; id="post-&lt;?php the_ID(); ?&gt;"&gt;</code><br />
<code>&lt;h3 class="title"&gt;&lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Article about: &lt;?php the_title(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h3&gt;</code><br />
<code>&lt;?php the_content('&lt;span class="more-link"&gt;'.__('Read More &amp;raquo;').'&lt;/span&gt;'); ?&gt;</code><br />
<code>&lt;/div&gt;</code><br />
<code>&lt;?php endwhile; else: ?&gt;</code><br />
<code>&lt;?php _e('Sorry, no posts matched your criteria.'); ?&gt;</code><br />
<code>&lt;?php endif; ?&gt;</code></p>
<p>I forsee lots of people having lots of fun with this!  I am doing some custom work for some clients  2.7 (beta) right now, with the intention to launch them once 2.7-final is released.   I&#8217;m having good fun working with the new post_class(); tag and the new features of sticky posts, threaded and paged comments.  I&#8217;m excited for WordPress to release 2.7-final into the wild!</p>
<hr />
<small>
<p><a href="http://justagirlintheworld.com/take-advantage-of-the-new-sticky-post-feature-in-wordpress-27/">Permalink</a> | <a href="http://justagirlintheworld.com/take-advantage-of-the-new-sticky-post-feature-in-wordpress-27/#comments">5 comments</a> </p>
<p><small>&copy; Lisa; author: <a href="http://tinyurl.com/2448c6">WordPress For Dummies</a></p>
<p><a href="http://ewebscapes.com/browse/design-portfolio">Design Portfolio</a> | <a href="http://ewebscapes.com/designblog">Design Blog</a> | <a href="http://ewebscapes.com/order">Request a custom design here!</a> | <a href="http://justagirlintheworld.com">Lisas Personal Blog</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under Blog Design,  CSS,  Design,  WordPress,  Wordpress Themes</p>
<p><a href="http://feeds.feedburner.com/~a/Lisas-Blog?a=bKwQze"><img src="http://feeds.feedburner.com/~a/Lisas-Blog?i=bKwQze" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Lisas-Blog/~4/450379537" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://justagirlintheworld.com/take-advantage-of-the-new-sticky-post-feature-in-wordpress-27/feed/</wfw:commentRss>
		<feedburner:origLink>http://justagirlintheworld.com/take-advantage-of-the-new-sticky-post-feature-in-wordpress-27/</feedburner:origLink></item>
		<item>
		<title>Update for WordPress For Dummies, Second Edition</title>
		<link>http://feeds.feedburner.com/~r/Lisas-Blog/~3/446141786/</link>
		<comments>http://justagirlintheworld.com/update-for-wordpress-for-dummies-second-edition/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 03:44:22 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[Wordpress For Dummies]]></category>

		<guid isPermaLink="false">http://justagirlintheworld.com/?p=2027</guid>
		<description><![CDATA[
I&#8217;m getting LOTS and lots of e-mail about WordPress For Dummies, Second Edition.  I&#8217;m really excited to see so much anticipation about it - - mostly because I&#8217;m super excited about the book.  But when is it coming out??  Originally, I had announced it was being released in Fall &#8216;08.  Amazon [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://justagirlintheworld.com/wp-content/uploads/2008/11/wp4dcover-300x145.jpg" alt="" title="wordpress for dummies" width="300" height="145" class="aligncenter size-medium wp-image-2028" /><br />
I&#8217;m getting LOTS and lots of e-mail about WordPress For Dummies, Second Edition.  I&#8217;m really excited to see so much anticipation about it - - mostly because I&#8217;m super excited about the book.  But when is it coming out??  Originally, I had announced it was being released in Fall &#8216;08.  <a href="http://www.amazon.com/WordPress-Dummies-Computer-Tech/dp/0470402962/ref=pd_bbs_sr_2?ie=UTF8&#038;s=books&#038;qid=1226115054&#038;sr=8-2">Amazon says November 2008</a> and so does Barnes and Noble.  So, when is it really?</p>
<p>The publish date for the book has been pushed back to December 2008.   We&#8217;re not intentionally dragging our feet with it.  The book is actually written, and I submitted 100% of the content in mid-October.  And then?  I had a peek at WordPress 2.7 and had a mini-heart attack!  haha <img src='http://justagirlintheworld.com/smilies/yahoo_smiley.gif' alt='&#58;&#41;' class='wp-smiley' width='18' height='18' title='&#58;&#41;' /></p>
<p>Seriously, when I looked at WordPress 2.7 and started installing the pre-pre-beta updates via SVN, I realized that the Second Edition simply could not be published in it&#8217;s current state.  I wrote to my editor and told her that it didn&#8217;t make sense to publish a 2.6 book in a 2.7 world.  She agreed and we decided to push the publish date off until December.  I&#8217;m really excited about the new development that WordPress is putting out with the 2.7 release - I think you will be too!</p>
<p>At the time of this post, the book is roughly 80% *<em>there</em>*.  I&#8217;m just waiting for the 2.7 dashboard design to hit its final iteration so I can include all necessary screencaps and such.  Can I take a moment and gush about how fantasticaly helpful the <a href="http://automattic.com">Automattic</a> team has been - particularly Jane Wells, whose updates I find in my e-mail to be invaluable.  Jane, I cannot say thank you enough for keeping me in the loop.  (haha - - the LOOP - - get it?) <a href="http://txfx.net">Mark Jaquith</a>, as well - has been a gem, as always.  He lets me bug him with little things and he&#8217;s always prompt with a helpful response.  Thank you, Mark!</p>
<p>Throughout this entire project, since the beginning of the First Edition to wrapping up the Second Edition, my team at <a href="http://wiley.com">Wiley Publishing</a> has been fully committed to making absolute sure that WordPress For Dummies is as up to date as humanly possible.  Deciding to push the publish date back on the book probably wasn&#8217;t an easy decision to make from a publishing standpoint - - but I had no doubt they would, and they did!  Let me tell you - keeping up with WordPress development in print is NO small task!</p>
<p>Also, thanks for everyone who has emailed and have left messages on my blog, <a href="http://twitter.com/lisasabinwilson">Twitter</a>, <a href="http://profile.to/lisasabin-wilson/">Facebook</a>, <a href="http://www.amazon.com/gp/blog/A3AE2ZMKFWL8WW/ref=cm_blog_blog">Amazon blog</a> and <a href="http://www.linkedin.com/in/lisasabinwilson">Linked</a> in accounts.  </p>
<p>For those interested - I will be appearing on <a href="http://www.jeffro2pt0.com">Jeff&#8217;s</a> <a href="http://www.jeffro2pt0.com/wordpress-weekly">WordPress Weekly</a> internet radio program on November 28th and will be discussing the book and the great new changes coming with 2.7.</p>
<p>Hang tight - we&#8217;re almost there!</p>
<hr />
<small>
<p><a href="http://justagirlintheworld.com/update-for-wordpress-for-dummies-second-edition/">Permalink</a> | <a href="http://justagirlintheworld.com/update-for-wordpress-for-dummies-second-edition/#comments">10 comments</a> </p>
<p><small>&copy; Lisa; author: <a href="http://tinyurl.com/2448c6">WordPress For Dummies</a></p>
<p><a href="http://ewebscapes.com/browse/design-portfolio">Design Portfolio</a> | <a href="http://ewebscapes.com/designblog">Design Blog</a> | <a href="http://ewebscapes.com/order">Request a custom design here!</a> | <a href="http://justagirlintheworld.com">Lisas Personal Blog</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under WordPress,  Wordpress For Dummies</p>
<p><a href="http://feeds.feedburner.com/~a/Lisas-Blog?a=ja76tX"><img src="http://feeds.feedburner.com/~a/Lisas-Blog?i=ja76tX" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Lisas-Blog/~4/446141786" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://justagirlintheworld.com/update-for-wordpress-for-dummies-second-edition/feed/</wfw:commentRss>
		<feedburner:origLink>http://justagirlintheworld.com/update-for-wordpress-for-dummies-second-edition/</feedburner:origLink></item>
		<item>
		<title>Obsession</title>
		<link>http://feeds.feedburner.com/~r/Lisas-Blog/~3/444262937/</link>
		<comments>http://justagirlintheworld.com/obsession/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 11:08:46 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
		
		<category><![CDATA[Current Events]]></category>

		<category><![CDATA[Barack Obama]]></category>

		<category><![CDATA[obama]]></category>

		<category><![CDATA[Politics]]></category>

		<category><![CDATA[Presidential Elections]]></category>

		<guid isPermaLink="false">http://justagirlintheworld.com/?p=2025</guid>
		<description><![CDATA[Overall, I&#8217;m glad it&#8217;s finally over.  Congrats to Obama and his supporters.  Sympathies to McCain and his supporters.
This is via The Onion - enjoy:
Obama Win Causes Obsessive Supporters To Realize How Empty Their Lives Are


Permalink &#124; 4 comments 
&#169; Lisa; author: WordPress For Dummies
Design Portfolio &#124; Design Blog &#124; Request a custom design [...]]]></description>
			<content:encoded><![CDATA[<p>Overall, I&#8217;m glad it&#8217;s finally over.  Congrats to Obama and his supporters.  Sympathies to McCain and his supporters.<br />
This is via <a href="http://www.theonion.com/content/video/obama_win_causes_obsessive">The Onion</a> - enjoy:</p>
<div align="center"><embed src="http://www.theonion.com/content/themes/common/assets/videoplayer2/flvplayer.swf" type="application/x-shockwave-flash" allowScriptAccess="always" wmode="transparent" width="400" height="355" flashvars="file=http://www.theonion.com/content/xml/89632/video&#038;autostart=false&#038;image=http://www.theonion.com/content/files/images/NOTHING_TO_TALK_ABOUT_article.jpg&#038;bufferlength=3&#038;embedded=true&#038;title=Obama%20Win%20Causes%20Obsessive%20Supporters%20To%20Realize%20How%20Empty%20Their%20Lives%20Are"></embed><br /><a href="http://www.theonion.com/content/video/obama_win_causes_obsessive?utm_source=embedded_video">Obama Win Causes Obsessive Supporters To Realize How Empty Their Lives Are</a></div>
<hr />
<small>
<p><a href="http://justagirlintheworld.com/obsession/">Permalink</a> | <a href="http://justagirlintheworld.com/obsession/#comments">4 comments</a> </p>
<p><small>&copy; Lisa; author: <a href="http://tinyurl.com/2448c6">WordPress For Dummies</a></p>
<p><a href="http://ewebscapes.com/browse/design-portfolio">Design Portfolio</a> | <a href="http://ewebscapes.com/designblog">Design Blog</a> | <a href="http://ewebscapes.com/order">Request a custom design here!</a> | <a href="http://justagirlintheworld.com">Lisas Personal Blog</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under Current Events</p>
<p><a href="http://feeds.feedburner.com/~a/Lisas-Blog?a=zQHluz"><img src="http://feeds.feedburner.com/~a/Lisas-Blog?i=zQHluz" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Lisas-Blog/~4/444262937" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://justagirlintheworld.com/obsession/feed/</wfw:commentRss>
		<feedburner:origLink>http://justagirlintheworld.com/obsession/</feedburner:origLink></item>
		<item>
		<title>Happy Halloween, Weenies.</title>
		<link>http://feeds.feedburner.com/~r/Lisas-Blog/~3/438276193/</link>
		<comments>http://justagirlintheworld.com/happy-halloween-weenies/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 17:52:09 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
		
		<category><![CDATA[Family/Friends]]></category>

		<category><![CDATA[Halloween]]></category>

		<category><![CDATA[Horoscope]]></category>

		<category><![CDATA[Taurus]]></category>

		<guid isPermaLink="false">http://justagirlintheworld.com/?p=2021</guid>
		<description><![CDATA[Halloween is not a &#8220;holiday&#8221; around here.  Not for any religious reasons or other moral convictions; truth be told - my kids are way past Trick O&#8217; Treating age and we live way too far outside city limits for any parent to drag their kid to our doorstep for candy treats.  Seriously, the [...]]]></description>
			<content:encoded><![CDATA[<p>Halloween is not a &#8220;holiday&#8221; around here.  Not for any religious reasons or other moral convictions; truth be told - my kids are way past Trick O&#8217; Treating age and we live way too far outside city limits for any parent to drag their kid to our doorstep for candy treats.  Seriously, the middle of nowhere.  So for those of you who celebrate - enjoy!  Be safe with your Trick O&#8217; Treating and take the candy into be examined before you eat it - lots of local hospitals offer free Candy X-Ray services on Halloween.  Our does!</p>
<p>My friend Carol, <a href="http://justagirlintheworld.com/i-had-to-google-you-lisa/">who I&#8217;ve written about in the past</a> - sent me a personal Halloween message today.  I can&#8217;t say enough about Carol.. she has this uncanny ability to pop into my life and say the right things, at the right time and it&#8217;s (usually) what I need to hear, whether I like it or not.  This time around, she sent my horoscope for today - I&#8217;m a Tarurus:</p>
<p><img src="http://justagirlintheworld.com/wp-content/uploads/2008/10/tarot0.jpg" alt="" title="Tarot Card, Horoscope Taurus" width="136" height="195" class="alignleft size-full wp-image-2022" />You don&#8217;t have to be anything you don&#8217;t want to be, Taurus. Please read that last sentence again, drinking it in as if it were an elixir you&#8217;ve been longing for since you were 13 years old. Here are some corollaries: You don&#8217;t have to live up to anyone&#8217;s expectations. There&#8217;s no need to strive for a kind of perfection that&#8217;s not very interesting to you. You don&#8217;t have to believe in ideas that make you sad or tormented, and you don&#8217;t have to feel emotions that others try to manipulate you into feeling. In short, you are free to be exactly who you want to be. Celebrate that this Halloween season. Costume yourself as the person you&#8217;ve been hiding.
<div class="clear"></div>
<p>Amen to that, my friend.</p>
<p>She also sent me an update on a mutual friend of ours who recently became a grandmother - - and shortly after that happy news, heard the news that her new granddaughter, who is only 18 months old, pushed the screen out of their second story window on a warm October day and fell out.  She&#8217;s in the ICU at the moment and they are hoping she&#8217;s able to come home for Thanksgiving.</p>
<p>Small, insignificant little life problems I may think are important over here just kind of paled when I heard the news.  My heart aches for her and her family.  The good news is.. sounds like the little trooper will live to tell the tale.</p>
<p>Hug &#8216;em tight - that&#8217;s all I have to say!</p>
<hr />
<small>
<p><a href="http://justagirlintheworld.com/happy-halloween-weenies/">Permalink</a> | <a href="http://justagirlintheworld.com/happy-halloween-weenies/#comments">2 comments</a> </p>
<p><small>&copy; Lisa; author: <a href="http://tinyurl.com/2448c6">WordPress For Dummies</a></p>
<p><a href="http://ewebscapes.com/browse/design-portfolio">Design Portfolio</a> | <a href="http://ewebscapes.com/designblog">Design Blog</a> | <a href="http://ewebscapes.com/order">Request a custom design here!</a> | <a href="http://justagirlintheworld.com">Lisas Personal Blog</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under Family/Friends</p>
<p><a href="http://feeds.feedburner.com/~a/Lisas-Blog?a=5BH72Q"><img src="http://feeds.feedburner.com/~a/Lisas-Blog?i=5BH72Q" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Lisas-Blog/~4/438276193" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://justagirlintheworld.com/happy-halloween-weenies/feed/</wfw:commentRss>
		<feedburner:origLink>http://justagirlintheworld.com/happy-halloween-weenies/</feedburner:origLink></item>
		<item>
		<title>I love Wells Fargo</title>
		<link>http://feeds.feedburner.com/~r/Lisas-Blog/~3/426669781/</link>
		<comments>http://justagirlintheworld.com/i-love-wells-fargo/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 18:22:01 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
		
		<category><![CDATA[Self Employment]]></category>

		<category><![CDATA[That's Life]]></category>

		<category><![CDATA[Banking]]></category>

		<category><![CDATA[Identity Theft]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[Wells Fargo]]></category>

		<guid isPermaLink="false">http://justagirlintheworld.com/?p=2017</guid>
		<description><![CDATA[It&#8217;s Monday - start of a new business week.  I started out getting myself organized for the week, and was doing pretty good.  That is, until I visited the website of my favorite paper supplier to purchase more paper stock for some upcoming print work I need to get done.  I went [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s Monday - start of a new business week.  I started out getting myself organized for the week, and was doing pretty good.  That is, until I visited the website of my favorite paper supplier to purchase more paper stock for some upcoming print work I need to get done.  I went through their process of ordering - and then hit the checkout.  I figured, in a few minutes, I&#8217;d have ordered what I needed - - and then check that off my list so I could move on to the next order of business for the day.</p>
<p>That is - until my card, which is tied to my bank account, was declined.  Don&#8217;t you hate that feeling?  Though, I have to say - it&#8217;s much better to have that happen when shopping online, rather than standing in line at the local grocery when there are 20 people waiting in line behind you.  Either way, though, it really bites.  Problem is. . I know what my balance is in that account, so I knew it wasn&#8217;t a balance issue.  It had to be something else.  I tried the checkout again - making sure I typed all the numbers and information in correctly this time and hit Submit.</p>
<p>Declined.  Thanks for playing . . .</p>
<p>I immediately got on the phone with a rep. from Wells Fargo to find out what was going on.  They pulled up my account and told me that there have been at least 50 transactions on that card - - all originating from France.  All 50 of those transactions were for $0.03 (3 cents).  The rep. said that whenever they see transactions like that - - they assume that someone has gotten ahold of my card and are trying different security codes until they find the one that works.  Except, Wells Fargo shut down the card after the very FIRST 3 cent transaction from France.  They didn&#8217;t wait for a second one - - they figured I would call when I found that I was unable to use my card.</p>
<p>Call, I did.  Within 5 minutes - the card was cancelled and they are issuing me a new one that I should have in 4-5 days.  While having to change all of my accounts that use that card will be a pain in the butt - - I am forever grateful that Wells Fargo is so tight with their banking security.</p>
<p>This isn&#8217;t the first time I&#8217;ve had that card shut down.  The first time was in 2006 when Chris and I were in New York - the week of our wedding.  I was using that card to pay for the caterer, tuxedo rentals, wedding cake and other various odds and ends.  Because the amount of the purchases were so high, originating from a state I don&#8217;t normally use the card in - - it triggered Wells Fargo&#8217;s security and they suspended the card.  A quick phone call to them was all it took to release it.  It happened again when were were out of the country (in Bonaire) on our honeymoon&#8230;because the purchases were originating from outside the US - again, it triggered the security and the card got suspended.</p>
<p>Now, in those last two cases - I will admit it was really a pain.  Especially during the week of wedding preparation - - we were on very limited time to get ready for the wedding, and running around New York City trying to get everything done wasn&#8217;t very easy.  So, to have my card declined at the bakery when I had a meeting with the caterer in less than 20 minutes across town&#8230;.yea, pain in the butt!</p>
<p>However - I would much, much rather Wells Fargo have a very tight secure system.  I would much rather they err on the side of caution each and every single time there is a question - - rather than to find out that my account has been drained by some lowlife.</p>
<p>So - thank you, Wells Fargo.  Happy Monday!</p>
<hr />
<small>
<p><a href="http://justagirlintheworld.com/i-love-wells-fargo/">Permalink</a> | <a href="http://justagirlintheworld.com/i-love-wells-fargo/#comments">4 comments</a> </p>
<p><small>&copy; Lisa; author: <a href="http://tinyurl.com/2448c6">WordPress For Dummies</a></p>
<p><a href="http://ewebscapes.com/browse/design-portfolio">Design Portfolio</a> | <a href="http://ewebscapes.com/designblog">Design Blog</a> | <a href="http://ewebscapes.com/order">Request a custom design here!</a> | <a href="http://justagirlintheworld.com">Lisas Personal Blog</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under Self Employment,  That's Life</p>
<p><a href="http://feeds.feedburner.com/~a/Lisas-Blog?a=bhIKl0"><img src="http://feeds.feedburner.com/~a/Lisas-Blog?i=bhIKl0" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Lisas-Blog/~4/426669781" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://justagirlintheworld.com/i-love-wells-fargo/feed/</wfw:commentRss>
		<feedburner:origLink>http://justagirlintheworld.com/i-love-wells-fargo/</feedburner:origLink></item>
		<item>
		<title>I have a problem that needs fixin’ - can you help?</title>
		<link>http://feeds.feedburner.com/~r/Lisas-Blog/~3/416266204/</link>
		<comments>http://justagirlintheworld.com/i-have-a-problem-that-needs-fixin-can-you-help/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 00:27:22 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
		
		<category><![CDATA[That's Life]]></category>

		<category><![CDATA[ADD]]></category>

		<category><![CDATA[distraction]]></category>

		<category><![CDATA[Time Management]]></category>

		<guid isPermaLink="false">http://justagirlintheworld.com/?p=2013</guid>
		<description><![CDATA[I hate, hate, hate the term &#8216;multitasking&#8217;.  I can&#8217;t tell you why I hate it - it just doesn&#8217;t sit well with me.  When someone tells me that they are multitasking - I get the impression that they aren&#8217;t really paying 100% attention to one particular task - - but, rather, some attention [...]]]></description>
			<content:encoded><![CDATA[<p>I hate, hate, hate the term &#8216;multitasking&#8217;.  I can&#8217;t tell you why I hate it - it just doesn&#8217;t sit well with me.  When someone tells me that they are multitasking - I get the impression that they aren&#8217;t really paying 100% attention to one particular task - - but, rather, <em>some</em> attention to several tasks.  If that person happens to be performing a task for me - I feel like my task is maybe getting 60-80% of their attention, instead of 100%.  If I&#8217;m a client who has paid this person to perform this task - then I get increasingly irked because if I paid for it, then I want 100% of your attention.  Am I wrong here?<img src="http://justagirlintheworld.com/wp-content/uploads/2008/10/timeflies.jpg" alt="" title="Time Flies" width="240" height="183" class="alignleftnostyle size-full wp-image-2014" /></p>
<p>That being said - I multitask.  Who doesn&#8217;t, really?  Can we really get anything done in a day without some of our attentions spread out across several areas?</p>
<p>I do more than multitask, however - and here is where I think that perhaps some of you have some advice that could help me.  Maybe some of you have the same issue and have found ways that help you deal with the problem - and you are neighborly enough to share your wisdom with me.  It&#8217;s the change season, after all, isn&#8217;t it?  Time for a change.  Ready for a change. That kind of thing?  Well, I&#8217;m all about recognizing some of my more troublesome character traits and habits and trying to <em>change</em>.</p>
<p>Here&#8217;s the deal - yes, I multitask.  More than that - I get distracted very easily.  Not in ways you would think.  Social media outlets like <a href="http://twitter.com/home">Twitter</a>, <a href="http://plurk.com">Plurk</a>, <a href="http://facebook.com">Facebook</a> and the like don&#8217;t distract me much at all.  I love using those tools - and wish I had the time to use them more!  But I do know where my priorities are - so if you see me <a href="http://twitter.com/LisaSabinWilson">Twittering</a> - it&#8217;s because I have a moment in the day where I&#8217;m taking a coffee break or just taking 5 minutes between projects to take a breath.  I&#8217;m the same with email.  If I have shit to do and I have a deadline - I shut down my email program for an hour or two.  I&#8217;m always good about turning it back on and checking in - but I find email to be incredibly distracting when I have shit to do.  So, I schedule email breaks, coffee breaks, lunch breaks - - I try to be judicial with my time as much as possible.</p>
<p>But, I still get distracted - and it doesn&#8217;t take much!  Here&#8217;s a perfect scenario&#8230;.</p>
<p>I&#8217;m working on a client site project.  I&#8217;m either designing or coding their site and it needs to get done &#8230;. yesterday.  I&#8217;m trying hard to accommodate.  I&#8217;m really rocking and rolling and making progress and the time comes that I need to upload several files to my test bed in order to continue working on their project.  Great, right?  I&#8217;m moving right along!  In the time it takes to upload those files - - we&#8217;re talking MINUTES here, people..minutes - - I&#8217;m waiting for the files to upload and decide to flip over to my browser window and have a look at the notes from another clients project.  I do this because my mind needs to be occupied with something other than <strike>watching water boil</strike> waiting for the files to upload.  Plus - I say to myself - if I can take a minute to look over notes for the next project I need to work on - - I can have it in the back of my mind to start prioritizing tasks and time for that project.</p>
<p>Minutes, I say!  That file upload took all of 2.5 minutes - - and in that span of time, I&#8217;m checking notes for the other project and happen to notice a question that client had, or a file that I need to go find and download&#8230;. or a development piece that I need to research in order to determine the best way to help this client meet their goals.  </p>
<p>Instead of returning to my file upload, now that its finished, and proceeding along with my project - - I&#8217;m not off on the net researching, downloading, responding to the other client project and before I know it an HOUR has gone by, and I&#8217;m back to feeling stressed and pressured because I&#8217;ve now let an hour go by on my other project.</p>
<p>Perhaps I spread myself too thin and need to revisit the word &#8220;No&#8221; ?  Or maybe I have a true ADD situation going over here.  I mean, I can&#8217;t be the only one who finds <em>2.5 minutes</em> of file uploads a complete bore, can I??  To the point of absolutely HAVING to fill my brain with something else in those 2.5 minutes because I cannot POSSIBLY be idle for that amount of time (god forbid!).</p>
<p>Its not that I don&#8217;t get anything done.  Quite the contrary - I get an amazing amount of stuff done in a day, if I do say so myself.  It just seems a little chaotic sometimes and I think I need an intervention! lol  Plus, I&#8217;m pretty decent with organization &#8212; I would give myself an A- in that area&#8230;. although, at times, I do fall a bit behind due to distractions, such as I&#8217;ve mentioned.</p>
<p>I have <a href="http://mysuspensionofdisbelief.com">Lindsey</a> - my assistant, whom I absolutely adore!  She helps keep me organized and on task, as much as she possibly can.  I would bet that girl sits over there in her office and just shakes her head at me - wondering WHAT she could do to help&#8230;and I know I don&#8217;t pay her enough to put up with me, sometimes - - but she is wonderful and  I&#8217;m almost&#8230;. almost hopeless - but not totally!</p>
<p>I do what I can to manage and organize my time, and yet some days I still feel chaotic.  Not everyday &#8212; but the days that it does happen can be pretty stressful.  So. . .</p>
<ol>
<li>Time management practices - what helps you?</li>
<li>Time tracking tools - think it would help if I tracked my time and kept a &#8216;time diary&#8217; to help me understand where my weaknesses are?</li>
<li>Do you have issues with distraction?  Have you found methods that help you out in that area?</li>
</ol>
<p>This week - I think I&#8217;m being pretty hard on myself, actually.  We were gone for 10 days and upon return, I became very ill with a bad case of bronchitis, our pet died, my father had major surgery and was hospitalized for a week &#8212; this week has been one of catch up, fall behind, catch up, fall behind, catch up!  So, maybe I&#8217;m being more hard on myself this week than I should be - - though, I do recognize a pattern of behavior with the distraction thing - - its not new to me, and I&#8217;m lookin to fix it, using whatever tools available - physical, mental or metaphysical <img src='http://justagirlintheworld.com/smilies/yahoo_smiley.gif' alt='&#58;&#41;' class='wp-smiley' width='18' height='18' title='&#58;&#41;' /></p>
<p>Have a suggestion??  I&#8217;m all ears!</p>
<hr />
<small>
<p><a href="http://justagirlintheworld.com/i-have-a-problem-that-needs-fixin-can-you-help/">Permalink</a> | <a href="http://justagirlintheworld.com/i-have-a-problem-that-needs-fixin-can-you-help/#comments">26 comments</a> </p>
<p><small>&copy; Lisa; author: <a href="http://tinyurl.com/2448c6">WordPress For Dummies</a></p>
<p><a href="http://ewebscapes.com/browse/design-portfolio">Design Portfolio</a> | <a href="http://ewebscapes.com/designblog">Design Blog</a> | <a href="http://ewebscapes.com/order">Request a custom design here!</a> | <a href="http://justagirlintheworld.com">Lisas Personal Blog</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under That's Life</p>
<p><a href="http://feeds.feedburner.com/~a/Lisas-Blog?a=1UMikT"><img src="http://feeds.feedburner.com/~a/Lisas-Blog?i=1UMikT" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Lisas-Blog/~4/416266204" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://justagirlintheworld.com/i-have-a-problem-that-needs-fixin-can-you-help/feed/</wfw:commentRss>
		<feedburner:origLink>http://justagirlintheworld.com/i-have-a-problem-that-needs-fixin-can-you-help/</feedburner:origLink></item>
		<item>
		<title>WordCamp Chicago 2009</title>
		<link>http://feeds.feedburner.com/~r/Lisas-Blog/~3/412916027/</link>
		<comments>http://justagirlintheworld.com/wordcamp-chicago-2009/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 16:02:45 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
		
		<category><![CDATA[Web Events]]></category>

		<category><![CDATA[WordCamp Chicago]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[Brian Gardner]]></category>

		<category><![CDATA[Chicago]]></category>

		<category><![CDATA[Cory Miller]]></category>

		<category><![CDATA[Lisa Sabin-Wilson]]></category>

		<category><![CDATA[Wendy Piersall]]></category>

		<category><![CDATA[WordCamp]]></category>

		<guid isPermaLink="false">http://justagirlintheworld.com/?p=2008</guid>
		<description><![CDATA[Things have been a little hectic over here, to say the least.  Blog World Expo was great and I&#8217;ll blog more about it in the coming week.  Our travels after that, though, were not so great.  Nothing serious, in the midst of our &#8220;vacation&#8221; (and I use that term very very lightly) [...]]]></description>
			<content:encoded><![CDATA[<p>Things have been a little hectic over here, to say the least.  <a href="http://blogworldexpo.com">Blog World Expo</a> was great and I&#8217;ll blog more about it in the coming week.  Our travels after that, though, were not so great.  Nothing serious, in the midst of our &#8220;vacation&#8221; (and I use that term very very lightly) - I came down with the WORST case of bronchitis and ended up spending the entire time in a Nyquil haze in the hotel room.  <img src="http://farm4.static.flickr.com/3133/2570986625_7cb093c232_m.jpg" alt="Kiwi, green cheeked conure" class="alignright" />I have to call <a href="http://nicehat.com/blog">Jammie</a> and beg her for forgiveness, as I was supposed to meet up with her and her husband while in SoCal I feel awful about missing that opportunity - but we will return to the LA area in May for a wedding. We got home from the trip and found that our beloved conure parrot had died while we were gone and then found out that my dad was having major surgery the same week!  It&#8217;s been a whirlwind and I&#8217;ve been a bit nuts trying to catch up over here.  It took us some time to get over losing Kiwi (our parrot) - we loved that little sweetheart so much!  And my Dad is doing well today - he had his surgery last week Wednesday..I&#8217;ve not been home a whole lot.. lots of back and forth to the hospital over the past week&#8230;but things look good today!</p>
<p>As if all of that, plus work and last-minute book updates, weren&#8217;t enough to make me a little nuts - - why not add another project in the mix to cement the deal?  Last week, <a href="http://briangardner.com">Brian Garnder</a> (of the insanely popular <a href="http://revolutiontheme.com">Revolution Theme</a>) contacted myself and <a href="http://sparkplugging.com">Wendy Piersall</a> (of <a href="http://sparkplugging.com">Sparkplugging.com</a> fame) and asked if we&#8217;d join him in co-organizing a WordCamp Chicago.  All of us being passionate <a href="http://wordpress.org">WordPress</a> users - how could we say no??  The three of us, along with <a href="http://corymiller.com">Cory Miller</a> (of the fabulous <a href="http://ithemes.com">iThemes</a>), will be organizing the event.  You can <a href="http://www.briangardner.com/blog/wordcamp-chicago-2009.htm">check out Brian&#8217;s WordCamp Chicago announcement post on his site</a>, as well.</p>
<p><a href="http://wordcampchicago.com"><img src="http://wordcampchicago.com/wp-content/themes/wcc/img/badges/wordcamp.chicago.png" class="alignright" alt="WordCamp Chicago Official Site" /></a>Before we spend too much time working out the details, we want to get an idea as to how many people would be interested in attending a WordCamp in Chicago. (<small><a href="http://central.wordcamp.org/what-is-wordcamp-anyway/">What is WordCamp, anyways??</a></small>).  We have the early stages of the <a href="http://wordcampchicago.com">WordCamp Chicago</a> site completed with some early information.  You can <a href="http://twitter.com/WordCampChicago">follow WordCampChicago on Twitter</a> and <a href="http://feeds.feedburner.com/WordCampChicago">subscribe to the WordCampChicago RSS Feed</a> to receive updates as we make them to the site.</p>
<p>So, what do you think?  Would you attend a WordCamp in Chicago?  We&#8217;re really looking forward to putting together an amazing event - I hope to see many of you there!</p>
<hr />
<small>
<p><a href="http://justagirlintheworld.com/wordcamp-chicago-2009/">Permalink</a> | <a href="http://justagirlintheworld.com/wordcamp-chicago-2009/#comments">7 comments</a> </p>
<p><small>&copy; Lisa; author: <a href="http://tinyurl.com/2448c6">WordPress For Dummies</a></p>
<p><a href="http://ewebscapes.com/browse/design-portfolio">Design Portfolio</a> | <a href="http://ewebscapes.com/designblog">Design Blog</a> | <a href="http://ewebscapes.com/order">Request a custom design here!</a> | <a href="http://justagirlintheworld.com">Lisas Personal Blog</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under Web Events,  WordCamp Chicago,  WordPress</p>
<p><a href="http://feeds.feedburner.com/~a/Lisas-Blog?a=OSlX4a"><img src="http://feeds.feedburner.com/~a/Lisas-Blog?i=OSlX4a" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Lisas-Blog/~4/412916027" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://justagirlintheworld.com/wordcamp-chicago-2009/feed/</wfw:commentRss>
		<feedburner:origLink>http://justagirlintheworld.com/wordcamp-chicago-2009/</feedburner:origLink></item>
		<item>
		<title>A little planned time out</title>
		<link>http://feeds.feedburner.com/~r/Lisas-Blog/~3/391230009/</link>
		<comments>http://justagirlintheworld.com/a-little-planned-time-out/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 03:22:28 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
		
		<category><![CDATA[Geeky Things]]></category>

		<category><![CDATA[Him n' Her]]></category>

		<category><![CDATA[Holidays/Travel]]></category>

		<category><![CDATA[Web Events]]></category>

		<category><![CDATA[Blog World]]></category>

		<category><![CDATA[BlogWorld Expo]]></category>

		<category><![CDATA[BWE]]></category>

		<category><![CDATA[Las Vegas]]></category>

		<category><![CDATA[San Diego]]></category>

		<category><![CDATA[San Diego Zoo]]></category>

		<category><![CDATA[SXSW]]></category>

		<guid isPermaLink="false">http://justagirlintheworld.com/?p=2003</guid>
		<description><![CDATA[We are making preparations to travel to Las Vegas next week to attend Blog World Expo.  Looking forward to running into some old friends, and making new ones - - if you are planning on being there, please let me know!  Would love to catch up with you and shake your hand, or [...]]]></description>
			<content:encoded><![CDATA[<p>We are making preparations to travel to Las Vegas next week to attend <a href="http://blogworldexpo.com">Blog World Expo</a>.  Looking forward to running into some old friends, and making new ones - - if you are planning on being there, please let me know!  Would love to catch up with you and shake your hand, or share some words over coffee!  Chris and I are looking forward to it.  We&#8217;re staying at the MGM Grand - so hopefully I&#8217;ll be able to hang on to my hard earned money while I&#8217;m there (cha ching!).</p>
<p>Chris and I fly outta here on Thursday, Sept 18 and are in Vegas until Sunday, Sept. 21.</p>
<p>On Sunday, we fly from Vegas to Los Angeles, CA to attend a conference for his business, Interact2008 in Marina del Rey.  Chris&#8217;s company, <a href="http://mosaic-consulting.com">Mosaic Consulting</a> is one of the main sponsors of the event - and we&#8217;re pretty excited about that.</p>
<p>It&#8217;ll be quite a difference!  The BlogWorld Expo conference in Vegas is very causal, where the conference in California is very business-like during the day, and cocktail parties and galas in the evenings.  Followed by the very very casual vacation time in San Diego &#8212; this will be a challenging trip to pack for!  I have problems packing, normally&#8230;. with this trip, it&#8217;ll be a mish mash of shorts, jeans, flip flops, sneakers, strappy heels, cocktail dresses, business casual and everything in between.  I hope the airline doesn&#8217;t charge me too much for the extra baggage weight!</p>
<p>We&#8217;ll be in Marina del Rey until Thursday, Sept. 25 - that&#8217;s when we rent a car and make the drive down to San Diego where it&#8217;s alllllllllllll personal vacation from there - - well, at least until Sunday, Sept 28th, when we&#8217;ll be flying back to Milwaukee and headed back to the reality of every day living.  While in San Diego, we&#8217;re going to relax and spend a few days visiting the <a href="http://www.sandiegozoo.org/">San Diego Zoo</a> and the <a href="http://www.sandiegozoo.org/wap/index.html">Wild Animal Park</a>.  I just adore the San Diego Zoo and can&#8217;t wait to revisit it again this month.</p>
<p>It&#8217;ll be good for me to get away for a piece of time, really.  Things have been so entirely hectic around here lately that I need to step back and do a little relaxing &#8216;me&#8217; stuff!  The next trip I have planned isn&#8217;t until March - when I&#8217;ll be attending the <a href="http://sxsw.com">SXSW Interactive Festival</a> in Austin Texas.  I have some really exciting things brewing for my trip to SXSW and will be making an announcement here in the near future about it all - - I can&#8217;t wait to tell you all about it!</p>
<p>Not sure I&#8217;ll be posting here until we get back from our trip  - - so have a GREAT weekend!  I&#8217;ll be sure to have some great photos to share of my experience at <a href="http://blogworldexpo.com">BlogWorld</a>, Interact2008 and the Zoo.</p>
<hr />
<small>
<p><a href="http://justagirlintheworld.com/a-little-planned-time-out/">Permalink</a> | <a href="http://justagirlintheworld.com/a-little-planned-time-out/#comments">19 comments</a> </p>
<p><small>&copy; Lisa; author: <a href="http://tinyurl.com/2448c6">WordPress For Dummies</a></p>
<p><a href="http://ewebscapes.com/browse/design-portfolio">Design Portfolio</a> | <a href="http://ewebscapes.com/designblog">Design Blog</a> | <a href="http://ewebscapes.com/order">Request a custom design here!</a> | <a href="http://justagirlintheworld.com">Lisas Personal Blog</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under Geeky Things,  Him n' Her,  Holidays/Travel,  Web Events</p>
<p><a href="http://feeds.feedburner.com/~a/Lisas-Blog?a=6kDqWW"><img src="http://feeds.feedburner.com/~a/Lisas-Blog?i=6kDqWW" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Lisas-Blog/~4/391230009" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://justagirlintheworld.com/a-little-planned-time-out/feed/</wfw:commentRss>
		<feedburner:origLink>http://justagirlintheworld.com/a-little-planned-time-out/</feedburner:origLink></item>
		<item>
		<title>WordPress MU Plugin Competition</title>
		<link>http://feeds.feedburner.com/~r/Lisas-Blog/~3/370702705/</link>
		<comments>http://justagirlintheworld.com/wordpress-mu-plugin-competition/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 07:28:21 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
		
		<category><![CDATA[Asides]]></category>

		<category><![CDATA[Current Events]]></category>

		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://justagirlintheworld.com/?p=1997</guid>
		<description><![CDATA[I just donated to the prize pool for the WordPress MU Plugin Competition.  REALLY looking forward to the great MU plugins they come up with!  What a great idea!  Are you a plugin developer?  Well get over there and enter&#8230;and win! 


Permalink &#124; 3 comments 
&#169; Lisa; author: WordPress For Dummies
Design [...]]]></description>
			<content:encoded><![CDATA[<p>I <a href="http://wpmu.org/200-plugin-competition-prize-pool/">just donated to the prize pool</a> for the <a href="http://wpmu.org/2008-wpmu-plugin-competition">WordPress MU Plugin Competition</a>.  REALLY looking forward to the great MU plugins they come up with!  What a great idea!  Are you a plugin developer?  Well get over there and enter&#8230;and win! <img src='http://justagirlintheworld.com/smilies/yahoo_smiley.gif' alt='&#58;&#41;' class='wp-smiley' width='18' height='18' title='&#58;&#41;' /></p>
<hr />
<small>
<p><a href="http://justagirlintheworld.com/wordpress-mu-plugin-competition/">Permalink</a> | <a href="http://justagirlintheworld.com/wordpress-mu-plugin-competition/#comments">3 comments</a> </p>
<p><small>&copy; Lisa; author: <a href="http://tinyurl.com/2448c6">WordPress For Dummies</a></p>
<p><a href="http://ewebscapes.com/browse/design-portfolio">Design Portfolio</a> | <a href="http://ewebscapes.com/designblog">Design Blog</a> | <a href="http://ewebscapes.com/order">Request a custom design here!</a> | <a href="http://justagirlintheworld.com">Lisas Personal Blog</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under Asides,  Current Events</p>
<p><a href="http://feeds.feedburner.com/~a/Lisas-Blog?a=Wt5S4r"><img src="http://feeds.feedburner.com/~a/Lisas-Blog?i=Wt5S4r" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Lisas-Blog/~4/370702705" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://justagirlintheworld.com/wordpress-mu-plugin-competition/feed/</wfw:commentRss>
		<feedburner:origLink>http://justagirlintheworld.com/wordpress-mu-plugin-competition/</feedburner:origLink></item>
		<item>
		<title>Do what you love . . love what you do</title>
		<link>http://feeds.feedburner.com/~r/Lisas-Blog/~3/370609837/</link>
		<comments>http://justagirlintheworld.com/do-what-you-love-love-what-you-do/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 04:45:42 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Goals]]></category>

		<category><![CDATA[Self Employment]]></category>

		<category><![CDATA[That's Life]]></category>

		<category><![CDATA[Nursing]]></category>

		<guid isPermaLink="false">http://justagirlintheworld.com/?p=1994</guid>
		<description><![CDATA[When I submitted the final, final edits for the second edition of WordPress For Dummies today - I breathed a tremendously huge sigh of relief.  There is nothing like that feeling of accomplishment to carry you through to the next day.  This was a big project - - just as it was the [...]]]></description>
			<content:encoded><![CDATA[<p>When I submitted the final, final edits for the second edition of WordPress For Dummies today - I breathed a tremendously huge sigh of relief.  There is nothing like that feeling of accomplishment to carry you through to the next day.  This was a big project - - just as it was the first time around, and having it finished, finally not only lifts a great big weight off the ol&#8217; shoulders&#8230;but it made me reflect a bit.  As I&#8217;m uploading the last and final files..I could feel myself physically relax.  I sat back and thought - - I really do love what I do.</p>
<p>I&#8217;ve held several jobs in my lifetime. Some I liked, some I didn&#8217;t.  Jobs like:</p>
<ul>
<li>McDonalds (would you like fries with that?  yea, that was me)</li>
<li>Disc Jockey for a local, polka radio station (yep.  Polka)</li>
<li>Lead singer in a local R&#038;B band</li>
<li>Waitress at a local greasy spoon</li>
<li>Bartender at a local night club&#8230; a local bowling alley..and a local 5-star restaurant - - simultaneously!</li>
<li>Secretary&#8230;receptionist&#8230;data entry clerk</li>
<li>Community organizer for the local Chamber of Commerce</li>
<li>Nursing Assistant</li>
<li>Registered Nurse (my longest&#8230; that career spanned 10 years, or so)</li>
<li>Web and graphic designer and web host (current)</li>
<li>Author (also current)</li>
</ul>
<p>Some of those jobs were held out of neccessity.  I didn&#8217;t really like them - but they paid the bills, so I tolerated them.<br />
Some of those jobs were stepping stones to other jobs (nursing assistant - to - registered nurse, for example).</p>
<p>Growing up, I was always told to do what I love.  Find something you&#8217;re good at and make a living out of it.. you&#8217;ll be happier.  Unfortunately, starting out as a young adult - - the job that I loved didn&#8217;t pay the bills (the R&#038;B singer gig).  So I had to move on to a job that DID pay the bills . . leaving me absolutely NO time to do the job that I love.</p>
<p>Sigh.</p>
<p>At the age of 24, I graduated from nursing school with a degree in nursing and sat for the board exams to obtain my Registered Nurse licensure.  I was pretty much set for life in an industry that paid well and offered a great deal of job security.  I pretty much thought I would be a nurse until the day I retire.</p>
<p>Until I started tinkering around with graphic design and CSS and began to dabble in code.  I found a great hobby that allowed me to de-stress and blow off steam after long, hard days of work in the hospital.  It was a creative outlet that I soon began to realize was soothing the savage beast.  Design satisfied the creative side of me&#8230; something I had lost when I walked away from music, so many years ago.  It would be many years before I began to make a few bucks at it - - and several more years before I could make a living from it.</p>
<p>Although, I never once thought I would make a living with it - - always assuming that nursing would be where I would stay for my entire working life.  Nursing was one of those <em>ok</em> jobs.  I didn&#8217;t love it.  I didn&#8217;t hate it.  It was . . . <em>fine</em>.  I was good at it - - excelled in it, really - and took pride in that fact.  But I wasn&#8217;t doing what I loved&#8230; nor was I loving what I did.</p>
<p>I am a true believer that if you do not love what you do - - it shows through at the end of the day.  People can start to see it in your work, no matter what it is.  For me?  I didn&#8217;t want to get to that point in nursing - - nothing worse than being cared for by a nurse who doesn&#8217;t like what she&#8217;s doing, eh?</p>
<p>Today, with my design career and, most recently, book writing gig &#8212; I can truly say that I finally love what I do.. and am doing what I love.  I make a decent living at it, and I&#8217;m very thankful for that&#8230;.and grateful that I don&#8217;t have to focus my attentions and time on other side jobs in order to make ends meet, like I used to.  I can really focus on what I enjoy doing and what I&#8217;m good at.</p>
<p>Are you doing what you love&#8230;and loving what you do?  If not - are you working towards that end?  It&#8217;s not an easy thing, no doubt.  First priorities are putting food on the table and paying those bills - which, like me, forced you into jobs that you don&#8217;t really like - - but become a necessary evil as a means to and end.  When I opted to quit my nursing career to pursue design, I really had to spend a lot of time to take a real, long hard look at where I was at, and where I wanted to be.  If the day comes that I&#8217;m no longer happy with design &#8212; I will take a similar look and, hopefully, will be able to make changes where I can pursue that lofty goal of loving what I do..and doing what I love.</p>
<p>For me, it took a great deal of time, struggle, sleepless nights and endless days . . but I got there.  And yet, I still wonder if I&#8217;ll be doing the same thing next year?  If I&#8217;m lucky enough, I will be.</p>
<p>And on that note - I shall finally sleep.  &#8216;Nite!</p>
<hr />
<small>
<p><a href="http://justagirlintheworld.com/do-what-you-love-love-what-you-do/">Permalink</a> | <a href="http://justagirlintheworld.com/do-what-you-love-love-what-you-do/#comments">25 comments</a> </p>
<p><small>&copy; Lisa; author: <a href="http://tinyurl.com/2448c6">WordPress For Dummies</a></p>
<p><a href="http://ewebscapes.com/browse/design-portfolio">Design Portfolio</a> | <a href="http://ewebscapes.com/designblog">Design Blog</a> | <a href="http://ewebscapes.com/order">Request a custom design here!</a> | <a href="http://justagirlintheworld.com">Lisas Personal Blog</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under Design,  Goals,  Self Employment,  That's Life</p>
<p><a href="http://feeds.feedburner.com/~a/Lisas-Blog?a=fahfx6"><img src="http://feeds.feedburner.com/~a/Lisas-Blog?i=fahfx6" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Lisas-Blog/~4/370609837" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://justagirlintheworld.com/do-what-you-love-love-what-you-do/feed/</wfw:commentRss>
		<feedburner:origLink>http://justagirlintheworld.com/do-what-you-love-love-what-you-do/</feedburner:origLink></item>
		<item>
		<title>What to Expect When You’re Expecting WordPress Upgrades?</title>
		<link>http://feeds.feedburner.com/~r/Lisas-Blog/~3/368051983/</link>
		<comments>http://justagirlintheworld.com/what-to-expect-when-youre-expecting-wordpress-upgrades/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 12:15:49 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[Wordpress For Dummies]]></category>

		<category><![CDATA[wordpress 2.7]]></category>

		<category><![CDATA[wordpress development]]></category>

		<category><![CDATA[wordpress upgrades]]></category>

		<guid isPermaLink="false">http://justagirlintheworld.com/?p=1977</guid>
		<description><![CDATA[I get this question a lot:   How do you always know what&#8217;s coming with the next WordPress release??.  I can tell you that I&#8217;m not a member of some secret society.  I don&#8217;t have an exclusive inside track into WordPress Development.  I don&#8217;t talk to the core WordPress developers on [...]]]></description>
			<content:encoded><![CDATA[<p><strong>I get this question a lot:</strong>   <em>How do you always know what&#8217;s coming with the next <a href="http://wordpress.org">WordPress </a>release??</em>.  I can tell you that I&#8217;m not a member of some secret society.  I don&#8217;t have an exclusive inside track into WordPress Development.  I don&#8217;t talk to the core WordPress developers on a regular basis (quite actually, our paths cross every so often..ever so briefly&#8230;every once in a great while).  It&#8217;s not super secret information that only a few are privvy to.</p>
<p>Basically to answer the question:  I make it my business to know. </p>
<p>Up and coming changes to the WordPress core is publicly available information. . . available to anyone and everyone who really wants to know.  Although, not everyone is like me.  I upgrade my WordPress installation with the latest and greatest and am already looking forward to the next.  I&#8217;m a consumer of WordPress &#8212; well, gobbler, really, if you want to get technical.  I <em>gorge</em> myself on WordPress - - which is why I have taken it upon myself to find out where to find out!  Of course, it helps that I am the author of the <a href="http://justagirlintheworld.com/wordpressfordummies">WordPress For Dummies</a> book project, as the author of that book, there is a lot of pressure to stay current and always keep myself constantly looking forward&#8230; but even without the book, I&#8217;d inquire and dig and find out.  &#8216;Cause I&#8217;m nosy like that <img src='http://justagirlintheworld.com/smilies/yahoo_wink.gif' alt='&#59;&#41;' class='wp-smiley' width='18' height='18' title='&#59;&#41;' /></p>
<p>You can make it your business to know, too - if you really want to.  That&#8217;s what this post is for .. to give you all those little nooks and cranny&#8217;s on the web that you can bookmark, subscribe to and pour over in order to get the latest scoop!  If I&#8217;ve missed a resource (and I&#8217;m SURE I will) - feel free to add &#8216;em in the comments!</p>
<p>**Disclaimer!!!  The information found within these sites is NOT all-inclusive, exhaustive&#8230; NOR is it a guarantee that the features you read about on these sites are set in stone for future releases!  (This disclaimer is so that you can&#8217;t come back to me at a later date and say &#8220;<em>HEY LISA!  That site you sent me to said WordPress version 10 would wash my dishes and mow my lawn&#8230;but it doesn&#8217;t!</em>&#8221; &#8212; don&#8217;t say I didn&#8217;t warn you.)</p>
<p><div id="attachment_1959" class="wp-caption alignright" style="width: 90px"><a href="http://justagirlintheworld.com/what-to-expect…press-upgradeswhat-to-expect-when-youre-expecting-wordpress-upgrades/"><img src="http://justagirlintheworld.com/wp-content/uploads/2008/08/wp.jpg" alt="Finding future WordPress Features" title="Where to find future WordPress Features" width="80" height="80" class="size-full wp-image-1959" /></a><p class="wp-caption-text">Finding future WordPress Features</p></div><strong>Where to find information on future WordPress features</strong></p>
<ul>
<li><strong><a href="http://wordpress.org/about/roadmap/">WordPress Roadmap</a></strong> - want to know the <em>approximate</em> schedule for future WordPress releases?  Check this out.</li>
<li><strong><a href="http://trac.wordpress.org/">WordPress Trac</a> </strong>- a lot of people have a difficult time reading the Trac, and I don&#8217;t really blame them, if you&#8217;re not used to it, it can be somewhat confusing.  But, if you spend some time to browse through it - you can find gems of information.  For example:
<ul>
<li>The <a href="http://trac.wordpress.org/milestone/2.7">WordPress 2.7 Milestones</a>; including <a href="http://trac.wordpress.org/query?status=closed&#038;milestone=2.7">development tickets that have been resolved for 2.7</a> and <a href="http://trac.wordpress.org/query?status=new&#038;status=assigned&#038;status=reopened&#038;milestone=2.7">active tickets that remain unresolved for 2.7</a>.</li>
<li>You can find the milestones for <a href="http://trac.wordpress.org/milestone/2.8">2.8</a>, <a href="http://trac.wordpress.org/milestone/2.9">2.9</a>, and <a href="http://trac.wordpress.org/milestone/3.0">3.0</a>&#8230; if you really wanted to.  Chances are, LOTS of things will change between now and 3.0 - - but feel free to nose around if you want to.</li>
<li>If you feel bold enough, you can contribute to the WordPress Trac by <a href="http://trac.wordpress.org/newticket">submitting a bug report</a>, if you find a true bug in WordPress (first, do yourself a favor and be sure that it&#8217;s a true bug and not something jiggy with your set up or hosting service.) - - If you&#8217;re a developer/programmer/coder and think you&#8217;d like to submit a patch or two for consideration - check out <a href="http://markjaquith.wordpress.com/2005/11/02/my-wordpress-toolbox/">Mark Jaquith&#8217;s Unix WordPress Toolbox</a> and/or <a href="http://blog.ftwr.co.uk/archives/2005/11/03/windows-wordpress-toolbox/">Peter Westwood&#8217;s Windows WordPress Toolbox</a>.</li>
<li>If you find all the terminology a bit daunting in the Trac - <a href="http://codex.wordpress.org/Reporting_Bugs#Trac_Keywords">check out their glossary of keywords they use</a> to familiarize yourself with the lingo</li>
</ul>
</li>
<li><strong><a href="http://codex.wordpress.org/Mailing_Lists">WordPress Mailing Lists</a></strong> are a great place to stay up to date on what&#8217;s going on with current and future WordPress Development.  Funny little anecdote on this - - back in 2006 when I accepted and signed the contract to write WordPress For Dummies - I was a <em>bit</em> overwhelmed with the amount of information I needed to compile.  On top of that, knowing that by the time I was done compiling it - - it would change&#8230; not once, but TWICE during the course of writing the book.  I (very naively) send an e-mail to <a href="http://ma.tt">Matt Mullenweg</a> asking him what huge changes I could expect with the next version (at that time, it was 2.3).  He must have read that and thought, &#8220;What a dork.&#8221; (or something like that).  He wrote back and simply said &#8220;Subscribe to the <a href="http://lists.automattic.com/mailman/listinfo/wp-testers">WP Testers mailing list</a> and follow it.&#8221;   I&#8217;ll give him credit - - he could have written back and said something akin to &#8220;RTFM, dipshit&#8221;  But, he didn&#8217;t - - he&#8217;s nice like that.</li>
<li><strong>Did I mention WordPress Mailing Lists??? </strong> That&#8217;s probably where I get the bulk of info on future features.</li>
<li><strong>The WordPress Codex</strong> has <a href="http://codex.wordpress.org/Version_2.7">nice page on what to expect in 2.7</a></li>
<li><strong>Here&#8217;s an obscure little resource</strong> - - every once in awhile I can garner some good information by subscribing to the feed for the <a href="http://wpdevel.wordpress.com/">WordPress Developers Blog</a> on WordPress.com.  This is a great use of the <a href="http://en.blog.wordpress.com/2008/01/28/introducing-prologue/">Prologue </a>theme, by the way.  Haven&#8217;t heard of it - - check it out!  Anyways - this site is a running dialogue from the WordPress developers - updated with snippets of information about features, bug fixes, etc.  I&#8217;ve subscribed to the <a href="http://wpdevel.wordpress.com/feed/">full RSS feed for updates</a>. (Note: this is not to be confused with the <a href="http://wordpress.org/blog">WordPress Development Blog</a> - which is where you can nab information and news about WordPress, overall.)</li>
<li><strong>There are a few bloggers that I subscribe to</strong> who I can usually count on to make informative posts on what to expect in future versions of WordPress.  These folks are: <a href="http://technosailor.com">Aaron Brazell @ Technosailor</a> (he usually does a &#8216;What You Should Know About WordPress version X.X&#8217; post a few weeks before it&#8217;s release date - like <a href="http://technosailor.com/2008/06/30/10-things-you-need-to-know-about-wordpress-26/">this one he did for WordPress 2.6</a>.), <a href="http://weblogtoolscollection">Weblog Tools Collection</a> (check out their most recent post: <a href="http://weblogtoolscollection.com/archives/2008/07/31/features-plannwordpress-27/">Features Planned for WordPress 2.7</a>).</li>
<li><strong>Want to download every single version of WordPress ever made????</strong>   Yea, me neither - but you can if you want to because WordPress.Org <a href="http://wordpress.org/download/release-archive/">keeps a release archive</a> - - this archive INCLUDES release candidates and beta releases, if you are brave enough to live on the edge</li>
</ul>
<h3>So</h3>
<p>&#8230;.don&#8217;t know what to expect in the upcoming version of WordPress 2.7??  I&#8217;m not going to tell you - - you have all you need to find out and keep yourself updated!</p>
<hr />
<small>
<p><a href="http://justagirlintheworld.com/what-to-expect-when-youre-expecting-wordpress-upgrades/">Permalink</a> | <a href="http://justagirlintheworld.com/what-to-expect-when-youre-expecting-wordpress-upgrades/#comments">5 comments</a> </p>
<p><small>&copy; Lisa; author: <a href="http://tinyurl.com/2448c6">WordPress For Dummies</a></p>
<p><a href="http://ewebscapes.com/browse/design-portfolio">Design Portfolio</a> | <a href="http://ewebscapes.com/designblog">Design Blog</a> | <a href="http://ewebscapes.com/order">Request a custom design here!</a> | <a href="http://justagirlintheworld.com">Lisas Personal Blog</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under WordPress,  Wordpress For Dummies</p>
<p><a href="http://feeds.feedburner.com/~a/Lisas-Blog?a=un2QQd"><img src="http://feeds.feedburner.com/~a/Lisas-Blog?i=un2QQd" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Lisas-Blog/~4/368051983" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://justagirlintheworld.com/what-to-expect-when-youre-expecting-wordpress-upgrades/feed/</wfw:commentRss>
		<feedburner:origLink>http://justagirlintheworld.com/what-to-expect-when-youre-expecting-wordpress-upgrades/</feedburner:origLink></item>
		<item>
		<title>Brett Favre.  I can’t get over it.  I think I need therapy.</title>
		<link>http://feeds.feedburner.com/~r/Lisas-Blog/~3/366984433/</link>
		<comments>http://justagirlintheworld.com/brett-favre-i-cant-get-over-it-i-think-i-need-therapy/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 03:43:35 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
		
		<category><![CDATA[Sports]]></category>

		<category><![CDATA[Brett Favre]]></category>

		<category><![CDATA[Favre]]></category>

		<category><![CDATA[Green Bay Packers]]></category>

		<category><![CDATA[New York Jets]]></category>

		<guid isPermaLink="false">http://justagirlintheworld.com/?p=1964</guid>
		<description><![CDATA[Sounds like Brett had a good opener with the New York Jets&#8230;..even though the Jets eventually lost to the Redskins today in the pre-season game.  We saw Favre&#8217;s first season TD pass &#8212; a 4 yarder to TE Dustin Keller&#8230;as a Jet - not a Packer.
Seeing Brett Favre in a New York Jets jersey?? [...]]]></description>
			<content:encoded><![CDATA[<p>Sounds like Brett had a good opener with the New York Jets&#8230;..even though the Jets eventually lost to the Redskins today in the pre-season game.  We saw Favre&#8217;s first season TD pass &#8212; a 4 yarder to TE Dustin Keller&#8230;as a Jet - not a Packer.<div id="attachment_1965" class="wp-caption alignright" style="width: 310px"><img src="http://justagirlintheworld.com/wp-content/uploads/2008/08/favre-brett-392-getty-080816-300x176.jpg" alt="Favre playing for the Jets" title="Brett Favre New York Jets" width="300" height="176" class="size-medium wp-image-1965" /><p class="wp-caption-text">Favre playing for the Jets</p></div></p>
<p>Seeing Brett Favre in a New York Jets jersey??  Surreal!  Like it&#8217;s all some strange dream.. or alternate universe.  I&#8217;m not sure how long this will take - - or if it&#8217;s even possible for me - to get over.  I really do like Brett Favre and I do really hope he&#8217;s happy playing for the Jets.  <em>Honest</em>.  But.. I&#8217;m feeling a bit like a jilted lover over here&#8230;like the guy who says &#8220;I just can&#8217;t handle a relationship right now..can we just be friends??&#8221;&#8230; then, BAM!  The very next week you&#8217;re seeing him with someone new&#8230;and not only handling a relationship - - but HAPPY about it too.  I&#8217;m feeling pangs of jealousy over hearing <a href="http://www.nj.com/jets/index.ssf/2008/08/new_york_jets_bloggers_excited.html">reports from the object of Brett Favre&#8217;s attentions</a>..and how happy and excited they are at the prospect of a new season with the NFL&#8217;s best quarterback&#8230;meanwhile, we&#8217;re back here in Wisconsin trying to get to know, and eventually come to love this new guy - - what&#8217;s his name?  Aaron&#8230;.something.</p>
<p>I think I need therapy. </p>
<div id="attachment_1973" class="wp-caption aligncenter" style="width: 510px"><a href="http://justagirlintheworld.com/wp-content/uploads/2008/08/17jets600.jpg"><img src="http://justagirlintheworld.com/wp-content/uploads/2008/08/17jets600.jpg" alt="#4 in Green and......White?  " title="Brett Favre Playing for the New  York Jets" width="500" height="292" class="size-full wp-image-1973" /></a><p class="wp-caption-text">#4 in Green and......White?  </p></div>
<hr />
<small>
<p><a href="http://justagirlintheworld.com/brett-favre-i-cant-get-over-it-i-think-i-need-therapy/">Permalink</a> | <a href="http://justagirlintheworld.com/brett-favre-i-cant-get-over-it-i-think-i-need-therapy/#comments">11 comments</a> </p>
<p><small>&copy; Lisa; author: <a href="http://tinyurl.com/2448c6">WordPress For Dummies</a></p>
<p><a href="http://ewebscapes.com/browse/design-portfolio">Design Portfolio</a> | <a href="http://ewebscapes.com/designblog">Design Blog</a> | <a href="http://ewebscapes.com/order">Request a custom design here!</a> | <a href="http://justagirlintheworld.com">Lisas Personal Blog</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under Sports</p>
<p><a href="http://feeds.feedburner.com/~a/Lisas-Blog?a=fetShN"><img src="http://feeds.feedburner.com/~a/Lisas-Blog?i=fetShN" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Lisas-Blog/~4/366984433" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://justagirlintheworld.com/brett-favre-i-cant-get-over-it-i-think-i-need-therapy/feed/</wfw:commentRss>
		<feedburner:origLink>http://justagirlintheworld.com/brett-favre-i-cant-get-over-it-i-think-i-need-therapy/</feedburner:origLink></item>
	</channel>
</rss>
