<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/_xslt/rss20_xhtml10_strict.xsl" type="text/xsl" media="screen"?>
<rss version="2.0">
  <channel>
    <title>Lisa McMillan pseudo blog</title>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://www.xfruits.com/lisamac/master/" type="text/xml"/>
    <link>http://xfruits.com/lisamac/</link>
    <description/>
    <language>en-us</language>
    <copyright/>
    <generator>xFruits - http://www.xfruits.com</generator>
    <pubDate>Wed, 27 Aug 2008 08:23:40 GMT</pubDate>
    <lastBuildDate>Tue, 30 Nov 1999 00:00:00 GMT</lastBuildDate>
    <category>aggregation design events flickr graphicdesign lists mac music myweb people photos randomthoughts sharing web</category>
    <item>
      <title>davebretryan</title>
      <description><![CDATA[<p><a href="http://www.flickr.com/people/lisamac/">lisamac</a> posted a video:</p>
<p><a href="http://www.flickr.com/photos/lisamac/2801629421/" title="davebretryan"><img src="http://farm4.static.flickr.com/3183/2801629421_852f4b0b64_m.jpg" width="240" height="180" alt="davebretryan" /></a></p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=256074611" />
]]></description>
      <pubDate>Wed, 27 Aug 2008 06:30:58 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=256074611&amp;url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Flisamac%2F2801629421%2F</link>
      <guid isPermaLink="false">tag:flickr.com,2004:/photo/2801629421</guid>
      <source url="http://api.flickr.com/services/feeds/photos_public.gne?id=97806540@N00&amp;format=rss_200">Uploads from lisamac</source>
      <enclosure url="http://www.flickr.com/apps/video/stewart.swf?v=59154&amp;photo_id=2801629421" length="" type="application/x-shockw"/>
    </item>
    <item>
      <title>Comparing PHP to Ruby on Rails</title>
      <description/>
      <pubDate>Mon, 25 Aug 2008 15:38:00 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=255633527&amp;url=http%3A%2F%2Ffeeds.feedburner.com%2F%7Er%2FLessEverything%2F%7E3%2F374362664%2Fcomparing-php-to-ruby-on-rails</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>While trying to <a href="http://b.lesseverything.com/2008/7/1/how-to-choose-a-consulting-company-to-build-your-app">pick a consulting company to work with</a>,  people occasionally ask us about the differences between <span>PHP</span> and Ruby on Rails. Here are my thoughts on the matter. Please feel free to add to this list in the comments.</p>


	<ol>
	<li><span>PHP</span> is a programming language, whereas Rails is a framework for writing web applications using the Ruby programming language. So right off the bat this is not an apples-to-apples comparison.
	<ol>
	<li>There are a lot of <span>PHP</span> web application frameworks. Some are good and some are not (for some definition of the word good.) Many frameworks (including Java and .NET based frameworks) have borrowed heavily from Rails. </li>
	</ol>
	</li>
		<li>Ruby is a very succinct language. This means that you can be very expressive and do a lot in very few lines of code. <span>PHP</span> is very well known, so it might be easier for many people not familiar with Ruby to stay with <span>PHP</span>.</li>
		<li><span>PHP</span> programs tend to require less memory to run so they tend to be easier to deploy. With the release of <a href="http://www.modrails.com/" title="Phusion Passenger">mod_rails</a> and <a href="http://www.rubyenterpriseedition.com/">Ruby Enterprise Edition</a> Rails becomes easier to deploy than <span>PHP</span> once the initial Apache add-ons are made.
	<ol>
	<li><span>PHP</span> programs require less memory because by default they don’t have the overhead of a web framework. Although I haven’t seen any stats on this, I would imagine that a <span>PHP</span> app running inside a web framework as robust as Rails would have similar memory requirements.</li>
		<li>The additional add-ons only have to be made once per machine and are super easy to do.</li>
		<li>Rails is easier instead of just as easy because Rails has migrations which make deployment of database changes easier than any open or commercial solution I have ever seen.</li>
	</ol>
	</li>
		<li>They are both equally easy or difficult to scale. The first level of scaling is just adding more memory/cpu/server instances. When scaling thusly they are both just as easy. Once this level of scaling is exhausted, they are both equally hard requiring all of the same methods as scaling any other web application on the internet: Code optimizations, caching, more servers, database scaling, content delivery networks and more.</li>
		<li>Rails is cooler. Sorry, but it’s true. Don’t worry though, eventually there will be something even cooler than Rails and then I’ll write an article comparing that to <span>PHP</span> or Rails.</li>
		<li>I’m sure there are exceptions to this, but in general the results of using Rails (final product) will be heads and shoulders (probably even arms and legs) above the results by someone who wrote their own web application framework.</li>
		<li>The following would be true of any <span>MVC</span> framework (like Rails) worth anything, regardless of language:
	<ol>
	<li>Code is well encapsulated.</li>
		<li>Anyone familiar with the framework should be able to pick up where someone else left off fairly easily.</li>
		<li>Standards and best practices are well defined.</li>
		<li>One should be able to do a lot with very few lines of code.</li>
	</ol>
	</li>
		<li>Things Rails does for you that seem to be specific to Rails (I would assume that somewhere there is another web application framework that does some or all of these things, but I am not aware of one).
	<ol>
	<li>Super easy to write a lot of code/test/functionality in record time.</li>
		<li>Database versioning.</li>
		<li><span>REST</span>/crud is very deeply ingrained. </li>
		<li>Lots and lots of helper methods.</li>
		<li>Significant JavaScript/AJAX support.</li>
		<li>Very easy to extend.</li>
		<li>Built in testing.</li>
		<li>Vibrant community.
	<ol>
	<li>Lots of plugins.</li>
		<li>Lots of blogs/tips/tutorials.</li>
		<li>Lots of conferences/friends.</li>
		<li>Very well tested.</li>
	</ol>
	</li>
		<li>Feels like it was written just for me (most of the time).</li>
		<li>Easy for a designer to learn.</li>
		<li>Because so much is done for me by the framework, I can spend more time working and thinking about the users and what’s best for them instead of things like rewriting my database connectivity stack.</li>
	</ol></li>
	</ol>


	<h2>My advice</h2>


	<p>Picking one over the other has more to do with who you trust to build your application for you and what they like. Or if you are a developer, find out which one best fits your tastes and temperament. Neither will save you from bad code or bad decisions or misunderstanding but for me Rails feels like home. Find something that feels like home and then go write something that users will love.</p>


	<p>Here are a few things we’ve written using Rails: <a href="http://lessaccounting.com" title="web based accounting software">Less Accounting</a>, <a href="http://getmorehoney.com" title="time tracking software">More Honey (time tracking)</a>, <a href="http://lessprojects.com" title="online project tracking">Less Projects (project task tracking)</a>, <a href="http://lessmemories.com" title="personal memory management">Less Memories (personal memory management)</a>, <a href="http://lovdbyless.com" title="open source social network">Lovd by Less (open source social network)</a></p>
          <img src="http://feeds.feedburner.com/~r/LessEverything/~4/374362664" height="1" width="1"><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=255633527" />
]]></content:encoded>
      <category>Code</category>
      <guid isPermaLink="false">tag:google.com,2005:reader/item/0c363f8f85f75ff4</guid>
      <source url="tag:google.com,2005:reader/feed/http://b.lesseverything.com/feed/atom.xml">Less Everything Blog - Just Stuff</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Steven Bristol]]></dc:creator>
    </item>
    <item>
      <title>Noah shows off his spikes</title>
      <description><![CDATA[<p><a href="http://www.flickr.com/people/lisamac/">lisamac</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/lisamac/2785274175/" title="Noah shows off his spikes"><img src="http://farm4.static.flickr.com/3112/2785274175_73b695aecb_m.jpg" width="180" height="240" alt="Noah shows off his spikes" /></a></p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=256074612" />
]]></description>
      <pubDate>Fri, 22 Aug 2008 04:36:43 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=256074612&amp;url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Flisamac%2F2785274175%2F</link>
      <guid isPermaLink="false">tag:flickr.com,2004:/photo/2785274175</guid>
      <source url="http://api.flickr.com/services/feeds/photos_public.gne?id=97806540@N00&amp;format=rss_200">Uploads from lisamac</source>
    </item>
    <item>
      <title>I'm jealous that the kids have this wicked water park</title>
      <description><![CDATA[<p><a href="http://www.flickr.com/people/lisamac/">lisamac</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/lisamac/2786127810/" title="I'm jealous that the kids have this wicked water park"><img src="http://farm4.static.flickr.com/3281/2786127810_0eb1aed895_m.jpg" width="240" height="180" alt="I'm jealous that the kids have this wicked water park" /></a></p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=256074613" />
]]></description>
      <pubDate>Fri, 22 Aug 2008 04:36:34 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=256074613&amp;url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Flisamac%2F2786127810%2F</link>
      <guid isPermaLink="false">tag:flickr.com,2004:/photo/2786127810</guid>
      <source url="http://api.flickr.com/services/feeds/photos_public.gne?id=97806540@N00&amp;format=rss_200">Uploads from lisamac</source>
    </item>
    <item>
      <title>Komodo dragon ride</title>
      <description><![CDATA[<p><a href="http://www.flickr.com/people/lisamac/">lisamac</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/lisamac/2785273487/" title="Komodo dragon ride"><img src="http://farm4.static.flickr.com/3200/2785273487_d8be7ffca1_m.jpg" width="180" height="240" alt="Komodo dragon ride" /></a></p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=256074614" />
]]></description>
      <pubDate>Fri, 22 Aug 2008 04:36:24 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=256074614&amp;url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Flisamac%2F2785273487%2F</link>
      <guid isPermaLink="false">tag:flickr.com,2004:/photo/2785273487</guid>
      <source url="http://api.flickr.com/services/feeds/photos_public.gne?id=97806540@N00&amp;format=rss_200">Uploads from lisamac</source>
    </item>
    <item>
      <title>Thumbs up for the Komodo dragon</title>
      <description><![CDATA[<p><a href="http://www.flickr.com/people/lisamac/">lisamac</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/lisamac/2786126858/" title="Thumbs up for the Komodo dragon"><img src="http://farm4.static.flickr.com/3238/2786126858_e663e2f90a_m.jpg" width="180" height="240" alt="Thumbs up for the Komodo dragon" /></a></p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=256074615" />
]]></description>
      <pubDate>Fri, 22 Aug 2008 04:36:07 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=256074615&amp;url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Flisamac%2F2786126858%2F</link>
      <guid isPermaLink="false">tag:flickr.com,2004:/photo/2786126858</guid>
      <source url="http://api.flickr.com/services/feeds/photos_public.gne?id=97806540@N00&amp;format=rss_200">Uploads from lisamac</source>
    </item>
    <item>
      <title>Best kid photo ever</title>
      <description><![CDATA[<p><a href="http://www.flickr.com/people/lisamac/">lisamac</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/lisamac/2785272301/" title="Best kid photo ever"><img src="http://farm4.static.flickr.com/3044/2785272301_7d48dc1eb9_m.jpg" width="180" height="240" alt="Best kid photo ever" /></a></p>

<p>These kids know how to pose</p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=256074616" />
]]></description>
      <pubDate>Fri, 22 Aug 2008 04:35:50 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=256074616&amp;url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Flisamac%2F2785272301%2F</link>
      <guid isPermaLink="false">tag:flickr.com,2004:/photo/2785272301</guid>
      <source url="http://api.flickr.com/services/feeds/photos_public.gne?id=97806540@N00&amp;format=rss_200">Uploads from lisamac</source>
    </item>
    <item>
      <title>photo opp with the elephant</title>
      <description><![CDATA[<p><a href="http://www.flickr.com/people/lisamac/">lisamac</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/lisamac/2785271613/" title="photo opp with the elephant"><img src="http://farm4.static.flickr.com/3252/2785271613_e8f1f13b87_m.jpg" width="180" height="240" alt="photo opp with the elephant" /></a></p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=256074617" />
]]></description>
      <pubDate>Fri, 22 Aug 2008 04:35:32 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=256074617&amp;url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Flisamac%2F2785271613%2F</link>
      <guid isPermaLink="false">tag:flickr.com,2004:/photo/2785271613</guid>
      <source url="http://api.flickr.com/services/feeds/photos_public.gne?id=97806540@N00&amp;format=rss_200">Uploads from lisamac</source>
    </item>
    <item>
      <title>Noah &lt;3's elephants too</title>
      <description><![CDATA[<p><a href="http://www.flickr.com/people/lisamac/">lisamac</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/lisamac/2785271183/" title="Noah &lt;3's elephants too"><img src="http://farm4.static.flickr.com/3083/2785271183_dfd01277cf_m.jpg" width="180" height="240" alt="Noah &lt;3's elephants too" /></a></p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=256074618" />
]]></description>
      <pubDate>Fri, 22 Aug 2008 04:35:21 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=256074618&amp;url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Flisamac%2F2785271183%2F</link>
      <guid isPermaLink="false">tag:flickr.com,2004:/photo/2785271183</guid>
      <source url="http://api.flickr.com/services/feeds/photos_public.gne?id=97806540@N00&amp;format=rss_200">Uploads from lisamac</source>
    </item>
    <item>
      <title>I &lt;3 elephants</title>
      <description><![CDATA[<p><a href="http://www.flickr.com/people/lisamac/">lisamac</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/lisamac/2785270609/" title="I &lt;3 elephants"><img src="http://farm4.static.flickr.com/3073/2785270609_6ae24d3d75_m.jpg" width="180" height="240" alt="I &lt;3 elephants" /></a></p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=256074619" />
]]></description>
      <pubDate>Fri, 22 Aug 2008 04:35:06 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=256074619&amp;url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Flisamac%2F2785270609%2F</link>
      <guid isPermaLink="false">tag:flickr.com,2004:/photo/2785270609</guid>
      <source url="http://api.flickr.com/services/feeds/photos_public.gne?id=97806540@N00&amp;format=rss_200">Uploads from lisamac</source>
    </item>
    <item>
      <title>Eric and Noah at the elephants</title>
      <description><![CDATA[<p><a href="http://www.flickr.com/people/lisamac/">lisamac</a> posted a photo:</p>
<p><a href="http://www.flickr.com/photos/lisamac/2785270111/" title="Eric and Noah at the elephants"><img src="http://farm4.static.flickr.com/3002/2785270111_13ed0d5d6e_m.jpg" width="180" height="240" alt="Eric and Noah at the elephants" /></a></p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=256074620" />
]]></description>
      <pubDate>Fri, 22 Aug 2008 04:34:53 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=256074620&amp;url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Flisamac%2F2785270111%2F</link>
      <guid isPermaLink="false">tag:flickr.com,2004:/photo/2785270111</guid>
      <source url="http://api.flickr.com/services/feeds/photos_public.gne?id=97806540@N00&amp;format=rss_200">Uploads from lisamac</source>
    </item>
    <item>
      <title>25 Painless Ways to Free Up an Hour a Day for Your Goals</title>
      <description/>
      <pubDate>Mon, 18 Aug 2008 13:35:19 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=255633528&amp;url=http%3A%2F%2Ffeeds.feedburner.com%2F%7Er%2Fzenhabits%2F%7E3%2F368102839%2F</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<blockquote><p>“Our life is frittered away by detail. Simplify, simplify.” <strong>- Henry David Thoreau</strong></p></blockquote>
