<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Michael Gracie &#187; Wordpress</title>
	<atom:link href="http://michaelgracie.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://michaelgracie.com</link>
	<description>Clever Tagline Unavailable At Publication Time</description>
	<pubDate>Thu, 20 Nov 2008 23:14:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Wordpress and FeedBurner FeedSmith: Getting to your category and tag feeds</title>
		<link>http://michaelgracie.com/2008/07/29/wordpress-and-feedburner-feedsmith-getting-to-your-category-and-tag-feeds/</link>
		<comments>http://michaelgracie.com/2008/07/29/wordpress-and-feedburner-feedsmith-getting-to-your-category-and-tag-feeds/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 13:32:37 +0000</pubDate>
		<dc:creator>Michael Gracie</dc:creator>
		
		<category><![CDATA[Office]]></category>

		<category><![CDATA[categories]]></category>

		<category><![CDATA[FeedBurner]]></category>

		<category><![CDATA[FeedSmith]]></category>

		<category><![CDATA[plug-ins]]></category>

		<category><![CDATA[RSS]]></category>

		<category><![CDATA[tags]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://michaelgracie.com/?p=2468</guid>
		<description><![CDATA[Last time I touched on Wordpress and Feedburner, the topic was how to tweak the Feedsmith plug-in so you could get access to your raw feed with Yahoo! Pipes.  This time, I&#8217;m making some alterations to the plug-in so you gain access to your raw category and tag related feeds without those requests getting [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Last time I touched on Wordpress and Feedburner, the topic was how to <a href="http://michaelgracie.com/2008/05/30/handy-yahoo-pipes-list-and-some-jokers-tip/">tweak the Feedsmith plug-in so you could get access to your raw feed with Yahoo! Pipes</a>.  This time, I&#8217;m making some alterations to the plug-in so you gain access to your raw category and tag related feeds without those requests getting redirected back to your blog&#8217;s main Feedburner feed.</p>
<p>For most folks using the Feedburner redirect plug-in, getting access to Wordpress&#8217;s category and tag feeds seems like a nightmare.  I searched and searched myself, and all I found was numerous iterations of .htaccess file solutions.  None of them worked for me, so I decided to go back to the Feedburner_FeedSmith_Plugin.php file and tool around.  This turned out to be a quick fix, with one caveat - I don&#8217;t care to burn additional feeds for each of my categories, and this change won&#8217;t work for you if that&#8217;s your intention.  In my case the blog categories are organized by &#8220;origin&#8221; of the post, not subject matter - what I really wanted was access to the tag feeds, which do relate to the subject of the post at hand.  Here&#8217;s how to do it&#8230;</p>
<p>First, look to the bottom of the Feedsmith plug-in file (located under /wp-content/plugins/feedburner_feedsmith_plugin_2.2) for this:</p>
<p><code>if (!preg_match("/feedburner|feedvalidator/i", $_SERVER['HTTP_USER_AGENT'])) {<br />
add_action(&#8217;template_redirect&#8217;, &#8216;ol_feed_redirect&#8217;);<br />
add_action(&#8217;init&#8217;,'ol_check_url&#8217;);<br />
}</code></p>
<p>That &#8220;<code>!preg_match</code>&#8221; bit tells Wordpress to ignore redirect requests from Feedburner or FeedValidator so those services don&#8217;t wind up in an endless loop when trying to grab your raw feed.  And it&#8217;s this same section of the plug-in code that pushes requests for category and tag feeds back to Feedburner for so many agitated users.  We change that block of code to this (changes emphasized):</p>
<p><code>if (!preg_match("/feedburner|feedvalidator/i", $_SERVER['HTTP_USER_AGENT']) <strong>&amp;&amp; !preg_match(&#8221;/category|tag/i&#8221;, $_SERVER['REQUEST_URI'])</strong>) {<br />
add_action(&#8217;template_redirect&#8217;, &#8216;ol_feed_redirect&#8217;);<br />
add_action(&#8217;init&#8217;,'ol_check_url&#8217;);<br />
}</code></p>
<p>That additional &#8220;<code>!preg_match</code>&#8221; string tells Wordpress to ignore redirects to Feedburner when the requested URL contains &#8220;category&#8221; or &#8220;tag&#8221;, but there is still one more thing you&#8217;ve got to do.  In this blog&#8217;s case, my category base is &#8220;origin&#8221; - so in place of &#8220;category&#8221; I use the word &#8220;origin&#8221;; I still use &#8220;tag&#8221; for my tag base, so that stays the same.  You set your category and tag bases in the Wordpress admin panel under Settings..Permalinks - look for this:</p>
<p style="text-align: center;"><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/michaelgracie/2712066488/"><img class="aligncenter" src="http://farm4.static.flickr.com/3154/2712066488_a218d2a313.jpg" border="0" alt="Wordpress Optional Permalink Controls" width="500" height="104" /></a></p>
<p>If your optional permalinks are set, change the code snippet above to reflect the same (/&#8217;s excluded) and save - otherwise set them as desired first then do the same.  Now you should have raw category and tag feeds that work.</p>
<p>Two of the most popular tags on this blog are &#8220;Fly Fishing&#8221; and &#8220;Fannie Mae&#8221; - and here are their feeds:</p>
<li><a href="http://michaelgracie.com/tag/fly-fishing/feed/"><img src="/wp-content/themes/organic2percent/feed10.png" alt="" /> Fly Fishing</a></li>
<li><a href="http://michaelgracie.com/tag/fannie-mae/feed/"><img src="/wp-content/themes/organic2percent/feed10.png" alt="" /> Fannie Mae</a></li>
<p>Try it for yourself!</p>
<!-- sphereit end -->]]></content:encoded>
			<wfw:commentRss>http://michaelgracie.com/2008/07/29/wordpress-and-feedburner-feedsmith-getting-to-your-category-and-tag-feeds/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A much needed upgrade to Wordpress 2.6</title>
		<link>http://michaelgracie.com/2008/07/19/a-much-needed-upgrade-to-wordpress-26/</link>
		<comments>http://michaelgracie.com/2008/07/19/a-much-needed-upgrade-to-wordpress-26/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 00:29:09 +0000</pubDate>
		<dc:creator>Michael Gracie</dc:creator>
		
		<category><![CDATA[Office]]></category>

		<category><![CDATA[upgrade]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://michaelgracie.com/?p=2304</guid>
		<description><![CDATA[I bagged going fishing this morning, and decided to upgrade this blog to Wordpress 2.6 instead.  The long delay (over a year) in upgrading was due to the fact the new Wordpress had built-in tag functionality, and I wasn&#8217;t sure how things would go with Simple Tagging already in place.  I had some [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>I bagged going fishing this morning, and decided to upgrade this blog to Wordpress 2.6 instead.  The long delay (over a year) in upgrading was due to the fact the new Wordpress had built-in tag functionality, and I wasn&#8217;t sure how things would go with Simple Tagging already in place.  I had some database issues that needed attention too, but fishing/fun has taken precedence up until now.  In other words, I was lazy - but finally the blog crashed - I couldn&#8217;t save anything, so it was as good a time as any.</p>
<p>The upgrade from 2.1 went pretty smoothly.  The Simple Tagging import function took two runs to get everything in the right place, and I had to do some manually editing to the database to account for the use of both categories and tags (and had to delete a few tags too, since the slug field was indexed unique).  The style sheet needed only minor changes - the call to tags (it&#8217;s now <code>the_tags()</code>), and a plug-in which I did some modifications on had to be removed.</p>
<p>The plug-ins (yes, there are some plug-ins here) got upgrades, with few exceptions.  My tweaks to Sphere placement went off just fine, but the ShareThis plug-in was another issue.  The plug-in is now <a href="http://sharethis.com">run as a service</a> - unfortunately I don&#8217;t do widgets and the last upgrade to the &#8220;classic&#8221; version wasn&#8217;t doing the trick.  I wish <a href="http://alexking.org">Alex</a> and Company much success, but for these web pages it&#8217;s now gone.  The Flickr plug-in from <a href="http://tantannoodles.com/">Joe Tan</a> is much improved, and the remaining utilities are business as usual.</p>
<p>And&#8230;I like the new interface!</p>
<p>UPDATE: Almost forgot&#8230;there was one permanent issue with tags.  Simple Tagging joined words with underscores (_), while the Wordpress taxonomy uses dashes (-).  So if you linked to say &#8220;../tag/fly_fishing/&#8221; you may want to try changing it to &#8220;../tag/fly-fishing/&#8221;.</p>
<p>UPDATE 2: I&#8217;ve also installed Google Gears support for Wordpress, when using Firefox.  And while I&#8217;ve noticed that Safari 3+ doesn&#8217;t crap-out entries like it did before the upgrade, I&#8217;ll probably be using Firefox for accessing the system anyway.  With Google Gears running (done by clicking the &#8220;Turbo&#8221; link in the top right-hand corner of the interface) the Wordpress 2.6 interface runs significantly faster than it did beforehand.</p>
<p><span id="more-2304"></span></p>
<p>UPDATE 3: Someone emailed asking for a how-to.  I suggested going straight to the <a href="http://codex.wordpress.org/Upgrading_WordPress_Extended">extended version of the upgrade instructions</a> and following those steps carefully.</p>
<p>UPDATE 4: I found the sharing service <a href="http://addthis.com">AddThis.com</a>, which allowed me to manipulate button placement and size to my heart&#8217;s desire, so I &#8220;added&#8221; it.</p>
<!-- sphereit end -->]]></content:encoded>
			<wfw:commentRss>http://michaelgracie.com/2008/07/19/a-much-needed-upgrade-to-wordpress-26/feed/</wfw:commentRss>
		</item>
		<item>
		<title>End of year filings</title>
		<link>http://michaelgracie.com/2007/12/31/end-of-year-filings/</link>
		<comments>http://michaelgracie.com/2007/12/31/end-of-year-filings/#comments</comments>
		<pubDate>Mon, 31 Dec 2007 14:50:52 +0000</pubDate>
		<dc:creator>Michael Gracie</dc:creator>
		
		<category><![CDATA[Office]]></category>

		<category><![CDATA[China]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[housing]]></category>

		<category><![CDATA[iPod]]></category>

		<category><![CDATA[knots]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://michaelgracie.com/2007/12/31/end-of-year-filings/</guid>
		<description><![CDATA[Read tomorrow when you&#8217;re nursing your hangover - it&#8217;ll certainly make more sense then.
Filed under Do As I Say, Not As I Do:
Security warning!  A flaw in Wordpress could expose your draft posts.  This news bulletin was originally brought to you via Wordpress-driven social networking blog Mashable, but has since disappeared.  This [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p><em>Read tomorrow when you&#8217;re nursing your hangover - it&#8217;ll certainly make more sense then.</em></p>
<p>Filed under <strong>Do As I Say, Not As I Do</strong>:</p>
<li>Security warning!  A flaw in Wordpress could <a href="http://cybernetnews.com/2007/12/28/wordpress-hacked-anyone-can-view-futuredraft-posts/">expose your draft posts</a>.  This news bulletin was originally brought to you via Wordpress-driven social networking blog Mashable, but has since <a href="http://mashable.com/2007/12/28/wordpress-hack-reveals-posts/">disappeared</a>.  This blog runs on Wordpress too, and this post will be deleted in roughly 24  hours.</li>
<p>Filed under <strong>The Lord Works In Mysterious Ways</strong>:</p>
<li>Jeff Jarvis, one of the few high profile bloggers I&#8217;ve seen that actually <a href="http://www.buzzmachine.com/about-me/">mentions something about their religious affiliation</a> online, says &#8220;<a href="http://www.buzzmachine.com/2007/12/29/google-is-god/">Google is God</a>.&#8221;  Meanwhile, the only ad on Buzz Machine is delivered by Google, and the displayed inventory is an <a href="http://farm3.static.flickr.com/2359/2151203243_715d845326_o.jpg">attack ad by Compete against Alexa</a>.</li>
<p>Filed under <strong>The Bigger They Are, The Harder They Fall</strong>:</p>
<li>I was working on a joint venture deal in China, with a pre-negotiated price.  Each time I checked with the accountants working through the due diligence the assets got smaller and the liabilities larger.  Seems the theme runs throughout the <a href="http://www.latimes.com/news/opinion/sunday/commentary/la-op-mead30dec30,0,1035099.story?coll=la-sunday-commentary">Chinese economy</a>.  Of course, you could also surmise the same about the US economy and the <a href="http://business.timesonline.co.uk/tol/business/economics/article3111659.ece">housing market it&#8217;s been so entirely dependent on</a>.</li>
<p>Filed under <strong>More Than You Bargained For</strong>:</p>
<li>Everyone wanted an iPod for Christmas (again).  Some folks got <a href="http://www.myfoxdc.com/myfox/pages/Home/Detail?contentId=5335536&amp;version=1&amp;locale=EN-US&amp;layoutCode=TSTY&amp;pageId=1.1.1&amp;sflg=1">cryptic notes espousing anti-capitalism</a> instead.</li>
<p>and&#8230;</p>
<p>Filed under <strong>That Overpriced Conditioner Won&#8217;t Help</strong>:</p>
<li>Sweetheart&#8230;<a href="http://www.sciencenews.org/articles/20071222/bob11.asp">knots are natural</a>!</li>
<!-- sphereit end -->]]></content:encoded>
			<wfw:commentRss>http://michaelgracie.com/2007/12/31/end-of-year-filings/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Happy Holidays (and headline hoopla)</title>
		<link>http://michaelgracie.com/2007/12/24/happy-holidays-and-headline-hoopla/</link>
		<comments>http://michaelgracie.com/2007/12/24/happy-holidays-and-headline-hoopla/#comments</comments>
		<pubDate>Mon, 24 Dec 2007 19:38:09 +0000</pubDate>
		<dc:creator>Michael Gracie</dc:creator>
		
		<category><![CDATA[Office]]></category>

		<category><![CDATA[blackberry]]></category>

		<category><![CDATA[Charlie Crist]]></category>

		<category><![CDATA[Florida]]></category>

		<category><![CDATA[home prices]]></category>

		<category><![CDATA[Research In Motion]]></category>

		<category><![CDATA[social networking]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://michaelgracie.com/2007/12/24/happy-holidays-and-headline-hoopla/</guid>
		<description><![CDATA[Cheer and good tidings first; light reading last

Charlie Crist calls for an investigation  of &#8220;Florida&#8217;s subprime-tainted fund.&#8221;  It&#8217;s really a SIV tainted fund and a sub-prime tainted SIV, but I&#8217;ll spare you the details.  More on the Florida Fund fiasco here, here, and here.
Research In Motion: no slowdown.  Is it a [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p><em>Cheer and good tidings first; light reading last</em></p>
<ul>
<li>Charlie Crist <a href="http://www.bloomberg.com/apps/news?pid=20601087&amp;sid=ajtjS6F6wS0M&amp;refer=home">calls for an investigation</a>  of &#8220;Florida&#8217;s subprime-tainted fund.&#8221;  It&#8217;s really a SIV tainted fund and a sub-prime tainted SIV, but I&#8217;ll spare you the details.  More on the Florida Fund fiasco <a href="http://michaelgracie.com/2007/11/28/first-run-on-a-bank-sighted/">here, </a><a href="http://michaelgracie.com/2007/12/04/florida-just-first-to-face-national-run-on-the-bank/">here</a>, and <a href="http://michaelgracie.com/2007/12/06/florida-fund-meltdown-bad-to-worse/">here</a>.</li>
<li>Research In Motion: <a href="http://blogs.barrons.com/techtraderdaily/2007/12/21/research-in-motion-slowdown-what-slowdown/">no slowdown</a>.  Is it a <a href="http://paul.kedrosky.com/archives/2007/12/21/has_rim_crossed.html">consumer thing</a>?  Personally, I&#8217;m very happy with my Blackberry, although I consider it a business tool.</li>
<li><strike>Myspace</strike>.  <strike>Facebook</strike>.  Go <a href="http://gigaom.com/2007/12/11/the-next-social-network-wordpress/">Wordpress</a>!?  This may sound a little outlandish now, but the open source blogging application has the install base and the development community to really put a hurting on the &#8220;traditional&#8221; fare.</li>
<li>A <a href="http://www.stephenheise.com/2007/12/17/us-real-estate-market-cooling-down/">Home Price Heat Map</a>, compliments of Stephen Heise.  Data runs from 1975 to Q3-2007.  Very interesting - hit the pause button along the way.</li>
<li>A reminder: next time you look into that camera someone might be recording the color of your eyes, <a href="http://www.washingtonpost.com/wp-dyn/content/article/2007/12/21/AR2007122102544.html">among other things</a>.</li>
</ul>
<p>Again, happy holidays!</p>
<!-- sphereit end -->]]></content:encoded>
			<wfw:commentRss>http://michaelgracie.com/2007/12/24/happy-holidays-and-headline-hoopla/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Today in computing security non-surprises&#8230;</title>
		<link>http://michaelgracie.com/2007/11/01/today-in-computing-security-non-surprises/</link>
		<comments>http://michaelgracie.com/2007/11/01/today-in-computing-security-non-surprises/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 15:16:50 +0000</pubDate>
		<dc:creator>Michael Gracie</dc:creator>
		
		<category><![CDATA[Office]]></category>

		<category><![CDATA[Kim Cameron]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[OS X]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://michaelgracie.com/2007/11/01/today-in-computing-security-non-surprises/</guid>
		<description><![CDATA[Microsoft privacy guru Kim Cameron fell victim to a blog hacking.  Commenters on the site went crazy, at once blaming Microsoft products and playing nutty fanboy over LAMP.  Unfortunately for them, Cameron&#8217;s blog doesn&#8217;t run on an MS backend&#8230;it&#8217;s FreeBSD cranking Wordpress.  No surprise&#8230;it&#8217;s neither Cameron&#8217;s or Microsoft&#8217;s fault, unless a jury [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Microsoft privacy guru Kim Cameron fell victim to <a href="http://www.identityblog.com/?p=890">a blog hacking</a>.  Commenters on the site went crazy, at once blaming Microsoft products and playing nutty fanboy over LAMP.  Unfortunately for them, Cameron&#8217;s blog doesn&#8217;t run on an MS backend&#8230;it&#8217;s FreeBSD cranking Wordpress.  No surprise&#8230;it&#8217;s neither Cameron&#8217;s or Microsoft&#8217;s fault, unless a jury concludes guilt by association is a crime.</p>
<p>In other news, Stan Schroeder pounces&#8230;Macs are <a href="http://mashable.com/2007/11/01/macs-viruses-trojan/">susceptible to viruses</a>, despite what all  the Apple fanboys think.  I&#8217;m a longtime (but only semi-smug) Mac user, and I&#8217;ve previously warned <a href="http://michaelgracie.com/2005/12/20/and-for-the-cocky-mac-user/">Mac users to stay humble</a>.  A history of the OS X security debate via this susceptible-to-hacks blog can be found <a href="http://michaelgracie.com/search/?cx=011647838950087684899%3A1cxf6yucso8&#038;cof=FORID%3A11&#038;q=%22OS+X%22&#038;sa=Search">here</a>.</p>
<!-- sphereit end -->]]></content:encoded>
			<wfw:commentRss>http://michaelgracie.com/2007/11/01/today-in-computing-security-non-surprises/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web 2.0 - Hype v. Innovation</title>
		<link>http://michaelgracie.com/2007/10/30/web-20-hype-v-innovation/</link>
		<comments>http://michaelgracie.com/2007/10/30/web-20-hype-v-innovation/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 20:22:20 +0000</pubDate>
		<dc:creator>Michael Gracie</dc:creator>
		
		<category><![CDATA[Office]]></category>

		<category><![CDATA[Facebook]]></category>

		<category><![CDATA[hype]]></category>

		<category><![CDATA[internet bubble]]></category>

		<category><![CDATA[MySpace]]></category>

		<category><![CDATA[twitter]]></category>

		<category><![CDATA[web 2.0]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://michaelgracie.com/2007/10/30/web-20-hype-v-innovation/</guid>
		<description><![CDATA[There&#8217;s an interesting conversation that&#8217;s been taking place over the last twelve hours regarding recent innovations in the Web 2.0 space, or the lack thereof.
It started with John Heileman of New York Magazine taking a few swipes at the hype, which was quickly picked up after Fred Wilson made it clear some of the article [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>There&#8217;s an interesting conversation that&#8217;s been taking place over the last twelve hours regarding recent innovations in the Web 2.0 space, or the lack thereof.</p>
<p>It started with John Heileman of New York Magazine <a href="http://nymag.com/news/politics/powergrid/39954/">taking a few swipes at the hype</a>, which was quickly picked up after Fred Wilson made it clear some of the article <a href="http://avc.blogs.com/a_vc/2007/10/posting-from-th.html">got his goat</a>.  Steve Rubel <a href="http://www.micropersuasion.com/2007/10/the-web-20-worl.html">followed up</a>, and despite the fact that I&#8217;ve had a tough time following Mr. Rubel&#8217;s ramblings about Google Reader/Gmail as groundbreaking &#8220;research tools&#8221; yada yada, I have to give a general thumbs up to his prognosis - there is a lot of Kool-Aid hitting the gullet, and a dearth of &#8220;wow.&#8221;  The few bright lights in the bunch are hardly world changing either - Twitter, for example, may be nifty, but as <a href="http://www.readwriteweb.com/archives/poll_changing_the_web.php">Richard McManus</a> put it:</p>
<blockquote><p>&#8220;Twitter, which Steve mentioned, is one - albeit it is still extremely niche and no mainstream people I know use it.&#8221;</p></blockquote>
<p>My personal opinion: Twitter is a great platform, but Richard is spot on.  I was <a href="http://michaelgracie.com/2007/06/06/alright-youre-a-vc-please-explain-twitter-to-me/">skeptical at first</a>, and then <a href="http://michaelgracie.com/2007/07/11/explanation-of-twitterpriceless/">got an explanation</a>. I embraced it, installing plugins for this blog, applets for my Blackberry, and Twitterific for the desktop.  But Twitter is a social app, meaning you need your friends on it for it to be either fun or even remotely effective as a communications platform.  Unfortunately, all my friends are those same mainstream kind of folks, and despite prodding some to join none saw any long-term value.  Throw in the fact that <a href="http://publishing2.com/2007/10/24/facebook-defined-networks-and-the-inverse-of-metcalfes-law/#comment-224214">I&#8217;m no groupie</a> (meaning I quickly dumped my follow list as I personally knew none of the people I was following), and the rest is history.</p>
<p><strong>Outrageous</strong></p>
<p>This is classic hype: a article in VentureBeat this morning that exclaims in the most recent blown-out headline that Facebook may now be worth $100 billion (go look for it&#8230;I just couldnt bear to link).  It was worth just $15 billion a few days ago, and only a billion a year ago.  And nothing has changed for this enterprise other than the fact that they have many more users who either a) are too poor to turn advertising dollars spent into consumer purchases made or b) spend so much time on the internet that they are completely oblivious to any and all web advertising.  That, or they&#8217;re like me&#8230;they have money to spend, but clean out their cookies with ever increasing frequency.  The really sad part about this - nobody but the digeratti will ever even read it, and even if a major publication does pick up on it (like so many do nowadays), the general populous doesn&#8217;t care one iota.  All it&#8217;s going to do is make them aware that they need to clean out their cookies more often!</p>
<p>I know why it was written - the author wanted some traffic - that traffic begets ad dollars.  A ridiculous headline is a sure fire way to get there - write some complete bull about a system wholly dependent on advertising so you can get some advertising revenue yourself.  Doesn&#8217;t seem like there is much value add to me.</p>
<p><strong>I guess it&#8217;s fun for some, but&#8230;</strong></p>
<p>I was bored with Facebook in about a day - to me it was AOL on steroids.  I tired of Twitter in a few months - it&#8217;s useful but extremely distracting.  MySpace&#8230;a bid childish.  Meebo - neat, but isn&#8217;t &#8220;everywhere&#8221; IM access what phone-based apps are for?  Tumblr - clean and simple, but so is a Wordpress install.  I could go on and on, but I don&#8217;t have much in the way of ads on this site.</p>
<p>How about showing me something that actually helps me get work done, makes me money, for goodness sakes&#8230;catches me more fish.  Take some of these information technologies and point out how they apply to an industry sector I&#8217;m interested in - securities arbitrage, corporate-owned life insurance, distressed and/or hard-to-price assets, composites and extrusion, far-east import/export, or the promise of nuclear fusion reactors the size of air conditioning compressors.  That would be innovation.</p>
<p>Gotta go&#8230;I&#8217;ve got a phone call (remember those?).</p>
<!-- sphereit end -->]]></content:encoded>
			<wfw:commentRss>http://michaelgracie.com/2007/10/30/web-20-hype-v-innovation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>50+ Tools For The WordPress Admin</title>
		<link>http://michaelgracie.com/2007/07/26/50-tools-for-the-wordpress-admin/</link>
		<comments>http://michaelgracie.com/2007/07/26/50-tools-for-the-wordpress-admin/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 06:16:39 +0000</pubDate>
		<dc:creator>Michael Gracie</dc:creator>
		
		<category><![CDATA[Notes]]></category>

		<category><![CDATA[administration]]></category>

		<category><![CDATA[plug-ins]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://michaelgracie.com/2007/07/26/50-tools-for-the-wordpress-admin/</guid>
		<description><![CDATA[Nice list.  I&#8217;ve already pulled a few helpful components from here.
]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p><a href="http://mashable.com/2007/07/26/wordpress-admin-plugins/">Nice list</a>.  I&#8217;ve already pulled a few helpful components from here.</p>
<!-- sphereit end -->]]></content:encoded>
			<wfw:commentRss>http://michaelgracie.com/2007/07/26/50-tools-for-the-wordpress-admin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Explanation of Twitter&#8230;priceless</title>
		<link>http://michaelgracie.com/2007/07/11/explanation-of-twitterpriceless/</link>
		<comments>http://michaelgracie.com/2007/07/11/explanation-of-twitterpriceless/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 22:12:48 +0000</pubDate>
		<dc:creator>Michael Gracie</dc:creator>
		
		<category><![CDATA[Office]]></category>

		<category><![CDATA[Alex King]]></category>

		<category><![CDATA[blackberry]]></category>

		<category><![CDATA[SMS]]></category>

		<category><![CDATA[twitter]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://michaelgracie.com/2007/07/11/explanation-of-twitterpriceless/</guid>
		<description><![CDATA[A couple of burgers and salads, and a few soft drinks&#8230;uh, I&#8217;ve already lost the receipt (and I already threw the punchline out in the title anyway).
I grabbed lunch with Alex King earlier today, the original idea being picking his brain on some Wordpress stuff I&#8217;m tooling around with (as well as paying my respects [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>A couple of burgers and salads, and a few soft drinks&#8230;uh, I&#8217;ve already lost the receipt (and I already threw the punchline out in the title anyway).</p>
<p>I grabbed lunch with <a href="http://alexking.org">Alex King</a> earlier today, the original idea being picking his brain on some Wordpress stuff I&#8217;m tooling around with (as well as paying my respects for all the great <a href="http://alexking.org/projects/wordpress">plug-ins</a> he has developed and I have pilfered without coughing up donations).  It was worth negotiating the highway at midday, and it came with an unexpected gift - getting a real down to earth explanation of what Twitter is all about (you know, the <a href="http://michaelgracie.com/2007/06/06/alright-youre-a-vc-please-explain-twitter-to-me/">explanation</a> I was still waiting for).</p>
<p>Anyway, I&#8217;ve had this Twitter plug-in for Wordpress activated for some time, but never bothered to use it because I wasn&#8217;t really using Twitter in the first place.  Alex pursued the development of the plug-in after some initial skepticism regarding Twitter himself - the genesis of the project was a quick and easy way to archive Twitter posts, and it grew from there.</p>
<p>I&#8217;m not going to get into detail regarding Alex&#8217;s take on the service other than to say that my initial suspicions regarding the success Twitter would have as a result of their open API are shared.  Mr. King also pointed out <a href="http://www.orangatame.com/products/twitterberry/">TwitterBerry</a> to me, which I&#8217;ve now installed on my 8700, OTA.  It makes a lot of sense for any Blackberry user who doesn&#8217;t have unlimited SMS (although I have plenty, I hate keeping track of that kind of stuff, and already have unlimited data).</p>
<p>I still have doubts, based primarily on the fact that Twitter is a social service and I&#8217;d be hard pressed to get any of my &#8220;old fart&#8221; friends to join - I can&#8217;t even get them to read this blog (although that may be due to its low quality nature.  Nevertheless, I like the idea of being able to record snippets that wouldn&#8217;t otherwise be appropriate for a blog entry (like one liners), and having them compiled at the end of each day.</p>
<p>Thanks Alex.</p>
<!-- sphereit end -->]]></content:encoded>
			<wfw:commentRss>http://michaelgracie.com/2007/07/11/explanation-of-twitterpriceless/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I&#8217;d love the plugin, but don&#8217;t have time to read the terms of service</title>
		<link>http://michaelgracie.com/2007/07/03/id-love-the-plugin-but-dont-have-time-to-read-the-terms-of-service/</link>
		<comments>http://michaelgracie.com/2007/07/03/id-love-the-plugin-but-dont-have-time-to-read-the-terms-of-service/#comments</comments>
		<pubDate>Tue, 03 Jul 2007 19:43:50 +0000</pubDate>
		<dc:creator>Michael Gracie</dc:creator>
		
		<category><![CDATA[Office]]></category>

		<category><![CDATA[HP]]></category>

		<category><![CDATA[plugins]]></category>

		<category><![CDATA[Tabblo]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://michaelgracie.com/2007/07/03/id-love-the-plugin-but-dont-have-time-to-read-the-terms-of-service/</guid>
		<description><![CDATA[A shining example of how not to release a plugin for an open source platform?
In this case, the culprit is HP and the target is Wordpress.  After reading about HP&#8217;s new weblog printing plugin over at Mashable, I thought it would be great to have easy printing capabilities on this site.  So I [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>A shining example of how not to release a plugin for an open source platform?</p>
<p>In this case, the culprit is HP and the target is Wordpress.  After reading about HP&#8217;s new weblog printing plugin over at Mashable, I thought it would be great to have easy printing capabilities on this site.  So I search around the HP&#8217;s Tabblo site for a bit and finally find a link to download the Wordpress plugin.</p>
<p>Next stop&#8230;<a href="http://developer.tabblo.com/wp-content/themes/tabblo/blog_signup.php?m=wordpress">this</a>.  I&#8217;ve got to give them my email address and site location and agree to a bunch of terms and conditions in order to download a plugin for an free, open source software package that I originally received no-questions-asked?</p>
<p>I don&#8217;t even know if it will work.  Is it compatible with my theme?  How much hacking will be required?  Does it jive with the other plugins?</p>
<p>Tell you what - I&#8217;ll save some folks the temptation of using the overpriced ink cartridges instead.</p>
<p>UPDATE: I took the leap of faith since someone from HP (?) was kind enough to respond.  More in the comment thread&#8230;</p>
<!-- sphereit end -->]]></content:encoded>
			<wfw:commentRss>http://michaelgracie.com/2007/07/03/id-love-the-plugin-but-dont-have-time-to-read-the-terms-of-service/feed/</wfw:commentRss>
		</item>
		<item>
		<title>This post was pushed from Blackberry</title>
		<link>http://michaelgracie.com/2007/05/18/test-post-via-bb/</link>
		<comments>http://michaelgracie.com/2007/05/18/test-post-via-bb/#comments</comments>
		<pubDate>Sat, 19 May 2007 06:18:50 +0000</pubDate>
		<dc:creator>Michael Gracie</dc:creator>
		
		<category><![CDATA[Office]]></category>

		<category><![CDATA[blackberry]]></category>

		<category><![CDATA[mobile]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.michaelgracie.com/test-post-via-bb/</guid>
		<description><![CDATA[A mobile post [but this problem is solved].
UPDATE: If you are using WordPress and want post-from-email functionality, use Postie from Economy Sized Geek.
]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>A mobile post [but <a href="http://www.michaelgracie.com/2007/05/07/mobile-posting-to-wordpress/">this problem</a> is solved].</p>
<p>UPDATE: If you are using WordPress and want post-from-email functionality, use <a href="http://www.economysizegeek.com/?page_id=395">Postie</a> from Economy Sized Geek.</p>
<!-- sphereit end -->]]></content:encoded>
			<wfw:commentRss>http://michaelgracie.com/2007/05/18/test-post-via-bb/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
