<?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>elliptical...</title>
	<atom:link href="http://kinrowan.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://kinrowan.net/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 29 Jul 2010 04:53:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>IronPython error messaging for instance methods</title>
		<link>http://kinrowan.net/blog/2009/11/03/ironpython-error-messaging-for-instance-methods/</link>
		<comments>http://kinrowan.net/blog/2009/11/03/ironpython-error-messaging-for-instance-methods/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 18:57:36 +0000</pubDate>
		<dc:creator>cori</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[ironpython]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/2009/11/03/ironpython-error-messaging-for-instance-methods/</guid>
		<description><![CDATA[Recently I&#8217;ve been using IronPython as a dynamic testing framework for .Net assemblies more and more. Particularly in the current development iteration for our company&#8217;s website, where a contractor is working on the data access layer classes for a database schema of my design. In order to test his data access methods I need to [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve been using IronPython as a dynamic testing framework for .Net assemblies more and more. Particularly in the current development iteration for our company&#8217;s website, where a contractor is working on the data access layer classes for a database schema of my design. In order to test his data access methods I need to new up an instance of the various classes and check the output of the methods. We&#8217;re simultaneously starting to do some coded integration tests using NUnit for the same purpose, but when I just want to quickly smoke-check his work before sending him on to the next task, opening an IronPython console and instantiating his class and running through the methods can&#8217;t be beat for quickness. I&#8217;ve been meaning to write a little bit more about this, but suffice it to say it&#8217;s been working really well for me.
<p /> My typical usage pattern is to import the clr and add a reference to the dll in question by path and filename, and then to import just the class I want to test. So far, so good. But when testing a little refactoring I was doing this morning I encountered an error message that took me a few minutes to isolate and resolve.
<p /> The call I was using was <code> <br />c=Category.LoadSimpleCategoriesByRegion("2") <br /></code> <br />And the error message I saw was: <br /><code> <br />TypeError: LoadSimpleCategoriesByRegion() takes exactly 2 arguments (1 given) <br /></code>
<p /> I stared at the code for a while, swearing up and down that the method I was calling *did* have a 1 argument overload available. Finally I realized that I was calling an instance method in a static fashion &#8211; the other argument that IronPython was expecting was an instance of the class to execute the method on.
<p /> Not exactly rocket science, but a confusing (to me, at least) error message that took me longer than it should have to figure out.</p>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2009/11/03/ironpython-error-messaging-for-instance-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NUnit and app.config in VS2005</title>
		<link>http://kinrowan.net/blog/2009/11/02/nunit-and-app-config-in-vs2005/</link>
		<comments>http://kinrowan.net/blog/2009/11/02/nunit-and-app-config-in-vs2005/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 14:33:41 +0000</pubDate>
		<dc:creator>cori</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/2009/11/02/nunit-and-app-config-in-vs2005/</guid>
		<description><![CDATA[I ran into a little problem yesterday in setting up unit tests for some new data access classes for my employer&#8217;s website.&#160; I&#8217;m using NUnit 2.4.8 and integrating it with Visual Studio as outlined here, so when I&#8217;m ready to run the tests I select the external tool and NUnit spins up and loads the [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into a little problem yesterday in setting up unit tests for some new data access classes for my employer&#8217;s website.&nbsp; I&#8217;m using NUnit 2.4.8 and integrating it with Visual Studio as outlined <a href="http://daarchitect.wordpress.com/2008/10/14/using-nunit-243-with-vs-2005/">here</a>, so when I&#8217;m ready to run the tests I select the external tool and NUnit spins up and loads the project I&#8217;m working on I also use a plugin that starts NUnit and attaches the Visual Studio debugger to the NUnit process, but I often don&#8217;t want to debug the tests, and the external tool is faster to start).&nbsp; NUnit is configured with Visual Studio integration on and whenever I would run my tests they would fail because NUnit wouldn&#8217;t use the appropriate configuration settings.</p>
</p>
<p>There are plenty of <a href="http://www.google.com/search?q=nunit+app.config">people who have encountered this problem</a>, and plenty of examples of versions of the &#8220;right&#8221; way to add the config file.&nbsp; None of these were suitable to my exact situation &#8211; I have a &#8220;correctly&#8221; named config file in the directory with the DLL my tests are testing, and I also have a &#8220;correctly&#8221; named config file in the directory where my .nunit file resides.</p>
</p>
<p>I finally discovered the correct solution for my use case.&nbsp; The difference lies in the fact that I&#8217;m running NUnit in Visual Studio integration mode, and loading NUnit with the project file of the Visual Studio project I&#8217;m testing.&nbsp; Because NUnit is loading the tests directly from %projectroot%/MyProject.csproj my config file had to be named MyProject.csproj.config.&nbsp; Once I made that change my tests started working fine.&nbsp; They didn&#8217;t pass, but at least they were working <span style="font-family: Wingdings;">J</span></p>
</p>
<p>Seems like a pretty simple answer, but I figured I&#8217;d post it here to add to the pool of possible solutions for someone in the future to run across (and like as not, that someone could be me).</p>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2009/11/02/nunit-and-app-config-in-vs2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2008-04-03</title>
		<link>http://kinrowan.net/blog/2008/04/03/links-for-2008-04-03/</link>
		<comments>http://kinrowan.net/blog/2008/04/03/links-for-2008-04-03/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 07:31:23 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2008/04/03/links-for-2008-04-03</guid>
		<description><![CDATA[

BLDGBLOG: Forgotten Architects
Many of the buildings these architects produced were absolutely extraordinary – and, frankly, it seems impossible not to look at these images and judge 20th century Germany in light of the catastrophic stupidities that led to its murderous exile of the
(tags: architecture naziism hoocaust art)


]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://bldgblog.blogspot.com/2008/03/forgotten-architects.html">BLDGBLOG: Forgotten Architects</a></div>
<div>Many of the buildings these architects produced were absolutely extraordinary – and, frankly, it seems impossible not to look at these images and judge 20th century Germany in light of the catastrophic stupidities that led to its murderous exile of the</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/architecture">architecture</a> <a href="http://del.icio.us/kinrowan/naziism">naziism</a> <a href="http://del.icio.us/kinrowan/hoocaust">hoocaust</a> <a href="http://del.icio.us/kinrowan/art">art</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2008/04/03/links-for-2008-04-03/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2008-03-30</title>
		<link>http://kinrowan.net/blog/2008/03/30/links-for-2008-03-30/</link>
		<comments>http://kinrowan.net/blog/2008/03/30/links-for-2008-03-30/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 07:31:30 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2008/03/30/links-for-2008-03-30</guid>
		<description><![CDATA[

socialgraph-resources &#8211; Google Code
(tags: code google social reference)


]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://code.google.com/p/socialgraph-resources/">socialgraph-resources &#8211; Google Code</a></div>
<div>(tags: <a href="http://del.icio.us/kinrowan/code">code</a> <a href="http://del.icio.us/kinrowan/google">google</a> <a href="http://del.icio.us/kinrowan/social">social</a> <a href="http://del.icio.us/kinrowan/reference">reference</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2008/03/30/links-for-2008-03-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2008-02-06</title>
		<link>http://kinrowan.net/blog/2008/02/06/links-for-2008-02-06/</link>
		<comments>http://kinrowan.net/blog/2008/02/06/links-for-2008-02-06/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 07:18:22 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2008/02/06/links-for-2008-02-06</guid>
		<description><![CDATA[

SQL Server development techniques and sql scripts. Author Nigel Rivett
handy sql server scripts
(tags: SQLServer tips commands)


]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.nigelrivett.net/#Administration">SQL Server development techniques and sql scripts. Author Nigel Rivett</a></div>
<div>handy sql server scripts</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/SQLServer">SQLServer</a> <a href="http://del.icio.us/kinrowan/tips">tips</a> <a href="http://del.icio.us/kinrowan/commands">commands</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2008/02/06/links-for-2008-02-06/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2008-02-05</title>
		<link>http://kinrowan.net/blog/2008/02/05/links-for-2008-02-05/</link>
		<comments>http://kinrowan.net/blog/2008/02/05/links-for-2008-02-05/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 07:18:32 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2008/02/05/links-for-2008-02-05</guid>
		<description><![CDATA[

Live Chat and Realtime Monitoring for your Website by SightMax
(tags: communityserver etc work chat tool support)


Community Server &#8211; Community Server Editor, Community Server Chat, Community Server Richtextbox, Community Server Web messenger, Community Server Live Support
(tags: chat CommunityServer ETC work tools)


]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.sightmax.com/">Live Chat and Realtime Monitoring for your Website by SightMax</a></div>
<div>(tags: <a href="http://del.icio.us/kinrowan/communityserver">communityserver</a> <a href="http://del.icio.us/kinrowan/etc">etc</a> <a href="http://del.icio.us/kinrowan/work">work</a> <a href="http://del.icio.us/kinrowan/chat">chat</a> <a href="http://del.icio.us/kinrowan/tool">tool</a> <a href="http://del.icio.us/kinrowan/support">support</a>)</div>
</li>
<li>
<div><a href="http://cutesoft.net/Products/Community-Server/default.aspx">Community Server &#8211; Community Server Editor, Community Server Chat, Community Server Richtextbox, Community Server Web messenger, Community Server Live Support</a></div>
<div>(tags: <a href="http://del.icio.us/kinrowan/chat">chat</a> <a href="http://del.icio.us/kinrowan/CommunityServer">CommunityServer</a> <a href="http://del.icio.us/kinrowan/ETC">ETC</a> <a href="http://del.icio.us/kinrowan/work">work</a> <a href="http://del.icio.us/kinrowan/tools">tools</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2008/02/05/links-for-2008-02-05/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2008-01-30</title>
		<link>http://kinrowan.net/blog/2008/01/30/links-for-2008-01-30/</link>
		<comments>http://kinrowan.net/blog/2008/01/30/links-for-2008-01-30/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 07:21:37 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2008/01/30/links-for-2008-01-30</guid>
		<description><![CDATA[

Reporting Service Bad Request Error 400
using specific ip breaks reporting service front end deploy
(tags: microsoft SQLServer2005 ReportingServices iis6 problem fix)


Enable Parent Paths Is Disabled by Default in IIS 6.0
this can cause a problem is ASP apps that use upwards relative paths (&#8220;../&#8230;&#8221;)
(tags: microsoft iis6 asp path problem fix)


]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?siteid=1&amp;PostID=167731">Reporting Service Bad Request Error 400</a></div>
<div>using specific ip breaks reporting service front end deploy</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/microsoft">microsoft</a> <a href="http://del.icio.us/kinrowan/SQLServer2005">SQLServer2005</a> <a href="http://del.icio.us/kinrowan/ReportingServices">ReportingServices</a> <a href="http://del.icio.us/kinrowan/iis6">iis6</a> <a href="http://del.icio.us/kinrowan/problem">problem</a> <a href="http://del.icio.us/kinrowan/fix">fix</a>)</div>
</li>
<li>
<div><a href="http://support.microsoft.com/?kbid=332117">Enable Parent Paths Is Disabled by Default in IIS 6.0</a></div>
<div>this can cause a problem is ASP apps that use upwards relative paths (&#8220;../&#8230;&#8221;)</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/microsoft">microsoft</a> <a href="http://del.icio.us/kinrowan/iis6">iis6</a> <a href="http://del.icio.us/kinrowan/asp">asp</a> <a href="http://del.icio.us/kinrowan/path">path</a> <a href="http://del.icio.us/kinrowan/problem">problem</a> <a href="http://del.icio.us/kinrowan/fix">fix</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2008/01/30/links-for-2008-01-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2008-01-20</title>
		<link>http://kinrowan.net/blog/2008/01/20/links-for-2008-01-20/</link>
		<comments>http://kinrowan.net/blog/2008/01/20/links-for-2008-01-20/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 07:18:12 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2008/01/20/links-for-2008-01-20</guid>
		<description><![CDATA[

Disable right click on images? &#124; Gallery
I&#8217;ve managed to disable right click for G2
(tags: wordpress gallery2 howto reference javascript right-click tcw)


]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://gallery.menalto.com/node/55649">Disable right click on images? | Gallery</a></div>
<div>I&#8217;ve managed to disable right click for G2</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/wordpress">wordpress</a> <a href="http://del.icio.us/kinrowan/gallery2">gallery2</a> <a href="http://del.icio.us/kinrowan/howto">howto</a> <a href="http://del.icio.us/kinrowan/reference">reference</a> <a href="http://del.icio.us/kinrowan/javascript">javascript</a> <a href="http://del.icio.us/kinrowan/right-click">right-click</a> <a href="http://del.icio.us/kinrowan/tcw">tcw</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2008/01/20/links-for-2008-01-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2008-01-05</title>
		<link>http://kinrowan.net/blog/2008/01/05/links-for-2008-01-05/</link>
		<comments>http://kinrowan.net/blog/2008/01/05/links-for-2008-01-05/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 07:17:52 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2008/01/05/links-for-2008-01-05</guid>
		<description><![CDATA[

gethuman 500 database from Paul English
it&#8217;s funny, but a lot of times i&#8217;d *rather* deal with an automated system.  When you *need* a human, though&#8230;.
(tags: human phone tree directories tools)


The Challenges, Evolution, and Success Factors of the Enterprise Intranet
some good info about corporate intranets.  i&#8217;d like to see ETC move a little more [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.gethuman.com/">gethuman 500 database from Paul English</a></div>
<div>it&#8217;s funny, but a lot of times i&#8217;d *rather* deal with an automated system.  When you *need* a human, though&#8230;.</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/human">human</a> <a href="http://del.icio.us/kinrowan/phone">phone</a> <a href="http://del.icio.us/kinrowan/tree">tree</a> <a href="http://del.icio.us/kinrowan/directories">directories</a> <a href="http://del.icio.us/kinrowan/tools">tools</a>)</div>
</li>
<li>
<div><a href="http://www.web-strategist.com/blog/2008/01/04/the-challenges-evolution-and-success-factors-of-the-enterprise-intranet/">The Challenges, Evolution, and Success Factors of the Enterprise Intranet</a></div>
<div>some good info about corporate intranets.  i&#8217;d like to see ETC move a little more in this direction</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/enterprise">enterprise</a> <a href="http://del.icio.us/kinrowan/intranet">intranet</a> <a href="http://del.icio.us/kinrowan/web">web</a> <a href="http://del.icio.us/kinrowan/etc">etc</a> <a href="http://del.icio.us/kinrowan/work">work</a>)</div>
</li>
<li>
<div><a href="http://www.smashingmagazine.com/2007/01/19/53-css-techniques-you-couldnt-live-without/">53 CSS-Techniques You Couldn’t Live Without | CSS | Smashing Magazine</a></div>
<div>/me needs some css resources</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/CSS">CSS</a> <a href="http://del.icio.us/kinrowan/design">design</a> <a href="http://del.icio.us/kinrowan/how-to">how-to</a> <a href="http://del.icio.us/kinrowan/programming">programming</a> <a href="http://del.icio.us/kinrowan/reference">reference</a> <a href="http://del.icio.us/kinrowan/tips">tips</a> <a href="http://del.icio.us/kinrowan/web">web</a> <a href="http://del.icio.us/kinrowan/web2.0">web2.0</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2008/01/05/links-for-2008-01-05/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2008-01-04</title>
		<link>http://kinrowan.net/blog/2008/01/04/links-for-2008-01-04/</link>
		<comments>http://kinrowan.net/blog/2008/01/04/links-for-2008-01-04/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 07:17:29 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2008/01/04/links-for-2008-01-04</guid>
		<description><![CDATA[

How do you add RSS feeds to Home page? &#8211; Community Server
pointers to some options for aggregating an rss feed on the CS home page
(tags: work communityserver etc rss content)


]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://communityserver.org/forums/t/476176.aspx">How do you add RSS feeds to Home page? &#8211; Community Server</a></div>
<div>pointers to some options for aggregating an rss feed on the CS home page</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/work">work</a> <a href="http://del.icio.us/kinrowan/communityserver">communityserver</a> <a href="http://del.icio.us/kinrowan/etc">etc</a> <a href="http://del.icio.us/kinrowan/rss">rss</a> <a href="http://del.icio.us/kinrowan/content">content</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2008/01/04/links-for-2008-01-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2008-01-03</title>
		<link>http://kinrowan.net/blog/2008/01/03/links-for-2008-01-03/</link>
		<comments>http://kinrowan.net/blog/2008/01/03/links-for-2008-01-03/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 07:17:38 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2008/01/03/links-for-2008-01-03</guid>
		<description><![CDATA[

&#8220;The Game of Questions&#8221; from _Rosencrantz and Guidenstern are Dead_
(tags: funny games shakespeare play tom+stoppard)


xkcd » Blog Archive » Ghost
(tags: games fun xkcd words)


]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.ralentz.com/old/misc/humor/game-of-questions.html">&#8220;The Game of Questions&#8221; from _Rosencrantz and Guidenstern are Dead_</a></div>
<div>(tags: <a href="http://del.icio.us/kinrowan/funny">funny</a> <a href="http://del.icio.us/kinrowan/games">games</a> <a href="http://del.icio.us/kinrowan/shakespeare">shakespeare</a> <a href="http://del.icio.us/kinrowan/play">play</a> <a href="http://del.icio.us/kinrowan/tom+stoppard">tom+stoppard</a>)</div>
</li>
<li>
<div><a href="http://blag.xkcd.com/2007/12/31/ghost/">xkcd » Blog Archive » Ghost</a></div>
<div>(tags: <a href="http://del.icio.us/kinrowan/games">games</a> <a href="http://del.icio.us/kinrowan/fun">fun</a> <a href="http://del.icio.us/kinrowan/xkcd">xkcd</a> <a href="http://del.icio.us/kinrowan/words">words</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2008/01/03/links-for-2008-01-03/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-12-28</title>
		<link>http://kinrowan.net/blog/2007/12/28/links-for-2007-12-28/</link>
		<comments>http://kinrowan.net/blog/2007/12/28/links-for-2007-12-28/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 07:17:15 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/12/28/links-for-2007-12-28</guid>
		<description><![CDATA[

Blogarithms » Skype for Interviews &#8211; A How-To Video
useful info about recording skype calls
(tags: howto podcasting tools recording skype audio)


Windows Live Dev &#124; FeedSync
Windows site for the feedsync spec
(tags: development feed RSS syndication webservices Microsoft FeedSync)


WordPress › Support » GPL Theme &#8211; Anvil
interesting sounding wp theme
(tags: wordpress themes php development download)


]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.blogarithms.com/index.php/archives/2007/12/23/skype-for-interviews/">Blogarithms » Skype for Interviews &#8211; A How-To Video</a></div>
<div>useful info about recording skype calls</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/howto">howto</a> <a href="http://del.icio.us/kinrowan/podcasting">podcasting</a> <a href="http://del.icio.us/kinrowan/tools">tools</a> <a href="http://del.icio.us/kinrowan/recording">recording</a> <a href="http://del.icio.us/kinrowan/skype">skype</a> <a href="http://del.icio.us/kinrowan/audio">audio</a>)</div>
</li>
<li>
<div><a href="http://dev.live.com/feedsync/">Windows Live Dev | FeedSync</a></div>
<div>Windows site for the feedsync spec</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/development">development</a> <a href="http://del.icio.us/kinrowan/feed">feed</a> <a href="http://del.icio.us/kinrowan/RSS">RSS</a> <a href="http://del.icio.us/kinrowan/syndication">syndication</a> <a href="http://del.icio.us/kinrowan/webservices">webservices</a> <a href="http://del.icio.us/kinrowan/Microsoft">Microsoft</a> <a href="http://del.icio.us/kinrowan/FeedSync">FeedSync</a>)</div>
</li>
<li>
<div><a href="http://wordpress.org/support/topic/144778?replies=1">WordPress › Support » GPL Theme &#8211; Anvil</a></div>
<div>interesting sounding wp theme</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/wordpress">wordpress</a> <a href="http://del.icio.us/kinrowan/themes">themes</a> <a href="http://del.icio.us/kinrowan/php">php</a> <a href="http://del.icio.us/kinrowan/development">development</a> <a href="http://del.icio.us/kinrowan/download">download</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/12/28/links-for-2007-12-28/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-12-19</title>
		<link>http://kinrowan.net/blog/2007/12/19/links-for-2007-12-19/</link>
		<comments>http://kinrowan.net/blog/2007/12/19/links-for-2007-12-19/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 07:18:29 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/12/19/links-for-2007-12-19</guid>
		<description><![CDATA[

Feature: Lifehacker&#8217;s 2007 Guide to Free Software and Webapps
some cool stuff here
(tags: free hacks reference shareware software tips toread utilities)


A List Apart: Articles: Designing For Flow
n web design, when we think about flow we usually think about “task flows” or “flow charts” but there’s another type of flow that we should keep in mind. It’s [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://lifehacker.com/software/feature/lifehackers-2007-guide-to-free-software-and-webapps-334568.php">Feature: Lifehacker&#8217;s 2007 Guide to Free Software and Webapps</a></div>
<div>some cool stuff here</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/free">free</a> <a href="http://del.icio.us/kinrowan/hacks">hacks</a> <a href="http://del.icio.us/kinrowan/reference">reference</a> <a href="http://del.icio.us/kinrowan/shareware">shareware</a> <a href="http://del.icio.us/kinrowan/software">software</a> <a href="http://del.icio.us/kinrowan/tips">tips</a> <a href="http://del.icio.us/kinrowan/toread">toread</a> <a href="http://del.icio.us/kinrowan/utilities">utilities</a>)</div>
</li>
<li>
<div><a href="http://www.alistapart.com/articles/designingforflow">A List Apart: Articles: Designing For Flow</a></div>
<div>n web design, when we think about flow we usually think about “task flows” or “flow charts” but there’s another type of flow that we should keep in mind. It’s that feeling of complete absorption when you’re engaged in something you love to d</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/flow">flow</a> <a href="http://del.icio.us/kinrowan/article">article</a> <a href="http://del.icio.us/kinrowan/design">design</a> <a href="http://del.icio.us/kinrowan/interface">interface</a> <a href="http://del.icio.us/kinrowan/reference">reference</a> <a href="http://del.icio.us/kinrowan/web">web</a> <a href="http://del.icio.us/kinrowan/usability">usability</a> <a href="http://del.icio.us/kinrowan/ui">ui</a> <a href="http://del.icio.us/kinrowan/inspiration">inspiration</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/12/19/links-for-2007-12-19/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-12-17</title>
		<link>http://kinrowan.net/blog/2007/12/17/links-for-2007-12-17/</link>
		<comments>http://kinrowan.net/blog/2007/12/17/links-for-2007-12-17/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 07:18:28 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/12/17/links-for-2007-12-17</guid>
		<description><![CDATA[

XML Tools : DTD, XML schema and XML document conversion software tool : XML Utilities
n an effort to help our Allora customers to deal with conversions between XMLSchemas and DTDS, as well generating XML Schemas and DTDs from XML documents, we developed some XML Utilities that you can use free of charge from this web [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.hitsw.com/xml_utilites/">XML Tools : DTD, XML schema and XML document conversion software tool : XML Utilities</a></div>
<div>n an effort to help our Allora customers to deal with conversions between XMLSchemas and DTDS, as well generating XML Schemas and DTDs from XML documents, we developed some XML Utilities that you can use free of charge from this web page.</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/XML">XML</a> <a href="http://del.icio.us/kinrowan/dtd">dtd</a> <a href="http://del.icio.us/kinrowan/schema">schema</a> <a href="http://del.icio.us/kinrowan/tools">tools</a> <a href="http://del.icio.us/kinrowan/utilities">utilities</a> <a href="http://del.icio.us/kinrowan/online">online</a> <a href="http://del.icio.us/kinrowan/generator">generator</a> <a href="http://del.icio.us/kinrowan/programming">programming</a> <a href="http://del.icio.us/kinrowan/reference">reference</a> <a href="http://del.icio.us/kinrowan/development">development</a> <a href="http://del.icio.us/kinrowan/free">free</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/12/17/links-for-2007-12-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-12-04</title>
		<link>http://kinrowan.net/blog/2007/12/04/links-for-2007-12-04/</link>
		<comments>http://kinrowan.net/blog/2007/12/04/links-for-2007-12-04/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 07:20:19 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/12/04/links-for-2007-12-04</guid>
		<description><![CDATA[

Using the Adsutil.vbs Administration Script (IIS 6.0)
(tags: vbscript reference adsutil webserver iis6)


]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/d3df4bc9-0954-459a-b5e6-7a8bc462960c.mspx?mfr=true">Using the Adsutil.vbs Administration Script (IIS 6.0)</a></div>
<div>(tags: <a href="http://del.icio.us/kinrowan/vbscript">vbscript</a> <a href="http://del.icio.us/kinrowan/reference">reference</a> <a href="http://del.icio.us/kinrowan/adsutil">adsutil</a> <a href="http://del.icio.us/kinrowan/webserver">webserver</a> <a href="http://del.icio.us/kinrowan/iis6">iis6</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/12/04/links-for-2007-12-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-11-30</title>
		<link>http://kinrowan.net/blog/2007/11/30/links-for-2007-11-30/</link>
		<comments>http://kinrowan.net/blog/2007/11/30/links-for-2007-11-30/#comments</comments>
		<pubDate>Fri, 30 Nov 2007 07:17:36 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/11/30/links-for-2007-11-30</guid>
		<description><![CDATA[

Using AutoRun with a USB Flash Drive (SamLogic CD-Menu Creator &#8211; Article)
while this is an add for a paid piece of software, it has some pretty good information in it.
(tags: usb autorun portability)


matthias .NET Blog : Mindmanager IFilter
If you are using Mindmanager X5 or the current version 6 then you are lucky and just have [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.samlogic.net/articles/autorun-usb-flash-drive.htm">Using AutoRun with a USB Flash Drive (SamLogic CD-Menu Creator &#8211; Article)</a></div>
<div>while this is an add for a paid piece of software, it has some pretty good information in it.</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/usb">usb</a> <a href="http://del.icio.us/kinrowan/autorun">autorun</a> <a href="http://del.icio.us/kinrowan/portability">portability</a>)</div>
</li>
<li>
<div><a href="http://aspadvice.com/blogs/matthias/archive/2005/10/19/13289.aspx">matthias .NET Blog : Mindmanager IFilter</a></div>
<div>If you are using Mindmanager X5 or the current version 6 then you are lucky and just have to look at ifiltershop.com.</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/SharePoint">SharePoint</a> <a href="http://del.icio.us/kinrowan/mindmanager">mindmanager</a> <a href="http://del.icio.us/kinrowan/integration">integration</a>)</div>
</li>
<li>
<div><a href="http://www.teamdirection.com/mmaddin/index.html">TeamDirection &#8212; Solutions for Groove and SharePoint Project Management</a></div>
<div>(tags: <a href="http://del.icio.us/kinrowan/mindmanager">mindmanager</a> <a href="http://del.icio.us/kinrowan/SharePoint">SharePoint</a> <a href="http://del.icio.us/kinrowan/integration">integration</a>)</div>
</li>
<li>
<div><a href="http://www.wssdemo.com/Pages/mindmanager.aspx">SharePoint &#8211; mindmanager</a></div>
<div>(tags: <a href="http://del.icio.us/kinrowan/SharePoint">SharePoint</a> <a href="http://del.icio.us/kinrowan/mindmanager">mindmanager</a> <a href="http://del.icio.us/kinrowan/integration">integration</a>)</div>
</li>
<li>
<div><a href="http://www.mindjet.com/pdf/us/MindManager_SharePoint_20070926.pdf">http://www.mindjet.com/pdf/us/MindManager_SharePoint_20070926.pdf</a></div>
<div>(tags: <a href="http://del.icio.us/kinrowan/mindmanager">mindmanager</a> <a href="http://del.icio.us/kinrowan/SharePoint">SharePoint</a> <a href="http://del.icio.us/kinrowan/integration">integration</a>)</div>
</li>
<li>
<div><a href="http://wss.collutions.com/Lists/FAQ/DispForm.aspx?ID=377">Windows SharePoint Services FAQ &#8211; How do I index MindManager files?</a></div>
<div>(tags: <a href="http://del.icio.us/kinrowan/SharePoint">SharePoint</a> <a href="http://del.icio.us/kinrowan/mindmanager">mindmanager</a> <a href="http://del.icio.us/kinrowan/integration">integration</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/11/30/links-for-2007-11-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-11-28</title>
		<link>http://kinrowan.net/blog/2007/11/28/links-for-2007-11-28/</link>
		<comments>http://kinrowan.net/blog/2007/11/28/links-for-2007-11-28/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 07:17:29 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/11/28/links-for-2007-11-28</guid>
		<description><![CDATA[

How Your Creepy Ex-Co-Workers Will Kill Facebook &#8212; Facebook &#8212; InformationWeek
&#8220;Adding more users to a social network increases the probability that it will put you in an awkward social circumstance.&#8221;
(tags: community socialweb corydoctorow attention web privacy facebook socialnetworks)


habari &#8211; Google Code
Habari represents a fresh start to the idea of blogging.
(tags: blogging code development OpenSource php [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://informationweek.com/news/showArticle.jhtml?articleID=204203573">How Your Creepy Ex-Co-Workers Will Kill Facebook &#8212; Facebook &#8212; InformationWeek</a></div>
<div>&#8220;Adding more users to a social network increases the probability that it will put you in an awkward social circumstance.&#8221;</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/community">community</a> <a href="http://del.icio.us/kinrowan/socialweb">socialweb</a> <a href="http://del.icio.us/kinrowan/corydoctorow">corydoctorow</a> <a href="http://del.icio.us/kinrowan/attention">attention</a> <a href="http://del.icio.us/kinrowan/web">web</a> <a href="http://del.icio.us/kinrowan/privacy">privacy</a> <a href="http://del.icio.us/kinrowan/facebook">facebook</a> <a href="http://del.icio.us/kinrowan/socialnetworks">socialnetworks</a>)</div>
</li>
<li>
<div><a href="http://code.google.com/p/habari/">habari &#8211; Google Code</a></div>
<div>Habari represents a fresh start to the idea of blogging.</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/blogging">blogging</a> <a href="http://del.icio.us/kinrowan/code">code</a> <a href="http://del.icio.us/kinrowan/development">development</a> <a href="http://del.icio.us/kinrowan/OpenSource">OpenSource</a> <a href="http://del.icio.us/kinrowan/php">php</a> <a href="http://del.icio.us/kinrowan/wordpress">wordpress</a> <a href="http://del.icio.us/kinrowan/habari">habari</a> <a href="http://del.icio.us/kinrowan/cms">cms</a>)</div>
</li>
<li>
<div><a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/2384a63d-3965-4020-8522-36f8edc8a36e.mspx?mfr=true">Managing Multiple ASP.NET Versions (IIS 6.0)</a></div>
<div>hopefully this will help with the install whilst the old site is running under .Net 1.1 and classic asp</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/iis6">iis6</a> <a href="http://del.icio.us/kinrowan/microsoft">microsoft</a> <a href="http://del.icio.us/kinrowan/.Net">.Net</a> <a href="http://del.icio.us/kinrowan/server">server</a> <a href="http://del.icio.us/kinrowan/config">config</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/11/28/links-for-2007-11-28/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-11-21</title>
		<link>http://kinrowan.net/blog/2007/11/21/links-for-2007-11-21/</link>
		<comments>http://kinrowan.net/blog/2007/11/21/links-for-2007-11-21/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 07:18:33 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/11/21/links-for-2007-11-21</guid>
		<description><![CDATA[

PapaScott — Corrupted UTF-8 characters with PHP and MySQL
They had recent stable versions of everything, MySQL 5.0 and PHP 5.1, using UTF-8 for everything, and they were getting corrupted accented characters saved in the database, junk with ‘Ã’s was coming out.
(tags: encoding mysql php utf8)


dBug
# PHP version of ColdFusion’s cfdump. # Outputs colored and structured [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.papascott.de/archives/2007/05/05/corrupted-utf-8-characters-with-php-and-mysql/">PapaScott — Corrupted UTF-8 characters with PHP and MySQL</a></div>
<div>They had recent stable versions of everything, MySQL 5.0 and PHP 5.1, using UTF-8 for everything, and they were getting corrupted accented characters saved in the database, junk with ‘Ã’s was coming out.</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/encoding">encoding</a> <a href="http://del.icio.us/kinrowan/mysql">mysql</a> <a href="http://del.icio.us/kinrowan/php">php</a> <a href="http://del.icio.us/kinrowan/utf8">utf8</a>)</div>
</li>
<li>
<div><a href="http://dbug.ospinto.com/">dBug</a></div>
<div># PHP version of ColdFusion’s cfdump. # Outputs colored and structured tabular variable information.</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/debugging">debugging</a> <a href="http://del.icio.us/kinrowan/development">development</a> <a href="http://del.icio.us/kinrowan/javascript">javascript</a> <a href="http://del.icio.us/kinrowan/library">library</a> <a href="http://del.icio.us/kinrowan/php">php</a> <a href="http://del.icio.us/kinrowan/tools">tools</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/11/21/links-for-2007-11-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-11-20</title>
		<link>http://kinrowan.net/blog/2007/11/20/links-for-2007-11-20/</link>
		<comments>http://kinrowan.net/blog/2007/11/20/links-for-2007-11-20/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 07:17:37 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/11/20/links-for-2007-11-20</guid>
		<description><![CDATA[

Upside-Down-Ternet
My neighbours are stealing my wireless internet access. I could encrypt it or alternately I could have fun.
(tags: config funny geek hacks howto perl wireless xkcd technology server router)


]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.ex-parrot.com/~pete/upside-down-ternet.html">Upside-Down-Ternet</a></div>
<div>My neighbours are stealing my wireless internet access. I could encrypt it or alternately I could have fun.</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/config">config</a> <a href="http://del.icio.us/kinrowan/funny">funny</a> <a href="http://del.icio.us/kinrowan/geek">geek</a> <a href="http://del.icio.us/kinrowan/hacks">hacks</a> <a href="http://del.icio.us/kinrowan/howto">howto</a> <a href="http://del.icio.us/kinrowan/perl">perl</a> <a href="http://del.icio.us/kinrowan/wireless">wireless</a> <a href="http://del.icio.us/kinrowan/xkcd">xkcd</a> <a href="http://del.icio.us/kinrowan/technology">technology</a> <a href="http://del.icio.us/kinrowan/server">server</a> <a href="http://del.icio.us/kinrowan/router">router</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/11/20/links-for-2007-11-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Non-ambient findability</title>
		<link>http://kinrowan.net/blog/2007/10/18/non-ambient-findability/</link>
		<comments>http://kinrowan.net/blog/2007/10/18/non-ambient-findability/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 17:55:32 +0000</pubDate>
		<dc:creator>cori</dc:creator>
				<category><![CDATA[Amusing]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/10/18/non-ambient-findability</guid>
		<description><![CDATA[This:
 
Reminded my of Bruce Sterling&#8217;s 2006 ETech talk, which you can read here&#160;(I tried to find it on one of Bruce&#8217;s properties but couldn&#8217;t), and hear here.
&#8220;I no longer hunt anxiously for my missing shoes in the morning. I just Google them.&#8221;

]]></description>
			<content:encoded><![CDATA[<p>This:</p>
<p><a title="The Flying McCoys 2007-10-17" href="http://www.gocomics.com/theflyingmccoys/2007/10/17/" atomicselection="true"><img height="377" alt="GoogleMySlippers" src="http://kinrowan.net/blog/wp/wp-content/uploads/2007/10/googlemyslippers.gif" width="300"></a> </p>
<p>Reminded my of Bruce Sterling&#8217;s 2006 ETech talk, which you can read <a title="Viridian Note 00459: Emerging Technology 2006" href="http://www.viridiandesign.org/2006/03/viridian-note-00459-emerging.html">here</a>&nbsp;(I tried to find it on one of Bruce&#8217;s properties but couldn&#8217;t), and <em>hear </em><a title="The Internet of Things at IT Conversations" href="http://itc.conversationsnetwork.org/shows/detail717.html">here</a>.</p>
<blockquote><p>&#8220;I no longer hunt anxiously for my missing shoes in the morning. I just Google them.&#8221;</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/10/18/non-ambient-findability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Peter Kim, I just don&#8217;t get it, either</title>
		<link>http://kinrowan.net/blog/2007/10/18/peter-kim-i-just-dont-get-it-either/</link>
		<comments>http://kinrowan.net/blog/2007/10/18/peter-kim-i-just-dont-get-it-either/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 11:46:30 +0000</pubDate>
		<dc:creator>cori</dc:creator>
				<category><![CDATA[Amusing]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/10/18/peter-kim-i-just-dont-get-it-either</guid>
		<description><![CDATA[&#160;Peter Kim of Forrester reports on Twitter usage amongst US adults
Our data shows that 6% of US online adults use Twitter regularly. (from Being Peter Kim: &#8220;I just don&#8217;t get it.&#8221; [i.e. Twitter])

That is patently insane.&#160; I suppose it depends on how you define &#8220;online adults,&#8221; but even with a very restrictive definition (like, say [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;<a title="Senior Analyst at Forrester" href="http://www.forrester.com/rb/analyst/peter_kim">Peter Kim</a> of Forrester reports on Twitter usage amongst US adults</p>
<blockquote><p>Our data shows that 6% of US online adults use Twitter regularly. (from <a href="http://www.beingpeterkim.com/2007/10/i-just-dont-get.html">Being Peter Kim: &#8220;I just don&#8217;t get it.&#8221; [i.e. Twitter]</a>)</p>
</blockquote>
<p>That is patently insane.&nbsp; I <em>suppose</em> it depends on how you define &#8220;online adults,&#8221; but even with a very restrictive definition (like, say &#8220;adults between 20 and 30 who own a web-capable cell phone,&nbsp;pay for unlimited SMS messages, and have a broadband connection at home&#8221;)&nbsp;there is utterly no way you can convince me that 6% of online US adults use Twitter regularly.</p>
<p>To top it off, Kim refers us to statistics in a client-access only&nbsp;report to support his claims.&nbsp; So essentially most of us are supposed to take that statement at face value.&nbsp; I mean, what kind of stunt is that?&nbsp; It makes Kim&#8217;s assertions basically completely unsubstantiated.&nbsp; At least link to a pared-down version of the data and analysis so we can do a basic sanity check.</p>
<p>Useless.</p>
<p><b>Update:</b></p>
<p>Peter Kim, and <a href="http://blogs.forrester.com/marketing/2007/10/a-beginners-tak.html">Cynthia Pflaum</a> pull back the curtains on the data Peter based his commentary on, and things make a lot more sense now.</p>
<p>As I see it, Peter got carried away and misinterptreted the data.  It seem clear from what <a href="http://www.beingpeterkim.com/2007/10/i-just-dont-get.html#comment-86840006">Cynthia says</a> that 6% of a highly self-selecting population that&#8217;s interested in the technology sphere have &#8220;used&#8221; Twitter (which, given the openness of the question asked, per Peter, could be interpreted as &#8220;having viewed a blog with a Twitter widget on it&#8221;) in the last month.  That&#8217;s a completely believable statistic.  And one that can validly be used to support Peter&#8217;s real thesis: &#8220;If you want to reach an affluent, well educated, and early adopter audience, there might not be a better communication channel out there.&#8221;  But as pointed out in the <a href="http://www.beingpeterkim.com/2007/10/i-just-dont-get.html#comment-86873888">comments</a>, Twitter is intended to be used frequently and as such in my view, &#8220;monthly&#8221; doesn&#8217;t mean &#8220;regularly.&#8221;  Perhaps I was a bit strong in my language in my initial post, but I stand by my view that it was an outlandish claim made with no supporting data.</p>
<p>Interestingly, the <a href="http://blogs.forrester.com/marketing/2007/10/i-just-dont-get.html">corresponding post</a> on Forrester&#8217;s <a href="http://blogs.forrester.com/marketing/">Marketing Blog</a> has not been updated.</p>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/10/18/peter-kim-i-just-dont-get-it-either/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>links for 2007-10-18</title>
		<link>http://kinrowan.net/blog/2007/10/18/links-for-2007-10-18/</link>
		<comments>http://kinrowan.net/blog/2007/10/18/links-for-2007-10-18/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 07:19:11 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/10/18/links-for-2007-10-18</guid>
		<description><![CDATA[

a shel of my former self: Comments
I utterly reject the argument posited by some very smart people (like Chris Brogan) that the explosion of online video is to blame. With respect to those who have made this case, I have to shake my head in disbelief. If the popularity of video could stifl
(tags: podcasting video [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://blog.holtz.com/index.php/weblog/comments/why_hasnt_audio_podcasting_gone_mainstream/">a shel of my former self: Comments</a></div>
<div>I utterly reject the argument posited by some very smart people (like Chris Brogan) that the explosion of online video is to blame. With respect to those who have made this case, I have to shake my head in disbelief. If the popularity of video could stifl</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/podcasting">podcasting</a> <a href="http://del.icio.us/kinrowan/video">video</a> <a href="http://del.icio.us/kinrowan/stevegillmor">stevegillmor</a>)</div>
</li>
<li>
<div><a href="http://www.customervision.com/">CustomerVision &#8211; Enterprise Wiki Solutions</a></div>
<div>The perfect platform for building easy-to-maintain wikis and social media sites<br />
Is that Denzel Washington??</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/social">social</a> <a href="http://del.icio.us/kinrowan/software">software</a> <a href="http://del.icio.us/kinrowan/media">media</a> <a href="http://del.icio.us/kinrowan/wiki">wiki</a> <a href="http://del.icio.us/kinrowan/internet">internet</a> <a href="http://del.icio.us/kinrowan/enterprise">enterprise</a>)</div>
</li>
<li>
<div><a href="http://twiki.org/">TWiki &#8211; the open source wiki for the enterprise</a></div>
<div>Welcome to TWiki, a flexible, powerful, and easy to use enterprise wiki, enterprise collaboration platform and knowledge management system.</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/social">social</a> <a href="http://del.icio.us/kinrowan/software">software</a> <a href="http://del.icio.us/kinrowan/media">media</a> <a href="http://del.icio.us/kinrowan/wiki">wiki</a> <a href="http://del.icio.us/kinrowan/internet">internet</a> <a href="http://del.icio.us/kinrowan/enterprise">enterprise</a> <a href="http://del.icio.us/kinrowan/cms">cms</a> <a href="http://del.icio.us/kinrowan/OpenSource">OpenSource</a> <a href="http://del.icio.us/kinrowan/important!">important!</a>)</div>
</li>
<li>
<div><a href="http://www.brainkeeper.com/">BrainKeeper™ Enterprise Wiki Software &#8211; Manage Your Corporate Knowledge</a></div>
<div>Enterprise wiki software from BrainKeeper offers the best method to capture and retrieve this knowledge by giving you the tools you need to manage the ever-changing landscape of your corporate information.</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/social">social</a> <a href="http://del.icio.us/kinrowan/software">software</a> <a href="http://del.icio.us/kinrowan/media">media</a> <a href="http://del.icio.us/kinrowan/wiki">wiki</a> <a href="http://del.icio.us/kinrowan/internet">internet</a> <a href="http://del.icio.us/kinrowan/enterprise">enterprise</a> <a href="http://del.icio.us/kinrowan/cms">cms</a>)</div>
</li>
<li>
<div><a href="http://www.atlassian.com/software/confluence/">Confluence &#8211; Enterprise Wiki Software</a></div>
<div>Confluence is an enterprise wiki that makes it easy for your team to collaborate and share knowledge.</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/social">social</a> <a href="http://del.icio.us/kinrowan/software">software</a> <a href="http://del.icio.us/kinrowan/media">media</a> <a href="http://del.icio.us/kinrowan/wiki">wiki</a> <a href="http://del.icio.us/kinrowan/internet">internet</a> <a href="http://del.icio.us/kinrowan/enterprise">enterprise</a> <a href="http://del.icio.us/kinrowan/cms">cms</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/10/18/links-for-2007-10-18/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&quot;Big&quot; news today in the Microsoft SharePoint space &#8211; updated</title>
		<link>http://kinrowan.net/blog/2007/10/17/big-news-today-in-the-microsoft-sharepoint-space/</link>
		<comments>http://kinrowan.net/blog/2007/10/17/big-news-today-in-the-microsoft-sharepoint-space/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 18:14:38 +0000</pubDate>
		<dc:creator>cori</dc:creator>
				<category><![CDATA[enterprise]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/10/17/big-news-today-in-the-microsoft-sharepoint-space</guid>
		<description><![CDATA[Today Microsoft is announcing two strategic partnerships, with enterprise software company Atlassian and RSS solutions vendor NewsGator. (from Read/Write Web) 

I suppose this is pretty big news for Atlassian wiki customers, especially those that are using Microsoft SharePoint &#8211; single sign-on and cross-platform search can be pretty important in the enterprise world.&#160; Plus the ability [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Today Microsoft is announcing two strategic partnerships, with enterprise software company <a title="Enterprise Wiki Vendor" href="http://www.atlassian.com/">Atlassian</a><img src="http://i.ixnp.com/images/v2.26.1/t.gif"> and RSS solutions vendor <a title="RSS agregation and social media tools" href="http://www.newsgator.com/">NewsGator</a>. (from <a title="Microsoft Partners with Atlassian &amp; NewsGator - SharePoint Goes Web 2.0" href="http://www.readwriteweb.com/archives/microsoft_partners_with_atlassian.php">Read/Write Web</a>) </p>
</blockquote>
<p>I suppose this <em>is</em> pretty big news for Atlassian wiki customers, especially those that are using Microsoft SharePoint &#8211; single sign-on and cross-platform search can be pretty important in the enterprise world.&nbsp; Plus the ability to embed Confluence (Atlassian&#8217;s wiki product) content into SharePoint pages and allowing Confluence users to edit SharePoint content directly are pretty big wins.&nbsp; It could also be pretty innovative for <strong>large </strong>existing&nbsp;SharePoint customers who are interested in using wikis for collaboration.&nbsp;&nbsp; I think it&#8217;s pretty well accepted that the built-in SharePoint wiki is horrible &#8211; I feel safe in saying it&#8217;s the least wiki-like wiki product I&#8217;ve ever had the displeasure of using.</p>
<p>From my standpoint, though,&nbsp;I&#8217;m not sure&nbsp;I see enough value in the additions to warrant moving to Confluence as a wiki, at least not for a small- to medium-sized business.&nbsp; With pricing starting at $4000 for 500 users (about the size of <a title="Electronic Theatre Controls" href="http://etcconnect.com">ETC</a>) it <em>seems</em> steep -&nbsp;even if you work in a solid Microsoft shop (as I do) and have to consider the additional support costs of running multiple platforms within a company (as we did when we started looking at other wikis), the ongoing ROI of a Confluence purchase seems out of balance for the wins.&nbsp; Perhaps at a larger company, where there would be significantly more maintenance overhead, it might be worth it.</p>
<p>I don&#8217;t really get the NewsGator stuff, I&#8217;ll have to admit: SharePoint already supports RSS in lists (which is how almost all SharePoint content is organized), and at first glance the NewsGator stuff looks like it&#8217;s mostly social network-style gizmos and connections between users.&nbsp; A lot of what they offer could be done (albeit not as slickly) without <em>too </em>much difficulty with built-in SharePoint objects.&nbsp; The addition of tags is nice, but the <a title="Dan Farber @ ZDNet on the deal" href="http://blogs.zdnet.com/BTL/?p=6627">$20,000</a> large enterprise price tag seems way out of whack with the value delivered.</p>
<p>via Scoble&#8217;s <a href="http://twitter.com/Scobleizer/statuses/342901442">tweet</a></p>
<p><strong>Update:</strong></p>
<p>
An email from <a href="http://blogbitesman.net/">Jon Silvers</a> reminded me that I should point out that ETC doesn&#8217;t use SharePoint Server, but instead uses Windows SharePoint Services, the free-with-Windows-Server-2003 subset of the SharePoint Server features.  Given that, we&#8217;re probably not the target market for Confluence or the Confluence connector.</p>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/10/17/big-news-today-in-the-microsoft-sharepoint-space/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>links for 2007-10-16</title>
		<link>http://kinrowan.net/blog/2007/10/16/links-for-2007-10-16/</link>
		<comments>http://kinrowan.net/blog/2007/10/16/links-for-2007-10-16/#comments</comments>
		<pubDate>Tue, 16 Oct 2007 07:22:19 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/10/16/links-for-2007-10-16</guid>
		<description><![CDATA[

Ignoring .svn directories with grep &#124; corey gilmore&#8217;s blog
&#8230;find a bit of text in an unknown file that is buried deep in a tree of directories&#8230;grep is included&#8230;. While it&#8217;s a great tool, it&#8217;s also annoying to get a screen full of results from Subversion&#8217;s .svn directories.
(tags: grep linux cygwin svn hack reference)


Ten CSS tricks [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://coreygilmore.com/blog/2007/09/14/ignoring-svn-directories-with-grep">Ignoring .svn directories with grep | corey gilmore&#8217;s blog</a></div>
<div>&#8230;find a bit of text in an unknown file that is buried deep in a tree of directories&#8230;grep is included&#8230;. While it&#8217;s a great tool, it&#8217;s also annoying to get a screen full of results from Subversion&#8217;s .svn directories.</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/grep">grep</a> <a href="http://del.icio.us/kinrowan/linux">linux</a> <a href="http://del.icio.us/kinrowan/cygwin">cygwin</a> <a href="http://del.icio.us/kinrowan/svn">svn</a> <a href="http://del.icio.us/kinrowan/hack">hack</a> <a href="http://del.icio.us/kinrowan/reference">reference</a>)</div>
</li>
<li>
<div><a href="http://www.evolt.org/article/Ten_CSS_tricks_you_may_not_know/17/60369">Ten CSS tricks you may not know | evolt.org</a></div>
<div>some good stuff in the comments, too</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/css">css</a> <a href="http://del.icio.us/kinrowan/design">design</a> <a href="http://del.icio.us/kinrowan/html">html</a> <a href="http://del.icio.us/kinrowan/tips">tips</a> <a href="http://del.icio.us/kinrowan/reference">reference</a>)</div>
</li>
<li>
<div><a href="http://www.getfirebug.com/lite.html">Firebug Lite</a></div>
<div>The solution is Firebug Lite, a JavaScript file you can insert into your pages to simulate the Firebug console in browsers that are not named &#8220;Firefox&#8221;.</p>
<p>mioght be useful. I don&#8217;t use Firebug right now, but love the javascript console in firefox, or cou</p></div>
<div>(tags: <a href="http://del.icio.us/kinrowan/FireFox">FireFox</a> <a href="http://del.icio.us/kinrowan/development">development</a> <a href="http://del.icio.us/kinrowan/programming">programming</a> <a href="http://del.icio.us/kinrowan/reference">reference</a> <a href="http://del.icio.us/kinrowan/debugging">debugging</a> <a href="http://del.icio.us/kinrowan/javascript">javascript</a> <a href="http://del.icio.us/kinrowan/webdev">webdev</a> <a href="http://del.icio.us/kinrowan/plugin">plugin</a> <a href="http://del.icio.us/kinrowan/howto">howto</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/10/16/links-for-2007-10-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-10-10</title>
		<link>http://kinrowan.net/blog/2007/10/10/links-for-2007-10-10/</link>
		<comments>http://kinrowan.net/blog/2007/10/10/links-for-2007-10-10/#comments</comments>
		<pubDate>Wed, 10 Oct 2007 07:18:47 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/10/10/links-for-2007-10-10</guid>
		<description><![CDATA[

Fiscal Fitness: Eliminate Debt with 10 Successful Diet Principles &#124; zen habits
Recently I’ve been studying the habits of successful dieters — people who’ve lost 30 lbs. or more and kept it off. And in reading a recent Get Rich Slowly article, I realized that the same successful principles these people follow are the same ones
(tags: [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://zenhabits.net/2007/10/fiscal-fitness-eliminate-debt-with-10-successful-diet-principles/">Fiscal Fitness: Eliminate Debt with 10 Successful Diet Principles | zen habits</a></div>
<div>Recently I’ve been studying the habits of successful dieters — people who’ve lost 30 lbs. or more and kept it off. And in reading a recent Get Rich Slowly article, I realized that the same successful principles these people follow are the same ones</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/zen">zen</a> <a href="http://del.icio.us/kinrowan/habits">habits</a> <a href="http://del.icio.us/kinrowan/money">money</a> <a href="http://del.icio.us/kinrowan/finance">finance</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/10/10/links-for-2007-10-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-10-09</title>
		<link>http://kinrowan.net/blog/2007/10/09/links-for-2007-10-09/</link>
		<comments>http://kinrowan.net/blog/2007/10/09/links-for-2007-10-09/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 07:19:25 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/10/09/links-for-2007-10-09</guid>
		<description><![CDATA[

comments
(tags: comments)


]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://radiocomments.userland.com/comments?link=http%3A%2F%2Fpaolo.evectors.it%2F2007%2F10%2F06.html%23a3354&amp;p=3354&amp;u=1063#a200780">comments</a></div>
<div>(tags: <a href="http://del.icio.us/kinrowan/comments">comments</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/10/09/links-for-2007-10-09/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-10-08</title>
		<link>http://kinrowan.net/blog/2007/10/08/links-for-2007-10-08/</link>
		<comments>http://kinrowan.net/blog/2007/10/08/links-for-2007-10-08/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 07:18:37 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/10/08/links-for-2007-10-08</guid>
		<description><![CDATA[

Interaction techniques that deviate from common GUI standards can create usability catastrophes that make applications impossible to use.
important stuff, IMHO
(tags: article design interesting software usability interface important!)


terror of tinyurl
The other problem with the tinyurl preview is that it a) necessitates an additional click and b) is useless for judging a url based on the status [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.useit.com/alertbox/dialog-box.html">Interaction techniques that deviate from common GUI standards can create usability catastrophes that make applications impossible to use.</a></div>
<div>important stuff, IMHO</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/article">article</a> <a href="http://del.icio.us/kinrowan/design">design</a> <a href="http://del.icio.us/kinrowan/interesting">interesting</a> <a href="http://del.icio.us/kinrowan/software">software</a> <a href="http://del.icio.us/kinrowan/usability">usability</a> <a href="http://del.icio.us/kinrowan/interface">interface</a> <a href="http://del.icio.us/kinrowan/important!">important!</a>)</div>
</li>
<li>
<div><a href="http://www.wordyard.com/2007/10/05/terror-of-tinyurl/">terror of tinyurl</a></div>
<div>The other problem with the tinyurl preview is that it a) necessitates an additional click and b) is useless for judging a url based on the status bar preview of the destination.</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/comments">comments</a>)</div>
</li>
<li>
<div><a href="http://www.brandinfection.com/2007/10/02/when-brand-infection-works/">When Brand Infection works  you know it must be Apple Inc</a></div>
<div>(tags: <a href="http://del.icio.us/kinrowan/funny">funny</a> <a href="http://del.icio.us/kinrowan/humor">humor</a> <a href="http://del.icio.us/kinrowan/photo">photo</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/10/08/links-for-2007-10-08/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-10-05</title>
		<link>http://kinrowan.net/blog/2007/10/05/links-for-2007-10-05/</link>
		<comments>http://kinrowan.net/blog/2007/10/05/links-for-2007-10-05/#comments</comments>
		<pubDate>Fri, 05 Oct 2007 07:18:53 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/10/05/links-for-2007-10-05</guid>
		<description><![CDATA[

Jaffe Juice: 23 things every company should be monitoring&#8230;
Here&#8217;s a thread worth following and continuing. It deals with things every company should be monitoring (and resulting implications)
(tags: business blogging internet marketing research branding)


]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.jaffejuice.com/2006/08/23_things_every.html">Jaffe Juice: 23 things every company should be monitoring&#8230;</a></div>
<div>Here&#8217;s a thread worth following and continuing. It deals with things every company should be monitoring (and resulting implications)</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/business">business</a> <a href="http://del.icio.us/kinrowan/blogging">blogging</a> <a href="http://del.icio.us/kinrowan/internet">internet</a> <a href="http://del.icio.us/kinrowan/marketing">marketing</a> <a href="http://del.icio.us/kinrowan/research">research</a> <a href="http://del.icio.us/kinrowan/branding">branding</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/10/05/links-for-2007-10-05/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-10-04</title>
		<link>http://kinrowan.net/blog/2007/10/04/links-for-2007-10-04/</link>
		<comments>http://kinrowan.net/blog/2007/10/04/links-for-2007-10-04/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 07:19:45 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/10/04/links-for-2007-10-04</guid>
		<description><![CDATA[

Javascript Progress / Percentage Bar with CSS by WebAppers
WebAppers have created a simple Javascript based Percentage Bar / Progress Bar which is inspired by Bare Naked App. Bare Naked App taught us how to display Percentage Bar with 2 images only by using CSS. And then I used a little bit of Javascript to make
(tags: [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.webappers.com/progressBar/">Javascript Progress / Percentage Bar with CSS by WebAppers</a></div>
<div>WebAppers have created a simple Javascript based Percentage Bar / Progress Bar which is inspired by Bare Naked App. Bare Naked App taught us how to display Percentage Bar with 2 images only by using CSS. And then I used a little bit of Javascript to make</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/AJAX">AJAX</a> <a href="http://del.icio.us/kinrowan/javascript">javascript</a> <a href="http://del.icio.us/kinrowan/programming">programming</a> <a href="http://del.icio.us/kinrowan/reference">reference</a> <a href="http://del.icio.us/kinrowan/howto">howto</a> <a href="http://del.icio.us/kinrowan/web">web</a> <a href="http://del.icio.us/kinrowan/scripts">scripts</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/10/04/links-for-2007-10-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-10-03</title>
		<link>http://kinrowan.net/blog/2007/10/03/links-for-2007-10-03/</link>
		<comments>http://kinrowan.net/blog/2007/10/03/links-for-2007-10-03/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 07:19:56 +0000</pubDate>
		<dc:creator>del.icio.us</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://kinrowan.net/blog/wp/archives/2007/10/03/links-for-2007-10-03</guid>
		<description><![CDATA[

EXECUTE permission denied on object &#8217;sp_sdidebug&#8217; &#8230; after converting from VS 2003 to VS 2005 &#8211; ASP.NET Forums
EXECUTE permission denied on object &#8217;sp_sdidebug&#8217;
depending on your error handling, this error may make it seem like your sql query isn&#8217;t running.
Not just when updating, but any time you have SQL Server debugging turned on in the project [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://forums.asp.net/t/1068947.aspx">EXECUTE permission denied on object &#8217;sp_sdidebug&#8217; &#8230; after converting from VS 2003 to VS 2005 &#8211; ASP.NET Forums</a></div>
<div>EXECUTE permission denied on object &#8217;sp_sdidebug&#8217;<br />
depending on your error handling, this error may make it seem like your sql query isn&#8217;t running.<br />
Not just when updating, but any time you have SQL Server debugging turned on in the project start options</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/asp.net2">asp.net2</a> <a href="http://del.icio.us/kinrowan/visual_studio_2005">visual_studio_2005</a> <a href="http://del.icio.us/kinrowan/SQLServer">SQLServer</a> <a href="http://del.icio.us/kinrowan/debugging">debugging</a> <a href="http://del.icio.us/kinrowan/reference">reference</a>)</div>
</li>
<li>
<div><a href="http://www.readwriteweb.com/archives/10_chat_widgets.php">10 Chat Widgets to Consider</a></div>
<div>Embedded chat in a website provides the ability to more closely connect with your readers or customers, depending on the instance.<br />
I hopes meebo would allow users to connect with my already-running im client.  it doesn&#8217;t, but some of these other ones mig</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/blogging">blogging</a> <a href="http://del.icio.us/kinrowan/IM">IM</a> <a href="http://del.icio.us/kinrowan/messenger">messenger</a> <a href="http://del.icio.us/kinrowan/technology">technology</a> <a href="http://del.icio.us/kinrowan/tools">tools</a>)</div>
</li>
<li>
<div><a href="http://blog.persistent.info/2007/10/feed-proxy-view-raw-rssatom-feed-data.html">persistent.info: Feed Proxy: View Raw RSS/Atom Feed Data in Firefox 2.0</a></div>
<div>&#8220;Unfortunately view-source does not pretty-print the XML, which makes it much harder to read.&#8221;<br />
I use view-source a lot when debugging feeds &#8211; this is a good option, which gives you the nice-print version of the xml</div>
<div>(tags: <a href="http://del.icio.us/kinrowan/Firefox">Firefox</a> <a href="http://del.icio.us/kinrowan/feed">feed</a> <a href="http://del.icio.us/kinrowan/rss">rss</a> <a href="http://del.icio.us/kinrowan/development">development</a> <a href="http://del.icio.us/kinrowan/tools">tools</a> <a href="http://del.icio.us/kinrowan/reference">reference</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kinrowan.net/blog/2007/10/03/links-for-2007-10-03/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