<p>What would you do if you had an extra hour a day?</p>
<p>This is a common barrier I run into when I write about making positive life changes: people don’t have time to pursue their dreams. People don’t have time to exercise. People don’t have time to get organized.</p>
<p>Well, it’s time to make time.</p>
<p>By using some combination of the following, you can free up an hour or more a day. Find the ones that work for you (not all will work for everyone), and then carve out that hour a day.</p>
<p>Then make sure you use that extra hour a day in the best way possible — book that hour on your calendar for something you really, really want to do, whether that’s work on a goal, write a book, start a business, exercise, read more, or whatever. Don’t squander this gift of time!</p>
<ol>
<li><strong>Make an appointment right after work</strong>. Whether it’s exercise or working on some other goal, make an appointment to do it right when you get out of work (at 5 p.m., for example). This works especially well if you have to meet someone else, such as a workout partner or other group or team or coach or partner. You’ll be sure to meet the appointment, which means you won’t stick around work too long, and you’ll be sure to finish all your tasks on time so you can leave on time. This makes you more efficient in the afternoon especially.</li>
<li><strong>Wake up earlier</strong>. I’ve <a href="http://zenhabits.net/2007/05/10-benefits-of-rising-early-and-how-to-do-it/">written about this before</a>, of course, but I’ve found time for goals that are important to me by waking a bit earlier. Exercise, writing, reading — I do those now early in the day, so it doesn’t interfere with family time. Early in the day works well for me and many others, simply because there’s not much going on to distract or interrupt at this time of day.</li>
<li><strong>Turn off the phones</strong>. You don’t have to turn off phones all day long, but you should have some unbroken blocks of time when you don’t take calls, so you can concentrate on your important tasks. This allows you to get more done in less time, as phone calls can eat up chunks of your day if you let them.</li>
<li><strong>Stop checking email</strong>. This doesn’t work for everyone, but if you can stop checking email except at one or two times during the day, you can free up a lot of wasted time. Checking email constantly takes up a lot of time.</li>
<li><strong>Brown bag it</strong>. Many people I know take an hour or more for lunch. While a relaxing lunch can be a good thing, if you take lunch to work, you can eat quickly and either spend the extra time 1) working on a goal; or 2) getting work done so you can leave earlier. Plus, brown bagging it saves money too.</li>
<li><strong>Figure out your core work activities</strong>. What is it that you <strong>really have to do</strong> each day? I mean, the stuff you have to do or your job would fall apart. If you really think about it, a lot of the tasks you do each day (and phone calls and emails, mentioned above, are included in these tasks) don’t really need to be done each day. Sometimes you can do them less often, sometimes you don’t need to do them at all. If you can learn to focus on your core activities, you can get your work done in less time.</li>
<li><strong>Cancel a meeting or two</strong>. Think about the last 4-5 meetings you’ve gone to. How many of them were really valuable? How many of them did you need to be at? It depends on your job, but sometimes you can beg out of a meeting — or just outright cancel it if you have that power — and accomplish the same thing through an email or two. You just saved yourself 30-60 minutes per meeting canceled.</li>
<li><strong>Delegate</strong>. Not everyone has this option, but if you can give some of the tasks on your list to others who are better suited to doing those tasks, you’ll free up time. Do you really need to be doing everything you do, or can some of those tasks be delegated?</li>
<li><strong>Consolidate errands</strong>. If you routinely do errands throughout the week, you’re spending a lot of time driving. Instead, try to do all errands on one day, and plan out an efficient route. Most people will save at least an hour a week in total.</li>
<li><strong>Know your priority</strong>. What is the one thing you need to do today? Get that done, above all else, and do it first. After you do that priority task, the rest is extra really. Cut back on some of the rest to free up time.</li>
<li><strong>Shrink your task list</strong>. Once you’ve identified your core work activities and your top priority for the day, go over your task list and whittle it down to the essentials. Put tasks you don’t need to do now on a someday/maybe list, delete others, delegate others. Keep your task list down to the essentials, to keep from wasting time.</li>
<li><strong>Say no</strong>. One of the biggest groups of time eaters is requests from other people. All day long we get requests, in person, on the phone, in email, through paperwork. Meetings, assignments, requests for information, requests to be on a committee or team … these are all requests that will eat up your time. Say no to all but the essentials.</li>
<li><strong>Get to the point</strong>. While I’m a fan of long, slow conversations, if you’re trying to make time for goals, you need to whittle down needlessly long conversations — especially if it’s just with a co-worker who isn’t a close friend. In person or on the phone, you need to get straight to the point with a minimum of chit-chat, and if the other person isn’t getting to the point, politely ask what he needs from you.</li>
<li><strong>Watch less TV</strong>. Many people watch hours of TV a day. You can easily save an hour a day if you cut TV out, or just watch your single favorite show each day. Don’t channel surf.</li>
<li><strong>Read less online</strong>. If you’re like me, you can spend hours a day reading online. Limit your online reading and focus on your essential tasks.</li>
<li><strong>Don’t talk long on the phone</strong>. Long phone conversations can eat up a lot of your time. Instead, know what you want to accomplish and try to get that done quickly. If someone else is calling you, encourage them to get to the point, and then wrap it up when you’re done. Tell them you have to go because you’ve got something else to get to.</li>
<li><strong>Avoid IM and Twitter and the like</strong>. I’m not saying these types of instant communication don’t have their uses, but if they’re always on and you’re always available, you’re always at the mercy of others. Instead, just make yourself available at set times if necessary, or not at all if it’s not necessary. (And yes, I know the irony of giving this advice after I <a href="http://zenhabits.net/2008/08/the-great-twitter-experiment/">just started Twittering</a>.)</li>
<li><strong>Search, don’t file</strong>. I used to spend a lot of time filing all my computer files and all my emails into nice, organized folders. I’d spend time every day doing this. Now, I just archive everything, on computer and email, and search when I need something. With Quicksilver on the Mac, every file is within a few keystrokes. With Gmail, every email is accessible instantly. No time spent filing!</li>
<li><strong>Leave early</strong>. If you’re using these time-saving tips, you should be able to finish your essential work early. If so, don’t use the extra time to just do more work … leave early! Of course, you’ll probably have to talk to your boss about this, but many people have flexible hours and many bosses would be happy to let you go early if you get your work done. If you set your own hours, set an earlier time to leave and you’ll ensure that you get your work done by that time.</li>
<li><strong>Get the kids to help out</strong>. At home, if you have kids, it saves huge heaploads of time if you let the kids help with cleaning and other tasks. At first, of course, it will cost you time because you have to teach them to do things. But once they learn … it’ll free up much of your time. My kids can help clean the house, reducing by 2/3 the amount of time I have to spend cleaning. Of course, they made the mess in the first place, but that’s another story.</li>
<li><strong>Educate others</strong>. Is there something that other people submit to you that you routinely have to edit or reformat? Teach these people (maybe with an FAQ or tutorial) how to do it right or how you need it so you don’t have to make changes. Are there mistakes people are doing that you routinely have to fix? Are there things you have to do yourself because others don’t know how to do it? Educate them, and save yourself tons of time. It takes time at first, but the payoff is huge.</li>
<li><strong>Automate things</strong>. If people submit stuff to you, or if you routinely have to do routine work, find ways to have the process automated. Technology works wonders these days.</li>
<li><strong>Just say, “That’s enough.”</strong> Often you are overloaded with information and tasks. But if you don’t respond to all of your emails today, or don’t read all of the posts in your RSS reader, or don’t get to all the tasks on your to-do lists … what will happen? If nothing drastic will happen, consider stopping when you’ve gotten to enough.</li>
<li><strong>Start work early</strong>. If you work before everyone gets in the office, you won’t have constant interruptions and distractions. You’ll be amazed how much you can get done between 6 a.m. and 8 a.m. I used to do it when I worked in an office, and because I didn’t take a lunch break — I at ate my desk while working) I could get off at 2 p.m. and spend time with my kids.</li>
<li><strong>Give others authority</strong>. If you have to approve things or make decisions, you might be a bottleneck — things move slower if they have to be channeled through you. Instead, give others the authority to make decisions — with clear instructions about what decisions should be made under what circumstances, and what the limits of their authority are. That’ll remove a bottleneck and free you up from having to make a bunch of huge decisions. Just have a way to monitor things as necessary.</li>
</ol>
<p>—<br>
<em>If you liked this article, please <strong>share it on <a href="http://buzz.yahoo.com/article/1%3A2f1db2f442136d7315be674b3f425237%3A5abe7ea81341e1cb3586c3e516b8ae1e">Yahoo Buzz</a>, del.icio.us, StumbleUpon or  Digg</strong>. I’d appreciate it. :)</em></p>
<p><br>
</p>
<p></p>

<p><a href="http://feeds.feedburner.com/~a/zenhabits?a=2t4HyL"><img src="http://feeds.feedburner.com/~a/zenhabits?i=2t4HyL" border="0"></a></p><div>
<a href="http://feeds.feedburner.com/~f/zenhabits?a=R7UGuK"><img src="http://feeds.feedburner.com/~f/zenhabits?i=R7UGuK" border="0"></a> <a href="http://feeds.feedburner.com/~f/zenhabits?a=pQxqlk"><img src="http://feeds.feedburner.com/~f/zenhabits?i=pQxqlk" border="0"></a> <a href="http://feeds.feedburner.com/~f/zenhabits?a=rxcPrk"><img src="http://feeds.feedburner.com/~f/zenhabits?i=rxcPrk" border="0"></a>
</div><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=255633528" />
]]></content:encoded>
      <category>Productivity &amp; Organization</category>
      <guid isPermaLink="false">tag:google.com,2005:reader/item/17e4986eeabeb690</guid>
      <source url="tag:google.com,2005:reader/feed/http://feeds.feedburner.com/zenhabits">Zen Habits</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Leo]]></dc:creator>
    </item>
    <item>
      <title>Facebook</title>
      <description/>
      <pubDate>Wed, 13 Aug 2008 15:07:00 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=250812701&amp;url=http%3A%2F%2Fgeorgianc.facebook.com%2Fhome.php</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=250812701" />
]]></content:encoded>
      <guid isPermaLink="false">http://georgianc.facebook.com/home.php</guid>
      <source url="http://del.icio.us/rss/lisamac/">Delicious/lisamac</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[lisamac]]></dc:creator>
    </item>
    <item>
      <title>Wordpress Textpattern &amp; Symphony : Simple By Design</title>
      <description/>
      <pubDate>Wed, 13 Aug 2008 15:05:03 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=250812702&amp;url=http%3A%2F%2Fsimple-by-design.org.uk%2Fpermalink%2Fwordpress-textpattern-symphony%2F</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=250812702" />
]]></content:encoded>
      <guid isPermaLink="false">http://simple-by-design.org.uk/permalink/wordpress-textpattern-symphony/</guid>
      <source url="http://del.icio.us/rss/lisamac/">Delicious/lisamac</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[lisamac]]></dc:creator>
    </item>
    <item>
      <title>John Edwards, Hypocrite</title>
      <description/>
      <pubDate>Sat, 09 Aug 2008 18:05:07 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=255633531&amp;url=http%3A%2F%2Fliberalvaluesblog.com%2F%3Fp%3D3810</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>John Edwards on Bill Clinton in 1999:</p>

<blockquote>
  <p>“I think this President has shown a remarkable disrespect for his office, for the moral dimensions of leadership, for his friends, for his wife, for his precious daughter. It is breathtaking to me the level to which that disrespect has risen.”</p>
</blockquote>

<p>I love Edwards’s politics. I wanted to vote for him this year. But I never get tired of finding these quotes from those who wagged their fingers at Clinton who later get caught running around on their own wives.</p>

<div>
<a title="Permanent link to ‘John Edwards, Hypocrite’" href="http://daringfireball.net/linked/2008/08/09/edwards"> ★ </a>
</div><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=255633531" />
]]></content:encoded>
      <guid isPermaLink="false">tag:google.com,2005:reader/item/c3607cc4ed93e561</guid>
      <source url="tag:google.com,2005:reader/feed/http://daringfireball.net/index.xml">Daring Fireball</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[John Gruber]]></dc:creator>
    </item>
    <item>
      <title>Educational Models And Learning In The Digital Age:  What Is Connectivism And What Makes It So Special</title>
      <description/>
      <pubDate>Sat, 09 Aug 2008 10:48:14 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=255633530&amp;url=http%3A%2F%2Ffeedproxy.google.com%2F%7Er%2FRobin-Good-Latest-News%2F%7E3%2F6OpWllLKoNk%2Findex.htm</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<strong>What is connectivism?</strong> If you were to ask Wikipedia without paying too much attention you would discover that this unfamiliar word originates right here in Italy. 

<img alt="educational-models-connectivism_id15064381_size485.jpg" src="http://www.masternewmedia.org/images/educational-models-connectivism_id15064381_size485.jpg" width="485" height="364">
<span>Photo credit: <a href="http://www.stockxpert.com/browse.phtml?f=profile&amp;l=clix">Clix</a></span>

<blockquote>"<em>...at the beginning of the 21st century in Italy, where is known as Connettivismo. It originated in Italian science fiction as an initiative of a group of writers, <strong>bloggers</strong> and artists. The name is derived from the imaginary doctrine that connects the specific knowledge of other disciplines, as introduced by Canadian science fiction author Alfred Elton van Vogt.</em>"  
(Source: <a href="http://en.wikipedia.org/wiki/Connectivism">Wikipedia</a>)</blockquote>
But connecitivism is also something else. If you searched just a little bit deeper you would also find out that <blockquote>"<em>"Connectivism, is a learning theory for the digital age," has been developed by <a href="http://en.wikipedia.org/wiki/George_Siemens">George Siemens</a> based on his analysis of the limitations of <a href="http://en.wikipedia.org/wiki/Behaviourism">behaviourism</a>, <a href="http://en.wikipedia.org/wiki/Cognitivism">cognitivism</a> and <a href="http://en.wikipedia.org/wiki/Constructivism">constructivism</a> to explain the effect technology has had on how we live, how we communicate, and how we learn.</em>"
(Source: <a href="http://en.wikipedia.org/wiki/Connectivism_(learning_theory)">Wikipedia</a>)</blockquote>

