<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ken H. Judy &#187; api</title>
	<atom:link href="http://judykat.com/ken-judy/tag/api/feed/" rel="self" type="application/rss+xml" />
	<link>http://judykat.com/ken-judy</link>
	<description>Scrum, XP, Management and the Ethics of Agile Software Development</description>
	<lastBuildDate>Mon, 12 Jul 2010 19:35:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Fixing markup in cross posts to wordpress using metaWeblog, xml-rpc, &amp; xpost plugin</title>
		<link>http://judykat.com/ken-judy/fixing-markup-in-cross-posts-to-wordpress-using-metaweblog-xml-rpc-xpost-plugin/</link>
		<comments>http://judykat.com/ken-judy/fixing-markup-in-cross-posts-to-wordpress-using-metaweblog-xml-rpc-xpost-plugin/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 03:51:57 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[software development]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[Jan Gossman]]></category>
		<category><![CDATA[metaWeblog]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[xml-rpc]]></category>
		<category><![CDATA[xpost]]></category>

		<guid isPermaLink="false">http://judykat.com/ken/?p=1356</guid>
		<description><![CDATA[I&#8217;m experimenting with cross posting from one wordpress blog to another using the metaWeblog API and XML-RPC. This led me to the xpost plugin by Jan Gossman. Easy enough to test. I set up two blogs, activated xpost on one of them and posted to the other. The plugin works as promised. You can selectively [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wordpress.org"><img alt="" src="http://files.me.com/kenjudy/jol1tw" title="Screen Shot of WordPress.org" class="alignright" width="250" height="216" /></a>I&#8217;m experimenting with cross posting from one wordpress blog to another using the <a href="http://www.xmlrpc.com/metaWeblogApi">metaWeblog API</a> and <a href="http://codex.wordpress.org/XML-RPC_Support">XML-RPC</a>. This led me to the <a href="http://www.hyper-world.de/en/computer-2/xpost/">xpost plugin by Jan Gossman</a>.</p>
<p>Easy enough to test. I set up two blogs, activated xpost on one of them and posted to the other.</p>
<p>The plugin works as promised. You can selectively post to multiple blogs and assign categories. Tags and standard properties are preserved. Most impressively, the relationship between source and target blogs is maintained. Changes in the source are updated in the targets.</p>
<p>However markup in the cross posts is broken because single and double quotes are escaped with a backslash. For example, link tags become <code>&lt;a href=\"...</code>.</p>
<p>From what I can find <a href="http://blogsome-forum.blogsome.com/viewtopic.php?t=931">this is a known issue</a> intentionally introduced within the WordPress&#8217; XML-RPC implementation as brute force protection against <a href="http://wordpress.org/development/2008/02/wordpress-233/">a SQL injection vulnerability</a>.</p>
<p>I don&#8217;t want to expose myself to this vulnerability. Nor do I want to hack a wordpress build.</p>
<p>It occurred to me one way to get past this issue is to strip those backslashes at the presentation level within the theme of the blog to which I want to crosspost. I don&#8217;t see any reason to render backslashes within posts.</p>
<p>So, with guidance from <a href="http://codex.wordpress.org/Template_Tags/the_content">the WordPress codex</a>, I modified the single and index templates&#8230;</p>
<p>Replacing:</p>
<p> <code>    &lt;?php the_content(); ?&gt;</code></p>
<p>With:</p>
<p><code>    &lt;?php<br />
    $content = get_the_content();<br />
    $content = apply_filters('the_content', $content);<br />
    $content = str_replace(']]&gt;', ']]&gt;', $content);<br />
    $content = str_replace('\\','',$content); /* This strips escapes inserted through XML-RPC */<br />
    print $content ?&gt;</code></p>
<p>I think this will work for me. I&#8217;m glad to be proven wrong. Am I missing something?</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Fixing%20markup%20in%20cross%20posts%20to%20wordpress%20using%20metaWeblog%2C%20xml-rpc%2C%20%26%20xpost%20plugin&amp;body=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ffixing-markup-in-cross-posts-to-wordpress-using-metaweblog-xml-rpc-xpost-plugin%2F" title="email"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ffixing-markup-in-cross-posts-to-wordpress-using-metaweblog-xml-rpc-xpost-plugin%2F&amp;partner=sociable" title="Print"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ffixing-markup-in-cross-posts-to-wordpress-using-metaweblog-xml-rpc-xpost-plugin%2F&amp;title=Fixing%20markup%20in%20cross%20posts%20to%20wordpress%20using%20metaWeblog%2C%20xml-rpc%2C%20%26%20xpost%20plugin&amp;bodytext=I%27m%20experimenting%20with%20cross%20posting%20from%20one%20wordpress%20blog%20to%20another%20using%20the%20metaWeblog%20API%20and%20XML-RPC.%20This%20led%20me%20to%20the%20xpost%20plugin%20by%20Jan%20Gossman.%0D%0A%0D%0AEasy%20enough%20to%20test.%20I%20set%20up%20two%20blogs%2C%20activated%20xpost%20on%20one%20of%20them%20and%20posted%20to%20the" title="Digg"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ffixing-markup-in-cross-posts-to-wordpress-using-metaweblog-xml-rpc-xpost-plugin%2F&amp;title=Fixing%20markup%20in%20cross%20posts%20to%20wordpress%20using%20metaWeblog%2C%20xml-rpc%2C%20%26%20xpost%20plugin" title="Reddit"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ffixing-markup-in-cross-posts-to-wordpress-using-metaweblog-xml-rpc-xpost-plugin%2F&amp;title=Fixing%20markup%20in%20cross%20posts%20to%20wordpress%20using%20metaWeblog%2C%20xml-rpc%2C%20%26%20xpost%20plugin" title="StumbleUpon"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ffixing-markup-in-cross-posts-to-wordpress-using-metaweblog-xml-rpc-xpost-plugin%2F&amp;title=Fixing%20markup%20in%20cross%20posts%20to%20wordpress%20using%20metaWeblog%2C%20xml-rpc%2C%20%26%20xpost%20plugin&amp;annotation=I%27m%20experimenting%20with%20cross%20posting%20from%20one%20wordpress%20blog%20to%20another%20using%20the%20metaWeblog%20API%20and%20XML-RPC.%20This%20led%20me%20to%20the%20xpost%20plugin%20by%20Jan%20Gossman.%0D%0A%0D%0AEasy%20enough%20to%20test.%20I%20set%20up%20two%20blogs%2C%20activated%20xpost%20on%20one%20of%20them%20and%20posted%20to%20the" title="Google Bookmarks"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ffixing-markup-in-cross-posts-to-wordpress-using-metaweblog-xml-rpc-xpost-plugin%2F&amp;title=Fixing%20markup%20in%20cross%20posts%20to%20wordpress%20using%20metaWeblog%2C%20xml-rpc%2C%20%26%20xpost%20plugin&amp;notes=I%27m%20experimenting%20with%20cross%20posting%20from%20one%20wordpress%20blog%20to%20another%20using%20the%20metaWeblog%20API%20and%20XML-RPC.%20This%20led%20me%20to%20the%20xpost%20plugin%20by%20Jan%20Gossman.%0D%0A%0D%0AEasy%20enough%20to%20test.%20I%20set%20up%20two%20blogs%2C%20activated%20xpost%20on%20one%20of%20them%20and%20posted%20to%20the" title="del.icio.us"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ffixing-markup-in-cross-posts-to-wordpress-using-metaweblog-xml-rpc-xpost-plugin%2F&amp;title=Fixing%20markup%20in%20cross%20posts%20to%20wordpress%20using%20metaWeblog%2C%20xml-rpc%2C%20%26%20xpost%20plugin&amp;source=Ken+H.+Judy+Scrum%2C+XP%2C+Management+and+the+Ethics+of+Agile+Software+Development&amp;summary=I%27m%20experimenting%20with%20cross%20posting%20from%20one%20wordpress%20blog%20to%20another%20using%20the%20metaWeblog%20API%20and%20XML-RPC.%20This%20led%20me%20to%20the%20xpost%20plugin%20by%20Jan%20Gossman.%0D%0A%0D%0AEasy%20enough%20to%20test.%20I%20set%20up%20two%20blogs%2C%20activated%20xpost%20on%20one%20of%20them%20and%20posted%20to%20the" title="LinkedIn"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjudykat.com%2Fken-judy%2Ffixing-markup-in-cross-posts-to-wordpress-using-metaweblog-xml-rpc-xpost-plugin%2F&amp;t=Fixing%20markup%20in%20cross%20posts%20to%20wordpress%20using%20metaWeblog%2C%20xml-rpc%2C%20%26%20xpost%20plugin" title="Facebook"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Fixing%20markup%20in%20cross%20posts%20to%20wordpress%20using%20metaWeblog%2C%20xml-rpc%2C%20%26%20xpost%20plugin%20-%20http%3A%2F%2Fjudykat.com%2Fken-judy%2Ffixing-markup-in-cross-posts-to-wordpress-using-metaweblog-xml-rpc-xpost-plugin%2F" title="Twitter"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://judykat.com/ken-judy/fixing-markup-in-cross-posts-to-wordpress-using-metaweblog-xml-rpc-xpost-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft and Ript</title>
		<link>http://judykat.com/ken-judy/microsoft-and-ript/</link>
		<comments>http://judykat.com/ken-judy/microsoft-and-ript/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 01:15:13 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Alt.Net]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[consumer technology]]></category>
		<category><![CDATA[Darren Mc]]></category>
		<category><![CDATA[Henry Hahn]]></category>
		<category><![CDATA[Katherine Westgate]]></category>
		<category><![CDATA[Marketing Officer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Ript]]></category>
		<category><![CDATA[Ript Gerry]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[Worldwide UX Role Owner]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[WPF application]]></category>
		<category><![CDATA[WPF Program Manager]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://judykat.com/ken/2007/10/26/microsoft-and-ript/</guid>
		<description><![CDATA[Gerry spoke at the Microsoft Women&#8217;s Conference this week. I joined her so that we could meet with some key players at Microsoft to talk about Ript&#8482;, our WPF application. Attending were Henry Hahn, WPF Program Manager, Darren Mc&#160;Cormick, Worldwide UX Role Owner, and Katherine Westgate, a Marketing Officer from Microsoft&#8217;s NY office. The conversation [...]]]></description>
			<content:encoded><![CDATA[<p>Gerry spoke at the Microsoft Women&#8217;s Conference this week.</p>
<div style="background-color:#666;width:300px;height:130px;float:right;"><a href="http://www.ript.com" title="find out more about Ript&trade;"><img src='http://judykat.com/ken/wp-content/uploads/2007/05/riptlogo.png' alt='Ript' style="border-style:none;" /></a></div>
<p>I joined her so that we could meet with some key players at Microsoft to talk about <a href="http://ript.com">Ript&trade;</a>, our WPF application.</p>
<p>Attending were <a href="http://blogs.msdn.com/henryh/">Henry Hahn</a>, WPF Program Manager, Darren Mc&nbsp;Cormick, Worldwide UX Role Owner, and Katherine Westgate, a Marketing Officer from Microsoft&#8217;s NY office.</p>
<p>The conversation ranged over the whole history of our project: our Scrum/XP practices, how our team collaborates on user experience, how we created our product vision and our plan to monetize the product. </p>
<p>The three of them were entirely approachable, engaged and enthusiastic. They also came prepared. They&#8217;d all downloaded and worked with our application. Henry actually submitted feature suggestions from his team he knows are easy to implement given what we&#8217;ve already created.</p>
<p>Katherine helped pull the attendees together and lined up our hands on demo of <a href="http://microsoft.com/surface">Surface&trade;</a>. She was interested in figuring how our experiences with Ript&trade;, agile software development and collaborative product ownership might help her enterprise clients. She also asked Gerry how Oxygen approaches advocacy for women, corporate good will and citizenship. Katherine is sharp and conscientious. I could tell Gerry hit it off with her.</p>
<p>Darren described the Developer Platform Evangelists (DPE) programs for joint marketing and developer assistance around products built in WPF and Silverlight. We discussed some of Microsoft&#8217;s goals for Silverlight distribution and what Oxygen&#8217;s next steps are to engage these resources. Darren is clearly passionate about user experience at the level of product, brand and within an organization. Yet another example of Microsoft going outside its organization to bring in new thinking.</p>
<p>Gerry&#8217;s main points were that women are the principle market for consumer technology, that usability testing with women provides valuable insight, how software should playful, purposeful, simple and accessible and how product development should not focus on early adopters but the people who will make up the vast majority of end users should the product be successful.</p>
<p>The conversation also ranged over tech issues. Henry is a fan of our application and left an open door for further communication. He said the .NET team is working on some of our core concerns:</p>
<ul>
<li>breaking up the .NET 3 installer into server and client modules making the package smaller
	</li>
<li>improving the experience of their default install (it plays out like a windows update, hiding itself in the system tray &#8211; this is very confusing in an application install process)</li>
<li>making it easier for ISV&#8217;s to run a silent install and wrap their own UI around the install</li>
<li>improving cold start time</li>
<li>providing more expressive API&#8217;s for automated UI testing</li>
</ul>
<p>Don&#8217;t expect any of this soon unfortunately. </p>
<p>Clearly there are employees at Microsoft in leadership roles determined to engage with and support, not simply consume, innovative work originating outside the company. I had the same impression at the <a href="http://laribee.com/blog/2007/04/10/altnet/">ALT.NET</a> conference earlier this month.</p>
<p>This bodes well for both Microsoft&#8217;s future as well as for those of us looking to innovate in the marketplace using their tools and platforms.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Microsoft%20and%20Ript&amp;body=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmicrosoft-and-ript%2F" title="email"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmicrosoft-and-ript%2F&amp;partner=sociable" title="Print"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmicrosoft-and-ript%2F&amp;title=Microsoft%20and%20Ript&amp;bodytext=Gerry%20spoke%20at%20the%20Microsoft%20Women%27s%20Conference%20this%20week.%0D%0A%0D%0AI%20joined%20her%20so%20that%20we%20could%20meet%20with%20some%20key%20players%20at%20Microsoft%20to%20talk%20about%20Ript%26trade%3B%2C%20our%20WPF%20application.%0D%0A%0D%0AAttending%20were%20Henry%20Hahn%2C%20WPF%20Program%20Manager%2C%20Darren%20Mc%26nbsp%3BCorm" title="Digg"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmicrosoft-and-ript%2F&amp;title=Microsoft%20and%20Ript" title="Reddit"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmicrosoft-and-ript%2F&amp;title=Microsoft%20and%20Ript" title="StumbleUpon"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmicrosoft-and-ript%2F&amp;title=Microsoft%20and%20Ript&amp;annotation=Gerry%20spoke%20at%20the%20Microsoft%20Women%27s%20Conference%20this%20week.%0D%0A%0D%0AI%20joined%20her%20so%20that%20we%20could%20meet%20with%20some%20key%20players%20at%20Microsoft%20to%20talk%20about%20Ript%26trade%3B%2C%20our%20WPF%20application.%0D%0A%0D%0AAttending%20were%20Henry%20Hahn%2C%20WPF%20Program%20Manager%2C%20Darren%20Mc%26nbsp%3BCorm" title="Google Bookmarks"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmicrosoft-and-ript%2F&amp;title=Microsoft%20and%20Ript&amp;notes=Gerry%20spoke%20at%20the%20Microsoft%20Women%27s%20Conference%20this%20week.%0D%0A%0D%0AI%20joined%20her%20so%20that%20we%20could%20meet%20with%20some%20key%20players%20at%20Microsoft%20to%20talk%20about%20Ript%26trade%3B%2C%20our%20WPF%20application.%0D%0A%0D%0AAttending%20were%20Henry%20Hahn%2C%20WPF%20Program%20Manager%2C%20Darren%20Mc%26nbsp%3BCorm" title="del.icio.us"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmicrosoft-and-ript%2F&amp;title=Microsoft%20and%20Ript&amp;source=Ken+H.+Judy+Scrum%2C+XP%2C+Management+and+the+Ethics+of+Agile+Software+Development&amp;summary=Gerry%20spoke%20at%20the%20Microsoft%20Women%27s%20Conference%20this%20week.%0D%0A%0D%0AI%20joined%20her%20so%20that%20we%20could%20meet%20with%20some%20key%20players%20at%20Microsoft%20to%20talk%20about%20Ript%26trade%3B%2C%20our%20WPF%20application.%0D%0A%0D%0AAttending%20were%20Henry%20Hahn%2C%20WPF%20Program%20Manager%2C%20Darren%20Mc%26nbsp%3BCorm" title="LinkedIn"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmicrosoft-and-ript%2F&amp;t=Microsoft%20and%20Ript" title="Facebook"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Microsoft%20and%20Ript%20-%20http%3A%2F%2Fjudykat.com%2Fken-judy%2Fmicrosoft-and-ript%2F" title="Twitter"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://judykat.com/ken-judy/microsoft-and-ript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build Bunny</title>
		<link>http://judykat.com/ken-judy/build-bunny/</link>
		<comments>http://judykat.com/ken-judy/build-bunny/#comments</comments>
		<pubDate>Sat, 07 Jul 2007 01:58:26 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[api]]></category>
		<category><![CDATA[co-worker]]></category>
		<category><![CDATA[creativity]]></category>

		<guid isPermaLink="false">http://judykat.com/ken/2007/07/07/build-bunny/</guid>
		<description><![CDATA[Today was a slow. I upgraded our build bunny to a WPA-capable Nabaztag/tag. Good builds make the bunny very happy. Broken builds make the bunny so sad. Thanks for the idea to The Pragmatic Programmers and their ridiculous lava lamps. My co-worker Kris wrote a custom publisher to integrate CruiseControl with the nabaztag api. &#8220;A [...]]]></description>
			<content:encoded><![CDATA[<p>Today was a slow. I upgraded our build bunny to a WPA-capable <a href="http://www.nabaztag.com">Nabaztag/tag</a>. Good builds make the bunny very happy. Broken builds make the bunny so sad.</p>
<p>Thanks for the idea to <a href="http://www.pragmaticprogrammer.com/pa/pa.html">The Pragmatic Programmers and their ridiculous lava lamps</a>. My co-worker Kris <a href="http://krisselden.com/2007/01/29/adding-a-custom-cruisecontrolnet-publisher/">wrote a custom publisher</a> to integrate <a href="http://cruisecontrol.sourceforge.net/">CruiseControl</a> with the <a href="http://help.nabaztag.com/fiche.php?langue=3&#038;fiche=29">nabaztag api</a>.</p>
<p>&#8220;A little nonsense, now and then, is relished by the wisest men&#8221; &#8212; Willy Wonka</p>
<p><embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=-1722929613089007784&#038;hl=en" flashvars=""> </embed></p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Build%20Bunny&amp;body=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fbuild-bunny%2F" title="email"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fbuild-bunny%2F&amp;partner=sociable" title="Print"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fbuild-bunny%2F&amp;title=Build%20Bunny&amp;bodytext=Today%20was%20a%20slow.%20I%20upgraded%20our%20build%20bunny%20to%20a%20WPA-capable%20Nabaztag%2Ftag.%20Good%20builds%20make%20the%20bunny%20very%20happy.%20Broken%20builds%20make%20the%20bunny%20so%20sad.%0D%0A%0D%0AThanks%20for%20the%20idea%20to%20The%20Pragmatic%20Programmers%20and%20their%20ridiculous%20lava%20lamps.%20My%20co-worker%20" title="Digg"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fbuild-bunny%2F&amp;title=Build%20Bunny" title="Reddit"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fbuild-bunny%2F&amp;title=Build%20Bunny" title="StumbleUpon"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fbuild-bunny%2F&amp;title=Build%20Bunny&amp;annotation=Today%20was%20a%20slow.%20I%20upgraded%20our%20build%20bunny%20to%20a%20WPA-capable%20Nabaztag%2Ftag.%20Good%20builds%20make%20the%20bunny%20very%20happy.%20Broken%20builds%20make%20the%20bunny%20so%20sad.%0D%0A%0D%0AThanks%20for%20the%20idea%20to%20The%20Pragmatic%20Programmers%20and%20their%20ridiculous%20lava%20lamps.%20My%20co-worker%20" title="Google Bookmarks"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fbuild-bunny%2F&amp;title=Build%20Bunny&amp;notes=Today%20was%20a%20slow.%20I%20upgraded%20our%20build%20bunny%20to%20a%20WPA-capable%20Nabaztag%2Ftag.%20Good%20builds%20make%20the%20bunny%20very%20happy.%20Broken%20builds%20make%20the%20bunny%20so%20sad.%0D%0A%0D%0AThanks%20for%20the%20idea%20to%20The%20Pragmatic%20Programmers%20and%20their%20ridiculous%20lava%20lamps.%20My%20co-worker%20" title="del.icio.us"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fbuild-bunny%2F&amp;title=Build%20Bunny&amp;source=Ken+H.+Judy+Scrum%2C+XP%2C+Management+and+the+Ethics+of+Agile+Software+Development&amp;summary=Today%20was%20a%20slow.%20I%20upgraded%20our%20build%20bunny%20to%20a%20WPA-capable%20Nabaztag%2Ftag.%20Good%20builds%20make%20the%20bunny%20very%20happy.%20Broken%20builds%20make%20the%20bunny%20so%20sad.%0D%0A%0D%0AThanks%20for%20the%20idea%20to%20The%20Pragmatic%20Programmers%20and%20their%20ridiculous%20lava%20lamps.%20My%20co-worker%20" title="LinkedIn"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjudykat.com%2Fken-judy%2Fbuild-bunny%2F&amp;t=Build%20Bunny" title="Facebook"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Build%20Bunny%20-%20http%3A%2F%2Fjudykat.com%2Fken-judy%2Fbuild-bunny%2F" title="Twitter"><img src="http://judykat.com/ken-judy/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://judykat.com/ken-judy/build-bunny/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
