<?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>Jim Cassidy &#187; Business</title>
	<atom:link href="http://jimcassidy.ca/category/business/feed/" rel="self" type="application/rss+xml" />
	<link>http://jimcassidy.ca</link>
	<description>Programming for fun and profit since 1989</description>
	<lastBuildDate>Mon, 02 Jan 2012 18:52:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>.NET Productivity Sucks</title>
		<link>http://jimcassidy.ca/2010/12/27/net-productivity-sucks/</link>
		<comments>http://jimcassidy.ca/2010/12/27/net-productivity-sucks/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 02:15:44 +0000</pubDate>
		<dc:creator>Jim Cassidy</dc:creator>
				<category><![CDATA[Change]]></category>
		<category><![CDATA[Cranky Rants]]></category>
		<category><![CDATA[Python/Jython]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://jimcassidy.ca/?p=1067</guid>
		<description><![CDATA[I am being deliberately provocative in my headline, but a co-worker and I were commenting to each other that we felt that we were becoming less productive in .NET. On the whole, we do not think it is our fault. Our current project uses the Prism framework. Only one member of our team can claim [...]]]></description>
			<content:encoded><![CDATA[<p>I am being deliberately provocative in my headline, but a co-worker and I were commenting to each other that we felt that we were becoming less productive in .NET. On the whole, we do not think it is our fault. </p>
<p>Our current project uses the <a href="http://compositewpf.codeplex.com/" target="_blank">Prism</a> framework. Only one member of our team can claim to be extremely versatile using this framework &#8211; the promise is that it allows developers to build applications that are easier to maintain. </p>
<p>Some members of the team are on a learning curve, but it seems to be a challenge for them. I experience the same thing a year ago on another project that was using Model-View-Presenter. In theory, the benefits are clear. In practice, not so clear yet. I find that I spend a lot of time learning and/or teaching, and I wonder what it will be like when we add new or different developers to the team.</p>
<p>I get tired of type errors in .NET &#8211; I have felt for a long time that the compiler is trying to protect me from making errors I would never make. But, I do not have have anything coherent to say about that right now. I just want to cite an <a href="http://kurtgrandis.com/blog/2010/02/24/python-django-vs-c-asp-net-productivity-showdown/">interesting article</a> that states that developers are more productive using Django than they are using .NET.</p>
<p>I have nothing to add &#8211; just want to say: I am feeling less productive in .NET than I used to. I like Python &#8211; I used it on a project over the summer. It felt great to deliver working code every day. Is it just me? </p>
]]></content:encoded>
			<wfw:commentRss>http://jimcassidy.ca/2010/12/27/net-productivity-sucks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Syllables Matter</title>
		<link>http://jimcassidy.ca/2010/09/13/syllables-matter/</link>
		<comments>http://jimcassidy.ca/2010/09/13/syllables-matter/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 16:41:29 +0000</pubDate>
		<dc:creator>Jim Cassidy</dc:creator>
				<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://jimcassidy.ca/?p=1036</guid>
		<description><![CDATA[The software I am writing for Dr. Kelly calculates a Flesch-Kincaid grade level for every assignment he grades. The formula is straight forward enough. However, I was surprised to find that different implementations of this formula diverge dramatically from each other. The same text can have wildly different grade levels depending on the software you [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 190px"><a href="http://oreilly.com/catalog/9780596516499/"><img title="NLTK" src="http://covers.oreilly.com/images/9780596516499/cat.gif" alt="" width="180" height="236" /></a><p class="wp-caption-text">The Natural Language Toolkit</p></div>
<p>The software I am writing for Dr. Kelly calculates a Flesch-Kincaid grade level for every assignment he grades. The <a title="Flesch-kincaid formula" href="http://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_test#Flesch.E2.80.93Kincaid_Grade_Level" target="_blank">formula </a>is straight forward enough.</p>
<p>However, I was surprised to find that different implementations of this formula diverge dramatically from each other. The same text can have wildly different grade levels depending on the software you use.</p>
<p>For example, Microsoft word says that this blog entry reads at the grade 7  level, but another <a title="another implementation of Flesch-Kincaid" href="http://www.standards-schmandards.com/exhibits/rix/index.php" target="_blank">implementation </a>says that it reads at a grade 9 level. Who is right? How does this happen?</p>
<p>It turns out that writing code to count the syllables in a word is not an easy thing. Early this summer, I tried to use the natural language toolkit to count the syllables in a word, but the code did not work. I threw the problem into the too-hard-basket for a while, and came back to it last week. A new version has been posted, and it works. It was patched by <a title="NTLK patch" href="http://code.google.com/p/nltk/issues/detail?id=575" target="_blank">Alex Rudnick</a>.</p>
<p>Here are two lines of code that show you how easy it is to count syllables in a word using the NLTK:</p>
<pre>&gt;&gt;&gt; from nltk_contrib.readability.textanalyzer import syllables_en
&gt;&gt;&gt; print syllables_en.count("hello")</pre>
<p>If you get the latest <a title="nltk contrib" href="http://code.google.com/p/nltk/downloads/list" target="_blank">version </a>of nltk_contrib, you will have no problems. However, I did find one small problem. This code insists that the word &#8216;the&#8217; has zero syllables. The fix was easy enough, but I am not sure this how the maintainers would fix it:</p>
<p>Edit the file called <strong>syllables_en.py</strong>. It contains a list of so-called special syllables called <strong>specialSyllables_en</strong>. Add &#8216;the&#8217; to the list, and specify that it has one syllable.</p>
<p>It is easy to see how this list works. For example &#8220;Mr.&#8221; has two syllables, but there is no easy way to figure out that &#8220;Mr.&#8221; is pronounced as &#8220;mister.&#8221; I may find other exceptions as I go.</p>
<p>However, having fussed with code, and having downloaded the latest version, I am pleased to report that the flesch-kincaid score I generate matches the score that is generated by Microsoft Word. My syllable count is correct, and the rest just follows.</p>
<p>My code will probably never agree perfectly with the score that is generated with Microsoft Word. It turns out that some English words are pronounced with a different number of syllables by English speakers from different parts of the world. Also, the code in the natural language toolkit is sometimes wrong. For example, it says that the word &#8216;calculates&#8217; has four syllables. However, it is close enough in a great majority of cases. You should give it a try.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimcassidy.ca/2010/09/13/syllables-matter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing to Be Understood</title>
		<link>http://jimcassidy.ca/2010/08/13/writing-to-be-understood/</link>
		<comments>http://jimcassidy.ca/2010/08/13/writing-to-be-understood/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 03:12:33 +0000</pubDate>
		<dc:creator>Jim Cassidy</dc:creator>
				<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://jimcassidy.ca/?p=1012</guid>
		<description><![CDATA[Since early June, a professor from Carleton University and I have been designing and building software to help people write more clearly. Professor John Medicine Horse Kelly is a journalism professor who won a teaching award for a system of instruction he developed during his twenty years of teaching. He is an interesting man, humble [...]]]></description>
			<content:encoded><![CDATA[<p>Since early June, a professor from Carleton University and I have been designing and building software to help people write more clearly. Professor John Medicine Horse Kelly is a journalism professor who won a teaching award for a system of instruction he developed during his twenty years of teaching.</p>
<p>He is an interesting man, humble and soft-spoken. He is a natural listener, and he will listen to almost anything you have to say with a gentle and sympathetic smile. But, if you can stop talking and start listening, he will fill any silence you create with lovely stories about his grandfather, Peter Kelly, or Bill Reid, or any of his Haida relatives and friends.  His soft-spokeness masks deep passions. One is teaching.</p>
<p>He has developed a system for teaching students to write well by identifying patterns that students can edit to improve their writing. I have written code that uses the <a title="NLTK" href="http://www.nltk.org/" target="_blank">natural language toolkit</a> to read student&#8217;s assignments and to identify these patterns. Even I have learned to apply Dr. Kelly’s principles to create writing that is clear, lively and easy to understand. Here are things to watch for:<br />
<br/></p>
<ol>
<li> If you use Microsoft Word, use the grammar and style tools to check the <a title="Flesch-Kincaid" href="http://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_test" target="_blank">Flesch Kincaid</a> grade level.</li>
<li>Use the grammar and style tools to find and eliminate passive sentences.</li>
<li>Ensure that your writing is composed of words that have an average of about 4.5 characters.</li>
<li>Write paragraphs that have an average of about 2.5 to 3.5 sentences.</li>
<li>Write sentences that have an average of between 12 and 15 words per sentences.</li>
<li>Avoid using too many prepositions. Prepositions cause writing to become complex and hard to read.</li>
</ol>
<p>I was able to improve this article by using our tool. The first draft of this blog entry read at the grade 10.5 level, and it contained several complexifiers. I was able to eliminate these words, and my writing improved. The draft you are now reading reads at a grade 8.6 level. As I use Dr. Kelly&#8217;s system, I see that it works.</p>
<p>Plain writing is important. People can find it hard to understand medical consent forms, legal documents, and privacy policies. Is it ethical to write important documents that ordinary people cannot understand? Is it smart?</p>
<p>In the next few weeks, I am going write about our tool. We call it <strong>WISE </strong> – Writing Instruction Software for Educators. Recently, we realized that we may have to call it Writing Instruction Software for Everyone. Who knows, if the code is easy to use, and if the principles can be easily explained, we may share the code with anybody who wants to try it. We have to get some legal advice first, but we hope to make a file available for download some time between now and Christmas.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimcassidy.ca/2010/08/13/writing-to-be-understood/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If You Don&#8217;t Get It Yet . . .</title>
		<link>http://jimcassidy.ca/2010/05/17/if-you-dont-get-it-yet/</link>
		<comments>http://jimcassidy.ca/2010/05/17/if-you-dont-get-it-yet/#comments</comments>
		<pubDate>Mon, 17 May 2010 17:14:48 +0000</pubDate>
		<dc:creator>Jim Cassidy</dc:creator>
				<category><![CDATA[Change]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://jimcassidy.ca/?p=962</guid>
		<description><![CDATA[For twenty years, the skill that I have depended on the most is my ability to navigate change. Change is an event. Change is something that happens to you &#8211; you either cope, or you get left behind. I have met people who, at a young age, felt that they could learn everything they needed [...]]]></description>
			<content:encoded><![CDATA[<p>For twenty years, the skill that I have depended on the most is my ability to navigate change. Change is an event. Change is something that happens to you &#8211; you either cope, or you get left behind. </p>
<p>I have met people who, at a young age, felt that they could learn everything they needed to know, and achieve some sort of enduring technical competence. They quickly learned that the cycle of learning and changing never ends.</p>
<p>This video makes a few things clear: change is massive, change is unrelenting, change is occurring on a fundamental level. Assumptions are changing. Keeping up with the technical aspects of change is hard enough, but understanding the effect and significance of it is mind bending. Let&#8217;s face it, the impact of the change is enough to knock some of us out of our orbits. I will let the video speak for itself:</p>
<p><object width="500" height="300"><param name="movie" value="http://www.youtube.com/v/lFZ0z5Fm-Ng&#038;hl=en_US&#038;fs=1&#038;color1=0xe1600f&#038;color2=0xfebd01"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/lFZ0z5Fm-Ng&#038;hl=en_US&#038;fs=1&#038;color1=0xe1600f&#038;color2=0xfebd01" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="300"></embed></object> </p>
]]></content:encoded>
			<wfw:commentRss>http://jimcassidy.ca/2010/05/17/if-you-dont-get-it-yet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Select a WordPress Theme</title>
		<link>http://jimcassidy.ca/2010/05/05/how-to-select-a-wordpress-theme/</link>
		<comments>http://jimcassidy.ca/2010/05/05/how-to-select-a-wordpress-theme/#comments</comments>
		<pubDate>Wed, 05 May 2010 13:57:12 +0000</pubDate>
		<dc:creator>Jim Cassidy</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jimcassidy.ca/?p=928</guid>
		<description><![CDATA[I am much better at design than some developers I have worked with, but I will never be great. If I depended on my artistic flair to earn a living, I might be in trouble. Fortunately for me, there are cheap templates, and there are designs I can imitate. Because I have been using it [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="smashing wordpress" src="http://www.bloggingpro.com/wp-content/uploads/2009/12/smashing-wordpress-250.jpg" alt="book" />I am much better at design than some developers I have worked with, but I will never be great.</p>
<p>If I depended on my artistic flair to earn a living, I might be in trouble. Fortunately for me, there are cheap templates, and there are designs I can imitate.</p>
<p>Because I have been using it for years, I have found WordPress easy to start using it as a <a href="http://www.pcworld.com/businesscenter/article/191042/wordpress_guns_for_web_content_management_duties.html" target="_blank">basic CMS</a> for some of my clients.</p>
<p>My favourite place to buy a template is <a title="Themeforest" href="http://themeforest.net/" target="_blank">Themeforest</a>. I host small sites for clients who do not have big budgets. Themeforest provides attractive templates at a very affordable price. <strong>However not all themes are equal</strong>. Here are some things you should consider. </p>
<p><strong>1) Read the comments.</strong> Users often post comments about themes. They contain useful info.  You do not want to buy a theme that has problems and issues, and you especially do not want to buy a theme from a designer who does not respond to that are raised problems.</p>
<p><strong>2) Buy a well supported theme if you can.</strong> At ThemeForest, at least one designer has posted training screen casts.</p>
<p><strong>3) If you are buying a theme for a client, buy cautiously.</strong> Themeforest displays the number of times a theme has been sold. I prefer themes by designers who have made number of sales. Also, I tend to choose themes by designers who have posted multiple themes that I can also check out.</p>
<p><strong>4) Ensure that your theme is <a title="Why Standards" href="http://validator.w3.org/docs/why.html" target="_blank">web standards</a> compliant. </strong>There are <a title="Tools" href="http://validator.w3.org/" target="_blank">tools</a> you can use to check the template before you buy it. <a title="read" href="http://www.webstandards.org/learn/external/html/" target="_blank">Read</a> about this subject to learn more.</p>
<p><strong>5) Use the theme preview and look at the CSS files.</strong> Do the CSS files contain useful comments? Can you figure out how the CSS corresponds to the pages you see? If you need to customize the template, you may have to work with these files. Don&#8217;t buy yourself grief. Buy templates the employ some <a title="CSS best practice" href="http://net.tutsplus.com/tutorials/html-css-techniques/30-css-best-practices-for-beginners/" target="_blank">CSS best practices</a>.</p>
<p><strong>6) And, finally, it never hurts to have a good book to help you alter the template, or to add functionality.</strong> I depend on <a title="Smashing WordPress" href="http://tdh.me/books/smashing-wordpress-beyond-the-blog/" target="_blank">Smashing WordPress</a>, but there are others. And, of course, there is a lot of information available online.</p>
<p><strong>7) Do not buy a template just for how it looks. </strong>Be smart. Buy something you can support and change with ease. Buy something that provides good functionality. Buy something that saves you and your clients headaches.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimcassidy.ca/2010/05/05/how-to-select-a-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strategic Blogging 101-001</title>
		<link>http://jimcassidy.ca/2010/04/20/strategic-blogging-101-001/</link>
		<comments>http://jimcassidy.ca/2010/04/20/strategic-blogging-101-001/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 11:28:17 +0000</pubDate>
		<dc:creator>Jim Cassidy</dc:creator>
				<category><![CDATA[Strategy]]></category>

		<guid isPermaLink="false">http://jimcassidy.ca/?p=911</guid>
		<description><![CDATA[If you having been visiting this blog for a period of time, you will have noticed a few changes. After five years, it was time for a new look. However, I have bigger plans than that. For five years, I have blogged about whatever I pleased and I have created a haphazard collection of categories [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jimcassidy.ca/wp-content/uploads/2010/05/johnpwarren_Chess_piece_black_king.png"><img class="alignleft size-full wp-image-959" title="johnpwarren_Chess_piece_black_king" src="http://jimcassidy.ca/wp-content/uploads/2010/05/johnpwarren_Chess_piece_black_king.png" alt="" width="90" height="200" /></a>If you having been visiting this blog for a period of time, you will have noticed a few changes. After five years, it was time for a new look.</p>
<p>However, I have bigger plans than that. For five years, I have blogged about whatever I pleased and I have created a haphazard collection of categories to classify my content. Now, I want to blog strategically, and I need to create tags and categories that help drive traffic to this site. I am also beginning to work with clients to show them how to do the same.</p>
<p>Today, I deleted useless categories, and I began to think about what I want to achieve by blogging. In short:</p>
<ul>
<li>I need to know what I want to achieve.</li>
<li>I need to prepare to measure my success.</li>
<li>I need to measure my success, and course correct as necessary.</li>
</ul>
<p>I am going to delete more categories, and tags. Then, I will create new categories and tags, and I will apply them to my old content as I see fit. This blog needs focus. This is happening after the fact, but it is never too late.</p>
<p>The first part of the exercise is about branding, I guess. Strategy, for me, is about knowing what you want to achieve, identifying the resources you have at your disposal , and planning how to use them to achieve your end. My blog is a resource.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimcassidy.ca/2010/04/20/strategic-blogging-101-001/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