<strong>Connectivism combines important elements of many different learning theories</strong>, social structures, and of new communication technologies while having been designed to give birth to new ways of learning in the digital age.

Educational technologists and connectivism prime evangelist George Siemens introduces what characterizes this educational model and what are the key ideas that make it so special.

Here all the details:



<br><br><br>
<h2>What Is The Unique Idea In Connectivism?</h2>

<em>by George Siemens</em>

<img alt="educational-models-connectivism_id147780_size250.jpg" src="http://www.masternewmedia.org/images/educational-models-connectivism_id147780_size250.jpg" width="250" height="263">
<span>Photo credit: <a href="http://www.stockxpert.com/browse.phtml?f=profile&amp;l=nruboc">Stephen Coburn</a></span>

<blockquote><strong>Late last week</strong>, I threw out <a href="http://twitter.com/gsiemens/statuses/875982639">a question</a> to <a href="http://www.stager.org/">Gary Stager</a> on Twitter: "<em>when a constructivist constructs knowledge, where does it reside physically/biologically?</em>". 

Gary replied with something along the lines of "<em>we don't know and I don't care. I can teach well without knowing the details of how the mind works</em>". Fair enough.

<strong>Different educators adopt different approaches</strong> in order to makesense of the teaching and learning process. I'm trying to define it from the perspective of how our mind works. 

Gary is - in true constructionist form (and I don't mean that negatively!) - is focused more on the practical results and activities.

<strong>Gary then asked</strong> a critical question: what is the unique idea in <a href="http://en.wikipedia.org/wiki/Connectivism_(learning_theory)">connectivism</a>? The response takes a bit longer than the 140 characters allowed by Twitter, so I'll tackle it here.

First, a new idea is often an old idea in today's context. For example, what is the new idea in <a href="http://en.wikipedia.org/wiki/Constructivism">constructivism</a>? That people construct their own knowledge? Or the social, situated nature of learning? Or that knowledge is not something that exists outside of a knower? (i.e. there is no "<em>there</em>" out there). 

Obviously each of those concepts can easily be traced to numerous philosophers. The ideas have existed in various forms over 2000 years ago. 

<strong>What is new with constructivism today</strong> is that these principles are being (have been) coupled with existing calls for educational reform by individuals such as Spencer, Dewey, and Piaget. 

<strong>See </strong><a href="http://en.wikipedia.org/wiki/Kieran_Egan">Kieran Egan</a>'s book <a href="http://books.google.com/books?id=v9ZYrHsnSqoC&amp;dq=Kieran+Egan&amp;pg=PP1&amp;ots=5yEw7BMvya&amp;sig=dFgEUtXfd2bxwCgg_jXQW7lLwx0&amp;hl=en&amp;sa=X&amp;oi=book_result&amp;resnum=1&amp;ct=result#PPP1,M1">Getting it Wrong from the Beginning</a>  for a more detailed exploration. But it is more than just the shift in policy and calls for increased learner control. 

<a href="http://en.wikipedia.org/wiki/Constructivism">Constructivism</a> made sense in that it rode on the cultural trends and philosophical viewpoints of the day. As authority in society shifted, Truth was questioned, <a href="http://en.wikipedia.org/wiki/Post-modernism">post-modernism</a> flourished, and our understanding of diverse cultures and ways of knowing increased, it only seemed natural that cognitivism and <a href="http://en.wikipedia.org/wiki/Behaviorism">behaviourism</a> took a back seat. 

<strong>What is new in constructivism</strong>, and please provide commentary if you disagree, is that it combined existing ideas into a framework that resonated with the needs and trends of the current era.

In this regard, <a href="http://en.wikipedia.org/wiki/Connectivism_(learning_theory)">connectivism</a> also shares in bringing to the forefront ideas of philosophers and theorists from previous generations. Much of what is unique is the particular combination and integration of ideas that reflect the broader societal and information-based trends. But I do think there are unique ideas in connectivism.

<strong>Before I get into those</strong>, however, I'll address some of the existing theory that serves as the fertile soil of connectivism (and, I think, to a large degree constructivism).</blockquote>



<br><br>
<h2>From Whence Does Connectivism Originate?</h2>

<img alt="educational-models-connectivism-source_id393135_size190.jpg" src="http://www.masternewmedia.org/images/educational-models-connectivism-source_id393135_size190.jpg" width="190" height="278">
<span>Photo credit: <a href="http://www.stockxpert.com/browse.phtml?f=profile&amp;l=cphoto">Cristophe Testi</a></span>

 <strong>All ideas have a heritage</strong>. All concepts have roots. A few related to connectivism:<blockquote><ol><li><strong>Tools augment our ability</strong> to interact with each other and to act. 

Tools are extensions of humanity, increasing our ability to externalize our thinking into forms that we can share with others. Language is an example. Activity theory provides a basis in this regard. So does the socio-cultural work of Vygotsky.

<strong>Gibson's notion</strong> of affordances of tools, while based in his research on perception, also serves a role in validating tool use. And how could we leave Wittgenstein's notion of negotiated understanding out of a language discussion? Similarly, tools are "<em>carriers of patterns of previous reasoning</em>" (Pea) and reflect some type of ideology. This view is also prominent in Postman's assertion that all technology carries an ideology.</li>

<br>
<li><strong>Contextual/situated nature of learning</strong>. Situated learning draws from the work of Lave and Wenger, though, it's not too much of a stretch to say that Papert's emphasis on active doing fits this at least partly.</li>

<br>
<li><strong>Social learning theory</strong>. Here we can draw from Bandura's emphasis on self-efficacy, <a href="http://en.wikipedia.org/wiki/Jerome_Bruner">Bruner</a>, <a href="http://en.wikipedia.org/wiki/Vygotsky">Vygotsky</a>, and others.</li>

<br>
<li><strong>Epistemological views:</strong> all learning theory is rooted in epistemology (even though von Glaserfeld declares we are in a post-epistemological era, suggesting that providing a theory of knowledge is exactly what constructivism cannot do). As an epistemological basis for connectivism, 

I've found <a href="http://en.wikipedia.org/wiki/Stephen_Downes">Stephen Downes</a>' <a href="http://it.coe.uga.edu/itforum/paper92/paper92.html">work on connective knowledge valuable</a>. More recently, Dave Cormier has been advancing the concept of <a href="http://innovateonline.info/?view=article&amp;id=550">rhizomatic knowledge</a> and community as curriculum.</li>

<br>
<li><strong>Concept of mind</strong>. The notion of mind is enormously complex. 

We encounter a unique blend of philosophers, neuroscientists, and artificial intelligence in this area such as Churchlands, <a href="http://en.wikipedia.org/wiki/Seymour_Papert">Papert</a> and <a href="http://en.wikipedia.org/wiki/Marvin_Minsky">Minsky</a>, <a href="http://en.wikipedia.org/wiki/James_McClelland">McClelland</a> and <a href="http://en.wikipedia.org/wiki/David_Rumelhart">Rumelhart</a>, Clark (embodied cognition), Spivey, and more. 

Mind is seen - too varying degrees - as embodied and distributed across numerous devices, relationships and artifacts. Hutchins popularized the notion in his text on Distributed Cognition. 

<strong>These concepts</strong> are also reflected in Weicks' papers on heedful interrelating. Salomon's edited text on Distributed Cognitions extends these ideas into an educational context.</li>

<br>
<li><strong>We also find a compatible view of connectivism</strong> in the work of new media theorists such as <a href="http://www.masternewmedia.org/news/2008/07/25/marshall_mcluhan_the_medium_is/">McLuhan</a>, exploring the impact of technology on what it means to be a human. 

The impact of technology on humanity will continue to grow in greater prominence as we are increasingly able to augment human cognitive functioning through pharmaceuticals and the future promise of embedded chips.</li>

<br>
<li><strong>We also find support for connectivism</strong> in the more nebulous theories of complextiy and systems-based thinking. 

For example, Mason, Davis, and others, recently published a series of articles on the impact of complexity theory on the enterprise of education. 

Individuals like Barnnett suggest it should more accurately be called "<em>supercomplexity</em>" as we are not able to even begin to understand the directions things will take in the future.</li>

<br>
<li><strong>Network theory</strong>. Sociologists, mathematicians, and physicists have spent several decades defining networks and network attributes. We are able to define key network structures, manner of behaviour, and flow of information. 

Concepts like small worlds, power laws, hubs, structural holes, and weak/strong ties are common in literature. Educational focus of networks comes from work by Starr-Roxanne Hiltz, Chris Jones, Martin de Laat, and others. 

<strong>Networks are prominent</strong> in all aspects of society, not just education. This prominence is partly due to the recognizable metaphor of the internet...but networks have always existed. As Barabasi states, networks are everywhere. We just need an eye for them.</li></ol></blockquote>



<br><br>
<h2>The Unique Ideas In Connectivism</h2>

<img alt="educational-models-connectivism-ideas_id5940701_size235.jpg" src="http://www.masternewmedia.org/images/educational-models-connectivism-ideas_id5940701_size235.jpg" width="235" height="235">
<span>Photo credit: <a href="http://www.stockxpert.com/browse.phtml?f=profile&amp;l=solos">Sergii Tsololo</a></span>

<strong>If those elements form the basis of connectivism</strong> - and to varying degrees share in the heritage of constructivism and cognitivism - what is it that's unique about connectivism. As a starter to the discussion, and one that will be a critical focus in our fall course, I'll suggest the following:<ol><li><strong>Connectivism is the application</strong> of network principles to define both knowledge and the process of learning. 

Knowledge is defined as a particular pattern of relationships and learning is defined as the creation of new connections and patterns as well as the ability to maneuver around existing networks/patterns.</li>

<br>
<li><strong>Connectivism addresses the principles of learning</strong> at numerous levels - biological/neural, conceptual, and social/external. This is a key concept that I'll be writing about more during the online course. 

What I'm saying with connectivism (and I think Stephen would share this) is that the same structure of learning that creates neural connections can be found in how we link ideas and in how we connect to people and information sources. One scepter to rule them all.</li>

<br>
<li><strong>Connectivism focuses</strong> on the inclusion of technology as part of our distribution of cognition and knowledge. 

Our knowledge resides in the connections we form - where to other people or to information sources such as databases. Additionally, technology plays a key role of:

<ul><li><strong>Cognitive grunt work</strong> in creating and displaying patterns.</li> 
<li><strong>Extending and enhancing</strong> our cognitive ability. 

<br>
<li><strong>Holding information</strong> in ready access form (for example, search engines, semantic structures, etc). </li></li></ul>

We see the beginning of this concept in tool-based discussions of <a href="http://en.wikipedia.org/wiki/Activity_theory">Activity Theory</a>. Connectivism acknowledges the prominence of tools as a mediating object in our activity system, but then extends it by suggesting that technology plays a central role in our distribution of identity, cognition, and thereby, knowledge.</li>

<br>
<li><strong>Context</strong>. While other theories pay partial attention to context, connectivism recognizes the fluid nature of knowledge and connections based on context. As such, it becomes increasingly vital that we focus not on pre-made or pre-defined knowledge, but on our interactions with each other, and the context in which those interactions arise. 

The context brings as much to a space of knowledge connection/exchange as do the parties involved in the exchange.</li>

<br>
<li><strong>Understanding.</strong> Coherence. Sensemaking. Meaning. These elements are prominent in constructivism, to a lessor extent cognitivism, and not at all in behaviourism. 

But in connectivism, we argue that the rapid flow and abundance of information raises these elements to critical importance. As stated at the start of this post, constructivism found it's roots of growth in the social reform-based climate and post-modern era. 

<strong>Connectivism finds</strong> its roots in the climate of abundance, rapid change, diverse information sources and perspectives, and the critical need to find a way to filter and make sense of the chaos. As such, the networked centrality of connectivism permits a scaling of both abundance and diversity. 

The information climate of continual and ongoing change raises the importance of being continually current. As Anderson has stated, "<em>more is different</em>". The "<em>more</em>" of information and technology today, and the need to stay current, forms the climate that gives roots to connectivism.</li></ol>




<br>
<em>Note: Contribute your own ideas, commentary and feedback to George Siemens addressing of what Connectivism really is by providing comments also <a href="http://connectivism.ca/blog/2008/08/what_is_the_unique_idea_in_con.html">on his site</a>. 
</em>


<br><br><br><br>
<span>Originally written by <a href="http://www.elearnspace.org/blog/">George Siemens</a> and published as <a href="http://connectivism.ca/blog/2008/08/what_is_the_unique_idea_in_con.html">What is the unique idea in Connectivism?</a> on <a href="http://connectivism.ca">Connectivism Blog</a>. First published on August 6th 2008.</span>

<img width="118" height="89" alt="George-Siemens.jpg" src="http://www.masternewmedia.org/images/George-Siemens.jpg">

<span>To learn more about George Siemens and to access extensive information and resources on elearning check out <a><a href="http://www.elearnspace.org/">www.elearnspace.org</a></a>. Explore also <a href="http://www.connectivism.ca/">George Siemens connectivism site</a> for resources on the changing nature of learning and check out his new book "<em><a href="http://www.amazon.com/Knowing-Knowledge-George-Siemens/dp/1430302305">Knowing Knowledge</a></em>". </span>
<p><a href="http://feedads.googleadservices.com/~a/3t04vav2k48e4vjqa5lrnp5354/a"><img src="http://feedads.googleadservices.com/~a/3t04vav2k48e4vjqa5lrnp5354/i" border="0" ismap></a></p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=255633530" />
]]></content:encoded>
      <category>Learning - Educational Technologies</category>
      <guid isPermaLink="false">tag:google.com,2005:reader/item/fffd19a5b73c56d8</guid>
      <source url="tag:google.com,2005:reader/feed/http://www.masternewmedia.org/robingoodlatestnews.xml">Robin Good&amp;#39;s Latest News</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[George Siemens]]></dc:creator>
    </item>
    <item>
      <title>Make Your Employees’ Lives Easier Using Knowledge Management</title>
      <description/>
      <pubDate>Sat, 09 Aug 2008 10:12:25 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=255633529&amp;url=http%3A%2F%2Ffeeds.feedburner.com%2F%7Er%2FSlackerManager%2F%7E3%2F360215895%2Fmake-your-employees%25e2%2580%2599-lives-easier-using-knowledge-management.html</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<h3><em><a href="http://www.slackermanager.com/wp-content/uploads/2008/08/stack-of-books.jpg" title="stack of books"></a>This is a guest post from Aaron Stannard, who is the editor of <a href="http://blog.smartdraw.com/">Working Smarter</a>, a productivity blog for managers and presenters.</em></h3>
<p>The best thing a manager can do for his employees, in my opinion, is to make their lives easier by eliminating or simplifying tedious tasks that are not directly related to their employees’ job descriptions.</p>
<p style="text-align:center"><img src="http://www.slackermanager.com/wp-content/uploads/2008/08/stack-of-books.jpg" alt="stack of books"></p>
<p>Here’s a list of some of those extraneous tasks that make employees frustrated:</p>
<ul>
<li>Being unable to determine who is responsible for certain projects or activities within a company;</li>
<li>Not understanding key processes, such as how to file an expense report;</li>
<li>Not knowing what is expected of them and not having any clear goals;</li>
<li>Having to beg and crawl through the office asking for looking for key resources, like customer data and sales records;</li>
<li>Being left out of the loop about changes until the day of implementation; and</li>
<li>Lastly, not knowing whom to report to regarding specific activities.</li>
</ul>
<p>All of these issues are commonplace in the workforce and they are a constant pest to both employees and employers; the most important thing to note is that all of these issues are <em>solvable</em> using knowledge management.</p>
<p>Knowledge management is a simple concept; take all of the specialized knowledge needed to run your organization and put it into one place where employees can find it. We use it at work and it saves me <em>a lot</em> of trouble.</p>
<p>So if you’re interested in figuring out how to use knowledge management to make your employees’ lives easier, try these five things:</p>
<p><strong>1. Institutionalize Knowledge</strong></p>
<p>The institutionalization of knowledge is a concept that I first came across when I was required to read sections of <em>Built to Last: The Successful Habits of Visionary Companies</em> when I joined a college fraternity.</p>
<p>Truly great companies take the knowledge required to perform any task within the organization and compile it into a canon, thus making the task of passing on that knowledge to new employees much more trivial compared to companies that don’t institutionalize knowledge.</p>
<p>Take my word for it – investing some time into putting all of your company’s specialized knowledge into one place is well-worth the trouble. Your employees won’t have to come and ask you where they can find information about X, Y, and Z if you build a robust knowledge repository and show them how to use it.</p>
<p><strong>2. Clearly Define Responsibilities then Publish Them</strong></p>
<p><a href="http://blog.smartdraw.com/archive/2008/05/12/why-the-organization-chart-is-not-obsolete.aspx">The Org Chart is not dead</a>, folks. Org charts are a useful planning tool for planning the structure of your organization, but using them to clearly define reporting structures is crucial too. Think about it – many of your employees are going to have to reach across departments in order to get their work done; sales guys have to talk to marketing guys, marketing guys have to talk to the IT guys, IT guys have to talk to the HR guys, and the beat goes on.</p>
<p>Do your direct reports a favor and give them a hint – publish an org chart with responsibilities listed on it. Let the marketing guys know <em>which guy in IT</em> handles pushing live content onto the company website, let the sales guy know <em>which guy in marketing</em> writes the copy for corporate resale, let the IT guys know <em>which guy in HR</em> is schedules the interviews.</p>
<p>If you can’t fit all of that information onto an org chart then you should still do <em>something</em>. When I interned for a Fortune 500 company a few years back I was able to actually search through the company intranet to find people responsible for very specific operations that were related to my work; that’s another solution if an annotated org chart won’t cut it.</p>
<p><strong>3. Organize Work into Processes</strong></p>
<p>Your work and your direct reports’ work should be organized into processes when possible. <a href="http://blog.smartdraw.com/archive/2008/04/28/is-your-work-a-process-here_2700_s-why-it-should-be.aspx">Processes make it much easier to train new employees</a> and they also make it easier to measure the quality of results.</p>
<p>Have your reports document how they perform routine tasks and put it in the knowledge repository; many business processes don’t change all that frequently – personnel changes but processes shouldn’t. Having those processes documented in a knowledge repository will prevent newcomers from having to reinvent the wheel every time they need to do something routine.</p>
<p>Knowing that there’s a standard way to handle routine tasks, like filing an expense report, eliminates a lot of the guesswork for new employees and this generally makes for a much easier transition into the organization.</p>
<p><strong>4. Invest More Time into Orienting New Hires with the Company Knowledgebase</strong></p>
<p>One thing that employers should do more often is spend more time orienting employees with the company knowledgebase. You, the manager, will have a pretty good idea about all of the stuff that your direct reports are going to run into over the course of their work.</p>
<p>Give new hires some orientation materials which explain to them how to perform some standard routines within your business and, even better, how to use any knowledge management systems that your organization implements.</p>
<p>It seems to me that a lot of managers are comfortable letting their new hires figure everything out for themselves via trial by fire; I say “that’s wasteful” and ultimately, frustrating for those new hires. Instead, throw them a bone with some decent orientation materials.</p>
<p><strong>5. Keep Stored Knowledge Current</strong></p>
<p>Once you’ve made the investment of building a reliable knowledge management system then it’s important to keep that information up-to-date. A knowledge repository full of incorrect, outdated information isn’t much more helpful to your employees than not having a knowledge repository to begin with.</p>
<p>Have you and your direct reports spend some time to periodically revisit and update your company’s knowledgebase. Keep it up to date and make it easy for new hires and for direct reports with new responsibilities to find what they need to get the job done.</p>
<p>I think that the combination of all of these things will really make life a lot easier for your employees and training a breeze. Consider giving it a try in your organization.</p>
<p>By the way, my company uses Microsoft SharePoint for its knowledge management system and it works reasonably well. What knowledge management solutions have you tried? Are there some good practices for knowledge management that I left off of this list?</p>
<p>Photo Credit: books in a stack (a stack of books) by <a href="http://www.flickr.com/photos/austinevan/1225274637/">http://www.flickr.com/photos/austinevan/1225274637/</a></p>
<p><a href="http://www.slackermanager.com/?p=1309&amp;akst_action=share-this" title="E-mail this, post to del.icio.us, etc." rel="nofollow">Share This</a>
</p>
<p><a href="http://feeds.feedburner.com/~a/SlackerManager?a=Bj3lHf"><img src="http://feeds.feedburner.com/~a/SlackerManager?i=Bj3lHf" border="0"></a></p><div>
<a href="http://feeds.feedburner.com/~f/SlackerManager?a=THAsFK"><img src="http://feeds.feedburner.com/~f/SlackerManager?i=THAsFK" border="0"></a> <a href="http://feeds.feedburner.com/~f/SlackerManager?a=JFMNFK"><img src="http://feeds.feedburner.com/~f/SlackerManager?i=JFMNFK" border="0"></a> <a href="http://feeds.feedburner.com/~f/SlackerManager?a=4mTgtk"><img src="http://feeds.feedburner.com/~f/SlackerManager?i=4mTgtk" border="0"></a> <a href="http://feeds.feedburner.com/~f/SlackerManager?a=jODnNk"><img src="http://feeds.feedburner.com/~f/SlackerManager?i=jODnNk" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/SlackerManager/~4/360215895" height="1" width="1"><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=255633529" />
]]></content:encoded>
      <category>management</category>
      <guid isPermaLink="false">tag:google.com,2005:reader/item/60eaad96d08c2667</guid>
      <source url="tag:google.com,2005:reader/feed/http://www.slackermanager.com/feed">Slacker Manager</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[David Zinger]]></dc:creator>
    </item>
    <item>
      <title>Minimalist Fitness: How to Get In Lean Shape With Little or No Equipment</title>
      <description/>
      <pubDate>Fri, 08 Aug 2008 00:24:26 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=255633534&amp;url=http%3A%2F%2Ffeeds.feedburner.com%2F%7Er%2Fzenhabits%2F%7E3%2F358914521%2F</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>Two common barriers for people who want to exercise and get in shape are a lack of time and money needed for fitness.</p>
<p>Who has the time to go to the gym, or buy expensive equipment, or take long bike rides?</p>
<p>Well, if those are the things stopping you, you’re in luck.</p>
<p>It takes no equipment to get a great workout and get in shape, and with one or two pieces of simple equipment, you can turn that great workout into a fantastic one, you magnificent beast, you.</p>
<p>And with little or no equipment required for a fantastic workout, you can do it at home, or wherever you are. Even if you’re in <a href="http://www.likelytool.com/Isometrics.htm">solitary confinement</a>.</p>
<p>It’s hard not to find time for this type of workout — you can do it while watching TV, for goodness sake!</p>
<p><strong>The Pros and Cons of Bodyweight Exercises</strong></p>
<p>Using just your bodyweight, you can do a large number of challenging exercises. I designed a workout that I do when I can’t make it to the gym, for example, and I can testify that it’s incredibly challenging (more on that below).</p>
<p>If you add just one or two pieces of equipment: a dumbbell, a kettlebell, a jump rope, a medicine ball, or a chinup bar, for example, you can increase the challenge even more.</p>
<p>Now, I’m not putting down lifting weights — I truly believe in lifting heavy weights when you can, but there are tremendous benefits from bodyweight exercises as well:</p>
<ol>
<li>No gym fees or need to buy expensive equipment.</li>
<li>You can do the workout anywhere, anytime.</li>
<li>Most exercises involve many muscles working in coordination, resulting in great overall fitness and strength.</li>
<li>For people who are just starting with strength training, bodyweight is often more than enough to begin with. And it gives you a good foundation of strength you can build on later.</li>
</ol>
<p>Bodyweight exercises aren’t the only thing you should ever do, however, for several reasons:</p>
<ol>
<li>After awhile (a couple months perhaps), they aren’t all that challenging. You’ll need to continue to build your strength by adding weights. You can do that with some simple equipment (see below).</li>
<li>If you don’t have at least one or two pieces of equipment — a chinup bar or a resistance band perhaps — some muscles don’t get worked out as much as others. That’s not a problem over the short term, but over the long term you’ll want to make sure you get a balance.</li>
</ol>
<p>I suggest starting with bodyweight exercises, and then slowly transitioning to a combination of bodyweight and weight training to get a good balance. And even if you’re doing a complete weight training program, you can always use bodyweight exercises anytime you can’t make it to the gym.</p>
<p><strong>My Workout — Just a Sample</strong></p>
<p>What follows is a little workout I’ve been doing recently when I can’t go to the gym — it’s just a collection of exercises that use compound muscles and joints to give me a total-body workout with nothing but my bodyweight and my chinup bar.</p>
<p>However, this is not the only workout you can do — not by a long shot. This is a sample, but you should look at the next section for a much wider variety of challenges.</p>
<p><strong>How to do this workout</strong>: do a bit of a warmup — jumping jacks, jump rope, or just jogging in place for a few minutes will get your heart rate going. Then do the exercises in order, for 30 seconds to two minutes (depending on what kind of shape you’re in), with as little rest in between as possible. If you’re new to exercise, feel free to rest fully between exercises, but if you’re in decent shape, doing them one after another is a great workout. Like me, you’ll probably have to stop to catch your breath a few times — it’s a tough workout!</p>
<ol>
<li>Pullups (palms facing away from you). Chinup bar required (<a href="http://www.amazon.com/gp/product/B0007W2FLI?ie=UTF8&amp;tag=zenhab-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B0007W2FLI">here’s the one I use</a><img style="border:none !important;margin:0px !important" src="http://www.assoc-amazon.com/e/ir?t=zenhab-20&amp;l=as2&amp;o=1&amp;a=B0007W2FLI" border="0" alt="" width="1" height="1">). (<a href="http://www.youtube.com/watch?v=RDA84beh6Os">Video</a>.)</li>
<li>Pushups. As many as you can (<a href="http://www.youtube.com/watch?v=Km1v-jbeNsw&amp;">video</a>). Do modified pushups if you can’t do full pushups, with your knees on the floor (<a href="http://www.youtube.com/watch?v=Sxv7lL34kS0">video</a>). If those are still too hard, do wall pushups, leaning against the wall or a chair.</li>
<li>Jump squats. Basically you squat down until your thighs are parallel to the floor, then jump up as high as you can, and repeat. (<a href="http://www.youtube.com/watch?v=MJ6KJintn70">Video</a>.)</li>
<li>Bicycle crunches. I don’t normally recommend crunches, but these use a good combination of core muscles. (<a href="http://www.youtube.com/watch?v=wqoD0Bdggto">Video</a>.)</li>
<li>Jumping lunges. (<a href="http://www.youtube.com/watch?v=_zLTDUFjbXA">Video</a>.)</li>
<li>Burpees. (<a href="http://www.youtube.com/watch?v=c_Dq_NCzj8M">Video</a>.)</li>
<li>Hanging knee raises. Chinup bar required. (<a href="http://www.youtube.com/watch?v=kCI13rqqHj8">Video</a>.)</li>
<li>Hindu pushups. (<a href="http://www.youtube.com/watch?v=9ZgKSSDISSo">Video</a>.)</li>
<li>Russian twists. (<a href="http://www.youtube.com/watch?v=oCB3kxqhbuY">Video</a>, but you don’t need to use the medicine ball as shown.)</li>
<li>Diamond pushups. (<a href="http://www.youtube.com/watch?v=cnvVeq_r3ro">Video</a>.)</li>
<li>Chinups (palms facing toward you). Chinup bar required. (<a href="http://www.youtube.com/watch?v=uz-SW04cMOc">Video</a>.)</li>
</ol>
<p><strong>Create Your Own Awesome Workout</strong></p>
<p>Now that you’ve seen my sample workout, you can create your own by picking whatever exercises tickle your fancy. Just choose 5-12 exercises and do them all, either with or without resting. Once that gets easy, do a second circuit.</p>
<p>A few suggestions:</p>
<ol>
<li>Choose a variety of exercises that work out all the parts of your body. Don’t do all variations of pushups, for example. You should be doing some pulling exercises (like pullups), some lower-body exercises, like lunges and squats, and others that work out all of your body, like burpees.</li>
<li>If you want a real challenge, mix cardio exercises (see below) with the strength exercises.</li>
<li>If you have some of the equipment listed below, definitely use them. Or buy one or two pieces of equipment … but there’s no need to rush out and buy a whole bunch of things. You can get a great workout without equipment, at least for awhile.</li>
<li>If you’re just starting out, take it easy and gradually build up. Don’t get discouraged, and don’t overdo it!</li>
<li>As you get stronger, gradually add weights. Dumbbells, barbells, kettlebells, and medicine balls are some good ways to do that. It’ll take a couple months of bodyweight exercises, though, before you really need to move to weights.</li>
</ol>
<p><strong>Basic bodyweight exercises</strong></p>
<p>There are many, many variations of bodyweight exercises, but here are some of the more common ones:</p>
<ul>
<li>Pushups (there are many variations — Hindu pushups (<a href="http://www.youtube.com/watch?v=9ZgKSSDISSo">video</a>), dive bombers, diamond pushups (<a href="http://www.youtube.com/watch?v=cnvVeq_r3ro">video</a>) and <a href="http://www.youtube.com/watch?v=rtcH9JUzurY">others</a>)</li>
<li>Burpees (<a href="http://www.youtube.com/watch?v=c_Dq_NCzj8M">video</a>)</li>
<li>Squats (<a href="http://www.youtube.com/watch?v=qRnGI3c5Jjs">video</a>) (variations: jump squats (<a href="http://www.youtube.com/watch?v=MJ6KJintn70">video</a>), Hindu squats (<a href="http://www.youtube.com/watch?v=jPSVpo4mzNI">video</a>))</li>
<li>Lunges (<a href="http://www.youtube.com/watch?v=S_hoiumFkgE">video</a>) (variation: jumping lunges, side lunges)</li>
<li>Chair dips (<a href="http://www.youtube.com/watch?v=0vOy7D1P5tA">video</a>)</li>
<li>Planks (<a href="http://www.youtube.com/watch?v=MHQmRINu4jU">video</a>) (variation: side plank)</li>
<li>Crunches - my favorite: bicycle crunches (<a href="http://www.youtube.com/watch?v=wqoD0Bdggto">video</a>)</li>
<li>Bear crawl - crawl quickly on hands and feet (<a href="http://www.youtube.com/watch?v=m8-zBUSOjrw">video</a>)</li>
<li> Lateral barrier jump - jump sideways, over an obstacle (<a href="http://www.youtube.com/watch?v=hADsX-H2O5w">video</a>)</li>
<li><a href="http://en.wikipedia.org/wiki/Isometrics">Isometrics</a></li>
<li><a href="http://en.wikipedia.org/wiki/Plyometrics">Plyometrics</a></li>
</ul>
<p><strong>Exercises requiring minimal equipment</strong></p>
<p>You don’t need to buy all of this equipment, but if you have any, these are great. Or buy one or two pieces in order to add an extra challenge to your workout:</p>
<ul>
<li>Pullup bar: Chinups, pullups, hanging knee raises (<a href="http://www.amazon.com/gp/product/B0007W2FLI?ie=UTF8&amp;tag=zenhab-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B0007W2FLI">here’s the one I use</a><img style="border:none !important;margin:0px !important" src="http://www.assoc-amazon.com/e/ir?t=zenhab-20&amp;l=as2&amp;o=1&amp;a=B0007W2FLI" border="0" alt="" width="1" height="1">)</li>
<li>Resistance band</li>
<li>Medicine ball</li>
<li>Kettlebell (<a href="http://www.youtube.com/watch?v=Lwme8rkzetg">video</a>)</li>
<li>Dumbbells</li>
<li>Tractor tires — there are lots of exercises where you flip tires, jump through them, etc.</li>
</ul>
<p><strong>Cardio exercises</strong></p>
<ul>
<li>Jumping jacks</li>
<li>Jump rope - requires jump rope, of course, but it’s a great workout (<a href="http://www.youtube.com/watch?v=k9DPme8v6kc">video</a>)</li>
<li> Side shuffles</li>
<li>Touchdowns</li>
<li>Run 800 meters (or a mile)</li>
<li>Interval running</li>
<li>Rowing (requires a rowing machine)</li>
<li>Other cardio exercise machine if you have it</li>
</ul>
<p><strong>Do you have a favorite minimalist workout routine? Let us know in the comments.</strong></p>
<p>—<br>
<em>If you liked this article, please <strong>share it on del.icio.us, StumbleUpon or Digg</strong>. I’d appreciate it. :)</em></p>
<p> <br>
—<br>
<strong>Elsewhere</strong>: <a href="http://writetodone.com/2008/08/08/the-tremendous-importance-of-reading-for-writers-what-leos-reading-and-an-ask-the-readers/">The Tremendous Importance of Reading for Writers, What Leo’s Reading, and an Ask the Readers</a></p>

<p><a href="http://feeds.feedburner.com/~a/zenhabits?a=MQvRwV"><img src="http://feeds.feedburner.com/~a/zenhabits?i=MQvRwV" border="0"></a></p><div>
<a href="http://feeds.feedburner.com/~f/zenhabits?a=FLKz6K"><img src="http://feeds.feedburner.com/~f/zenhabits?i=FLKz6K" border="0"></a> <a href="http://feeds.feedburner.com/~f/zenhabits?a=gvmIqk"><img src="http://feeds.feedburner.com/~f/zenhabits?i=gvmIqk" border="0"></a> <a href="http://feeds.feedburner.com/~f/zenhabits?a=8yKyPk"><img src="http://feeds.feedburner.com/~f/zenhabits?i=8yKyPk" border="0"></a>
</div><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=255633534" />
]]></content:encoded>
      <category>Fitness</category>
      <guid isPermaLink="false">tag:google.com,2005:reader/item/2ee87de62623c8b1</guid>
      <source url="tag:google.com,2005:reader/feed/http://feeds.feedburner.com/zenhabits">Zen Habits</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Leo]]></dc:creator>
    </item>
    <item>
      <title>Inspiring Links: Week of 3rd August 2008</title>
      <description/>
      <pubDate>Sun, 03 Aug 2008 10:09:55 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=255633533&amp;url=http%3A%2F%2Flifecoachesblog.com%2F2008%2F08%2F03%2Finspiring-links-week-of-3rd-august-2008%2F</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>“Stop and smell the roses. You’re never too busy to enjoy the simple pleasures that life affords you.” The Simple Dollar offers you <a href="http://www.thesimpledollar.com/2008/02/02/10-things-to-do-today/">10 Things to Do Today</a> to live a truly rich life.</p>
<p>“Consider everything an experiment.” <a href="http://hi-and-low.typepad.com/my_weblog/2008/01/a-new-year.html">10 rules</a> from Sister Corita Kent at Hi + Low.</p>
<p>“Be intent on action, not on the fruits of action. Avoid attraction to the fruits and attachment to inaction.” Get Rich Slowly weighs in on <a href="http://www.getrichslowly.org/blog/2008/01/11/some-final-thoughts-on-work-education-and-fulfillment/">finding fulfillment</a> in your work.</p>
<p>“Be safe and be optimistic. There is a lot to be grateful for…and just as much to look forward to.” After having lost two close friends to suicide, Tim Ferriss shares <a href="http://www.fourhourworkweek.com/blog/2008/01/23/depression-how-you-label-determines-how-you-feel/">three ways to overcome depression</a>.</p>
<p>“When you adopt obsession, you require hard hits of big things to wake up the you that has become numb. It’s as if food has to be spicier, saltier, and fattier. Music has to be louder and faster. Moments need to be “events” to get you to notice them. It takes more flash to feel good. It takes more bling to be present. When you remember delight - you taste, you express, and you smile. You remember to feed yourself and be fed. You remember to notice. You cherish.” Christine Kane on <a href="http://christinekane.com/blog/the-architecture-of-delight/">The Architecture of Delight</a>.</p>
<p>“You have to be satisfied with yourself as you are now in order to truly appreciate the change in the future.” Pam tells us why <a href="http://www.escapefromcubiclenation.com/get_a_life_blog/2007/12/the-road-to-hel.html">the road to hell is paved with self improvement</a>.</p>
<p>“It takes courage, but remember not to trade in what you want most, for what you want now.” Stephen Covey shares some wise advice on <a href="http://www.stephencovey.com/blog/?p=12">How to Strike a Work and Life Balance</a>.</p>
<p>“One day, you might still become more than your car, your condo, your clothes and your credit cards. But first you will have to climb past Level 4. Good luck.” Mr Wang on <a href="http://mrwangsaysso.blogspot.com/2008/01/conspicuous-consumption-and-growth-of.html">Conspicuous Consumption And The Growth of Human Beings</a>, or how flashy yuppies paint themselves into a corner.</p>
<p>“All that is required of you to come across as confident, is a healthy love for yourself. Being completely grounded and comfortable in who you are.” If being a yuppie is seriously not your style, Kinowear gives you some good advice on how to avoid <a href="http://www.kinowear.com/blog/the-psychotic-yuppie-mentality/">The Psychotic Yuppie Mentality</a>.</p>
<p>“It does not matter the language. Spirit, mind and heart are the most important things.” Bujinkan senior Pedro Fleitas writes about the day he discovered <a href="http://www.ashidome.com/uo/1096.htm#03">communication through the heart</a> from a drunk Japanese man. An appropriate inspiring link to end this post with as I’m be heading to Japan for the next two weeks myself, and training in the <a href="http://en.wikipedia.org/wiki/Bujinkan">Bujinkan</a> home dojo. See you soon!</p>
<p><img src="http://lifecoachesblog.com/wp-content/uploads/2008/08/jumonji.jpg" alt="At East Coast Park" title="At East Coast Park" width="530" height="220"><br>
<em>Me, goaded by my girlfriend into a sheepish</em> jumonji no kamae <em>pose at the beach.</em></p>

<p><map name="google_ad_map_TrCMR2upTM8tCn2Wlbx11PBX45c_"><area shape="rect" href="http://imageads.googleadservices.com/pagead/imgclick/TrCMR2upTM8tCn2Wlbx11PBX45c_?pos=0" coords="1,2,367,28"><area shape="rect" href="http://services.google.com/feedback/abg" coords="384,10,453,23"></map><img usemap="http://lifecoachesblog.com/#google_ad_map_TrCMR2upTM8tCn2Wlbx11PBX45c_" border="0" src="http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=ca-alvinsoon@gmail.com&amp;channel=http://lifecoachesblog.com&amp;output=png&amp;cuid=TrCMR2upTM8tCn2Wlbx11PBX45c_&amp;url=http%3A%2F%2Flifecoachesblog.com%2F2008%2F08%2F03%2Finspiring-links-week-of-3rd-august-2008%2F"></p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=255633533" />
]]></content:encoded>
      <category>Inspiring Links</category>
      <guid isPermaLink="false">tag:google.com,2005:reader/item/c6927ee348b792b5</guid>
      <source url="tag:google.com,2005:reader/feed/http://feeds.feedburner.com/lifecoachesblog">Life Coaches Blog</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Alvin Soon]]></dc:creator>
    </item>
    <item>
      <title>7 Tips to Develop the Habit of Daily Exercise</title>
      <description/>
      <pubDate>Thu, 31 Jul 2008 15:40:00 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=255633532&amp;url=http%3A%2F%2Ffeeds.feedburner.com%2F%7Er%2FDumbLittleMan%2F%7E3%2F352542248%2F7-tips-to-develop-habit-of-daily.html</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div>Written on 8/01/2008 by Danny Gamache, the <a href="http://www.successprofessor.ca/">Success Professor</a>.</div><br><br><a href="http://www.flickr.com/photos/john_lustig/2675162683/"><img style="margin:0pt 0pt 10px 10px;float:right" src="http://bp2.blogger.com/_dH0q9hvpVHg/SJL1Lm-Q9QI/AAAAAAAAB-Y/K246_J6CDQg/s400/workout.jpg" alt="" border="0"></a>One life habit that is often neglected is the habit of daily exercise.  There are several reasons for this: too hard, too painful or the ever popular, <span style="font-style:italic">I'll do it later, when I have time</span>.<br><br>Physical activity is not as hard as you think.  In fact, is not as painful as you think either (you should be virtually pain free after about a week.  For a short investment of time each week, you will reap a ton of rewards.<br><br>So, don't put off exercise.  Get educated on what you want to accomplish and jump in.  I'll even help get you started on developing a plan for daily exercise.<br><ol><li><span style="font-weight:bold;color:rgb(255, 102, 0);font-size:130%"> Understand the benefits</span><br>Most people vastly underestimate the value of daily physical activity.  There are both physical health benefits as well as productivity benefits.  The physical health benefits include obvious things such as burning calories and increased metabolism resulting in increased weight loss. Exercise also lowers the risk of heart disease, <a href="http://www.cdc.gov/diabetes/pubs/tcyd/control.htm#physical">diabetes</a> and high blood pressure and helps to maintain healthy cholesterol levels.<br><br>Exercise also helps with a number of things that improve life productivity.  These include increased energy, better sleep patterns, and reduced stress.  All of these allow you to be more productive in your work and play. Physical activity also reduces the risk of depression, increases your self-confidence and in general helps improve your mental state.   </li><br><li><span style="font-weight:bold;color:rgb(255, 102, 0);font-size:130%">Just get started</span><br>Often the hardest part of any task is getting started. Just like a train engine uses the most energy getting up to speed, we often struggle to start anything new, especially exercise.  Therefore the priority needs to be on just starting.<br><br>Do something physical.  You do not need to start by purchasing expensive equipment or joining a gym, instead you can start by going outside for a walk.  Take a thirty-minute walk, or play a game with your kids; do something active.  By doing something right away, you are starting to gain momentum. Once you've done something basic the first time or two, you can start developing your plan to maintain the practice and to develop the habit. </li><br><li><span style="font-weight:bold;color:rgb(255, 102, 0);font-size:130%"> Develop a set time</span><br>Having a set time to exercise each day is an important way to keep you focused and accountable.  The time you choose to exercise will depend a lot on your work schedule and productivity habits.  One of the most popular times to exercise is in the morning.  If you set yourself the goal to exercise in the morning you can complete it and know that you've started your day by completing one of your most important goals first.<br><br>Another popular time is immediately following work, or between 4 and 6 PM.  Here exercise serves as valuable transition between work time and your evening schedule.  It allows you to de-stress from what you have been doing all day and clear your mind from problems that should be "<a href="http://www.dumblittleman.com/2007/02/how-to-leave-work-at-work.html">left at the office</a>".<br><br>If you have a more flexible schedule, such as people who work from home, you may want to exercise in the middle of the day or when your productivity tends to slip.  Often people will have a productivity decline in the mid-afternoon.  Exercise can be a valuable way to fill this time.<br><br>Above all, make your daily exercise consistent.  Exercise at least six days a week.  You can take one day off as a rest day, but don't consider it a "reward" day.  If you consider it a "reward" you will soon consider the other six days as "work" that you need to do achieve the "reward".  Exercise should be considered a reward on its own.</li><br><li><span style="color:rgb(255, 102, 0);font-size:130%"><span style="font-weight:bold">Make it fun</span></span><br>It is important to make exercise fun.  If exercise is fun on its own, you will be more likely to follow through with your exercising commitment even on days when it may feel difficult.<br><br>There are lots of ways to make exercise fun.  First of all, choose an activity that you enjoy.  For some people this means playing a particular sport.  For others it means joining a gym so you they can be around people.  For others, it can be fun to purchase a piece of exercise equipment and be able to work out in the comfort of their own home.<br><br>Secondly, have fun by creating activities to do while you exercise.  This may be watching a favorite television show that you have recorded on your DVR.  It may be listening to music on your MP3 player.  You can also have fun by setting challenging goals within your exercise program and then achieving them. </li><span style="font-weight:bold;color:rgb(255, 102, 0);font-size:130%"><br></span><li><span style="font-weight:bold;color:rgb(255, 102, 0);font-size:130%"> Use the time for personal growth</span><br>There are many ways that you can use exercise as format for personal growth.  Simply by developing the habit of daily exercise and achieving your goal of improved health and well being you are demonstrating to yourself that you have what it takes to be successful.<br><br>You can also use the time for personal growth by listening to podcasts, motivational lectures, sermons, or audio-books.  Not only are these activities a wise use of your time, they will inspire you to continue exercising and pushing on towards your goals.<br><br>Personally, I alternate between "fun" activities while I exercise (such as watching my favorite television show while I work out on our elliptical trainer), and personal growth activities.  Both inspire me to keep exercising and help me to be more productive with the rest of my activities. </li><span style="font-weight:bold;color:rgb(255, 102, 0);font-size:130%"><br></span><li><span style="font-weight:bold;color:rgb(255, 102, 0);font-size:130%">Get a partner or support team</span><br>Few things help you pursue your physical activities goals as having a partner or support team.  A partner is someone you work out with.  Having a partner provides both accountability and encouragement.  If you have to meet your partner at a certain place and time for your exercise, chances are you will be there.  You don't want to leave your partner alone.<br><br>If you don't have a partner who will exercise with you, develop a support team - someone who will encourage you to keep exercising, remind you of the benefits, and challenge you to reach your goals.  My wife and I serve in this function for each other.  Because of our schedules we exercise at different times, however we both encourage each other and push each other to reach our goals. </li><br><li><span style="font-weight:bold;color:rgb(255, 102, 0);font-size:130%">Celebrate your success</span><br>Find some way to celebrate your new habit.  Perhaps promise yourself a reward if you exercise at least 20 days in the upcoming month.  Acknowledge that you have taken some big steps towards improving your life.  Perhaps find a reward that you can use while you exercise, such as a new MP3 player, or a new CD.  You reward doesn't have to cost money, it could be something as simple as a warm bath, or special meal.  Celebrating success is a vital success principle. </li></ol>Hopefully these tips will help you to develop the habit of daily physical activity.  The rewards are significant, both in the short-term and the long-term.  Start now, and before you know it, exercise will be a daily part of your successful life!<br><br>Danny<br style="clear:both">
  <img alt="" style="border:0;height:1px;width:1px" border="0" src="http://www.pheedo.com/img.phdo?i=9516776e77cf38a1d8272b5b8b702956" height="1" width="1">
<img src="http://www.pheedo.com/feeds/tracker.php?i=9516776e77cf38a1d8272b5b8b702956" border="0" height="1" width="1" alt="">
<p><a href="http://feeds.feedburner.com/~a/DumbLittleMan?a=yFr3TT"><img src="http://feeds.feedburner.com/~a/DumbLittleMan?i=yFr3TT" border="0"></a></p><div>
<a href="http://feeds.feedburner.com/~f/DumbLittleMan?a=xxu8Kk"><img src="http://feeds.feedburner.com/~f/DumbLittleMan?i=xxu8Kk" border="0"></a> <a href="http://feeds.feedburner.com/~f/DumbLittleMan?a=6L9eFk"><img src="http://feeds.feedburner.com/~f/DumbLittleMan?i=6L9eFk" border="0"></a> <a href="http://feeds.feedburner.com/~f/DumbLittleMan?a=oDUaKk"><img src="http://feeds.feedburner.com/~f/DumbLittleMan?i=oDUaKk" border="0"></a> <a href="http://feeds.feedburner.com/~f/DumbLittleMan?a=UcCdVk"><img src="http://feeds.feedburner.com/~f/DumbLittleMan?i=UcCdVk" border="0"></a> <a href="http://feeds.feedburner.com/~f/DumbLittleMan?a=MQK6SK"><img src="http://feeds.feedburner.com/~f/DumbLittleMan?i=MQK6SK" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/DumbLittleMan/~4/352542248" height="1" width="1"><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=255633532" />
]]></content:encoded>
      <guid isPermaLink="false">tag:google.com,2005:reader/item/0cebd3f31647beec</guid>
      <source url="tag:google.com,2005:reader/feed/http://feeds.feedburner.com/DumbLittleMan">Dumb Little Man - Tips for Life</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Jay White]]></dc:creator>
    </item>
    <item>
      <title>EduWeb2008: E-mail Marketing for Higher Education</title>
      <description><![CDATA[<p>Kyle James, Webmaster at Wofford College, presented on email marketing. (<a href="http://www.doteduguru.com">blog</a> | <a href="http://www.twitter.com/jameskm03">twitter</a>)</p><p><a href="http://www.academicagroup.com/node/5338">read more</a></p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=255633536" />
]]></description>
      <pubDate>Tue, 29 Jul 2008 19:38:16 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=255633536&amp;url=http%3A%2F%2Fwww.academicagroup.com%2Fnode%2F5338</link>
      <category>Technology</category>
      <guid isPermaLink="false">tag:google.com,2005:reader/item/93d42d4a8531b034</guid>
      <source url="tag:google.com,2005:reader/feed/http://www.academicagroup.com/blog/3/feed">Melissa&amp;#39;s blog</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Melissa]]></dc:creator>
    </item>
    <item>
      <title>EduWeb2008: High School Students Tell All</title>
      <description><![CDATA[<p>I was fortunate to attend last week's EduWeb 2008 conference in Atlantic City, and wanted to bring you some highlights from the presentations I attended. <i>Italics are my own added notes during the presentation.</i> </p><p><a href="http://www.academicagroup.com/node/5337">read more</a></p><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=255633535" />
]]></description>
      <pubDate>Tue, 29 Jul 2008 19:31:41 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=255633535&amp;url=http%3A%2F%2Fwww.academicagroup.com%2Fnode%2F5337</link>
      <guid isPermaLink="false">tag:google.com,2005:reader/item/624f7e68c768ab80</guid>
      <source url="tag:google.com,2005:reader/feed/http://www.academicagroup.com/blog/3/feed">Melissa&amp;#39;s blog</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Melissa]]></dc:creator>
    </item>
    <item>
      <title>Yahoo! UI Library: AutoComplete</title>
      <description><![CDATA[The AutoComplete control features navigation of the suggestion container via up/down arrow keys and a rich event model that gives you scriptological access to all of the interaction&#039;s interesting moments. Easily configurable parameters include custom form<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=250812703" />
]]></description>
      <pubDate>Fri, 25 Jul 2008 11:41:44 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=250812703&amp;url=http%3A%2F%2Fdeveloper.yahoo.com%2Fyui%2Fautocomplete</link>
      <guid isPermaLink="false">http://developer.yahoo.com/yui/autocomplete/</guid>
      <source url="http://del.icio.us/rss/lisamac/">Delicious/lisamac</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[lisamac]]></dc:creator>
      <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">autocomplete cache javascript navigation search suggestion yui</dc:subject>
    </item>
    <item>
      <title>omnidea - your business starts here</title>
      <description><![CDATA[omnidea Rulers allows to create on whole screen area a set of rulers, like most common graphic editors allows on their working areas only.

Using the guide lines enables to measure and position objects with precision and it&#039;s incredibly useful in many fie<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=250812704" />
]]></description>
      <pubDate>Fri, 25 Jul 2008 11:41:42 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=250812704&amp;url=http%3A%2F%2Fwww.omnidea.it%2Fen%2Fsoftware%2Frulers%2Findex.html</link>
      <guid isPermaLink="false">http://www.omnidea.it/en/software/rulers/index.html</guid>
      <source url="http://del.icio.us/rss/lisamac/">Delicious/lisamac</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[lisamac]]></dc:creator>
      <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">graphics guides mac measure position rulers screen xscope</dc:subject>
    </item>
    <item>
      <title>Home | The Dojo Toolkit</title>
      <description><![CDATA[Ajax, events, packaging, CSS-based querying, animations, JSON, language utilities, and a lot more. All at 24K (gzipped).<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=250812705" />
]]></description>
      <pubDate>Fri, 25 Jul 2008 11:41:39 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=250812705&amp;url=http%3A%2F%2Fwww.dojotoolkit.org%2F</link>
      <guid isPermaLink="false">http://www.dojotoolkit.org/</guid>
      <source url="http://del.icio.us/rss/lisamac/">Delicious/lisamac</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[lisamac]]></dc:creator>
      <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">ajax animations dojo javascript json library</dc:subject>
    </item>
    <item>
      <title>Idea Management - Innovation Managment - Crowdsourcing - Suggestion Box</title>
      <description><![CDATA[IdeaScale enables companies to build living/breathing Digg style communities. IdeaScale is based on the simple model of crowdsourcing. It begins with an idea posted to your IdeaScale community by a user. Each idea can be expanded through comments by the c<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=250812706" />
]]></description>
      <pubDate>Fri, 25 Jul 2008 11:41:37 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=250812706&amp;url=http%3A%2F%2Fwww.ideascale.com%2F</link>
      <guid isPermaLink="false">http://www.ideascale.com/</guid>
      <source url="http://del.icio.us/rss/lisamac/">Delicious/lisamac</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[lisamac]]></dc:creator>
      <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">community crowdsourcing digg discussions ideas recommendation suggestions</dc:subject>
    </item>
    <item>
      <title>ie7-js - Google Code</title>
      <description><![CDATA[IE7 is a JavaScript library to make Microsoft Internet Explorer behave like a standards-compliant browser. It fixes many HTML and CSS issues and makes transparent PNG work correctly under IE5 and IE6.<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=250812707" />
]]></description>
      <pubDate>Fri, 25 Jul 2008 11:41:35 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=250812707&amp;url=http%3A%2F%2Fcode.google.com%2Fp%2Fie7-js</link>
      <guid isPermaLink="false">http://code.google.com/p/ie7-js/</guid>
      <source url="http://del.icio.us/rss/lisamac/">Delicious/lisamac</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[lisamac]]></dc:creator>
      <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">css html ie5 ie6 ie7 javascript png standards transparency</dc:subject>
    </item>
    <item>
      <title>Seek or Show: Two Design Paradigms for Lots of Data</title>
      <description><![CDATA[Here are two design paradigms for handling large amounts of data, not to be confused (or combined) as web design meets desktop in rich Internet applications. This would seem self explanatory, except that the Seek (Search) paradigm is typically used in web<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=250812708" />
]]></description>
      <pubDate>Fri, 25 Jul 2008 11:41:32 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=250812708&amp;url=http%3A%2F%2Ftheresaneil.wordpress.com%2F2008%2F01%2F29%2Fseek-or-show-two-design-paradigms-for-lots-of-data</link>
      <guid isPermaLink="false">http://theresaneil.wordpress.com/2008/01/29/seek-or-show-two-design-paradigms-for-lots-of-data/</guid>
      <source url="http://del.icio.us/rss/lisamac/">Delicious/lisamac</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[lisamac]]></dc:creator>
      <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">data information search show web design</dc:subject>
    </item>
    <item>
      <title>Whatever:hover</title>
      <description><![CDATA[Most modern browsers support the :hover selector for any html element. This is cool, because it enables you to, for instance, apply a mouseover effect to table rows  using only CSS. IE however, with a market share of &gt; 90%, does not natively support :hove<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=250812709" />
]]></description>
      <pubDate>Thu, 24 Jul 2008 01:27:11 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=250812709&amp;url=http%3A%2F%2Fwww.xs4all.nl%2F%7Epeterned%2Fcsshover.html</link>
      <guid isPermaLink="false">http://www.xs4all.nl/~peterned/csshover.html</guid>
      <source url="http://del.icio.us/rss/lisamac/">Delicious/lisamac</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[lisamac]]></dc:creator>
      <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">bug fix hover png</dc:subject>
    </item>
    <item>
      <title>24 ways: Transparent PNGs in Internet Explorer 6</title>
      <description><![CDATA[Newer breeds of browser such as Firefox and Safari have offered support for PNG images with full alpha channel transparency for a few years. With the use of hacks, support has been available in Internet Explorer 5.5 and 6, but the hacks are non-ideal and<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=250812710" />
]]></description>
      <pubDate>Thu, 24 Jul 2008 01:27:09 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=250812710&amp;url=http%3A%2F%2F24ways.org%2F2007%2Fsupersleight-transparent-png-in-ie6</link>
      <guid isPermaLink="false">http://24ways.org/2007/supersleight-transparent-png-in-ie6/</guid>
      <source url="http://del.icio.us/rss/lisamac/">Delicious/lisamac</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[lisamac]]></dc:creator>
      <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">fix hack ie6 png transparency</dc:subject>
    </item>
    <item>
      <title>Oct 28, 2008: EDUCAUSE 2008 Annual Conference at Someplace</title>
      <description><![CDATA[Mark your calendar for the premier information technology event in higher education—EDUCAUSE 2008, October 28–31 in Orlando, Florida. The program, “Interaction, Ideas, Inspiration,” will include preconference seminars; track and poster sessions; small group meetings; and corporate exhibits, presentations, and workshops.<br /><br />
There’s a reason the EDUCAUSE Annual Conference has been called “the best conference for higher education information technology professionals, hands down.” Join us to network and learn with others who use, manage, or lead information technology in higher education. You’ll return to campus recharged and primed with useful information and contacts.<br /><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=250655420" />
]]></description>
      <comments>http://upcoming.yahoo.com/event/405292/#comments</comments>
      <pubDate>Wed, 13 Feb 2008 13:42:48 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=250655420&amp;url=http%3A%2F%2Fupcoming.yahoo.com%2Fevent%2F405292%2F</link>
      <category>Education</category>
      <guid>http://upcoming.yahoo.com/event/405292/</guid>
      <source url="http://upcoming.org/syndicate/v2/my_events/13402/">Upcoming: lisamac's Events</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[nessman]]></dc:creator>
    </item>
    <item>
      <title>Find my cheekbones</title>
      <description><![CDATA[<a href="http://www.43things.com/person/lisamac">Lisa McMillan</a> adopted this goal<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=253450359" />
]]></description>
      <pubDate>Wed, 16 Jan 2008 01:53:03 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=253450359&amp;url=http%3A%2F%2Fwww.43things.com%2Fthings%2Fview%2F614647</link>
      <guid>http://www.43things.com/things/view/614647</guid>
      <source url="http://www.43things.com/rss/uber/author?username=lisamac">43 Things: Lisa McMillan</source>
    </item>
    <item>
      <title>fit my books on my bookshelf. Choose.</title>
      <description><![CDATA[<a href="http://www.43things.com/person/lisamac">Lisa McMillan</a> adopted this goal<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=253450360" />
]]></description>
      <pubDate>Wed, 16 Jan 2008 01:50:07 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=253450360&amp;url=http%3A%2F%2Fwww.43things.com%2Fthings%2Fview%2F1854001</link>
      <guid>http://www.43things.com/things/view/1854001</guid>
      <source url="http://www.43things.com/rss/uber/author?username=lisamac">43 Things: Lisa McMillan</source>
    </item>
    <item>
      <title>read a book a week for a year</title>
      <description><![CDATA[<a href="http://www.43things.com/person/lisamac">Lisa McMillan</a> adopted this goal<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=253450361" />
]]></description>
      <pubDate>Wed, 16 Jan 2008 01:28:06 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=253450361&amp;url=http%3A%2F%2Fwww.43things.com%2Fthings%2Fview%2F14380</link>
      <guid>http://www.43things.com/things/view/14380</guid>
      <source url="http://www.43things.com/rss/uber/author?username=lisamac">43 Things: Lisa McMillan</source>
    </item>
    <item>
      <title>fix my back</title>
      <description><![CDATA[<a href="http://www.43things.com/person/lisamac">Lisa McMillan</a> completed this goal<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=253450362" />
]]></description>
      <pubDate>Fri, 04 Jan 2008 01:25:49 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=253450362&amp;url=http%3A%2F%2Fwww.43things.com%2Fthings%2Fview%2F48030</link>
      <guid>http://www.43things.com/things/view/48030</guid>
      <source url="http://www.43things.com/rss/uber/author?username=lisamac">43 Things: Lisa McMillan</source>
    </item>
    <item>
      <title>master Path Finder</title>
      <description><![CDATA[<a href="http://www.43things.com/person/lisamac">Lisa McMillan</a> completed this goal<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=253450363" />
]]></description>
      <pubDate>Fri, 04 Jan 2008 01:25:33 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=253450363&amp;url=http%3A%2F%2Fwww.43things.com%2Fthings%2Fview%2F1234552</link>
      <guid>http://www.43things.com/things/view/1234552</guid>
      <source url="http://www.43things.com/rss/uber/author?username=lisamac">43 Things: Lisa McMillan</source>
    </item>
    <item>
      <title>eat using the food guide at every meal</title>
      <description><![CDATA[<a href="http://www.43things.com/person/lisamac">Lisa McMillan</a> adopted this goal<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=253450364" />
]]></description>
      <pubDate>Wed, 05 Sep 2007 04:41:51 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=253450364&amp;url=http%3A%2F%2Fwww.43things.com%2Fthings%2Fview%2F1853984</link>
      <guid>http://www.43things.com/things/view/1853984</guid>
      <source url="http://www.43things.com/rss/uber/author?username=lisamac">43 Things: Lisa McMillan</source>
    </item>
    <item>
      <title>throw stuff out</title>
      <description><![CDATA[<a href="http://www.43things.com/person/lisamac">Lisa McMillan</a> completed this goal<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=253450365" />
]]></description>
      <pubDate>Wed, 05 Sep 2007 04:03:17 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=253450365&amp;url=http%3A%2F%2Fwww.43things.com%2Fthings%2Fview%2F318373</link>
      <guid>http://www.43things.com/things/view/318373</guid>
      <source url="http://www.43things.com/rss/uber/author?username=lisamac">43 Things: Lisa McMillan</source>
    </item>
    <item>
      <title>exercise 4 days a week for 30 minutes</title>
      <description><![CDATA[<a href="http://www.43things.com/person/lisamac">Lisa McMillan</a> adopted this goal<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=253450366" />
]]></description>
      <pubDate>Wed, 05 Sep 2007 03:37:48 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=253450366&amp;url=http%3A%2F%2Fwww.43things.com%2Fthings%2Fview%2F1853983</link>
      <guid>http://www.43things.com/things/view/1853983</guid>
      <source url="http://www.43things.com/rss/uber/author?username=lisamac">43 Things: Lisa McMillan</source>
    </item>
    <item>
      <title>Save $2500 by January 1, 2009</title>
      <description><![CDATA[<a href="http://www.43things.com/person/lisamac">Lisa McMillan</a> adopted this goal<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=253450367" />
]]></description>
      <pubDate>Sat, 07 Jul 2007 00:43:45 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=253450367&amp;url=http%3A%2F%2Fwww.43things.com%2Fthings%2Fview%2F1853989</link>
      <guid>http://www.43things.com/things/view/1853989</guid>
      <source url="http://www.43things.com/rss/uber/author?username=lisamac">43 Things: Lisa McMillan</source>
    </item>
    <item>
      <title>clear out my storage unit</title>
      <description><![CDATA[<a href="http://www.43things.com/person/lisamac">Lisa McMillan</a> completed this goal (worth it!)<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=253450368" />
]]></description>
      <pubDate>Fri, 13 Apr 2007 05:44:19 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=253450368&amp;url=http%3A%2F%2Fwww.43things.com%2Fthings%2Fview%2F1219563</link>
      <guid>http://www.43things.com/things/view/1219563</guid>
      <source url="http://www.43things.com/rss/uber/author?username=lisamac">43 Things: Lisa McMillan</source>
    </item>
    <item>
      <title>Cool video of the day: Minilogue</title>
      <description/>
      <pubDate>Wed, 06 Dec 2006 18:29:11 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=255907910&amp;url=http%3A%2F%2Flisamac.vox.com%2Flibrary%2Fpost%2Fcool-video-of-the-day-minilogue.html%3F_c%3Dfeed-atom</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml" xmlns:at="http://www.sixapart.com/ns/at">
        <p class="enclosed-assets" style="margin-bottom: 10px;">     <a href="http://lisamac.vox.com/library/video/6a00c2252350df8fdb00cdf3a59be5cb8f.html?_c=feed-atom" style="float:left; margin-right:6px;"><img src="http://a5.vox.com/6a00c2252350df8fdb00cdf3a59be5cb8f-50si" alt="Minilogue - Hitchhiker&#39;s Choice" /></a> 
    <br style="clear:both;" />
</p>
        <p style="clear:both;"> 
    <a href="http://lisamac.vox.com/library/post/cool-video-of-the-day-minilogue.html?_c=feed-atom#comments">Read and post comments</a>   |   
    <a href="http://www.vox.com/share/6a00c2252350df8fdb00cd97026ef14cd5?_c=feed-atom">Send to a friend</a> 
</p>

                </div><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=255907910" />
]]></content:encoded>
      <guid isPermaLink="false">tag:vox.com,2006-12-06:asset-6a00c2252350df8fdb00cd97026ef14cd5</guid>
      <source url="http://lisamac.vox.com/library/posts/page/1/atom.xml">I should be working.</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[lisamac]]></dc:creator>
    </item>
    <item>
      <title>Now Playing: Scissor Sisters</title>
      <description/>
      <pubDate>Wed, 06 Dec 2006 18:21:09 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=255907911&amp;url=http%3A%2F%2Flisamac.vox.com%2Flibrary%2Fpost%2Fnow-playing-scissor-sisters.html%3F_c%3Dfeed-atom</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml" xmlns:at="http://www.sixapart.com/ns/at">
        <p class="enclosed-assets" style="margin-bottom: 10px;">     <a href="http://lisamac.vox.com/library/audio/6a00c2252350df8fdb00cdf3a59b5bcb8f.html?_c=feed-atom" style="float:left; margin-right:6px;"><img src="http://a3.vox.com/6a00c2252350df8fdb00cdf3a59b5bcb8f-50si" alt="Ta-Dah" /></a> 
    <br style="clear:both;" />
</p>
        <p style="clear:both;"> 
    <a href="http://lisamac.vox.com/library/post/now-playing-scissor-sisters.html?_c=feed-atom#comments">Read and post comments</a>   |   
    <a href="http://www.vox.com/share/6a00c2252350df8fdb00cd97026e5a4cd5?_c=feed-atom">Send to a friend</a> 
</p>

                </div><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=255907911" />
]]></content:encoded>
      <guid isPermaLink="false">tag:vox.com,2006-12-06:asset-6a00c2252350df8fdb00cd97026e5a4cd5</guid>
      <source url="http://lisamac.vox.com/library/posts/page/1/atom.xml">I should be working.</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[lisamac]]></dc:creator>
    </item>
    <item>
      <title>Quarterly Firefox Update</title>
      <description/>
      <pubDate>Thu, 30 Nov 2006 22:43:10 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=255907912&amp;url=http%3A%2F%2Flisamac.vox.com%2Flibrary%2Fpost%2Fquarterly-firefox-update.html%3F_c%3Dfeed-atom</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div xmlns="http://www.w3.org/1999/xhtml" xmlns:at="http://www.sixapart.com/ns/at">
          Ok. Just taking a few minutes to make sure the team is all up on the latest and greatest firefox development goodness. Taking 5 minutes to catch up every 2 months or so is worth mucho money to the college every year, so I think it’s worth it. Pro...   <p style="clear:both;"> 
    <a href="http://lisamac.vox.com/library/post/quarterly-firefox-update.html?_c=feed-atom#comments">Read and post comments</a>   |   
    <a href="http://www.vox.com/share/6a00c2252350df8fdb00cdf3a59b00cb8f?_c=feed-atom">Send to a friend</a> 
</p>

                </div><img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=255907912" />
]]></content:encoded>
      <category>firefox</category>
      <guid isPermaLink="false">tag:vox.com,2006-12-06:asset-6a00c2252350df8fdb00cdf3a59b00cb8f</guid>
      <source url="http://lisamac.vox.com/library/posts/page/1/atom.xml">I should be working.</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[lisamac]]></dc:creator>
    </item>
    <item>
      <title>Firefox Flicks - This is Hot</title>
      <description><![CDATA[What a great little video for Firefox! I just want to hug it....<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=38741282" />
]]></description>
      <pubDate>Sun, 01 Oct 2006 18:36:31 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=38741282&amp;url=http%3A%2F%2Flisamac.typepad.com%2Fjournal%2F2006%2F10%2Ffirefox_flicks_.html</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<table cellpadding="0" cellspacing="0" border="0">
  <tr>
    <td colspan="2">
      <embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=2466919931565393234&amp;hl=en-CA"> </embed>
    </td>
  </tr>
  <tr/>
  <tr>
    <td>What a great little video for Firefox! I just want to hug it.</td>
  </tr>
</table>]]></content:encoded>
      <guid isPermaLink="false">http://lisamac.typepad.com/journal/2006/10/firefox_flicks_.html</guid>
      <source url="http://lisamac.typepad.com/journal/index.rdf">Hardly working.</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Lisa McMillan]]></dc:creator>
    </item>
    <item>
      <title>links for 2006-10-01</title>
      <description><![CDATA[Photoshop Tips & Tricks Not a bad photoshop resource. Dam this site needs an rss feed and some commenting options. (tags: photoshop filters effects tutorials tips tricks images editing dt&g) Styling del.icio.us - Spring Edition Holy crap that's hawt. (tags:...<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=38741283" />
]]></description>
      <pubDate>Sun, 01 Oct 2006 18:20:16 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=38741283&amp;url=http%3A%2F%2Flisamac.typepad.com%2Fjournal%2F2006%2F10%2Flinks_for_20061.html</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<ul class="delicious">
	<li>
		<div class="delicious-link"><a href="http://www.graphic-design.com/Photoshop/index.html">Photoshop Tips & Tricks</a></div>
		<div class="delicious-extended">Not a bad photoshop resource. Dam this site needs an rss feed and some commenting options.</div>
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/photoshop">photoshop</a> <a href="http://del.icio.us/lisamac/filters">filters</a> <a href="http://del.icio.us/lisamac/effects">effects</a> <a href="http://del.icio.us/lisamac/tutorials">tutorials</a> <a href="http://del.icio.us/lisamac/tips">tips</a> <a href="http://del.icio.us/lisamac/tricks">tricks</a> <a href="http://del.icio.us/lisamac/images">images</a> <a href="http://del.icio.us/lisamac/editing">editing</a> <a href="http://del.icio.us/lisamac/dt&g">dt&g</a>)</div>
	</li>
	<li>
		<div class="delicious-link"><a href="http://www.pixelgraphix.de/log/2006-02/styling-delicious-spring-edition.php">Styling del.icio.us - Spring Edition</a></div>
		<div class="delicious-extended">Holy crap that's hawt.</div>
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/delicious">delicious</a> <a href="http://del.icio.us/lisamac/style">style</a> <a href="http://del.icio.us/lisamac/del.">del.</a>)</div>
	</li>
	<li>
		<div class="delicious-link"><a href="http://www.viralvideochart.com/">Viral Video Chart</a></div>
		<div class="delicious-extended"> The world's most talked about videos...currently tracking YouTube, MySpace and Google Video</div>
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/video">video</a> <a href="http://del.icio.us/lisamac/viral">viral</a> <a href="http://del.icio.us/lisamac/youtube">youtube</a> <a href="http://del.icio.us/lisamac/googlevideo">googlevideo</a>)</div>
	</li>
</ul>]]></content:encoded>
      <guid isPermaLink="false">http://lisamac.typepad.com/journal/2006/10/links_for_20061.html</guid>
      <source url="http://lisamac.typepad.com/journal/index.rdf">Hardly working.</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Lisa McMillan]]></dc:creator>
    </item>
    <item>
      <title>links for 2006-09-30</title>
      <description><![CDATA[Google Reader - Keyboard shortcuts Keyboard shortcuts for google reader (tags: keyboard shortcuts) thinkmac icons for sale Choose individual icons by clicking them or purchase entire sets using the links by each group. Your selected items appear on the right...<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=38741284" />
]]></description>
      <pubDate>Sat, 30 Sep 2006 18:19:32 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=38741284&amp;url=http%3A%2F%2Flisamac.typepad.com%2Fjournal%2F2006%2F09%2Flinks_for_20060_14.html</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<ul class="delicious">
	<li>
		<div class="delicious-link"><a href="http://www.google.com/help/reader/faq.html#shortcuts">Google Reader - Keyboard shortcuts</a></div>
		<div class="delicious-extended">Keyboard shortcuts for google reader</div>
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/keyboard">keyboard</a> <a href="http://del.icio.us/lisamac/shortcuts">shortcuts</a>)</div>
	</li>
	<li>
		<div class="delicious-link"><a href="http://www.thinkmac.co.uk/aquaicons/reflective_aqua.html">thinkmac icons for sale</a></div>
		<div class="delicious-extended">Choose individual icons by clicking them or purchase entire sets using the links by each group. Your selected items appear on the right along with their total cost in USD.</div>
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/icons">icons</a> <a href="http://del.icio.us/lisamac/iconsets">iconsets</a> <a href="http://del.icio.us/lisamac/stock">stock</a> <a href="http://del.icio.us/lisamac/stockicons">stockicons</a>)</div>
	</li>
</ul>]]></content:encoded>
      <guid isPermaLink="false">http://lisamac.typepad.com/journal/2006/09/links_for_20060_14.html</guid>
      <source url="http://lisamac.typepad.com/journal/index.rdf">Hardly working.</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Lisa McMillan]]></dc:creator>
    </item>
    <item>
      <title>links for 2006-09-29</title>
      <description><![CDATA[Google Reader (100+) Next » From the Hall: GmailThis! GmailThis! is an easy way to make a Gmail email without visiting mail.google.com. Once you add the GmailThis! link to your browser's toolbar, emailing will be a snap. Or rather, a...<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=38741285" />
]]></description>
      <pubDate>Fri, 29 Sep 2006 18:22:37 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=38741285&amp;url=http%3A%2F%2Flisamac.typepad.com%2Fjournal%2F2006%2F09%2Flinks_for_20060_13.html</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<ul class="delicious">
	<li>
		<div class="delicious-link"><a href="http://www.google.com/reader/view/">Google Reader (100+)</a></div>
	</li>
	<li>
		<div class="delicious-link"><a href="http://www.google.com/reader/next?go=nextauto&t=2305992655395749634">Next »</a></div>
	</li>
	<li>
		<div class="delicious-link"><a href="http://contrapants.org/blog/2005/07/gmailthis.html">From the Hall: GmailThis!</a></div>
		<div class="delicious-extended">GmailThis! is an easy way to make a Gmail email without visiting mail.google.com. Once you add the GmailThis! link to your browser's toolbar, emailing will be a snap. Or rather, a click. Clicking GmailThis! creates a mini-interface to Gmail prepopulated w</div>
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/gmail">gmail</a> <a href="http://del.icio.us/lisamac/bookmarklet">bookmarklet</a> <a href="http://del.icio.us/lisamac/mail">mail</a> <a href="http://del.icio.us/lisamac/email">email</a> <a href="http://del.icio.us/lisamac/browser">browser</a>)</div>
	</li>
	<li>
		<div class="delicious-link"><a href="http://evhead.com/hodgepodge/gmail-shortcuts.html">Gmail Shortcuts (printable cheatsheet)</a></div>
		<div class="delicious-extended">Hell ya.</div>
	</li>
</ul>]]></content:encoded>
      <guid isPermaLink="false">http://lisamac.typepad.com/journal/2006/09/links_for_20060_13.html</guid>
      <source url="http://lisamac.typepad.com/journal/index.rdf">Hardly working.</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Lisa McMillan]]></dc:creator>
    </item>
    <item>
      <title>links for 2006-09-27</title>
      <description><![CDATA[TextExpander: Customizable Typing Utility Saves Time! TextExpander can automatically correct misspellings and typos as you type. This file contains approximately 100 common mistakes. The incorrect versions are added to the TextExpander snippet library as abbreviations that are replaced by the...<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=38741286" />
]]></description>
      <pubDate>Wed, 27 Sep 2006 18:22:00 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=38741286&amp;url=http%3A%2F%2Flisamac.typepad.com%2Fjournal%2F2006%2F09%2Flinks_for_20060_12.html</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<ul class="delicious">
	<li>
		<div class="delicious-link"><a href="http://www.smileonmymac.com/textexpander/autocorrect.html">TextExpander: Customizable Typing Utility Saves Time!</a></div>
		<div class="delicious-extended">TextExpander can automatically correct misspellings and typos as you type. This file contains approximately 100 common mistakes. The incorrect versions are added to the TextExpander snippet library as abbreviations that are replaced by the correct version</div>
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/textexpander">textexpander</a> <a href="http://del.icio.us/lisamac/spelling">spelling</a> <a href="http://del.icio.us/lisamac/spellcheck">spellcheck</a> <a href="http://del.icio.us/lisamac/autocorrect">autocorrect</a> <a href="http://del.icio.us/lisamac/gtd">gtd</a> <a href="http://del.icio.us/lisamac/snippets">snippets</a> <a href="http://del.icio.us/lisamac/smileonmymac">smileonmymac</a>)</div>
	</li>
	<li>
		<div class="delicious-link"><a href="http://flickr.com/signin/flickr/">Flickr: Sign in</a></div>
		<div class="delicious-extended">Because the new login is broken for rogers users...</div>
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/flickr">flickr</a> <a href="http://del.icio.us/lisamac/login">login</a>)</div>
	</li>
	<li>
		<div class="delicious-link"><a href="http://www.humboldt.edu/">Humboldt State University</a></div>
		<div class="delicious-extended">NICE academic website. Expression Engine driven.</div>
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/academic">academic</a> <a href="http://del.icio.us/lisamac/humboldt">humboldt</a> <a href="http://del.icio.us/lisamac/expressionengine">expressionengine</a> <a href="http://del.icio.us/lisamac/interlectual">interlectual</a>)</div>
	</li>
	<li>
		<div class="delicious-link"><a href="http://www.youtube.com/my_videos?action_removevideo=1&video_id=fuvJ8q_F6tE">YouTube - My Videos</a></div>
	</li>
</ul>]]></content:encoded>
      <guid isPermaLink="false">http://lisamac.typepad.com/journal/2006/09/links_for_20060_12.html</guid>
      <source url="http://lisamac.typepad.com/journal/index.rdf">Hardly working.</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Lisa McMillan]]></dc:creator>
    </item>
    <item>
      <title>...</title>
      <description><![CDATA[Posted straight from my phone with Nakama. Click to see more....<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=38741287" />
]]></description>
      <pubDate>Wed, 27 Sep 2006 05:02:14 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=38741287&amp;url=http%3A%2F%2Flisamac.typepad.com%2Fjournal%2F2006%2F09%2Fpost.html</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p><a href="http://nakama.ca/gallery/lisamac/580436c640d7e7bd"><img src="http://pics.nakama.ca/bd/e7/580436c640d7e7bd_196.jpg" /></a><br /><br /><br /><br /><em>Posted straight from my phone with <a href="http://nakama.ca/welcome">Nakama</a>. Click to see more.</em></p>]]></content:encoded>
      <guid isPermaLink="false">http://lisamac.typepad.com/journal/2006/09/post.html</guid>
      <source url="http://lisamac.typepad.com/journal/index.rdf">Hardly working.</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Lisa McMillan]]></dc:creator>
    </item>
    <item>
      <title>links for 2006-09-26</title>
      <description><![CDATA[Build Amazing HTML Forms, Online Surveys and Invitations with Wufoo Microformats Bookmarklet The key difference between this bookmarklet and the Technorati hCard extrator is that this bookmarklet will allow you to select which individual contacts or events you want to...<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=38741288" />
]]></description>
      <pubDate>Tue, 26 Sep 2006 18:19:18 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=38741288&amp;url=http%3A%2F%2Flisamac.typepad.com%2Fjournal%2F2006%2F09%2Flinks_for_20060_11.html</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<ul class="delicious">
	<li>
		<div class="delicious-link"><a href="http://lisa.wufoo.com/">Build Amazing HTML Forms, Online Surveys and Invitations with Wufoo</a></div>
	</li>
	<li>
		<div class="delicious-link"><a href="http://leftlogic.com/info/articles/microformats_bookmarklet">Microformats Bookmarklet</a></div>
		<div class="delicious-extended">The key difference between this bookmarklet and the Technorati hCard extrator is that this bookmarklet will allow you to select which individual contacts or events you want to save.

<p>Originally I had intended for the entire logic behind the Microformats o</div><br />
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/microformats">microformats</a> <a href="http://del.icio.us/lisamac/bookmarklet">bookmarklet</a> <a href="http://del.icio.us/lisamac/safari">safari</a> <a href="http://del.icio.us/lisamac/firefox">firefox</a> <a href="http://del.icio.us/lisamac/jonhicks">jonhicks</a>)</div><br />
	</li><br />
	<li><br />
		<div class="delicious-link"><a href="https://webcollective.sproutit.com/mailroom/needs_attention">Mailroom » Needs Attention</a></div><br />
	</li><br />
</ul><br />
</p>]]></content:encoded>
      <guid isPermaLink="false">http://lisamac.typepad.com/journal/2006/09/links_for_20060_11.html</guid>
      <source url="http://lisamac.typepad.com/journal/index.rdf">Hardly working.</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Lisa McMillan]]></dc:creator>
    </item>
    <item>
      <title>links for 2006-09-25</title>
      <description><![CDATA[Lisa McMillan's Dashboard @ 16bugs...<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=38741289" />
]]></description>
      <pubDate>Mon, 25 Sep 2006 18:19:07 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=38741289&amp;url=http%3A%2F%2Flisamac.typepad.com%2Fjournal%2F2006%2F09%2Flinks_for_20060_10.html</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<ul class="delicious">
	<li>
		<div class="delicious-link"><a href="http://user.16bugs.com/user">Lisa McMillan's Dashboard @ 16bugs</a></div>
	</li>
</ul>]]></content:encoded>
      <guid isPermaLink="false">http://lisamac.typepad.com/journal/2006/09/links_for_20060_10.html</guid>
      <source url="http://lisamac.typepad.com/journal/index.rdf">Hardly working.</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Lisa McMillan]]></dc:creator>
    </item>
    <item>
      <title>links for 2006-09-20</title>
      <description><![CDATA[moo | we love to print - minicards These little beauties are ideal for sharing details of your flickr photostream, sets, groups and contact details when you’re offline. They’re only little, but its what you do with them that counts....<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=38741290" />
]]></description>
      <pubDate>Wed, 20 Sep 2006 18:23:08 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=38741290&amp;url=http%3A%2F%2Flisamac.typepad.com%2Fjournal%2F2006%2F09%2Flinks_for_20060_9.html</link>
      <content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<ul class="delicious">
	<li>
		<div class="delicious-link"><a href="http://www.moo.com/">moo | we love to print - minicards</a></div>
		<div class="delicious-extended">These little beauties are ideal for sharing details of your flickr photostream, sets, groups and contact details when you’re offline. They’re only little, but its what you do with them that counts.</div>
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/print">print</a> <a href="http://del.icio.us/lisamac/flickr">flickr</a> <a href="http://del.icio.us/lisamac/minicards">minicards</a> <a href="http://del.icio.us/lisamac/photos">photos</a> <a href="http://del.icio.us/lisamac/photography">photography</a> <a href="http://del.icio.us/lisamac/small">small</a> <a href="http://del.icio.us/lisamac/webapp">webapp</a> <a href="http://del.icio.us/lisamac/products">products</a>)</div>
	</li>
	<li>
		<div class="delicious-link"><a href="http://www.flickr.com/">Welcome to Flickr!</a></div>
		<div class="delicious-extended">Why I didn't have this in my faves is beyond me. Flickr is the best dam photosharing site ever.</div>
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/photos">photos</a> <a href="http://del.icio.us/lisamac/photography">photography</a> <a href="http://del.icio.us/lisamac/flickr">flickr</a> <a href="http://del.icio.us/lisamac/sharing">sharing</a>)</div>
	</li>
	<li>
		<div class="delicious-link"><a href="http://www.thinkvitamin.com/">Vitamin</a></div>
		<div class="delicious-extended">Vitamin is a resource for web designers, developers and entrepreneurs. Features, training, reviews, blog, and more.</div>
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/vitamin">vitamin</a> <a href="http://del.icio.us/lisamac/web">web</a> <a href="http://del.icio.us/lisamac/resource">resource</a> <a href="http://del.icio.us/lisamac/webdesigners">webdesigners</a> <a href="http://del.icio.us/lisamac/entrepreneurs">entrepreneurs</a> <a href="http://del.icio.us/lisamac/design">design</a> <a href="http://del.icio.us/lisamac/designers">designers</a> <a href="http://del.icio.us/lisamac/developers">developers</a> <a href="http://del.icio.us/lisamac/interviews">interviews</a> <a href="http://del.icio.us/lisamac/advisors">advisors</a> <a href="http://del.icio.us/lisamac/visitors">visitors</a> <a href="http://del.icio.us/lisamac/blog">blog</a> <a href="http://del.icio.us/lisamac/marketing">marketing</a> <a href="http://del.icio.us/lisamac/training">training</a> <a href="http://del.icio.us/lisamac/reviews">reviews</a>)</div>
	</li>
	<li>
		<div class="delicious-link"><a href="http://www.opmlicons.com/">OPML Icon Project</a></div>
		<div class="delicious-extended">OPML is maturing and needs an identity. Help spread the word about OPMLIcons.com and join the conversation.</div>
		<div class="delicious-tags">(tags: <a href="http://del.icio.us/lisamac/opml">opml</a> <a href="http://del.icio.us/lisamac/rss">rss</a> <a href="http://del.icio.us/lisamac/logo">logo</a> <a href="http://del.icio.us/lisamac/icon">icon</a>)</div>
	</li>
</ul>]]></content:encoded>
      <guid isPermaLink="false">http://lisamac.typepad.com/journal/2006/09/links_for_20060_9.html</guid>
      <source url="http://lisamac.typepad.com/journal/index.rdf">Hardly working.</source>
      <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/"><![CDATA[Lisa McMillan]]></dc:creator>
    </item>
    <item>
      <title>links for 2006-09-19</title>
      <description><![CDATA[microformats Designed for humans first and machines second, microformats are a set of simple, open data formats built upon existing and widely adopted standards (tags: microformats publishing tags social networks calendars)...<img alt="" src="http://xfruits.com/lisamac/?id=5452&amp;s_item=38741291" />
]]></description>
      <pubDate>Tue, 19 Sep 2006 18:25:14 GMT</pubDate>
      <link>http://xfruits.com/lisamac/master/?clic=38741291&amp;url=http%3A%2F%2Flisamac.typepad.com%2Fjournal%2F2006%2F09%2Flinks_for_20060_8.html</link>
      <content:encoded xmlns:content="h