<?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>James Wanless &#187; technology</title>
	<atom:link href="http://james.wanless.info/topic/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://james.wanless.info</link>
	<description>designer :: collaborative technologist :: endorphin junkie</description>
	<lastBuildDate>Mon, 23 Aug 2010 18:42:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Customizing menus and widgets for my new WordPress theme</title>
		<link>http://james.wanless.info/2010/08/customizing-menus-and-widgets-for-my-new-wordpress-theme/</link>
		<comments>http://james.wanless.info/2010/08/customizing-menus-and-widgets-for-my-new-wordpress-theme/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 05:33:12 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=2452</guid>
		<description><![CDATA[I have a history of somewhat routinely tweaking or fully redesigning my theme, but it&#8217;s usually just a matter of moving some elements around, changing a colour here and there and calling it a day. With the release of WordPress 3.0, I took a slightly different approach this time. This release brings with it some [...]

<ul><li><a href='http://james.wanless.info/2008/12/slight-re-design-launched/' rel='bookmark' title='Permanent Link: Slight re-design launched'>Slight re-design launched</a></li>
<li><a href='http://james.wanless.info/2009/03/a-facelift-i-can-probably-stay-with/' rel='bookmark' title='Permanent Link: A facelift I can probably stay with'>A facelift I can probably stay with</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>I have a history of somewhat routinely tweaking or fully redesigning my theme, but it&#8217;s usually just a matter of moving some elements around, changing a colour here and there and calling it a day.  With the release of WordPress 3.0, I took a slightly different approach this time.  This release brings with it some major changes and I decided to begin digging into WordPress a little more deeply than I usually do this time.</p>
<p>In particular, I decided it was high time I really began grokking widgets to a degree I hadn&#8217;t before and I was determined that the new WordPress menu system would be my friend.  This meant a different approach to the usual.  I&#8217;ve built a number of sites with WordPress where I presently work, and for clients in the past.  As we move more deeply into WordPress for blogs and other projects at BCIT, I felt that leveraging the platform&#8217;s features for my personal use would be useful.</p>
<h3>Simple menus &#8211; different mindset</h3>
<p>I&#8217;ve always written custom menu code in the past. For the most part, I did this because I could ensure that I maintained states for styling on families of pages and I could include exactly what I wanted to in various areas of page real estate.  However, I&#8217;ve always been bothered by this to some degree because, once I&#8217;ve finished designing a theme, I&#8217;m still opening up my code editor and FTP-ing something or other to the server as I make a tweak here and a tweak there, as opposed to simply updating my site through the admin panel.</p>
<p><span id="more-2452"></span>Taking a look at the two menus in the header area above, the upper-most menu contains the core static pages of the site.  Originally when styling this theme on my test server I was worried that I&#8217;d have a hard time preserving parent menu styling when on a child page of that page.  However, with the automatic generation of <em>current_page_parent</em> and <em>current_page_ancestor</em> classes, I can easily make my menus behave just the way I want and not write a single line of conditional PHP menu code.  The ability to build any number of custom menus and use them wherever you want, is a game-changer.</p>
<p>While I&#8217;ve usually implemented journal categories and archives in drop-down or bullet sidebar lists for all blog and archive pages, I decided I would reduce the number of categories significantly and implement them as the lower of the two header menus above.  I don&#8217;t use tags and this also helps ensure that I use a few key categories or topics for my writing, and that those categories are always on top for visitors to find.  I couldn&#8217;t find an easy way to implement a label for this menu, even looking closely at the parameters and arguments for the <em>wp_nav_menu</em> function.</p>
<div id="attachment_2474" class="wp-caption alignleft" style="width: 248px"><img class="size-full wp-image-2474" title="My hardcoded category menu label" src="http://james.wanless.info/wp-content/uploads/2010/08/Screen-shot-2010-08-22-at-10.20.03-PM.png" alt="menu label image" width="238" height="93" /><p class="wp-caption-text">My hardcoded category menu label</p></div>
<p>What I ended up doing was placing a margin on the menu code and wrapping it in another div, with which I hardcoded the label for the menu (pictured at left).  Imperfect I admit, but perhaps I&#8217;ll be able to figure out how to do it with only the menu code, as I know I can set the wrapper div for the menu, but just haven&#8217;t found a label argument so far.</p>
<p>For a simple explanation of how to implement 3.0 menus in your theme, check out <a title="Using Menus in WordPress 3.0" href="http://digwp.com/2010/08/using-menus-in-wordpress-3-0/">Digging Into WordPress&#8217;s explanation</a>.</p>
<h3>The trouble with widgets</h3>
<p>Even when widgets first came out, I resisted the urge to use them on my personal site because I like more contextual elements on my pages and have generally preferred to control things with PHP.  The difficult-to-style/control markup generated by functional widgets, coupled with the fact that widgets would be site-wide once implemented, turned me off using them.  I was also a little unclear about how to widget-ize various areas of my theme without screwing things up.</p>
<p>If you&#8217;re looking for a simple explanation of how to add widgets to your WordPress theme, <a title="How to widgetize your WordPress theme" href="http://digwp.com/2010/02/how-to-widgetize-wordpress-theme/">the guys at Digging Into WordPress have done it again</a>.  I found this article simple and to-the-point.  It allowed me to enable widgets in my existing theme through the functions.php file and then place the widget code in the various places in my theme where I want them to appear.  I addressed most of my issues around styling widget markup by trial and error.  Where the WordPress default or plugin widgets I tried didn&#8217;t produce the markup I wanted I often got around this by inserting WordPress functions directly in the widgets, just as if they were coded into my theme&#8217;s sidebar.php file.</p>
<p>You may be saying, &#8220;That&#8217;s all well and good, but you can&#8217;t run PHP code in your widgets.&#8221;  You&#8217;d be right, unless you first enabled the handy little <a title="ExecPHP WordPress plugin by Soren" href="http://bluesome.net/post/2005/08/18/50/">ExecPHP plugin</a>, which I&#8217;d recommend being careful with, as it allows you to execute PHP in posts, pages and widgets.</p>
<h3>Contexutalizing widgets</h3>
<p>While this fixed most of the issues I had with how widgets worked and styling their markup, the concept still posed a significant issue for me, as I couldn&#8217;t control where they appeared and where they didn&#8217;t appear.  It turns out that there are a few options that allow you more granular control of where widgets will appear on your site.  In my case, I wanted a fat footer with some Flickr photos and couple of my external feeds to appear only on my homepage, while I generally have a different sidebar for posts, archives, static pages, pages with children and my homepage, to name a few.</p>
<p>When I first started looking for ways to make widgets appear conditionally, I stumbled upon what I thought was the perfect solution in the <a title="Widget Context plugin" href="http://konstruktors.com/projects/wordpress-plugins/widget-context/">Widget Context plugin</a>.  When editing a widget, a large second panel appears below the widget content which allows you to include (or exclude) the widget in any or all of your theme&#8217;s templates via checkboxes, or to select pages on your site by URL (see below).</p>
<div id="attachment_2469" class="wp-caption alignnone" style="width: 573px"><img class="size-full wp-image-2469 " title="Widget context editing panel" src="http://james.wanless.info/wp-content/uploads/2010/08/Screen-shot-2010-08-22-at-10.00.29-PM.png" alt="Widget context editing panel image" width="563" height="221" /><p class="wp-caption-text">The Widget Context plugin editing panel</p></div>
<p>This implementation makes sense to me, as setting the options as you create or edit the widget works well and so does the plugin, provided you only use the checkboxes.  The real power in the plugin is the ability to use specific URLs for widgets on your site, if it worked.  I&#8217;m not sure if it&#8217;s due to the fact that this plugin has not been updated since before the release of WordPress 3.0, but implementing by URL doesn&#8217;t work, and having to live with templates as the deepest level of widget granularity doesn&#8217;t allow you to override widget appearance on a page-by-page basis if needed.</p>
<p>As I did a little more searching, I came across <a href="http://thecorkboard.org/wordpress-custom-widgets-plugin-updated/">Kyle&#8217;s post about Shiba&#8217;s Custom Widgets</a> plugin. That led me to make my way to <a title="Shiba's Custom Widgets plugin" href="http://shibashake.com/wordpress-theme/wordpress-custom-widgets-plugin">Shiba&#8217;s own site</a>, where I found a lot of good WordPress plugin work happening.</p>
<p>In large part, it does just what Widget Context does, but through a different type of implementation.  It adds new widget creation, management and options links and, frankly, having duplicate widget panels (and several instances of the same widget in them) is a little confusing until you get used to the concept.  What I really like about it, though, is that the granularity of widget control is perfect and, when you want to override the template settings you do so through the post, page or category editing panel.  In other words, using Shiba&#8217;s Custom Widgets, you can place widgets exactly where you want them on your site, provided you&#8217;ve enabled widgets in that part of your theme and factored the widget into your CSS.</p>
<h3>In closing and next steps</h3>
<p>I still have a few pages to whip up, but most of the work is done.  What I like is that I finally dug into a few things I wanted to and found that, with a little sleuthing, I was able to do pretty much exactly what I wanted despite my old-school attitude that I needed to hand-code all the custom stuff.  I can build the menus I want with the styling I want, and I can build the widgets I want, styled as I want and placed where I want.  I&#8217;m really looking forward to exploring more menu and widget customizations as we start using WordPress more and more at work.</p>


<ul><li><a href='http://james.wanless.info/2008/12/slight-re-design-launched/' rel='bookmark' title='Permanent Link: Slight re-design launched'>Slight re-design launched</a></li>
<li><a href='http://james.wanless.info/2009/03/a-facelift-i-can-probably-stay-with/' rel='bookmark' title='Permanent Link: A facelift I can probably stay with'>A facelift I can probably stay with</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2010/08/customizing-menus-and-widgets-for-my-new-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Epic fail of the day, Microsoft style</title>
		<link>http://james.wanless.info/2009/10/epic-fail-of-the-day-microsoft-style/</link>
		<comments>http://james.wanless.info/2009/10/epic-fail-of-the-day-microsoft-style/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 22:57:47 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=1935</guid>
		<description><![CDATA[I love opening files sent around work in our Windows-centric environment.  In particular, when I think of the Microsoft promise to embrace standards and then see these kinds of dialogue boxes, I get shivers up and down my spine.  Hey Microsoft, if you're gonna port your crappy software over to other operating systems, the level of suck should be the same, not a little extra for good measure ...


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I love opening files sent around work in our Windows-centric environment.  In particular, when I think of the Microsoft promise to embrace standards and then see these kinds of dialogue boxes, I get shivers up and down my spine.  Hey Microsoft, if you&#8217;re gonna port your crappy software over to other operating systems, the level of suck should be the same, not a little extra for good measure.</p>
<div class="mceTemp">
<dl id="attachment_1934" class="wp-caption alignnone" style="width: 454px;">
<dt class="wp-caption-dt"><a href="http://james.wanless.info/wp-content/uploads/2009/10/Picture-6.png" rel="lightbox[1935]"><img class="size-full wp-image-1934" title="unsupported" src="http://james.wanless.info/wp-content/uploads/2009/10/Picture-6.png" alt="The pain of using Microsoft software on a better machine" width="444" height="206" /></a></dt>
</dl>
</div>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/10/epic-fail-of-the-day-microsoft-style/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Getting social media for CRM right</title>
		<link>http://james.wanless.info/2009/09/social-media-for-crm/</link>
		<comments>http://james.wanless.info/2009/09/social-media-for-crm/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 00:30:35 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=1678</guid>
		<description><![CDATA[This issue has been percolating just under my skin for a while now. I often hear it said where I work that we still haven&#8217;t figured out how to use social media and I&#8217;d guess that&#8217;s probably true of many places. I think, though, that most folks who are charged with figuring out how to [...]

<ul><li><a href='http://james.wanless.info/2009/03/avoiding-social-media-spam/' rel='bookmark' title='Permanent Link: Avoiding social media spam'>Avoiding social media spam</a></li>
<li><a href='http://james.wanless.info/2008/07/how-important-is-social-media/' rel='bookmark' title='Permanent Link: How important is social media?'>How important is social media?</a></li>
<li><a href='http://james.wanless.info/2007/09/social-networks-for-social-research/' rel='bookmark' title='Permanent Link: Social networks for social research'>Social networks for social research</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<div id="attachment_1744" class="wp-caption alignleft" style="width: 226px"><img class="size-full wp-image-1744" title="social media image" src="/wp-content/uploads/2009/08/socialmedia.jpg" alt="social media image" width="216" height="153" /><p class="wp-caption-text">How do you use social media for CRM?</p></div>
<p>This issue has been percolating just under my skin for a while now.  I often hear it said where I work that we still haven&#8217;t figured out how to use social media and I&#8217;d guess that&#8217;s probably true of many places.  I think, though, that most folks who are charged with figuring out how to use social media to their advantage are simply looking at it the wrong way.</p>
<p>Often, it&#8217;s about setting up Facebook groups or fan pages, or making sure their organization is tweeting announcements from corporate accounts.  Some build networks to try and drive traffic to their web sites.  I&#8217;m not saying any of these efforts is necessarily wrong.  Ineffective for the most part?  Yes.  If, to you, social media is about getting followers, becoming a guru or simply driving traffic to another site, it&#8217;s likely not going to be effective for long-term benefit.  </p>
<p>External social networks like Twitter and Facebook allow limited conversations but not ones which are contextually centered on your business or organization.  In truth they are more about <em>broadcast</em> than <em>social</em>.  Try having a real conversation with someone on Twitter sometime.  It&#8217;s not impossible, but support and issue resolution will likely need to move to another forum to be completed.  A good conversation happens because there&#8217;s a two-way dialogue and it&#8217;s at least somewhat intimate.  <span id="more-1678"></span></p>
<h3>Where should you do it?</h3>
<p>I&#8217;d argue that the best social media CRM implementations happen right on your own interactive properties.  Where do your constituents interact with you?  If I&#8217;ve got an issue with a product or service, I usually start by conducting a web search, then refining it down to a search in a knowledge base or FAQ at the site of the organization of interest to me.  An external social network is not a comfortable or intimate enough environment for this.  Plus, it may just be a personal preference, but I don&#8217;t follow corporate tweets and I don&#8217;t join corporate Facebook groups or pages.  Frankly, I update Facebook through ping.fm or another service and rarely directly visit the site any more.</p>
<p>A colleague recently recounted an experience in which his son was purchasing something from a site halfway around the world.  He had a question that couldn&#8217;t be answered without some help, and was very impressed when he could have a live chat with a customer service representative via an on-page box.  He had to input his name and issue and wait in a short queue.  The question was answered quickly and the purchase completed.  By contrast, think about the same situation but one where the customer is forced to leave a voice message or send an email after hours and wait a few days or longer, or sometimes not receive a response at all.  The opportunity is lost and the customer has likely gone to a competitor.</p>
<p>Think about the Amazon.com model.  Not only can users review books and publish wish-lists for their purchases, but reviews can then be subject to ratings.  The system continually provides more and more information of relevance to a potential customer within Amazon&#8217;s own context, not via external networks.  While a post-secondary institution like the one where I work is hesitant to allow customer reviews of courses for myriad reasons, opening your organization up to external feedback and publishing relevant information to assist potential customers in their decision-making process will continue to become increasingly important in order to compete.</p>
<h3>How should you do it?</h3>
<p>ReadWriteWeb has some solid thoughts on <a href="http://www.readwriteweb.com/archives/social_media_crm_what_are_rules_of_engagement.php">how you need to think about a social media CRM strategy</a>.  While I still think the features need to be part of what you do on the web, IBM&#8217;s thinking is to extend an external network like Facebook to connect students and mentors in a more meaningful way:</p>
<blockquote><p><a href="http://chronicle.com/blogPost/IBM-Plans-to-Connect-Students/7535/">“Facebook and MySpace are great places for social networking, but they don’t really have a goal. They don’t make the kind of connections you need to move forward,” Mr. Vogt said. “This platform is helping students say, Here are my ideas, and IBM is saying, Come work with us and we’ll help you.”</a></p></blockquote>
<p>Even if you think I&#8217;m wrong and an external network is your solution, you&#8217;ve still got to choose the right one to reach your audience.  A big chunk of BCIT&#8217;s student demographic is older and looking at applied skills to improve their job prospects or is upgrading, mid-career.  Twitter might reach some of that target for push communications, but not so much for a traditional post-secondary trying to reach mostly students who are still in high school:</p>
<blockquote><p><a href="http://blog.nielsen.com/nielsenwire/online_mobile/teens-dont-tweet-twitters-growth-not-fueled-by-youth/">In June 2009, only 16 percent of Twitter.com website users were under the age of 25. Bear in mind persons under 25 make up nearly one quarter of the active US Internet universe, which means that Twitter.com effectively under-indexes on the youth market by 36 percent.</a></p></blockquote>
<h3>What about employee collaboration?</h3>
<p>Intel published a white paper documenting <a href="http://communities.intel.com/docs/DOC-3603">their approach to developing a social computing intranet strategy</a>.  They did wide consultation across the enterprise and engaged with key stakeholders, developed usage policies upfront, performed user and proof-of-concept testing and outlined a solid architecture and phased approach to rollout.  In short, they took a user-centred design philosophy and set measurable goals and objectives.  This is something that any organization should do whether their implementation is internally or customer focused.  </p>
<p>Based on my own experience at large organizations, the measurable objectives are often missing.  The desire to use a cool tool often seems to trump a problem-solving approach, where the <em>right</em> tool is used to solve a business problem.  Post-secondary institutions, in particular, are caught between the desire to leverage the web more effectively for employee productivity, while they grapple internally with labyrinthine policies and rules and red herring privacy concerns about how employees use web technologies.</p>
<p>Perhaps I&#8217;ll leave the last word on social media on intranets to <a href="http://www.useit.com/alertbox/social-intranet-features.html">Jakob Nielsen&#8217;s findings</a>:</p>
<blockquote><p><strong>Underground efforts yield big results.</strong> Companies are turning a blind eye to underground social software efforts until they prove their worth, and then sanctioning them within the enterprise.  </p>
<p><strong>Frontline workers are driving the vision.</strong> Often, senior managers aren&#8217;t open to the possibilities for enterprise 2.0 innovation because they&#8217;re not actively using these tools outside of work. Indeed, many senior managers still consider such tools as something their kids do. One of the dirty secrets of enterprise 2.0 is that you don&#8217;t have to teach or convince younger workers to use these tools; they expect them and integrate them as easily into their work lives as they do in their personal lives.  </p>
<p><strong>Communities are self-policing.</strong> When left to their own devices, communities police themselves, leaving very little need for tight organizational control. And such peer-to-peer policing is often more effective than a big brother approach. Companies that we studied said abuse was rare in their communities.  </p>
<p><strong>Business need is the big driver.</strong> Although our report discusses specific tools (blogs, wikis, and such), enterprise 2.0&#8242;s power is not about tools, it&#8217;s about the communication shift that those tools enable.  </p>
<p><strong>Organizations must cede power.</strong> Using Web 2.0 technologies to communicate with customers has taught many companies that they can no longer control the message. This also rings true when using Web 2.0 tools for internal communication. Companies that once held to a command-and-control paradigm for corporate messaging are finding it hard to maintain that stance.</p></blockquote>


<ul><li><a href='http://james.wanless.info/2009/03/avoiding-social-media-spam/' rel='bookmark' title='Permanent Link: Avoiding social media spam'>Avoiding social media spam</a></li>
<li><a href='http://james.wanless.info/2008/07/how-important-is-social-media/' rel='bookmark' title='Permanent Link: How important is social media?'>How important is social media?</a></li>
<li><a href='http://james.wanless.info/2007/09/social-networks-for-social-research/' rel='bookmark' title='Permanent Link: Social networks for social research'>Social networks for social research</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/09/social-media-for-crm/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Is cloud computing still blue sky?</title>
		<link>http://james.wanless.info/2009/07/is-cloud-computing-still-blue-sky/</link>
		<comments>http://james.wanless.info/2009/07/is-cloud-computing-still-blue-sky/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 19:43:51 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=1419</guid>
		<description><![CDATA[As I lurch through this summer trying to finalize the thesis proposal which will frame a large part of my life for the next year, collaborative tools for learning are never far from front of mind with me. A real interest of mine is the use of collaborative writing tools for learning in higher education. [...]

<ul><li><a href='http://james.wanless.info/2009/01/the-folly-of-free/' rel='bookmark' title='Permanent Link: The folly of free'>The folly of free</a></li>
<li><a href='http://james.wanless.info/2008/10/writing-collaboratively-with-skype-chat-and-google-docs/' rel='bookmark' title='Permanent Link: Writing collaboratively with Skype chat and Google Docs'>Writing collaboratively with Skype chat and Google Docs</a></li>
<li><a href='http://james.wanless.info/2009/10/epic-fail-of-the-day-microsoft-style/' rel='bookmark' title='Permanent Link: Epic fail of the day, Microsoft style'>Epic fail of the day, Microsoft style</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>As I lurch through this summer trying to finalize the thesis proposal which will frame a large part of my life for the next year, collaborative tools for learning are never far from front of mind with me.  A real interest of mine is the use of collaborative writing tools for learning in higher education.  In particular, I am interested in learning more about why adoption is so weak &#8211; certainly where I work, anyway.  Where I get to with my thesis research on that front is another post for another time.</p>
<p>A big clue as to why some post secondary institutions are so jittery about Open Educational Resources (OER) might be contained in the news this past week that <a href="http://www.computerworlduk.com/community/blogs/index.cfm?entryid=2361&#038;blogid=32">Twitter suffered a substantial security breach</a> perpetrated a second time by the same French hacker.  An institution&#8217;s specific approach to open computing will also have a lot to do with how jittery they should be about it.  For example, are we talking about true cloud computing or just using open tools, but hosting them?  There&#8217;s a big difference from a data ownership and access control perspective in each approach.  For the sake of argument, I&#8217;ll stick to using the cloud.</p>
<p>Over the past week or so, my feeds were all-a-twitter (and so was Twitter) with news that Microsoft Office&#8217;s cloud offering <a href="http://lifehacker.com/5310878/microsoft-may-announce-web+based-office-monday">might be imminent</a>.  Given the success of Google&#8217;s office suite in the cloud, it stands to reason that Microsoft needs to make a me-too play and quickly.  Not to be left behind, cloud computing provider Zoho announced a <a href="http://www.readwriteweb.com/enterprise/2009/07/zohos-new-plugin-turns-microsoft-access-databases-into-web-apps.php">plug-in to migrate their DBs to web apps</a>, either on Zoho or as Google Apps.  The big players are pretty certain about the move from the desktop to the cloud.  Google&#8217;s announcement that Apps could now <a href="http://lifehacker.com/5311740/google-now-translates-uploaded-documents">translate uploaded documents</a> paled in comparison to their bigger one.</p>
<p><span id="more-1419"></span><a href="http://arstechnica.com/gadgets/news/2009/07/googles-chrome-os-coming-to-netbooks-in-late-2010.ars">Chrome OS</a> is the next Google play in moving everything to the cloud.  The idea that you can seamlessly move your desktop work to the browser would still seem to be a ways off, given the weaknesses in some of the Google Apps feature set:</p>
<blockquote><p>But there are still a variety of applications that simply can&#8217;t be replicated within a browser, and consumers have had a mixed reaction to Google&#8217;s own apps, embracing Gmail but finding its presentation software to be severely limited compared to its desktop app counterparts.</p></blockquote>
<p>As Chrome OS will ship with netbooks at first, full desktop replacement at this stage may not actually be on Google&#8217;s mind:</p>
<blockquote><p>The Chrome OS will be appearing first on netbooks, which can&#8217;t handle some of the more heavyweight desktop applications in the first place. And the new offering has the potential to drive users to rely on Google&#8217;s online offerings, which certainly would further the company&#8217;s goals.</p></blockquote>
<p>This probably spells <a href="http://www.macworld.com/article/141635/2009/07/chrome_android.html">the end of long-term Android development</a>, as a single, more robust OS from Google to be run on all devices would make the most sense.</p>
<p>While the happenings in cloud computing show the big players are clearly making a push in that direction, moving everyone there will be no small task.  For post-secondary institutions, there are many concerns including ownership of data, privacy and, as Twitter just showed us, the risk of a complete breach of authentication data.  However, these issues are just the tip of the iceberg.</p>
<p><a href="http://arstechnica.com/web/news/2009/07/cloud-computing-promise-still-stormy-with-reliability-issues.ars">Technical, SLA and business solvency</a> also pose extreme risks for organizations, let alone individuals, in trusting their data to Google or Microsoft and hosting it in the cloud.</p>
<p>What about power outages?</p>
<blockquote><p>In the last week alone, there have been several high profile outages at data centers that host sites, such as video site DailyMotion, credit card authorization service Authorize.net, and Microsoft’s Bing Travel. Even the Google App Engine—a platform for third-parties to run their own cloud services—experienced performance issues that resulted in high latency and even data loss.</p></blockquote>
<p>Or uptime guarantees?</p>
<blockquote><p>Many large companies are used to having control over and responsibility for all of the servers that the business uses, so the idea of putting parts of their business on rented, &#8220;black box&#8221;-style cloud services makes them uneasy.</p></blockquote>
<p>When it comes to education, we often think of OER in terms of access to scholarly journals, tools to help learners and instuctors, social software for social learning activities, repositories of objects, and the value that opening your work up to a wider audience brings.  If enough instructors use OER journals, the story goes that more academic publishing will be placed in open, peer reviewed journals.  Demand drives innovation and change, after all.  </p>
<p>All of this is great in theory and I&#8217;m certainly a big proponent of social computing.  However, I&#8217;d stop short of putting all my eggs in the cloud basket just yet, and maybe ever.  I much prefer open source software, but hosting it, where I own the data and support the servers.  There&#8217;s nothing wrong with using online office suites to help share collaborative work and tools like blogs, wikis, Skype, IM and chat are wonderful for bridging the distance gap.  However, I always want to keep my core data, or at the very least backups of everything I&#8217;m doing there, locally stored.  If I always have to do that anyway, then it starts to dilute the value of cloud computing as a way of providing cheap storage and persistent access.</p>
<p>Frankly, I&#8217;d never want to be the one to have to tell a class full of students or anyone else for that matter, that they couldn&#8217;t get at that assignment that was due because Google had a server farm meltdown.  Or, that institutional data like student numbers, grades, addresses, credit card numbers and the like had just disappeared into a cloud because they were housed there in the first place.</p>


<ul><li><a href='http://james.wanless.info/2009/01/the-folly-of-free/' rel='bookmark' title='Permanent Link: The folly of free'>The folly of free</a></li>
<li><a href='http://james.wanless.info/2008/10/writing-collaboratively-with-skype-chat-and-google-docs/' rel='bookmark' title='Permanent Link: Writing collaboratively with Skype chat and Google Docs'>Writing collaboratively with Skype chat and Google Docs</a></li>
<li><a href='http://james.wanless.info/2009/10/epic-fail-of-the-day-microsoft-style/' rel='bookmark' title='Permanent Link: Epic fail of the day, Microsoft style'>Epic fail of the day, Microsoft style</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/07/is-cloud-computing-still-blue-sky/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Severing the Telus umbilical cord</title>
		<link>http://james.wanless.info/2009/06/severing-telus-umbilical-cord/</link>
		<comments>http://james.wanless.info/2009/06/severing-telus-umbilical-cord/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 00:57:45 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Shaw]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=1211</guid>
		<description><![CDATA[The first move was finally made last night.  It's been long overdue and I'm happy to be on the path.  I've taken the first step to getting Telus hands out of my pockets - and they've been pretty deeply in there for a long time.  Complete disclosure forces me to say that I was a Telus manager for five years and my wife has now been an employee for 11.  We met while working there, so not all my associations with the recursive T are bad ...

<ul><li><a href='http://james.wanless.info/2008/11/the-worst-thing-that-could-happen-to-bell-now/' rel='bookmark' title='Permanent Link: The worst thing that could happen to Bell now'>The worst thing that could happen to Bell now</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img">
<dl class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/36045027@N00/2330194538" title="Cutting the Telus cord"><img src="http://farm4.static.flickr.com/3266/2330194538_62f38a99db_m.jpg" alt="Cutting the Telus cord" width="240" height="180"></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/36045027@N00/2330194538">Darren Hester</a> via Flickr</dd>
</dl>
</div>
<p>The first move was finally made last night.  It&#8217;s been long overdue and I&#8217;m happy to be on the path.  I&#8217;ve taken the first step to getting <a class="zem_slink" href="http://www.telus.com" title="Telus" rel="homepage">Telus</a> hands out of my pockets &#8211; and they&#8217;ve been pretty deeply in there for a long time.  Complete disclosure forces me to say that I was a Telus manager for five years and my wife has now been an employee for 11.  We met while working there, so not all my associations with the recursive T are bad.  However, most of my customer service associations with them are horrific.  This could be a very long post, so I&#8217;ll endeavour to keep it short.</p>
<p>I&#8217;ve been a cash cow for them.  Particularly as my sons are now 19 and 16, we have four mobile accounts, our home landline and high speed internet.  That&#8217;s too many eggs in one basket anyway, but since we&#8217;ve had four accounts they&#8217;ve been able to count on me for a minimum of $220 in revenue every month.  Unlike our US friends who can usually add a new number and pool voice/data in a family cellular plan for a few bucks, now that Telus doesn&#8217;t offer family plans (and never did affordably), four accounts with reasonable data/voice runs well over $150 a month.  Add another $60 for landline and high speed internet and that&#8217;s just shy of $2700 a year.  When you look at it that way, the costs are nothing short of obscene.  They don&#8217;t blend mobility and landline billing and good bundles for being a good customer are pretty much non-existent.</p>
<p><span id="more-1211"></span><br />
<h3>Earth to Telus: you&#8217;re not a monopoly</h3>
<p>We&#8217;ve been having a battle with them for the past few weeks.  My son had to change a handset and they transferred his faves (for free texting) for him, only from what we can tell they got one of the numbers wrong and he incurred probably $30-40 in charges that we feel were not right.  My wife has been on the phone with them several times trying to get them to go back a few months and determine the error.  Most calls end abruptly with the reps refusing to do enough to clarify the issue.  So, they can&#8217;t look enough at the big picture that they&#8217;re willing to risk a good customer over a $40 bill reversal.  Brilliant.  Maybe someone forgot to tell them they&#8217;re not a monopoly any more because they&#8217;re as arrogant as one.  Based on this, the expensive voice/data packages and getting locked into long contracts to get decent phones, we&#8217;d already decided that as our contracts rolled we&#8217;d be looking elsewhere for wireless.  </p>
<p>Since the feds auctioned off some wireless spectrum last year, my understanding is that Canada may finally have competition more like the US in the next 6-12 months.  There are already options to go without contracts and system access fees but the voice/data is still pricey and the three carriers who offer these are simply subsidiaries of Telus, Rogers or Bell.  You can&#8217;t get away from the monoliths as it stands right now.  I think things will be looking very different in a year.</p>
<h3>I don&#8217;t need no stinkin&#8217; landline</h3>
<p>I&#8217;d always operated under the assumption that cable was still slower than ADSL, but Shaw has been making steady improvements with their cable service while Telus hasn&#8217;t been keeping pace.  Their high speed internet is generally rated as faster now, while their customer service consistently blows Telus out of the water.  A little research yesterday told me I was probably with the wrong ISP.  What really sealed the deal for me was when I thought about our home phone use.  I can count the calls we get in a week on one hand as most of us use our cells for our voice.  While Telus very much needs that wireline connection to try and sell me high speed or, gawd forbid, Telus TV, I don&#8217;t need it at all, thank you very much.  Decision made.</p>
<p>I had committed to two years with Telus high speed just before Christmas for the <em>privilege</em> of getting a lower price, so I knew I&#8217;d have to swallow a cancellation fee to move to Shaw.  I&#8217;d already accepted that I&#8217;d be paying more with Shaw, but for faster high speed and way better customer service, it seemed like a fair trade off.  What I didn&#8217;t realize is that Shaw&#8217;s current promotional offer would more than make up for it.  Two months for free, six more for $20 and then $43 a month after that when bundled with my HD digital TV service.  I&#8217;ll save $200 in the first eight months with Shaw and cover my $120 cancellation fee with Telus.  My home phone will be gone and so will my copper connection with Telus.</p>
<h3>The best part</h3>
<p>Aside from severing the umbilical cord with the Local Incumbent Carrier (telecom lingo for former monopoly), the best part of this is that my Shaw bundle for TV and ISP will run me about $122 + tax after the eight month promotional period is done.  Right now, when I add up TV, landline and ISP with Telus and Shaw blended I&#8217;m paying about $140 + tax.  By the end of this month I&#8217;ll be taking about $720 a year before tax out of Telus hands.  Sure I&#8217;m putting it somewhere else, but I&#8217;m going to make sure I get satisfaction with my dollars.  As our wireless accounts roll over the next 18 months or so, we&#8217;ll be pulling another $500 a year at a time more out of Telus hands.</p>


<ul><li><a href='http://james.wanless.info/2008/11/the-worst-thing-that-could-happen-to-bell-now/' rel='bookmark' title='Permanent Link: The worst thing that could happen to Bell now'>The worst thing that could happen to Bell now</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/06/severing-telus-umbilical-cord/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Web trends interactive map</title>
		<link>http://james.wanless.info/2009/04/web-trends-interactive-map/</link>
		<comments>http://james.wanless.info/2009/04/web-trends-interactive-map/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 19:57:57 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=1055</guid>
		<description><![CDATA[This came by way of a couple intermediaries, but it's cool nonetheless.  In the embed above, you can zoom in as deep as you want and pan and drag to see web domain trends and more.  A great way of visualizing the state of the web ...

<ul><li><a href='http://james.wanless.info/2009/03/is-it-cancer-or-walmart/' rel='bookmark' title='Permanent Link: Is it Cancer or Walmart?'>Is it Cancer or Walmart?</a></li>
<li><a href='http://james.wanless.info/2008/06/the-future-of-the-web/' rel='bookmark' title='Permanent Link: The future of the web?'>The future of the web?</a></li>
<li><a href='http://james.wanless.info/2008/08/web-as-research-tool/' rel='bookmark' title='Permanent Link: The web as a research tool'>The web as a research tool</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="300"><param name="movie" value="http://ak.zoomorama.com/static/onetime/zoombrowser@zoomorama.com/release/latest/browser.swf?indexURL=http://zml.zoomorama.com/1.0/legacyproxy/c72d023a682ce658a97aa8809928f2b5/2477f0e8b447bb6570493cdac464c41f/document.1.zml?indexURL=http://zml.zoomorama.com/1.0/legacyproxy/c72d023a682ce658a97aa8809928f2b5/2477f0e8b447bb6570493cdac464c41f/document.1.zml"/><param name="wmode" value="window" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><embed src="http://ak.zoomorama.com/static/onetime/zoombrowser@zoomorama.com/release/latest/browser.swf?indexURL=http://zml.zoomorama.com/1.0/legacyproxy/c72d023a682ce658a97aa8809928f2b5/2477f0e8b447bb6570493cdac464c41f/document.1.zml?indexURL=http://zml.zoomorama.com/1.0/legacyproxy/c72d023a682ce658a97aa8809928f2b5/2477f0e8b447bb6570493cdac464c41f/document.1.zml" wmode="window" allowfullscreen="true" allowscriptaccess="always" type="application/x-shockwave-flash" width="550" height="300"></embed></object></p>
<p>This came by way of a couple intermediaries, but it&#8217;s cool nonetheless.  In the embed above, you can zoom in as deep as you want and pan and drag to see web domain trends and more.  A great way of visualizing the state of the web.  The embed above is a little clunky, but if you click the arrows to start and then click within the animation, you should be able to zoom in and out (at least I can with my scroll wheel).</p>
<p>From <a href="http://flowingdata.com/2009/04/07/web-trends-map-from-information-architects-4th-edition/">Flowing Data</a>:</p>
<blockquote><p>Information Architects, a design firm with offices in Japan and Zurich, release their annual <a href="http://informationarchitects.jp/web-trend-map-4-final-beta/">web trends map</a>. This is the fourth one in the series. Popular domains on the Web are mapped to the Tokyo Metro and organized by how they are most related to the cities. Heights represent success in traffic and branding. Subway lines are colored by area of interest. For example, take the orange line to find the creatives. Notice that there are several colors passing through Apple.</p></blockquote>


<ul><li><a href='http://james.wanless.info/2009/03/is-it-cancer-or-walmart/' rel='bookmark' title='Permanent Link: Is it Cancer or Walmart?'>Is it Cancer or Walmart?</a></li>
<li><a href='http://james.wanless.info/2008/06/the-future-of-the-web/' rel='bookmark' title='Permanent Link: The future of the web?'>The future of the web?</a></li>
<li><a href='http://james.wanless.info/2008/08/web-as-research-tool/' rel='bookmark' title='Permanent Link: The web as a research tool'>The web as a research tool</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/04/web-trends-interactive-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avoiding social media spam</title>
		<link>http://james.wanless.info/2009/03/avoiding-social-media-spam/</link>
		<comments>http://james.wanless.info/2009/03/avoiding-social-media-spam/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 07:07:15 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=864</guid>
		<description><![CDATA[The web is chalk full of really good social software applications. Some help you connect with friends, share things you find on the web, create and share video, images or thoughts and many of the good ones are accessible from virtually any device, while letting you extend or build upon them through open APIs.  The good services are good, usually because they do one thing really well ...

<ul><li><a href='http://james.wanless.info/2009/09/social-media-for-crm/' rel='bookmark' title='Permanent Link: Getting social media for CRM right'>Getting social media for CRM right</a></li>
<li><a href='http://james.wanless.info/2008/11/understanding-your-audience-and-the-power-of-social-media-2/' rel='bookmark' title='Permanent Link: Understanding your audience and the power of social media'>Understanding your audience and the power of social media</a></li>
<li><a href='http://james.wanless.info/2008/04/the-scary-side-of-social-media/' rel='bookmark' title='Permanent Link: The scary side of social media'>The scary side of social media</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>The web is chalk full of really good social software applications.  Some help you connect with friends, share things you find on the web, create and share video, images or thoughts and many of the good ones are accessible from virtually any device, while letting you extend or build upon them through open <acronym title="Application Programming Interface">API</acronym>s.  The good services are good, usually because they do one thing really well.  <a title="connecting with people" href="http://www.facebook.com"></a></p>
<p><a title="connecting with people" href="http://www.facebook.com">Facebook</a> (friends), <a title="photo sharing" href="http://www.flickr.com/">Flickr</a> (photos), <a title="bookmark sharing" href="http://www.delicious.com/">Delicious</a> (bookmarks), <a title="blogging" href="http://www.wordpress.org">WordPress</a> (writing), <a title="video sharing" href="http://www.youtube.com">YouTube</a> (video) and <a title="music sharing" href="http://last.fm">last.fm</a> (music) come to mind as best-of-breed tools for sharing.  It&#8217;s the ease-of-use that draws people in, while the quality of interaction likely determines adoption and longevity.  The really good ones also tend to get bought by a big player, as even with the small list above, the first two are owned by <a href="http://yahoo.com">Yahoo</a>, while YouTube is owned by <a href="http://www.google.com">Google</a> and last.fm by CBS.</p>
<h3>The psychology of sharing</h3>
<p>What are we actually doing when we share?  We&#8217;re putting a piece of ourselves out there for &#8230;. consumption, reaction, response &#8230; anything really.  I&#8217;m convinced, though, that it comes down to people sharing and connecting with other <em>people</em>.  We want to connect and discover and, as such, when social media is used to promote products it lacks authenticity.  Even in the nonprofit sector, where groups like <a href="http://techsoup.org">Tech Soup</a> are <a href="http://www.netsquared.org/">remixing the web for social change</a>, it still comes down to a social thing &#8211; a person, a problem to fix, or a law to change, for example.  <a href="http://venturebeat.com/2009/02/27/the-ugly-truth-about-your-favorite-social-networks/">The ugly truth about your social network</a> is actually that most people are using it for pretty mundane stuff anyway, so making a marketing channel out of it starts from a point of weakness.  It&#8217;s not a captive audience like the one staring at one channel during a movie.  The internet attention focus is far more limited.</p>
<p><span id="more-864"></span>When you replace one of the people in that equation with a service or a product &#8211; a thing in essence &#8211; the dynamic changes.  It&#8217;s not a conversation, but an advertisement or a broadcast.  The dialogue is replaced by a monologue.  As we continue to share, connect, contribute, and re-use, we begin to build what&#8217;s being referred to as our <a href="http://www.readwriteweb.com/archives/social_graph_concepts_and_issues.php">social graph</a>, the &#8220;map of our global network and how we&#8217;re related.&#8221;  By definition, a thing cannot have a social graph because a thing is not social.  Notwithstanding the legal oddity that <a href="http://en.wikipedia.org/wiki/Corporation">gives a corporation the rights of a real person</a>, this notion doesn&#8217;t extend to social relationships very well.  Sure, corporations can have relationships with customers, but not when they make that relationship all about promotion, marketing or selling.  I don&#8217;t buy the whole <a href="http://mashable.com/2009/02/27/social-media-for-business-2/">Mashable post</a>, but this quote about being human is great advice:</p>
<blockquote><p>Don’t want the worst day of your life to be played over and over again like Groundhog Day? Then don’t talk, share, Tweet or write about it via social media. That said, no one is happy, or perfect all of the time. It’s okay to let people into the “real” events which happen in your life. Social media for business is about return on engagement. Connect with people, build opportunities through dialogue which would not have otherwise occurred, then connect them with your business.</p></blockquote>
<h3>Make it real</h3>
<p>This brings me to the main point I&#8217;m trying to make.  Marketers are grappling with social media just like many of us are, to make it have value for them.  Unfortunately, many of them think of the social web as just another media channel, with the same rules as traditional ones.  Product promotion is largely viewed as taking because it&#8217;s only about getting money from a customer.  Social media is about giving and taking.  Sure, you can be a little promotional at times, but you&#8217;ve also got to contribute something for no other reason than the act of sharing.  That&#8217;s the whole point of the ingredients of the social graph &#8211; they change, morph and mutate based on user contributions.</p>
<p>If you want to market a product or service via social media, remember one key thing.  Connect with other people as a person, put a face on what you promote and make it about real relationships.  Just like email, social media spam is bad.</p>


<ul><li><a href='http://james.wanless.info/2009/09/social-media-for-crm/' rel='bookmark' title='Permanent Link: Getting social media for CRM right'>Getting social media for CRM right</a></li>
<li><a href='http://james.wanless.info/2008/11/understanding-your-audience-and-the-power-of-social-media-2/' rel='bookmark' title='Permanent Link: Understanding your audience and the power of social media'>Understanding your audience and the power of social media</a></li>
<li><a href='http://james.wanless.info/2008/04/the-scary-side-of-social-media/' rel='bookmark' title='Permanent Link: The scary side of social media'>The scary side of social media</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/03/avoiding-social-media-spam/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Siftables, a brilliant interface</title>
		<link>http://james.wanless.info/2009/02/siftables-a-brilliant-interface/</link>
		<comments>http://james.wanless.info/2009/02/siftables-a-brilliant-interface/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 22:50:34 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=832</guid>
		<description><![CDATA[I already bookmarked and tweeted this, brought to my attention by one of my RRU cohort.  However, as I thought about the educational implications for such a usable human-computer interface, the possibilities seem only limited by programming and concept ...

<ul><li><a href='http://james.wanless.info/2008/08/one-gigantic-learning-cycle-experiment/' rel='bookmark' title='Permanent Link: One gigantic learning cycle experiment'>One gigantic learning cycle experiment</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p><object width="446" height="326" data="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent" /><param name="bgColor" value="#ffffff" /><param name="flashvars" value="vu=http://video.ted.com/talks/embed/DavidMerrill_2009-embed_high.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/DavidMerrill-2009.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=457" /><param name="src" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" /><param name="bgcolor" value="#ffffff" /><param name="allowfullscreen" value="true" /></object></p>
<p>I already bookmarked and tweeted this, brought to my attention by one of my RRU cohort.  However, as I thought about the educational implications for such a usable human-computer interface, the possibilities seem only limited by programming and concept.</p>
<p>David Merrill is my interaction and usability hero at the moment.</p>


<ul><li><a href='http://james.wanless.info/2008/08/one-gigantic-learning-cycle-experiment/' rel='bookmark' title='Permanent Link: One gigantic learning cycle experiment'>One gigantic learning cycle experiment</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/02/siftables-a-brilliant-interface/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>News online &#8211; it&#8217;s not as far fetched as you might think</title>
		<link>http://james.wanless.info/2009/01/news-online-its-not-as-far-fetched-as-you-might-think/</link>
		<comments>http://james.wanless.info/2009/01/news-online-its-not-as-far-fetched-as-you-might-think/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 03:24:45 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=792</guid>
		<description><![CDATA[Saw this courtesy of my <a href="http://tanchak.com">pointy-haired manager</a>, somewhere <del datetime="2009-01-29T03:15:03+00:00">in his twitter-stream</del>, <del datetime="2009-01-29T03:15:03+00:00">on Facebook</del>, <del datetime="2009-01-29T03:15:03+00:00">from ping.fm</del>, out there.  Absolutely hilarious, and not that long ago for old guys like me ...

<ul><li><a href='http://james.wanless.info/2008/03/twits-shouldnt-twitter/' rel='bookmark' title='Permanent Link: Twits shouldn&#8217;t twitter'>Twits shouldn&#8217;t twitter</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>Saw this courtesy of my <a href="http://tanchak.com">pointy-haired manager</a>, somewhere <del datetime="2009-01-29T03:15:03+00:00">in his twitter-stream</del>, <del datetime="2009-01-29T03:15:03+00:00">on Facebook</del>, <del datetime="2009-01-29T03:15:03+00:00">from ping.fm</del>, out there.  Absolutely hilarious, and not that long ago for old guys like me. </p>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/5WCTn4FljUQ&#038;hl=en&#038;fs=1&#038;rel=0&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/5WCTn4FljUQ&#038;hl=en&#038;fs=1&#038;rel=0&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object></p>


<ul><li><a href='http://james.wanless.info/2008/03/twits-shouldnt-twitter/' rel='bookmark' title='Permanent Link: Twits shouldn&#8217;t twitter'>Twits shouldn&#8217;t twitter</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/01/news-online-its-not-as-far-fetched-as-you-might-think/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The folly of free</title>
		<link>http://james.wanless.info/2009/01/the-folly-of-free/</link>
		<comments>http://james.wanless.info/2009/01/the-folly-of-free/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 23:22:54 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=597</guid>
		<description><![CDATA[I&#8217;ll admit that I&#8217;m really qualifying the title of this, specific to business critical applications, regardless of what sector that business is in. We now seem to be in pre-bubble-burst 2.0, big-time. How long before the social web balloon pops in favour of more realistic and sobering economics? The social part is clearly here to [...]

<ul><li><a href='http://james.wanless.info/2009/07/is-cloud-computing-still-blue-sky/' rel='bookmark' title='Permanent Link: Is cloud computing still blue sky?'>Is cloud computing still blue sky?</a></li>
<li><a href='http://james.wanless.info/2007/09/social-software-concerns/' rel='bookmark' title='Permanent Link: Social software concerns'>Social software concerns</a></li>
<li><a href='http://james.wanless.info/2008/03/twits-shouldnt-twitter/' rel='bookmark' title='Permanent Link: Twits shouldn&#8217;t twitter'>Twits shouldn&#8217;t twitter</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll admit that I&#8217;m really qualifying the title of this, specific to business critical applications, regardless of what sector that business is in.  We now seem to be in <em>pre-bubble-burst 2.0</em>, big-time.  How long before the social web balloon pops in favour of more realistic and sobering economics?  The social part is clearly here to stay, while the &quot;everything-is-free&quot; part can&#8217;t.</p>
<p>As a provider you can&#8217;t really offer something of value for free for a very long time.  You need to have a business model that includes more than angel funding, venture capitalists or simply being bought by a big player.  Particularly the last strategy will make you into a small part of a large ad platform.  However, there&#8217;s only really probably a handful of services that are valuable enough to survive.</p>
<p>As an end-user, do you want to depend on free tools to deliver business-critical services?  It might be nice to use the latest Web 2.0 technology for e-learning, but if you&#8217;ve built a nifty mash-up on an open API which suddenly disappears, or becomes <em>not</em> free overnight, how do you factor that into your course or program budget?  And what of web services versus hosting an open source tool yourself?  The latter makes far more sense than the former, but then you&#8217;ve got to have the thing you probably don&#8217;t (and the reason you went looking for a free tool in the first place) &#8211; technical support and programming/design skills.</p>
<p>The last and, perhaps, most important thing &#8211; free cloud applications and data ownership.  Can you really manage your data and mitigate security risks?  <span id="more-597"></span></p>
<h3>Building value</h3>
<p>While Facebook will clearly be around for a while, it&#8217;s not presently making enough money to have staying power.  As <a href="http://www.huffingtonpost.com/peter-schwartz/facebooks-face-plant-the_b_149497.html">Peter Schwartz said before Christmas</a>:</p>
<blockquote><p>Now, as we close the books on 2008, one might wonder if Facebook is actually worth anything.  The company has grown rapidly by any measure, with estimated 2008 revenues of nearly $300 million. From zero to $300 million in four years is nothing to sneeze at. But the company is burning through cash much more quickly than it can replenish its coffers. Its electricity, bandwidth, data storage, and personnel costs are immense.</p></blockquote>
<p>I think the biggest questions here are, other than the social graph, what <em>real value</em> has Facebook created for you?  Not much, in an economic sense &#8230; and just try to remove your data completely.</p>
<p><a href="http://www.readwriteweb.com/archives/would_you_pay_for_a_web_app_that_delivers_the_news.php">Would you pay for news delivery</a>?  I&#8217;m not sure how to answer that one, except that I know I wouldn&#8217;t pay for the news AND the conduit.  Maybe a subscription to a number of sources, but then a quick look in the news I get in Google Reader feeds everyday suggests not.  BBC, CBC, and a couple local papers cover me pretty well.  Everything else is more germain to work, school and personal interests.</p>
<blockquote><p>For something like this to succeed it will take a good bit of effort. Internet users are used to information being free, and will balk at the idea of having to pay for it. The additional services that make this project compelling and valuable will also have to be easy for the average internet user to understand, and &#8211; let&#8217;s face it &#8211; we&#8217;re not there yet.</p></blockquote>
<p>We can get all kinds of information from the web, lots of it of the opinion or review nature.  However, if you&#8217;re talking about objective journalism, then I&#8217;m not so sure I&#8217;d pay for an app that delivers it, but I might pay for online access to the same thing I pay for a newspaper to get, particularly if the paper version disappeared.  After all, it looks like <a href="http://arstechnica.com/news.ars/post/20081228-pew-survey-shows-online-news-overtaking-print-in-the-us.html">online news is taking over print</a> in a big way and the news business models haven&#8217;t figured out how to get people to pay for it online.  Could an online, totally ad-supported news model work on a big scale?  We&#8217;re probably about to find out.  If you get past the enjoyment of flipping through a newspaper, the strain of the online version on your eyes, and the need to be at a computer, would you pay for a completely online newspaper?  Is the value proposition solid?</p>
<h3>Depending on the free cloud</h3>
<p>Suppose you do find something of value.  Let&#8217;s take a little app like Twitter.  The fact that it presently <a href="http://www.readwriteweb.com/archives/twitter_may_have_business_model.php">doesn&#8217;t really have a business model</a> isn&#8217;t stopping it from becoming useful.  Whether you&#8217;re using it as a rapid update text service, or perhaps you&#8217;re learning to follow the people who are actually tweeting things you find useful, what if it disappeared tomorrow?  The uses I&#8217;ve just described probably aren&#8217;t a big loss, but what if you were using a Twitter stream to keep critical communications happening between connected people in a group.  It might seem ridiculous to do that with a free service, but lots of cash-strapped groups and individuals likely depend on it for some pretty important communications.</p>
<p>Beyond information services, what about cloud computing?  From <a href="http://zoho.com">Zoho</a> to <a href="http://docs.google.com">Google Docs</a> to <a href="http://www.adobe.com/products/air/">Adobe Air</a> apps to <a href="http://www.readwriteweb.com/archives/live_presentations_hotmail_founders_office_suite.php">Live Presentations</a>, you can now do a lot in the cloud, that you used to need a hard drive for.  And what of the rumours of a <a href="http://www.guardian.co.uk/technology/2009/jan/25/google-drive-gdrive-internet">GDrive</a>?  On the one hand, we&#8217;re seeing unprecedented variety in ways you can work directly on the web, and the power in those applications.  These developments are great for productivity, access and democratizing information, but I&#8217;m not so sure allowing your data to be stored in the cloud is really completely to your benefit.  Google makes a lot of money from selling ads based the content of your searches, mail messages and other intellectual property.  What will they do with your data on a GDrive and how much control would you have over it?</p>
<h3>A new way of doing business</h3>
<p><a href="http://news.bbc.co.uk/2/hi/business/7811481.stm">According to the Chris Anderson from Wired</a>, it&#8217;s partly a whole new business model.  Quality applications and products, free to the end user and companies which are still making profits.  He claims the shrinking cost of tech, coupled with the continual improvements in processing power, means costs continually plummet.  </p>
<blockquote><p>Mr Anderson refers to Moore&#8217;s Law, which states that computer power doubles every 18 months. The economic reciprocal of that, he says, is &#8220;the cost of a net unit of computer power falls by 50% every 18 months, which means that everything gets cheaper by 50% or more every year and a half.&#8221;</p>
<p>&#8220;Imagine a factory of the 19th Century where the labour got cheaper, where the steel got cheaper, where coal got cheaper, the real estate got cheaper, every aspect.&#8221;</p>
<p>&#8220;That&#8217;s why there&#8217;s such an imperative to make things digital, because you go from an economy where things get more expensive, such as oil and food &#8211; the economy of atoms &#8211; to an economy where everything gets cheaper, which is the economy of bits.&#8221;</p></blockquote>
<p>However, people still need to eat.  I think a little deeper analysis is required when you claim web software companies are making money.  Some, yes.  Most, no.</p>
<p>His claims about the costs being so low, that they don&#8217;t need to make much money doesn&#8217;t hold a lot of water in the long run, methinks.</p>
<blockquote><p>&#8220;The new form of cross-subsidy is one where a tiny minority of people who really appreciate the product, really get value from it, can subsidize everybody else, because the underlying cost of doing things online, in digital, is so low that you can give away 90% of it for free.&#8221;</p></blockquote>
<p>Going back to the Facebook example, there&#8217;s no long-term stable revenue model and their costs will likely burn anything they do have in reserve.  The funding they&#8217;ve secured thus far won&#8217;t keep replenishing.  While Anderson&#8217;s arguments about cost are probably true, producers of web services and applications have to make money eventually.  Facebook can&#8217;t give away 90% of it forever, when they require thousands of servers in the next year to support their growth.</p>
<h3>Pragmatism</h3>
<p>We can expect some things to be free.  We can expect certain bricks and mortar services to continue to move online, and we undoubtedly need to get our heads around new economic models.  However, we also need to understand that, ultimately, there still will not be any completely free lunch.  Putting your critical eggs in one cloud basket just yet could be a really dangerous thing.</p>


<ul><li><a href='http://james.wanless.info/2009/07/is-cloud-computing-still-blue-sky/' rel='bookmark' title='Permanent Link: Is cloud computing still blue sky?'>Is cloud computing still blue sky?</a></li>
<li><a href='http://james.wanless.info/2007/09/social-software-concerns/' rel='bookmark' title='Permanent Link: Social software concerns'>Social software concerns</a></li>
<li><a href='http://james.wanless.info/2008/03/twits-shouldnt-twitter/' rel='bookmark' title='Permanent Link: Twits shouldn&#8217;t twitter'>Twits shouldn&#8217;t twitter</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/01/the-folly-of-free/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Could Twitter kill delicious?</title>
		<link>http://james.wanless.info/2009/01/could-twitter-kill-delicious/</link>
		<comments>http://james.wanless.info/2009/01/could-twitter-kill-delicious/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 00:13:54 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=763</guid>
		<description><![CDATA[This is something I've been pondering for a little while as I've finally settled on my own model for enjoyable and productive (if not slightly distractive) Twitter use.  I've become quite accustomed to going through my Google Reader feeds, opening the articles I'm interested in within new Firefox tabs and then, at some point in the day, reading them quickly.  If I find them particularly interesting, I bookmark them on delicious.  The only real re-purposing I do with that feed is include the last ten on my blog homepage.  I don't refer back to them too often because those things I find of extreme importance - perhaps a reference for a paper I'm writing - will go into Zotero, the research Firefox plugin ...

<ul><li><a href='http://james.wanless.info/2009/01/making-twitter-more-useful-to-myself/' rel='bookmark' title='Permanent Link: Making Twitter more useful to myself'>Making Twitter more useful to myself</a></li>
<li><a href='http://james.wanless.info/2008/03/twits-shouldnt-twitter/' rel='bookmark' title='Permanent Link: Twits shouldn&#8217;t twitter'>Twits shouldn&#8217;t twitter</a></li>
<li><a href='http://james.wanless.info/2008/09/google-chrome/' rel='bookmark' title='Permanent Link: Google Chrome'>Google Chrome</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>This is something I&#8217;ve been pondering for a little while as I&#8217;ve finally settled on my own model for enjoyable and productive (if not slightly distractive) <a href="http://twitter.com/jameswanless">Twitter</a> use.  </p>
<p>I&#8217;ve become quite accustomed to going through my Google Reader feeds, opening the articles I&#8217;m interested in within new Firefox tabs and then, at some point in the day, reading them quickly.  If I find them particularly interesting, I bookmark them on <a href="http://delicious.com/jameswanless">delicious</a>.  The only real re-purposing I do with that feed is include the last ten on <a href="http://james.wanless.info">my blog homepage</a>.  I don&#8217;t refer back to them too often because those things I find of extreme importance &#8211; perhaps a reference for a paper I&#8217;m writing &#8211; will go into <a href="http://zotero.org">Zotero</a>, the research Firefox plugin.</p>
<p>What got me thinking about Twitter and delicious is that I&#8217;d been considering taking some of the more interesting bookmarks and quickly tweeting them.  However, if I&#8217;ve got a Twitter feed, can bookmark a shortened URL with a bit of descriptive text and have roughly the same thing as a delicious bookmark feed, albeit with an entry text length restriction.  To me that&#8217;s a good thing as it forces my description to be economical (which my delicious descriptions usually are anyway).</p>
<p>I know it runs contrary to the original intent of quick text hits, but since Twitter&#8217;s been implementing search enhancements, power features and the like, what about tags?  Would one more text field for comma separated tags bulk up the interface?  If not, would this effectively have the potential to be a delicious-killer?</p>
<p>Does this make sense, or is it simply feature bloat and not worth considering?  Thoughts are welcome.</p>


<ul><li><a href='http://james.wanless.info/2009/01/making-twitter-more-useful-to-myself/' rel='bookmark' title='Permanent Link: Making Twitter more useful to myself'>Making Twitter more useful to myself</a></li>
<li><a href='http://james.wanless.info/2008/03/twits-shouldnt-twitter/' rel='bookmark' title='Permanent Link: Twits shouldn&#8217;t twitter'>Twits shouldn&#8217;t twitter</a></li>
<li><a href='http://james.wanless.info/2008/09/google-chrome/' rel='bookmark' title='Permanent Link: Google Chrome'>Google Chrome</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/01/could-twitter-kill-delicious/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Making Twitter more useful to myself</title>
		<link>http://james.wanless.info/2009/01/making-twitter-more-useful-to-myself/</link>
		<comments>http://james.wanless.info/2009/01/making-twitter-more-useful-to-myself/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 23:07:09 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=653</guid>
		<description><![CDATA[I'll admit to being a big fence-sitter with Twitter, and micro-blogging in general.  I <a href="/2008/03/twits-shouldn't-twitter/">used to see absolutely no value in it</a> whatsoever.  My knee-jerk assumption was that I simply didn't want numerous, routine updates on the minutiae of peoples' daily lives.  However, I've also begun to see the bigger picture of real-time information, if it could be useful and important.  From that perspective, I decided to give Twitter a whirl for a while, following a few dozen friends for a few months ...

<ul><li><a href='http://james.wanless.info/2008/03/twits-shouldnt-twitter/' rel='bookmark' title='Permanent Link: Twits shouldn&#8217;t twitter'>Twits shouldn&#8217;t twitter</a></li>
<li><a href='http://james.wanless.info/2009/01/could-twitter-kill-delicious/' rel='bookmark' title='Permanent Link: Could Twitter kill delicious?'>Could Twitter kill delicious?</a></li>
<li><a href='http://james.wanless.info/2008/12/grappling-with-the-reality-of-always-on/' rel='bookmark' title='Permanent Link: Grappling with the reality of always-on'>Grappling with the reality of always-on</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll admit to being a big fence-sitter with Twitter, and micro-blogging in general.  I <a href="/2008/03/twits-shouldn't-twitter/">used to see absolutely no value in it</a> whatsoever.  My knee-jerk assumption was that I simply didn&#8217;t want numerous, routine updates on the minutiae of peoples&#8217; daily lives.  However, I&#8217;ve also begun to see the bigger picture of real-time quick hits of information, if it could be useful and important <em>to me</em>.  From that perspective, I decided to give Twitter a whirl for a while, following a few dozen friends for a few months.  </p>
<p>In short order, my initial apprehensions proved pretty much spot on, and the <a href="http://www.twitip.com/">broader Twitter hype</a> is no help to me.  I was seeing all manner of updates from friends and co-workers that, while I&#8217;m sure were important to them, were utterly irrelevant to me, cluttering up my day with more information when I already suffer from overload in that area.  Not to mention, I found myself doing the very same thing &#8211; posting inane observations and wasting time I really didn&#8217;t have.  I even played around with ways to make my tweets, along with <a href="http://www.last.fm/user/jameswanless">last.fm</a> loved tunes, blog posts and <a href="http://delicious.com/jameswanless">delicious bookmarks</a> all show up on <a href="http://www.facebook.com/home.php?#/profile.php?id=709405848&#038;ref=name">my Facebook wall</a>, so it would look like I have activity there, even though I rarely use it.</p>
<p>While I think <a href="http://www.readwriteweb.com/archives/facebook_kicking_twitters_ass.php">comparisons between Facebook and Twitter</a> are pretty meaningless due to their completely different purposes, it&#8217;s fairly easy to see how micro-blogging and text services can be used to update more fully blown social networking web sites.  In fact, it&#8217;s probably learning to not only <a href="http://arstechnica.com/news.ars/post/20081230-new-social-media-tools-same-old-lesson-moderation.html">use social web tools in moderation</a>, but to use the right ones in combination with each other, which will allow you to derive some benefit while not losing your mind to social web overload.</p>
<blockquote><p>Some say Twitter and LinkedIn are the future, while others label them fads or time-sinks and question whether they are of any use whatsoever. Thing is, they may both be right.  The debate over the utility of key social media services reared its head again through some recent articles that question the amount of time we spend with them, and whether we&#8217;re getting anything in return</p></blockquote>
<p><span id="more-653"></span>I found the experiment with Twitter to be so disappointing, that I canceled my first account, but I couldn&#8217;t get over the fact that I see the potential for the service.  Then I saw an email from one of the lists I&#8217;m subscribed to, where <a href="http://darmano.typepad.com/logic_emotion/2009/01/pleas-help-us-help-daniellas-family.html">a guy raised $12,000 in a single day on Twitter (and his blog)</a> to help a family in need.  The caveat, in my mind, in this story is that this guy is pretty connected online, has over 8,000 followers on Twitter and can engage the kind of audience to help him reach his goals.  This doesn&#8217;t diminish this very positive story of the social web and giving, just that most of us probably couldn&#8217;t leverage an online community to this degree.  How about the ways in which <a href="http://thetyee.ca/Mediacheck/2008/12/31/Twitter/">news is being twittered</a> where you wouldn&#8217;t get it otherwise?  Pretty good stuff.</p>
<blockquote><p>&#8220;We saw it happening with the Chinese earthquake, where reports were coming through on Twitter before anyone else had it,&#8221; Hermida said. &#8220;We saw it during the fires in California.&#8221;</p></blockquote>
<h3>A better approach?</h3>
<p>Not only could Twitter be a valuable alert distribution channel as above, but following the right people could actually provide valuable information, given a better way of using it.  I decided the key was to add selectively, tweet even more selectively, and if the tweets I was seeing were annoying or useless, simply stop following that person.  With my newfound strategy, I&#8217;ve set up a <a href="http://twitter.com/jameswanless">new account</a> and have embedded my most recent tweet in my homepage, and about page sidebars.  I&#8217;m not going to automatically use tweets as Facebook status updates, but am going to use ping.fm to update specific kinds of messages to appropriate services.  In short, I am going to try to selectively build a useful social web for myself and avoid the mundane.  We&#8217;ll see how it goes.</p>


<ul><li><a href='http://james.wanless.info/2008/03/twits-shouldnt-twitter/' rel='bookmark' title='Permanent Link: Twits shouldn&#8217;t twitter'>Twits shouldn&#8217;t twitter</a></li>
<li><a href='http://james.wanless.info/2009/01/could-twitter-kill-delicious/' rel='bookmark' title='Permanent Link: Could Twitter kill delicious?'>Could Twitter kill delicious?</a></li>
<li><a href='http://james.wanless.info/2008/12/grappling-with-the-reality-of-always-on/' rel='bookmark' title='Permanent Link: Grappling with the reality of always-on'>Grappling with the reality of always-on</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2009/01/making-twitter-more-useful-to-myself/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Grappling with the reality of always-on</title>
		<link>http://james.wanless.info/2008/12/grappling-with-the-reality-of-always-on/</link>
		<comments>http://james.wanless.info/2008/12/grappling-with-the-reality-of-always-on/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 00:20:49 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=592</guid>
		<description><![CDATA[With every issue for which the previous generation is ill-equipped to deal, the hand wringing begins anew.  I recall only a few years ago, prior to the advent of the social media which now dominates the web, internet addiction was a serious issue in the late 90's <a href="http://scholar.google.ca/scholar?q=internet+addiction&#038;hl=en&#038;client=firefox-a&#038;rls=org.mozilla:en-US:official&#038;hs=63h&#038;um=1&#038;ie=UTF-8&#038;oi=scholart">according to some</a>.  You'd think the sky was going to fall, and <strong>that addiction</strong> was to a web without a sticky, social component.  Before that, TV was going to ruin young minds (OK, so maybe <em>that</em> has merit).  Citing primarily internet addiction, The Toronto Star recently published a piece indicating students are <a href="http://www.thestar.com/article/550023">putting Facebook before exams</a>.  Let me get this straight - college kids enjoying social distractions instead of school?  I can't believe it ....

<ul><li><a href='http://james.wanless.info/2008/08/online-constructivism/' rel='bookmark' title='Permanent Link: Online constructivism'>Online constructivism</a></li>
<li><a href='http://james.wanless.info/2008/03/twits-shouldnt-twitter/' rel='bookmark' title='Permanent Link: Twits shouldn&#8217;t twitter'>Twits shouldn&#8217;t twitter</a></li>
<li><a href='http://james.wanless.info/2009/03/avoiding-social-media-spam/' rel='bookmark' title='Permanent Link: Avoiding social media spam'>Avoiding social media spam</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>With every issue for which the previous generation is ill-equipped to deal, the hand wringing begins anew.  I recall only a few years ago, prior to the advent of the social media which now dominates the web, internet addiction was a serious issue in the late 90&#8242;s <a href="http://scholar.google.ca/scholar?q=internet+addiction&#038;hl=en&#038;client=firefox-a&#038;rls=org.mozilla:en-US:official&#038;hs=63h&#038;um=1&#038;ie=UTF-8&#038;oi=scholart">according to some</a>.  You&#8217;d think the sky was going to fall, and <strong>that addiction</strong> was to a web without a sticky, social component.  Before that, TV was going to ruin young minds (OK, so maybe <em>that</em> has merit).  Citing primarily internet addiction, The Toronto Star recently published a piece indicating students are <a href="http://www.thestar.com/article/550023">putting Facebook before exams</a>.  Let me get this straight &#8211; college kids enjoying social distractions instead of school?  I can&#8217;t believe it.  </p>
<blockquote><p>Surprisingly, Perret doesn&#8217;t suggest they actually swear off Facebook during exams, &#8220;because then they&#8217;d start worrying about what they&#8217;re missing and that would be even more distracting.  I tell them to use it as a treat after, say, each hour of studying. It&#8217;s like any addiction; you have to learn to manage it.&#8221;</p></blockquote>
<p>A distraction to be managed?  Probably.  If it&#8217;s actually an addiction, it probably can&#8217;t be managed, so categorizing it as such might be a tad alarmist.  It&#8217;s certainly true that the online options available for distraction are significant.  When you consider how services like <a href="http://www.twitter.com">Twitter</a> or <a href="http://www.ping.fm">Ping.fm</a> can work with social platforms like Facebook or niche social networks like <a href="http://last.fm">last.fm</a>, people (and I&#8217;m not only referring to post-secondary students) can lose their perspective and assume they have to spend a lot of time polishing their social presence.</p>
<p><span id="more-592"></span>Before Facebook and YouTube, there were always things standing in the way of focusing on school.  It doesn&#8217;t matter much whether you&#8217;re talking about a kegger, a weekend at Whistler, or a pub crawl, college kids have always put socializing before studies.  The fact that they&#8217;re doing it online, too, doesn&#8217;t matter.  It&#8217;s not the tools that are important &#8211; they simply facilitate what we do in other contexts already.</p>
<p>Perret&#8217;s comments above strike me as naive, and fuel the notion that schools and parents don&#8217;t really get how the digital realm is now integrated into the lives of youth (and middle-aged web geeks like me) to such a degree that there&#8217;s no separation &#8211; Facebooking (yes, it&#8217;s becoming a verb) can&#8217;t be viewed as a &#8216;treat&#8217; during breaks.  Whether connecting via campus WiFi on their laptops or using a mobile app on their cellphone, constant access to the tools of digital living is a given, and it&#8217;s simply an extension of their world &#8211; context doesn&#8217;t much matter.  </p>
<p>This generation uses and communicates with digital media constantly.  Whether it&#8217;s online discussion, status updates, social networking, listening to music, sharing photos, watching video or gaming &#8211; it can&#8217;t be stopped.  I&#8217;m not sure I completely buy the notion of the <a href="http://chronicle.com/free/v52/i07/07a03401.htm">net generation/digital native</a>, but one thing is for certain &#8211; embrace the technology and understand it, or die trying.  </p>
<h3>What&#8217;s really the issue with new media, then?</h3>
<p>If you ask me, it&#8217;s more about magnifying the human condition.  Some people have obsessive personalities and have to learn control and some don&#8217;t.  Some people will say and do stupid things and some won&#8217;t.  The only difference with living openly online now, is that employers and others upon whom your future life can partly depend, can easily search for you and find those lapses in judgment and poor choices.  I can&#8217;t tell you how many people I&#8217;ve stopped following on Twitter because I get tired of seeing 20 updates an hour, covering every inconsequential thought which crosses their mind.</p>
<p>Frankly, it magnifies idiocy.  Should we really be concerned when others <a href="http://blogs.law.harvard.edu/digitalnatives/2008/12/15/unfriending-stealth-tactics-and-sensible-responses/">unfriend us on Facebook</a>?  Maybe if we&#8217;re 15.  It&#8217;s pretty much like any other parting of ways in my mind.  If you have a reason to stop communicating with someone, you might well stop taking their phone calls and ignore their emails.  While changing your status to single or unfriending someone on Facebook is a little more of a public demonstration of feelings, it shouldn&#8217;t matter all that much.  It&#8217;s really the same thing as breaking up with someone and then talking with everyone you know about it.  Is it worth a lot of analysis?</p>
<blockquote><p>So, should you ask? It depends. If the worry is consuming you, then just asking might be the best response. But a better first response might just be to interpret positively, and give the other person the benefit of the doubt.</p></blockquote>
<p>Not bad advice really.  If you wonder why someone is displaying poor behaviour, ask them.  Groundbreaking concept, don&#8217;t you think?  Would anyone actually worry if their friends had a little spat or broke up if it weren&#8217;t publicly displayed on their Facebook status or in a blog post?  Why should we in the online context?</p>
<p>Really though, any kind of social experience on the web is simply that &#8211; social experience.  It&#8217;s a different context where slightly different etiquette or nuances of behaviour might apply, but don&#8217;t courtesy, manners and social skills count for something?  Being obsessed with your tweets or Facebook updates, or worrying about how frequently you blog is no more or less of an addiction than <em>having</em> to look at yourself in every mirror you see.  Instead of treating the internet or social networking like an addiction, if we focus on being healthy, balanced people, it won&#8217;t likely be a concern in the first place.  It may be that the environment breeds some of this behaviour, but not all of it.</p>
<h3>What, if anything, to do?</h3>
<p>While the rules of engagement in a digital world seem to be changing, what does that mean for schools, employers, parents and others?  Just how much constant access to digital social technology is changing how people learn is <a href="http://chronicle.com/free/v52/i07/07a03401.htm">the subject of much debate</a>, as some profs bristle at customizing everything heavily for today&#8217;s learner.  What you are willing to do about it, accept or change in response to it, will be framed in part by how important you think it is.  I don&#8217;t think there&#8217;s a solid answer to that when we can&#8217;t even tell how people learn in any given context in the first place.  </p>
<p><a href="http://www.connectivism.ca">Connectivism</a>, for example is an emerging learning theory that I think has some merit.  </p>
<blockquote><p>Principles of <a href="http://www.elearnspace.org/Articles/connectivism.htm">connectivism</a>:<br />
    * Learning and knowledge rests in diversity of opinions.<br />
    * Learning is a process of connecting specialized nodes or information sources.<br />
    * Learning may reside in non-human appliances.<br />
    * Capacity to know more is more critical than what is currently known<br />
    * Nurturing and maintaining connections is needed to facilitate continual learning.<br />
    * Ability to see connections between fields, ideas, and concepts is a core skill.<br />
    * Currency (accurate, up-to-date knowledge) is the intent of all connectivist learning activities.<br />
    * Decision-making is itself a learning process. Choosing what to learn and the meaning of incoming information is seen through the lens of a shifting reality. While there is a right answer now, it may be wrong tomorrow due to alterations in the information climate affecting the decision.</p></blockquote>
<p>However, I&#8217;m not sure I confine the notion to that of learning.  Since learning theory shares some commonality with other social sciences like communications theory, perhaps it&#8217;s more a concept for the broader notion of being, as opposed to only an activity like learning.  </p>
<p>If we accept the premise that people do socialize and communicate, and that the digital social tools for these activities aren&#8217;t going away any time soon, we must factor them into experiences moving forward.  Their immediacy and ubiquity is not to be feared or avoided, nor do they necessarily have to become the be-all and end-all.  We do, however, have to meet expectations by accepting the ways in which the present generation interacts, and that includes learning.</p>


<ul><li><a href='http://james.wanless.info/2008/08/online-constructivism/' rel='bookmark' title='Permanent Link: Online constructivism'>Online constructivism</a></li>
<li><a href='http://james.wanless.info/2008/03/twits-shouldnt-twitter/' rel='bookmark' title='Permanent Link: Twits shouldn&#8217;t twitter'>Twits shouldn&#8217;t twitter</a></li>
<li><a href='http://james.wanless.info/2009/03/avoiding-social-media-spam/' rel='bookmark' title='Permanent Link: Avoiding social media spam'>Avoiding social media spam</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/12/grappling-with-the-reality-of-always-on/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The worst thing that could happen to Bell now</title>
		<link>http://james.wanless.info/2008/11/the-worst-thing-that-could-happen-to-bell-now/</link>
		<comments>http://james.wanless.info/2008/11/the-worst-thing-that-could-happen-to-bell-now/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 05:08:14 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=550</guid>
		<description><![CDATA[Telus.  That's what.  In the interest of full disclosure, I'm a former Telus manager and currently have my landline phone service, internet service and a family wireless plan with them.  I'm not particularly happy with cellular costs in Canada, but Telus is generally the best of a bad lot of choices in Canada for telephony services.  My telephony service is generally good, and my customer service poor, due in large part to limited carrier selection ...

<ul><li><a href='http://james.wanless.info/2009/06/severing-telus-umbilical-cord/' rel='bookmark' title='Permanent Link: Severing the Telus umbilical cord'>Severing the Telus umbilical cord</a></li>
<li><a href='http://james.wanless.info/2008/07/digital-rights-and-access-under-assault/' rel='bookmark' title='Permanent Link: Digital rights and access under assault'>Digital rights and access under assault</a></li>
<li><a href='http://james.wanless.info/2009/05/the-worst-customer-service/' rel='bookmark' title='Permanent Link: The worst customer service I’ve ever had'>The worst customer service I’ve ever had</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>Telus.  That&#8217;s what.  In the interest of full disclosure, I&#8217;m a former Telus manager and currently have my landline phone service, internet service and a family wireless plan with them.  I&#8217;m not particularly happy with cellular costs in Canada, but Telus is generally the best of a bad lot of choices in Canada for telephony services.  My telephony service is generally good, and my customer service poor, due in large part to limited carrier selection.</p>
<p><a href="http://www.telus.com">Telus</a> was one of the suitors for <a href="http://www.bce.ca">Bell Canada Enterprises</a> back in 2007, when a different deal was struck with a consortium headed by Ontario teachers.  You can read about the deal in Bell&#8217;s own words <a href="http://www.bce.ca/en/investors/shareholderinfo/privatization/index.php">here</a>.  At the time I remember thanking my lucky stars that they went in this direction.  Frankly, I can hardly stomach the thought of even worse customer service than I currently receive from Telus.</p>
<p><a href="http://www.financialpost.com/story.html?id=998013">News</a> <a href="http://www.canada.com/ottawacitizen/news/story.html?id=6834273f-1439-440d-a69c-f545c5fb0735">stories</a> this week are indicating that the chance of the current bid for Bell going through are <a href="http://www.thestar.com/article/544326">pretty much nil</a> now.   This is a large, bloated company.  Telus is smaller, but more nimble, with a strong market capitalization and high customer retention.  This is largely due to very little competition in western Canada.  The renewed possibility of a Bell-Telus merger makes the limited competitive landscape that much smaller.  Unless you happen to be a big Telus stockholder, this possibility should scare the hell out of you.  </p>
<p>Many touch points you have with Telus when seeking customer support are in the Philippines, though the reps with the thick Filipino accents are not supposed to admit it.  Outsourcing customer service overseas is in wide practice in many industries and further &#8216;efficiencies&#8217; and &#8216;economies of scale&#8217; would only exacerbate this stuff under a merged entity.</p>
<p><span id="more-550"></span>I&#8217;m not going to regurgitate the guts of this stuff here, as you can Google all the Telus and Bell information you can handle.  A few things to keep in mind when thinking of what this would mean:</p>
<ul>
<li>even longer support call waits</li>
<li>a monolithic company in charge of virtually all landline and most wireless service in Canada</li>
<li>reduced competition resulting in even higher costs to the consumer</li>
<li>increased likelihood of continued network throttling and spectrum loss</li>
<li>product offerings based almost entirely on carrier decisions, as opposed to customer demand</li>
</ul>
<p>I&#8217;m not saying this will come to pass, but this development certainly has to have Telus management licking its chops at the possibility.  Even with the <a href="http://www.wirelessweek.com/telus-looks-to-fetch-fidos-master.aspx">red herring offer Telus made for Microcell</a> a few years ago, which forced Rogers to acquire the Fido wireless service, there&#8217;s only really ever been one competitor that forced Telus to actually, well &#8230;. compete for consumer business.  Bell.  </p>
<p>A deal like this merges things into one massive network that could literally crush Rogers and Shaw.  Let&#8217;s not even think about the pipe Bell has been building as a result of the $200 million they spent to sponsor the <a href="http://www.vancouver2010.com">Vancouver 2010 Winter Olympics</a>.</p>
<p>I&#8217;d strongly encourage everyone across Canada to watch BCE and Telus carefully.  Talk to your MP and the Harper government about just how bad this would be for consumers across Canada.</p>


<ul><li><a href='http://james.wanless.info/2009/06/severing-telus-umbilical-cord/' rel='bookmark' title='Permanent Link: Severing the Telus umbilical cord'>Severing the Telus umbilical cord</a></li>
<li><a href='http://james.wanless.info/2008/07/digital-rights-and-access-under-assault/' rel='bookmark' title='Permanent Link: Digital rights and access under assault'>Digital rights and access under assault</a></li>
<li><a href='http://james.wanless.info/2009/05/the-worst-customer-service/' rel='bookmark' title='Permanent Link: The worst customer service I’ve ever had'>The worst customer service I’ve ever had</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/11/the-worst-thing-that-could-happen-to-bell-now/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>BC politics and social software platforms</title>
		<link>http://james.wanless.info/2008/11/bc-politics-and-social-software-platforms/</link>
		<comments>http://james.wanless.info/2008/11/bc-politics-and-social-software-platforms/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 08:08:59 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[reflection]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=541</guid>
		<description><![CDATA[I read with some interest this week, that the two dominant political parties are both taking a page out of Obama's campaign book with their approach to online politicking.  The governing BC Liberals <a href="http://www.bcliberals.ca">open platform</a> is going head-to-head with the BC NDP's <a href="http://www.bcndp.ca">rapid responders</a> to engage the clicking fingers (and hopefully, minds) of British Columbia's voters, who may have severe election fatigue by the time May - and the next provincial vote - rolls around ...

<ul><li><a href='http://james.wanless.info/2007/09/social-software-concerns/' rel='bookmark' title='Permanent Link: Social software concerns'>Social software concerns</a></li>
<li><a href='http://james.wanless.info/2007/09/social-networks-for-social-research/' rel='bookmark' title='Permanent Link: Social networks for social research'>Social networks for social research</a></li>
<li><a href='http://james.wanless.info/2009/09/social-media-for-crm/' rel='bookmark' title='Permanent Link: Getting social media for CRM right'>Getting social media for CRM right</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>I read with some interest this week, that the two dominant political parties are both taking a page out of Obama&#8217;s campaign book with their approach to online politicking.  The governing BC Liberals <a href="http://www.bcliberals.ca">open platform</a> is going head-to-head with the BC NDP&#8217;s <a href="http://www.bcndp.ca">rapid responders</a> to engage the clicking fingers (and hopefully, minds) of British Columbia&#8217;s voters, who may have severe election fatigue by the time May &#8211; and the next provincial vote &#8211; rolls around.</p>
<p>On the surface, there&#8217;s very little to distinguish these two sites.  The Libs open platform promises that, by joining:</p>
<blockquote><p>you can share your thoughts and help make an important difference for our province. You can participate in surveys, web panels, social networks, digital &#8220;town hall meetings&#8221; and policy forums on all sorts of topics. You can also submit videos, photos, art and music that will showcase the beauty, strength and diversity of our province and its people and cultures. Many of those submissions will be selected for use on this website and profiled in various ways throughout the upcoming provincial election campaign.</p></blockquote>
<p>For their part, NDP&#8217;s rapid responders are:</p>
<blockquote><p>people like you who care about the issues and want to make a difference. Here’s a quick list of the top three things you can do as a Rapid Responder (scroll down the page for more options):<br />
    * Write a letter to the editor about a hot topic and help us get our message out.<br />
    * Add interactive tools and BC NDP content to your blog or Facebook profile.<br />
    * Use social networking tools like Facebook, Twitter, and Flickr to connect with other BC NDP supporters and share information with your friends.</p></blockquote>
<p><span id="more-541"></span>In other words, while both parties have built their own social platform, the NDP are leveraging existing tools more as the Libs want to frame the discussion.  It&#8217;s hardly surprising that the underlying strategy is that Gordon Campbell wants a little more control over how the content is developed, while the NDP are more about sharing what&#8217;s going on on existing sites, including your own.  The NDP are tracking issues but want you to take action and share what you&#8217;re doing.  The Libs want to define what you talk about.</p>
<h3>Libs provide a dis-engaging user experience</h3>
<p>I can&#8217;t tell you what the actual Liberal social platform is like, but signing up was pretty bad.  Right on the landing page, it asks me to provide first name, last name, email address, and to choose a user name and password (which wasn&#8217;t hidden as I entered it).  I obliged and was redirected to the same page with my user name pre-populated.  I received no email confirmation, logging in with my password did nothing and I have no idea if I have an account at all.  I&#8217;m guessing not, because clicking on the topics they&#8217;ll let you talk about reveals nothing.</p>
<p>A little advice to the Libs?  When you ask for information and presumably provision an account, confirmation pages and/or emails are crucial cues to your audience that something has happened.  Worse yet, I couldn&#8217;t find anything telling me what to expect and, as of this time, have no idea if there&#8217;s an account in the works or not.</p>
<h3>NDP don&#8217;t seem to really get it either</h3>
<p>While I like the fact that the Dippers seem to want the swell to grow organically and not carefully control it, signing up for an account was awful.  They offer the ability to do so, built on <a href="http://www.drupal.org">Drupal</a>, but I can&#8217;t tell you what that looks like, either.  It threw a bunch of SQL errors my way when I signed up.  It gave me the standard Drupal welcome message with the one-time account confirmation link, but because of (I&#8217;m guessing) the SQL error, the link wouldn&#8217;t allow me to finish signing up.  Then again, there&#8217;s some conflict in the messaging, so who knows?</p>
<p>Other than that, I can sign up to stay in touch, but most opportunities to engage seem to happen by design off-site.  I&#8217;m glad they&#8217;re giving me lots of places to go and ways to follow them, but a simple discussion forum on the site would turn rapid responders into interactive responders (which I&#8217;m hoping the Drupal instance provides).  It has to be about more than email and postal mailing lists, if you&#8217;re really going to leverage social media.  It&#8217;s called <em>social</em> for a reason. </p>
<h3>Do something with your social capital</h3>
<p>Excuse me if I don&#8217;t believe Gordon Campbell, when he says, &quot;This is a chance to have your say and help shape the policies that Premier Campbell and your BC Liberal Team will put to the people as part of their election platform on May 12, 2009.&quot;  Campbell has shown a flagrant disregard for any opinion but his own in his tightly controlled approach to governing.  Again, though, I have no idea what the tools look like or how they are possibly being used to develop policy going forward.</p>
<p>In the recent US election, Obama did a marvellous job of engaging his base through a solid online strategy.  In his promise of change, he suggested the status quo will no longer do.  However, as <a href="http://www.straight.com/article-172214/barack-obama-change-you-cant-believe">Charlie Smith of the Georgia Straight says</a>, it&#8217;s still about keeping your promises, regardless of how cutting edge you try to be when you make them.  </p>
<p>Can we trust Carole James or Gordon Campbell to develop policy in an open and accessible manner and then do what they say they will?</p>


<ul><li><a href='http://james.wanless.info/2007/09/social-software-concerns/' rel='bookmark' title='Permanent Link: Social software concerns'>Social software concerns</a></li>
<li><a href='http://james.wanless.info/2007/09/social-networks-for-social-research/' rel='bookmark' title='Permanent Link: Social networks for social research'>Social networks for social research</a></li>
<li><a href='http://james.wanless.info/2009/09/social-media-for-crm/' rel='bookmark' title='Permanent Link: Getting social media for CRM right'>Getting social media for CRM right</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/11/bc-politics-and-social-software-platforms/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Understanding your audience and the power of social media</title>
		<link>http://james.wanless.info/2008/11/understanding-your-audience-and-the-power-of-social-media-2/</link>
		<comments>http://james.wanless.info/2008/11/understanding-your-audience-and-the-power-of-social-media-2/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 02:04:00 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=520</guid>
		<description><![CDATA[Since I&#8217;m not the target audience, I&#8217;m not going to wade into whether I find the ad below offensive or not. The interesting thing here in my mind is twofold: the makers of Motrin clearly didn&#8217;t do enough of the right kind of testing for proof of concept they didn&#8217;t understand how to do a [...]

<ul><li><a href='http://james.wanless.info/2009/03/avoiding-social-media-spam/' rel='bookmark' title='Permanent Link: Avoiding social media spam'>Avoiding social media spam</a></li>
<li><a href='http://james.wanless.info/2009/09/social-media-for-crm/' rel='bookmark' title='Permanent Link: Getting social media for CRM right'>Getting social media for CRM right</a></li>
<li><a href='http://james.wanless.info/2008/07/how-important-is-social-media/' rel='bookmark' title='Permanent Link: How important is social media?'>How important is social media?</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>Since I&#8217;m not the target audience, I&#8217;m not going to wade into whether I find the ad below offensive or not.  The interesting thing <a href="http://www.skimbacolifestyle.com/2008/11/motrin-giving-moms-headache.html">here</a> in my mind is twofold:</p>
<ul>
<li>the makers of Motrin clearly didn&#8217;t do enough of the right kind of testing for proof of concept</li>
<li>they didn&#8217;t understand how to do a proper mea culpa</li>
</ul>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/BmykFKjNpdY&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/BmykFKjNpdY&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>I would definitely say, though, that it&#8217;s not a stretch to see how the messaging in this piece could offend some people.  It has a way of speaking down to moms, specially when it insinuates that some would carry their baby this way so they&#8217;d look like an official mommy.</p>
<p>Wonder if they&#8217;ve got Motrin tablets big enough for the headache they&#8217;ve given themselves with this one.</p>
<p>The original story with video can be found at <a href="http://www.readwriteweb.com/archives/motrin_bows_to_social_media_pr.php">ReadWriteWeb</a>.</p>


<ul><li><a href='http://james.wanless.info/2009/03/avoiding-social-media-spam/' rel='bookmark' title='Permanent Link: Avoiding social media spam'>Avoiding social media spam</a></li>
<li><a href='http://james.wanless.info/2009/09/social-media-for-crm/' rel='bookmark' title='Permanent Link: Getting social media for CRM right'>Getting social media for CRM right</a></li>
<li><a href='http://james.wanless.info/2008/07/how-important-is-social-media/' rel='bookmark' title='Permanent Link: How important is social media?'>How important is social media?</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/11/understanding-your-audience-and-the-power-of-social-media-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A vision of students today</title>
		<link>http://james.wanless.info/2008/10/a-vision-of-students-today/</link>
		<comments>http://james.wanless.info/2008/10/a-vision-of-students-today/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 05:24:50 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=501</guid>
		<description><![CDATA[This isn&#8217;t new and doesn&#8217;t pretend to answer anything, but it&#8217;s got a solid, haunting quality and certainly gives you something to think about. Does information overload scare students today? Are too many things competing for their attention? Will their education deliver what they expect? I know what I&#8217;m doing right now can be ovewhelming [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>This isn&#8217;t new and doesn&#8217;t pretend to answer anything, but it&#8217;s got a solid, haunting quality and certainly gives you something to think about.  Does information overload scare students today?  Are too many things competing for their attention?  Will their education deliver what they expect?</p>
<p>I know what I&#8217;m doing right now can be ovewhelming at times.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/dGCJ46vyR9o&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/dGCJ46vyR9o&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/10/a-vision-of-students-today/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Writing collaboratively with Skype chat and Google Docs</title>
		<link>http://james.wanless.info/2008/10/writing-collaboratively-with-skype-chat-and-google-docs/</link>
		<comments>http://james.wanless.info/2008/10/writing-collaboratively-with-skype-chat-and-google-docs/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 20:41:15 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=472</guid>
		<description><![CDATA[I&#8217;d imagine most people find the benefit of Skype to be that of free long distance calls. As long as the person you&#8217;re calling is also on Skype you can save airtime or long distance charges. That&#8217;s great, but given I do very little long distance calling and use my cell mostly for family chatter, [...]

<ul><li><a href='http://james.wanless.info/2008/09/google-chrome/' rel='bookmark' title='Permanent Link: Google Chrome'>Google Chrome</a></li>
<li><a href='http://james.wanless.info/2009/07/is-cloud-computing-still-blue-sky/' rel='bookmark' title='Permanent Link: Is cloud computing still blue sky?'>Is cloud computing still blue sky?</a></li>
<li><a href='http://james.wanless.info/2008/11/being-too-busy-can-help-you-focus/' rel='bookmark' title='Permanent Link: Being too busy can help you focus'>Being too busy can help you focus</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d imagine most people find the benefit of <a href="http://www.skype.com">Skype</a> to be that of free long distance calls.  As long as the person you&#8217;re calling is also on Skype you can save airtime or long distance charges.  That&#8217;s great, but given I do very little long distance calling and use my cell mostly for family chatter, Skype has not typically been my tool of choice to replace the telephone.  I&#8217;d played with <a href="http://docs.google.com/">Google Docs</a> a bit for fun, but with no real goals in mind.  I&#8217;ve always got my MacBook Pro with me so I don&#8217;t often need multi-computer access to the same files.  Enter the coursework for my MA.  We are doing our work in small groups of four or five and, all groups are comprised of geographically dispersed folks.  </p>
<h3>Skype</h3>
<p>While finding times for everyone to meet online is a challenge, I find using Skype chat to reach decisions to be wonderful.  It gives you the ability to do public group chats on-the-fly or to set up a more secure public chat by allowing read/write permission by invite only.  Promoting the room is done via link which connects them to the chat room instantly.  Transcripts are always available as HTML documents written to your hard drive and are cumulative from the time you started the chat &#8211; ideal when you need a record going back a couple weeks over multiple sessions.  You can send files peer-to-peer and add contacts to the chat at any time, while calling an individual for a quick conversation to clarify something is only a click away.</p>
<h3>Google Docs</h3>
<p>We can easily carry these discussions over to Google Docs, in deciding who needs to do what by when.  I&#8217;ve set up one file for us to collaboratively write to and shared it with everyone in the group as collaborators.  Formatting is easy and different collaborators can simply colour-code their highlighted changes for one editor to compile, with as many rounds of edits as necessary.  Or you could just let everyone write whatever they want if you&#8217;re brave &#8211; personally, I like safer ground rules.  </p>
<p>If anyone overwrites groupwork by accident, the versioning ensures you can revert to the last good one easily.  As an extra precaution I&#8217;ve suggested everyone back up what they do as an export.  Once this is ready for final submission I can easily share it via a Skype chat or simply have everyone review it online quickly.  If I could change a couple things (and maybe I&#8217;m just missing a feature or two) it would be that of a live change tracker in the interface and that the formatting would be better preserved if you export to Word.</p>
<h3>Other options less enjoyed</h3>
<p>There are many online collaboration tools, but they tend to have problems inherent.  And, truthfully, unless you need to share a desktop presentation or whiteboard something, many of the tools won&#8217;t actually be of much use.</p>
<p>Elluminate is a cool e-learning and business collaborative suite, but unless you&#8217;re up to paying <a href="http://www.elluminate.com/v-series/">substantial licensing fees</a>, the free version allows only three participants in a limited-feature collaborative environment.  The modules look cool, but the only way you&#8217;ll see them is a sales demo.</p>
<p><a href="http://yugma.com/">Yugma</a> is another tool which, while providing a full trial for 15 days after which you&#8217;ve got a pretty bare-bones environment, I&#8217;ve found to be buggy.  The feature set looks good but, in trying to use it earlier in the summer for my coursework and just recently for a contractor to demo some wireframes, it has simply hung when I&#8217;ve tried it.</p>
<p><a href="http://zoho.com">Zoho</a> tools bills itself as a suite to compete with Google Docs and more.  A brief overview of their services from their landing reveals a very complete suite and what I&#8217;ve read would point to Zoho as a solid choice.  However, we needed something without user limits or poor feature sets.  You still need to pay to get the full meal deal and, in this case, that wasn&#8217;t going to work. I&#8217;d be interested in looking at it further though, because if all the tools are truly integrated, there would be a very compelling case to use Zoho.</p>
<p><a href="http://www.twiddla.com/">Twiddla</a> was another option that, had I been looking more at collaborative whiteboarding and drawing, I would be interested in investigating further.  It didn&#8217;t meet my needs for this instance, but I found the user experience good.  Simple, online and easy to use.  I&#8217;m always big on something that doesn&#8217;t require the download of a desktop app, as the experience between users on different OS&#8217;s will often reflect which one the developers started with.</p>
<h3>Final thoughts</h3>
<p>I wish Google Talk was more like Skype.  It wouldn&#8217;t even have to offer IP telephony.  If you use Gmail, then you can search Google Talk web chat transcripts in your inbox.  That&#8217;s not the same as a self-contained chat tool that gives you a full feature set including full transcripts.  Then again, the best tools are ones that do one thing really well.  Talking and chatting are great with Skype and collaborative writing and publishing to a number of formats are great with Google Docs.  You can make them work together pretty painlessly and that&#8217;s probably the best way to go.</p>


<ul><li><a href='http://james.wanless.info/2008/09/google-chrome/' rel='bookmark' title='Permanent Link: Google Chrome'>Google Chrome</a></li>
<li><a href='http://james.wanless.info/2009/07/is-cloud-computing-still-blue-sky/' rel='bookmark' title='Permanent Link: Is cloud computing still blue sky?'>Is cloud computing still blue sky?</a></li>
<li><a href='http://james.wanless.info/2008/11/being-too-busy-can-help-you-focus/' rel='bookmark' title='Permanent Link: Being too busy can help you focus'>Being too busy can help you focus</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/10/writing-collaboratively-with-skype-chat-and-google-docs/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Google Chrome</title>
		<link>http://james.wanless.info/2008/09/google-chrome/</link>
		<comments>http://james.wanless.info/2008/09/google-chrome/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 01:21:53 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=407</guid>
		<description><![CDATA[The new browser offering from Google was just launched today and its name is Chrome. Well, not so much a browser as a browser-emulated OS-type thingey. I won&#8217;t link to all the places it&#8217;s popping up on the web, since Google has. I haven&#8217;t used it much, but I will offer a few very small [...]

<ul><li><a href='http://james.wanless.info/2008/10/writing-collaboratively-with-skype-chat-and-google-docs/' rel='bookmark' title='Permanent Link: Writing collaboratively with Skype chat and Google Docs'>Writing collaboratively with Skype chat and Google Docs</a></li>
<li><a href='http://james.wanless.info/2009/01/could-twitter-kill-delicious/' rel='bookmark' title='Permanent Link: Could Twitter kill delicious?'>Could Twitter kill delicious?</a></li>
<li><a href='http://james.wanless.info/2009/07/is-cloud-computing-still-blue-sky/' rel='bookmark' title='Permanent Link: Is cloud computing still blue sky?'>Is cloud computing still blue sky?</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>The new browser offering from Google was just launched today and its name is <a href="http://www.google.com/chrome/?utm_campaign=en&#038;utm_source=en-blog-ogb&#038;utm_medium=blog&#038;brand=CHMP">Chrome</a>.  Well, not so much a browser as a browser-emulated OS-type thingey.  I won&#8217;t link to all the places it&#8217;s popping up on the web, since <a href="http://googleblog.blogspot.com/2008/09/google-chrome-now-live.html">Google has</a>.  I haven&#8217;t used it much, but I will offer a few very small opinions to start.</p>
<p>It&#8217;s hard to imagine switching from Firefox since I have so many plug-ins installed, helping it make me more productive.  Having said that, Chrome is smokin&#8217; fast.  Particularly, once you&#8217;ve loaded a site, Google gears caches the page and speeds up subsequent loads.  I don&#8217;t use IE, but even compared to Firefox and Safari, everything loads very quickly.  As I write this post from Chrome, it&#8217;s got the nice form textarea enhancement of Safari that allows me to resize my writing space on the fly &#8211; something Firefox has yet to enable.</p>
<p>The minimalist design really jazzes me, too.  You might be able to tell from this journal &#8230; I <em>love</em> whitespace.  The tabs load right up top with the address bar and bookmark toolbar just below, something Google calls the Omni Box.  Beyond that, it&#8217;s all browsing space.  A small (presumably) AJAX indicator appears at the bottom showing you URIs as they load or link URLs, but that&#8217;s it.  I&#8217;ve always found the lack of status bar in Safari unnerving, so Chrome seems to hit the sweetspot of working space maximization, with enough cues to help users understand what&#8217;s going on.</p>
<p><span id="more-407"></span>User tools are compacted into two menus at top right, while page loading controls (back, forward, reload) appear at top left to each side of the address bar.  The layering of tabs, address bar and bookmark toolbar just feels good.  Other than a user-specified homepage, the default loads your most recent history as boxes (in kind of a storyboard layout), with a full history list available with one click.</p>
<p>Downloading and privacy look pretty good, too.  It allows you to drag downloads to the bottom of the page and decide what to do.  No download directories here.  Plus, an incognito window will help you hide information about &#8230;. that gift for your loved one <img src='http://james.wanless.info/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I have yet to explore some of the obvious integration with various Google tools, but as an avid gmail, calendar and reader user, I&#8217;m sure there will be many benefits.  For a more solid rundown of features, ReadWriteWeb is doing some <a href="http://www.readwriteweb.com/archives/chrome_test_it_with_us_live.php">crowdtesting of the app</a> and I plan to take a better read-through shortly.</p>
<p>The big, and I mean big, drawback so far?  I can only use this at work, which I&#8217;m not likely to much, because it&#8217;s only available for Windows at this point.  I hope it&#8217;s only a matter of time until I can test it at home in my preferred Mac environment.</p>
<p>I&#8217;m sure I&#8217;ll discover more when I can actually use it where I want.</p>


<ul><li><a href='http://james.wanless.info/2008/10/writing-collaboratively-with-skype-chat-and-google-docs/' rel='bookmark' title='Permanent Link: Writing collaboratively with Skype chat and Google Docs'>Writing collaboratively with Skype chat and Google Docs</a></li>
<li><a href='http://james.wanless.info/2009/01/could-twitter-kill-delicious/' rel='bookmark' title='Permanent Link: Could Twitter kill delicious?'>Could Twitter kill delicious?</a></li>
<li><a href='http://james.wanless.info/2009/07/is-cloud-computing-still-blue-sky/' rel='bookmark' title='Permanent Link: Is cloud computing still blue sky?'>Is cloud computing still blue sky?</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/09/google-chrome/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Facebook in real life</title>
		<link>http://james.wanless.info/2008/08/facebook-in-real-life/</link>
		<comments>http://james.wanless.info/2008/08/facebook-in-real-life/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 17:12:29 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[reflection]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=402</guid>
		<description><![CDATA[From the Center for Internet and Society at Stanford. Funny stuff. The real reason for C-61

<ul><li><a href='http://james.wanless.info/2008/06/the-real-reason-for-c-61/' rel='bookmark' title='Permanent Link: The real reason for C-61'>The real reason for C-61</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>From the <a href="http://cyberlaw.stanford.edu/node/5845">Center for Internet and Society</a> at Stanford.  Funny stuff.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/nrlSkU0TFLs&#038;color1=11645361&#038;color2=13619151&#038;fs=1"></param><param name="wmode" value="transparent"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/nrlSkU0TFLs&#038;color1=11645361&#038;color2=13619151&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" wmode="transparent" width="425" height="344"></embed></object></p>


<ul><li><a href='http://james.wanless.info/2008/06/the-real-reason-for-c-61/' rel='bookmark' title='Permanent Link: The real reason for C-61'>The real reason for C-61</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/08/facebook-in-real-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Will post-sec embrace the open social?</title>
		<link>http://james.wanless.info/2008/08/will-post-sec-embrace-the-open-social/</link>
		<comments>http://james.wanless.info/2008/08/will-post-sec-embrace-the-open-social/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 05:02:34 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=300</guid>
		<description><![CDATA[The answer to this question seems to be largely dependent on what you read, and it probably also depends on what you want to use open, social software for. Based on some of the mailing lists and discussion forums I read, and post-sec sites I visit, social media concepts (whether built on open source or [...]

<ul><li><a href='http://james.wanless.info/2008/10/serious-barriers-to-going-open/' rel='bookmark' title='Permanent Link: Serious barriers to going open'>Serious barriers to going open</a></li>
<li><a href='http://james.wanless.info/2008/06/online-learning-lacks-personal-touch/' rel='bookmark' title='Permanent Link: Online learning lacks personal touch'>Online learning lacks personal touch</a></li>
<li><a href='http://james.wanless.info/2008/08/online-constructivism/' rel='bookmark' title='Permanent Link: Online constructivism'>Online constructivism</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>The answer to this question seems to be largely dependent on what you read, and it probably also depends on what you want to use open, social software for.  Based on some of the mailing lists and discussion forums I read, and post-sec sites I visit, social media concepts (whether built on open source or not) are far from well-articulated in most cases.</p>
<h3>Content strategy and content management systems</h3>
<p>Feeds are becoming more common, but are not necessarily being implemented in a way that allows site visitors to have <em>real</em> choice as to what updates they can receive.  The public web site is the prime marketing channel of any institution, and on any given post-secondary web site you are liable to see the gamut.  Poorly designed and architected, hand-coded static pages, to full-blown database-driven, <acronym title="eXtensible Markup Language">XML</acronym>-gasmic experiences, with a feed associated with everything, regardless of whether the content is appropriate to supply a feed for, or not.</p>
<p>With regard to marketing content, determining what to feature, how to elicit subscriptions, where you might want user-generated content like comments, how you engage prospective students in a public dialogue and whether you&#8217;re prepared to open up things like course ratings to public discourse are all questions institutions are grappling with in presenting a more user-friendly, socially-constructed face to the world.</p>
<p><span id="more-300"></span>As the marketing side of post-secondary is where I spend the bulk of my working time at the moment, it is not only the issue of what to publish, how it is structured and how those decisions are made that can be challenging.  The <acronym title="Content Management System">CMS</acronym> conundrum is perhaps moreso, always a topic of some discussion on university web development lists.  Everyone wants to know what each other uses, but often the one asking the questions cannot get his/her powers that be to make the leap and use open source.  Enterprise support and architecture are understandably big concerns, but with the proper mindset about how they work and bringing support in-house, the question might move from <em>if</em> the move should be made to <em>what flavour</em> it should be made to.  The idea of building functionality to suit as it is needed, as opposed to waiting for a vendor to decide to implement something, would seem to be a no-brainer.</p>
<h3>What about curriculum and textbooks?</h3>
<p>The main discussion I am starting to see is more around opening up learning to broad audiences.  Learning commons or open learning models are not new, but have hardly become common by any stretch.</p>
<p>I know some people probably feel <em>&#8220;the tide is turning, there is no way to stop a moving freight train and it is only a matter of time&#8221;</em> (How is that for mixed metaphors?), but there seems to be a lot of push and pull with the issue of open sourcing texts, let alone constructing course curriculum collaboratively.  At the one end you may have younger or more digitally savvy faculty members balking at the high price of textbooks and wanting to remove the cost barrier in providing access to them for free online.  However, the other end has big publishing interests who want no part of it.  Yearly revisions for the cost of a new book seems to be their lifeblood.</p>
<p>Seems to me that opening up the whole process of accessing reading materials and collaborating on course elements brings the notion of constructivism to life:</p>
<blockquote><p><a href="http://arstechnica.com/news.ars/post/20080820-battling-pricy-textbooks-with-open-source-texts-social-media.html">Christopher Rice, a lecturer in political science at the University of Kentucky, is one such trendsetter.  In 2006, Rice experimented with a wiki for his Introduction to Political Science class. In addition to online articles, the wiki links to books at Project Gutenberg for older texts. This kept the students&#8217; reading list to below $40, an important consideration when tuition seems to go up every year. Students could also collaborate, posting class notes and helping to develop the course.</a></p></blockquote>
<p>With regard to publishing royalties, is there a middle ground that is not getting explored much (or maybe it is and I am just woefully unaware)?  Often people have a hard time reading solely online and need a hard copy.  What about multi-level and multi-user licensing?  A free non-printable, digital license akin to <a href="http://books.google.com/">Google Books</a> format, a slightly more expensive <acronym title="Portable Document Format">PDF</acronym> version that you can print yourself, or an on-demand full cost printed and bound version from the publisher.  If a publisher wanted to ensure they were not giving away the farm through free digital-only licenses, they could implement a very reasonable online-only class-wide license.  Not quite free, but not what we have now, and that is a step in the right direction.</p>
<p>The Ars Technica article above also touches on tenure and the disincentive of royalty-free publishing.  I do not profess to understand that enough to offer an opinion or solution, but it seems to me that if an academic world-view began to emerge that valued open access to post-secondary education, publishing models would develop that would adequately deal with the tenure and royalty issues.</p>
<p><a href="http://blog.genyes.com/index.php/2008/08/18/why-curriculum-wikis-wont-work/">Some argue that open curriculum won&#8217;t work</a>, that is until you read through the blog post and comments, including the author&#8217;s own.  The author wrote with a blanket statement, something which needed to be qualified &#8230;. badly.  The basic concept of open access to, and collaborative development of, curriculum <a href="http://scholar.google.com/scholar?hl=en&#038;lr=&#038;q=collaborative+development+of+online+curriculum&#038;btnG=Search">can work just fine</a>, but not if there is no oversight, guidance or editorial hand moving it forward.  All one need do is look at the concept of <a href="http://www.cbc.ca/news/">comments on news stories</a> to see that, while it may indicate popularity or interest, unguided opinion on a factual piece of copy seems to have poor results (maybe it is just me).  Similarly, building curriculum iteratively without experience guiding it would likely not make it worth learning.</p>
<h3>What about learning platforms?</h3>
<p>I would give my own present experience with learning platforms a mixed review.  While a tool like <a href="http://www.moodle.org">Moodle</a> puts a powerful <acronym title="Learning Management System">LMS</acronym> (or <acronym title="Personal Learning Environment">PLE</acronym> depending on your definition) at your finger tips without exorbitant licensing costs, making the system really sing requires some work.  The implementations I have seen have not really explored the user experience side enough to ensure task flow, navigation, contextual content, design contrast or user features are really structured to make the system as user-friendly as it should be, let alone appropriate use of rich media (as opposed to overwhelming use of Flash, ensuring poor accessibility among other things).</p>
<p>Distance learning is pretty well established.  With the emergence of the web, in the past 15 years, online platforms like <a href="http://www.blackboard.com">WebCT, Blackboard</a> and, more recently, <a href="http://www.desire2learn.com/">Desire2Learn</a> and Moodle have replaced older distance methodologies like correspondence.  I do not want to comment on the value of distance learning because so much of the success potential is derived from the user experience design effort, type of curriculum, credential and personal learning style.  It is a bit of a generalization to say whether it works or not.  </p>
<p>Attrition rates of distance-only learning are <a href="http://scholar.google.com/scholar?q=online+distance+education+attrition&#038;hl=en&#038;lr=&#038;btnG=Search">pretty well documented</a>, but would likely be improved by adjusting the delivery method.  As opposed to passive replication of lecture materials, a well designed online learning environment can go a long way to improving distance outcomes.  Royal Roads, for example, blends short residencies with distance-based cohorts and has graduation rates well in the 90&#8242;s.  </p>
<h3>In conclusion</h3>
<p>Regardless of whether an institute embraces or eschews open source software, developing strategies and plans for open access and collaborative methodologies would seem to be crucial.  Students are demanding convenience and, often, self-directed education where appropriate.  Developing an open, social strategy requires careful deliberation of, not only, what an institute wants to do, but the <em>appropriate</em> tools and approaches that will get them there.  User experience design and considerations with regard to development of learning and marketing platforms is probably key in this regard.  As well, pushing for more progressive text licensing models and experimenting with more student-faculty discourse on collaborative curriculum development will strengthen the student connection with the institution and develop a stronger sense of ownership of their education.</p>


<ul><li><a href='http://james.wanless.info/2008/10/serious-barriers-to-going-open/' rel='bookmark' title='Permanent Link: Serious barriers to going open'>Serious barriers to going open</a></li>
<li><a href='http://james.wanless.info/2008/06/online-learning-lacks-personal-touch/' rel='bookmark' title='Permanent Link: Online learning lacks personal touch'>Online learning lacks personal touch</a></li>
<li><a href='http://james.wanless.info/2008/08/online-constructivism/' rel='bookmark' title='Permanent Link: Online constructivism'>Online constructivism</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/08/will-post-sec-embrace-the-open-social/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>The web as a research tool</title>
		<link>http://james.wanless.info/2008/08/web-as-research-tool/</link>
		<comments>http://james.wanless.info/2008/08/web-as-research-tool/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 21:52:58 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=249</guid>
		<description><![CDATA[The past couple weeks have been a real education when it comes to using the web for academic research. I am at different places on each of what I&#8217;ve identified (so far) as three primary knowledge streams of the MA I&#8217;m undertaking, research being the one I&#8217;ve got a middling amount of comfort with. I [...]

<ul><li><a href='http://james.wanless.info/2008/06/the-future-of-the-web/' rel='bookmark' title='Permanent Link: The future of the web?'>The future of the web?</a></li>
<li><a href='http://james.wanless.info/2007/09/social-networks-for-social-research/' rel='bookmark' title='Permanent Link: Social networks for social research'>Social networks for social research</a></li>
<li><a href='http://james.wanless.info/2009/12/getting-to-the-thesis-research/' rel='bookmark' title='Permanent Link: Getting to the thesis research'>Getting to the thesis research</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>The past couple weeks have been a real education when it comes to using the web for academic research.  I am at different places on each of what I&#8217;ve identified (so far) as three primary knowledge streams of the MA I&#8217;m undertaking, research being the one I&#8217;ve got a middling amount of comfort with.  </p>
<p>I do some as part of my work but need much stronger rigour to do it well, and I&#8217;m a neophyte on the learning theory part.  I&#8217;ve used the web daily in work and personal pursuits for well over a decade and tend to just take it for granted.  I wonder if anyone else in my cohort places themselves in different comfort zones for these knowledge streams or if they even look at it that way?</p>
<p>I always wondered how citations and references were kept straight, particularly when you read a thesis with dozens upon dozens.  What&#8217;s been a real eye opener is the availability of academic papers, journals and other research through online databases.  Mind you, until you have access to them via your school library, they remain largely unknown or unavailable.</p>
<p>I know I will only have access to the academic databases through RRU for the duration of my MA, but I have a notion that I may be able to continue to access them as a staff member through <a href="http://www.bcit.ca">BCIT</a>&#8216;s online library interface.  It&#8217;s something I intend to check out fairly soon.  I&#8217;m hoping to move to more research based work down the road, so I&#8217;m certainly hoping.</p>
<p>In terms of actually keeping references straight for citation purposes, I&#8217;ve played a little with <a href="http://www.refworks.com">Refworks</a> to this point and have to say that it&#8217;s a marvel &#8211; another tool that you get access to as a Masters student.  It&#8217;s like Delicious on steroids, specific to academic reference and citation.  I&#8217;ve been aware of another research bookmarking tool, called <a href="http://www.connotea.org">Connotea</a>, but brief looks have left me wondering about its value.  It&#8217;s targeted at scientific researchers, but I&#8217;m not sure of any citation formatting or similar functionality.  I could be wrong, as I just haven&#8217;t looked at it much.</p>
<p>Everything is saved for later use and you can spit out references in a variety of academic formatting, suitable for whatever you&#8217;re writing at the time.  I&#8217;m already hooked and, whether I decide to go the project or thesis route, I&#8217;m sure it will become pretty much my favourite online research tool.  These discoveries are nothing short of serendipitous for me.  </p>


<ul><li><a href='http://james.wanless.info/2008/06/the-future-of-the-web/' rel='bookmark' title='Permanent Link: The future of the web?'>The future of the web?</a></li>
<li><a href='http://james.wanless.info/2007/09/social-networks-for-social-research/' rel='bookmark' title='Permanent Link: Social networks for social research'>Social networks for social research</a></li>
<li><a href='http://james.wanless.info/2009/12/getting-to-the-thesis-research/' rel='bookmark' title='Permanent Link: Getting to the thesis research'>Getting to the thesis research</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/08/web-as-research-tool/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How important is social media?</title>
		<link>http://james.wanless.info/2008/07/how-important-is-social-media/</link>
		<comments>http://james.wanless.info/2008/07/how-important-is-social-media/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 22:17:59 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=197</guid>
		<description><![CDATA[(Pretty f**king important as it turns out &#8230;) While you have to get past the swears, the slideshow below from ParisLemon came to my attention via the Technology Liberation Front. Very good stuff. &#124; View &#124; Upload your own The scary side of social media Avoiding social media spam Getting social media for CRM right

<ul><li><a href='http://james.wanless.info/2008/04/the-scary-side-of-social-media/' rel='bookmark' title='Permanent Link: The scary side of social media'>The scary side of social media</a></li>
<li><a href='http://james.wanless.info/2009/03/avoiding-social-media-spam/' rel='bookmark' title='Permanent Link: Avoiding social media spam'>Avoiding social media spam</a></li>
<li><a href='http://james.wanless.info/2009/09/social-media-for-crm/' rel='bookmark' title='Permanent Link: Getting social media for CRM right'>Getting social media for CRM right</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>(Pretty f**king important as it turns out &#8230;)</p>
<p>While you have to get past the swears, the slideshow below from <a href="http://www.parislemon.com/2008/07/social-media-is-stupid-buzzword-but-its.html">ParisLemon</a> came to my attention via the <a href="http://techliberation.com/2008/07/08/social-media-slide-show/">Technology Liberation Front</a>.   Very good stuff.</p>
<div style="width:425px;text-align:left" id="__ss_496437"><object style="margin:0px" height="355" width="425"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=whatthefissocialmedia070208-1215026815612657-8"/><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=whatthefissocialmedia070208-1215026815612657-8" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;"><a href="http://www.slideshare.net/?src=embed"><img src="http://static.slideshare.net/swf/logo_embd.png" style="border:0px none;margin-bottom:-5px" alt="SlideShare"/></a> | <a href="http://www.slideshare.net/mzkagan/what-the-fk-social-media" title="View this slideshow on SlideShare">View</a> | <a href="http://www.slideshare.net/upload">Upload your own</a></div>
</div>
<p><img style="visibility:hidden;width:0px;height:0px;" border=0 width=0 height=0 src="http://counters.gigya.com/wildfire/CIMP/bT*xJmx*PTEyMTU1NTUxOTU4NDMmcHQ9MTIxNTU1NTIxMTk1MyZwPTEwMTkxJmQ9Jm49Jmc9Mg==.jpg" /></p>


<ul><li><a href='http://james.wanless.info/2008/04/the-scary-side-of-social-media/' rel='bookmark' title='Permanent Link: The scary side of social media'>The scary side of social media</a></li>
<li><a href='http://james.wanless.info/2009/03/avoiding-social-media-spam/' rel='bookmark' title='Permanent Link: Avoiding social media spam'>Avoiding social media spam</a></li>
<li><a href='http://james.wanless.info/2009/09/social-media-for-crm/' rel='bookmark' title='Permanent Link: Getting social media for CRM right'>Getting social media for CRM right</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/07/how-important-is-social-media/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Does tech make us stupid, or just rude?</title>
		<link>http://james.wanless.info/2008/06/does-tech-make-us-stupid-or-just-rude/</link>
		<comments>http://james.wanless.info/2008/06/does-tech-make-us-stupid-or-just-rude/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 02:13:56 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=191</guid>
		<description><![CDATA[OK, so maybe not stupid, but apparently lazy.  At least according to <a href="http://www.theatlantic.com/doc/200807/google">The Atlantic</a>'s Nicholas Carr it does.  Based on the length of the piece, his writing chops are certainly still intact ...

<ul><li><a href='http://james.wanless.info/2008/10/im-a-citation-weakling/' rel='bookmark' title='Permanent Link: I’m a citation weakling'>I’m a citation weakling</a></li>
<li><a href='http://james.wanless.info/2009/01/when-delivery-method-and-subject-matter-are-the-same/' rel='bookmark' title='Permanent Link: When delivery method and subject matter are the same'>When delivery method and subject matter are the same</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>OK, so maybe not stupid, but apparently lazy.  At least according to <a href="http://www.theatlantic.com/doc/200807/google">The Atlantic</a>&#8216;s Nicholas Carr it does.  Based on the length of the piece, his writing chops are certainly still intact.  </p>
<blockquote><p>Now my concentration often starts to drift after two or three pages. I get fidgety, lose the thread, begin looking for something else to do &#8230;. I think I know whatâ€™s going on. For more than a decade now, Iâ€™ve been spending a lot of time online, searching and surfing and sometimes adding to the great databases of the Internet.</p></blockquote>
<p>Carr seems to think the web&#8217;s delivery format, and the sheer volume of information he is exposed to, is making it harder for him to concentrate on longer, more involved reading.  The fact that so much information, including that used for research, is often just a click or two away and digestible an excerpt at a time, says Carr, is making us impatient.  He says that his friends agree:</p>
<blockquote><p>I&#8217;m not the only one. When I mention my troubles with reading to friends and acquaintancesâ€”literary types, most of themâ€”many say theyâ€™re having similar experiences. The more they use the Web, the more they have to fight to stay focused on long pieces of writing. Some of the bloggers I follow have also begun mentioning the phenomenon. Scott Karp, who writes a blog about online media, recently confessed that he has stopped reading books altogether.</p></blockquote>
<p>But, is this about capacity to read more deeply or just not taking the time?  I&#8217;m probably as guilty as anyone of not reading as much, but I do try to make sure I have a book going most of the time.  I actually relish the opportunity to get into a novel or work of nonfiction.  I certainly don&#8217;t find it any harder to concentrate, despite the fact that I follow lots of feeds and scan plenty of online content on a daily basis. </p>
<p>The <a href="http://techliberation.com/2008/06/17/dumb-and-dumberer/">Technology Liberation Front</a>&#8216;s Adam Thierrer feels reasonably positive about the change communications tech is bringing:</p>
<blockquote><p>The death of media scarcity and the rise of information abundance was bound to have profound implications for how we read, write and communicate&#8212;in most ways for the better, but perhaps in some ways for the worse.  I doubt we&#8217;ll ever have a Shakespeare arising from the world of Twitter, for example, but I believe we are better off for having technologies and media platforms like it in our lives.</p></blockquote>
<p><span id="more-191"></span>On this point I also have to disagree.  Not necessarily with the fact that a variety of more immediate and engaging ways of communicating is a good thing.  It is, but it&#8217;s often manifesting itself at the expense of social skills and manners.  Grammar and eloquent writing is mostly a lost art form, based on the general level of discourse in the blogosphere.  A great deal of this can be traced directly to IM and email, where shorthand acronyms are the order of the day.</p>
<p>I can&#8217;t begin to count how many times inappropriate cell phone conversations punctuate the air or cause car accidents, or encountering kids who can&#8217;t turn their iPod down long enough to be polite to the store clerk.  Don&#8217;t even get me started on the whole issue of texting or IM-ing via cell.  Handy yes.  Annoying and unpleasant?  Often.  Why?  Because too often we use gadgets as an excuse to avoid and ignore our fellow human being.</p>
<p>There&#8217;s no doubt that our behaviour is changing as a result of the volume and format of information we are now exposed to.  I would suggest, though, that it&#8217;s crucial for us to try to be mindful of a couple things.  Take the time to read.  A real newspaper, a novel, anything that forces us to focus a little more.  By extension then, take that notion of focus and target it on other people.  Don&#8217;t use technology as an excuse for anti-social or disengaging behaviour.  </p>


<ul><li><a href='http://james.wanless.info/2008/10/im-a-citation-weakling/' rel='bookmark' title='Permanent Link: I’m a citation weakling'>I’m a citation weakling</a></li>
<li><a href='http://james.wanless.info/2009/01/when-delivery-method-and-subject-matter-are-the-same/' rel='bookmark' title='Permanent Link: When delivery method and subject matter are the same'>When delivery method and subject matter are the same</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/06/does-tech-make-us-stupid-or-just-rude/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online learning lacks personal touch</title>
		<link>http://james.wanless.info/2008/06/online-learning-lacks-personal-touch/</link>
		<comments>http://james.wanless.info/2008/06/online-learning-lacks-personal-touch/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 23:56:29 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=187</guid>
		<description><![CDATA[Came across <a href="http://www.useit.com/alertbox/print-vs-online-content.html">the following</a> via <a href="http://www.downes.ca/cgi-bin/page.cgi?post=44923">Stephen Downes</a>, where he refers to to a response from <a href="http://clive-shepherd.blogspot.com/2008/06/e-learning-oxymoron.html">Clive Shepherd</a>...

<ul><li><a href='http://james.wanless.info/2008/08/online-constructivism/' rel='bookmark' title='Permanent Link: Online constructivism'>Online constructivism</a></li>
<li><a href='http://james.wanless.info/2009/03/learning-to-write-in-a-changing-digital-world/' rel='bookmark' title='Permanent Link: Learning to write in a changing, digital world'>Learning to write in a changing, digital world</a></li>
<li><a href='http://james.wanless.info/2008/08/risks-associated-with-online-publishing/' rel='bookmark' title='Permanent Link: Risks associated with online publishing'>Risks associated with online publishing</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>Came across <a href="http://www.useit.com/alertbox/print-vs-online-content.html">the following</a> via <a href="http://www.downes.ca/cgi-bin/page.cgi?post=44923">Stephen Downes</a>, where he refers to to a response from <a href="http://clive-shepherd.blogspot.com/2008/06/e-learning-oxymoron.html">Clive Shepherd</a>.  Neilsen first suggests:</p>
<blockquote><p>I continue to believe in the linear, author-driven narrative for educational purposes. I just don&#8217;t believe the Web is optimal for delivering this experience. Instead, let&#8217;s praise old narrative forms like books and sitting around a flickering campfire â€” or its modern day counterpart, the PowerPoint projector â€” which have been around for 500 and 32,000 years, respectively.</p>
<p>I continue to write books, and I continue to develop training seminars, because I believe these media are best for deep learning of new concepts.</p></blockquote>
<p>To which Stephen remarks:</p>
<blockquote><p>I think learning happens through numerous media, including web posts (which is why Nielsen writes his online column in the first place). And I think that people continue to write books and develop training seminars because that&#8217;s where the money is, not because that&#8217;s what produces the best learning.</p></blockquote>
<p>And finally, Shepherd&#8217;s (partial) comments:<span id="more-187"></span></p>
<blockquote><p>Interesting. Of course we don&#8217;t know exactly what Jakob has in mind when he talks about e-learning &#8211; traditional, self-paced instruction? live online learning using web conferencing software? collaborative distance learning? informal learning using web 2.0 technologies? If we assume he means the former &#8211; what we used to call CBT &#8211; then that gives a starting point for a critique of his assertion. Jakob&#8217;s key idea here is that &#8216;deep learning&#8217; is a lean-back experience, best accomplished away from a computer, whereas most web activity is a lean-forward experience, which is designed to meet the individual&#8217;s immediate goals in the way that they see fit.</p></blockquote>
<p>I come at this issue as someone who has developed a few very rudimentary e-learning courses in the corporate world, who now works as a web user experience lead at a post-secondary institution, and who is likely to be doing a Master&#8217;s degree soon, with a significant component delivered via distance and online.</p>
<p>I think what Neilsen is trying to say is that the web is not the ideal environment for the level of immersion necessary for significant learning and that his &#8216;just in time&#8217; metaphor is apt.  I don&#8217;t think, though, that it&#8217;s necessarily about having an author-driven narrative.  Regardless of any social media capabilities you can enable to make online learning better, you will never get the engagement of sitting in a room with peers and a capable instructor.</p>
<p>I also think that the medium may not be capable of delivering a full degree without some face time, but is great for snippets and individual courses of certain kinds.  For one thing the feedback mechanisms for students, while improving all the time, are no match for the back and forth engagement of students and instructor.  Forums, comments, message boards, email, IM, chats &#8230;. they&#8217;ll all good but lack immediacy in most cases, and body language subtleties in all cases.</p>
<p>Truth be told I&#8217;m not sure I ever want the medium to improve to the point where it&#8217;s as good as face-to-face.</p>


<ul><li><a href='http://james.wanless.info/2008/08/online-constructivism/' rel='bookmark' title='Permanent Link: Online constructivism'>Online constructivism</a></li>
<li><a href='http://james.wanless.info/2009/03/learning-to-write-in-a-changing-digital-world/' rel='bookmark' title='Permanent Link: Learning to write in a changing, digital world'>Learning to write in a changing, digital world</a></li>
<li><a href='http://james.wanless.info/2008/08/risks-associated-with-online-publishing/' rel='bookmark' title='Permanent Link: Risks associated with online publishing'>Risks associated with online publishing</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/06/online-learning-lacks-personal-touch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The future of the web?</title>
		<link>http://james.wanless.info/2008/06/the-future-of-the-web/</link>
		<comments>http://james.wanless.info/2008/06/the-future-of-the-web/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 00:04:35 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=177</guid>
		<description><![CDATA[Found this at I Power, via UX Magazine. A scary thought to be sure, but certainly a plausable direction for big media and telecom to want to go. While there are some who ask what the future of the web looks like &#8211; and issues around accessible sites, semantic content, open source and the like [...]

<ul><li><a href='http://james.wanless.info/2009/02/instructional-design-now-and-in-the-future-part-two/' rel='bookmark' title='Permanent Link: Instructional design now and in the future: part two'>Instructional design now and in the future: part two</a></li>
<li><a href='http://james.wanless.info/2009/02/instructional-design-now-and-in-the-future-part-one/' rel='bookmark' title='Permanent Link: Instructional design now and in the future: part one'>Instructional design now and in the future: part one</a></li>
<li><a href='http://james.wanless.info/2008/07/digital-rights-and-access-under-assault/' rel='bookmark' title='Permanent Link: Digital rights and access under assault'>Digital rights and access under assault</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>Found this at <a href="http://ipower.ning.com/netneutrality">I Power</a>, via <a href="http://www.uxmag.com/short-news/409/2012-the-year-the-internet-ends">UX Magazine</a>.   A scary thought to be sure, but certainly a plausable direction for big media and telecom to want to go.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/A2XPiqhN_Ns&#038;rel=0&#038;color1=0x000000&#038;color2=0x222222"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/A2XPiqhN_Ns&#038;rel=0&#038;color1=0x000000&#038;color2=0x222222" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>While there are some <a href="http://tw.rpi.edu/launch/">who ask</a> what the future of the web looks like &#8211; and issues around accessible sites, semantic content, open source and the like are hugely important &#8211; it&#8217;s crucial to focus on the issues that will affect the most people in the most significant ways.</p>
<p><span id="more-177"></span>Whether you can see your favourite web site on <em>both</em> your phone and laptop isn&#8217;t nearly as important as whether you can <em>access</em> it in the first place.  And, what about the right to your own digital media to use &#8211; legally &#8211; as you see fit.  Big media is losing its grip on what it spoonfeeds you, and can charge you  for, and  as such, many of its revenue streams.  An easy way to get them back is to package the content you can see with broadband access.</p>
<p>It&#8217;s an easy model for them because, as alluded to in the video above, it&#8217;s exactly the same model employed for digital cable.  That&#8217;s why transparent public consultation on <a href="http://arstechnica.com/news.ars/post/20080602-the-real-acta-threat-its-not-ipod-scanning-border-guards.html">ACTA</a>, and absolute <a href="http://www.neutrality.ca/">net neutrality</a> are two key things that should be on everyone&#8217;s front burner.</p>
<p>In my mind, the two issues are intrinsically connected.  ACTA would ostensibly help media controlled bandwidth to throttle what they don&#8217;t want to give you access to, and to ensure they enforce licensing fees for every little bit of pay-for-use content they can.</p>


<ul><li><a href='http://james.wanless.info/2009/02/instructional-design-now-and-in-the-future-part-two/' rel='bookmark' title='Permanent Link: Instructional design now and in the future: part two'>Instructional design now and in the future: part two</a></li>
<li><a href='http://james.wanless.info/2009/02/instructional-design-now-and-in-the-future-part-one/' rel='bookmark' title='Permanent Link: Instructional design now and in the future: part one'>Instructional design now and in the future: part one</a></li>
<li><a href='http://james.wanless.info/2008/07/digital-rights-and-access-under-assault/' rel='bookmark' title='Permanent Link: Digital rights and access under assault'>Digital rights and access under assault</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/06/the-future-of-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Charlie Rose squared on Yahooglesoft</title>
		<link>http://james.wanless.info/2008/05/charlie-rose-squared-on-yahooglesoft/</link>
		<comments>http://james.wanless.info/2008/05/charlie-rose-squared-on-yahooglesoft/#comments</comments>
		<pubDate>Fri, 23 May 2008 18:31:52 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=172</guid>
		<description><![CDATA[This really does seem to be about all most web news talks about these days &#8230; Courtesy Technology Liberation Front. No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>This really does seem to be about all most web news talks about these days &#8230;  Courtesy <a href="http://feeds.feedburner.com/~r/techliberation/~3/296651227/">Technology Liberation Front</a>.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/LFE2CCfAP1o&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/LFE2CCfAP1o&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/05/charlie-rose-squared-on-yahooglesoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The scary side of social media</title>
		<link>http://james.wanless.info/2008/04/the-scary-side-of-social-media/</link>
		<comments>http://james.wanless.info/2008/04/the-scary-side-of-social-media/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 20:11:52 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[reflection]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=88</guid>
		<description><![CDATA[Would you like to be extricating yourself from a relationship with this woman? This came to my attention courtesy of Boing Boing. The sad thing here is that it&#8217;s just more indication that we&#8217;ve lost our collective minds. And, as a divorce-wars survivor myself, I can tell you from first-hand experience that airing your laundry [...]

<ul><li><a href='http://james.wanless.info/2008/11/understanding-your-audience-and-the-power-of-social-media-2/' rel='bookmark' title='Permanent Link: Understanding your audience and the power of social media'>Understanding your audience and the power of social media</a></li>
<li><a href='http://james.wanless.info/2008/07/how-important-is-social-media/' rel='bookmark' title='Permanent Link: How important is social media?'>How important is social media?</a></li>
<li><a href='http://james.wanless.info/2009/09/social-media-for-crm/' rel='bookmark' title='Permanent Link: Getting social media for CRM right'>Getting social media for CRM right</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>Would you like to be extricating yourself from a relationship with this woman?  This came to my attention courtesy of <a href="http://boingboing.net">Boing Boing</a>.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/hx_WKxqQF2o&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/hx_WKxqQF2o&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><span id="more-88"></span>The sad thing here is that it&#8217;s just more indication that we&#8217;ve lost our collective minds.  And, as a divorce-wars survivor myself, I can tell you from first-hand experience that airing your laundry in such a public, vindictive way as this is almost certain to backfire to some degree (even if some of the points you make are valid).</p>
<p>Even if that doesn&#8217;t prove true in the <em>land of litigation</em> down south, shouldn&#8217;t good taste and pride count for something?</p>


<ul><li><a href='http://james.wanless.info/2008/11/understanding-your-audience-and-the-power-of-social-media-2/' rel='bookmark' title='Permanent Link: Understanding your audience and the power of social media'>Understanding your audience and the power of social media</a></li>
<li><a href='http://james.wanless.info/2008/07/how-important-is-social-media/' rel='bookmark' title='Permanent Link: How important is social media?'>How important is social media?</a></li>
<li><a href='http://james.wanless.info/2009/09/social-media-for-crm/' rel='bookmark' title='Permanent Link: Getting social media for CRM right'>Getting social media for CRM right</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/04/the-scary-side-of-social-media/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Twits shouldn&#8217;t twitter</title>
		<link>http://james.wanless.info/2008/03/twits-shouldnt-twitter/</link>
		<comments>http://james.wanless.info/2008/03/twits-shouldnt-twitter/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 18:06:38 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=84</guid>
		<description><![CDATA[People, use your heads when deciding what to &#8216;twitter&#8217; about. At a basic level, I can certainly see the value of staying connected with your friends. However, when you start plugging twitter into social networks like Facebook, it&#8217;s a recipe for annoyance, plain and simple. Why do I care what you think as you watch [...]

<ul><li><a href='http://james.wanless.info/2009/01/making-twitter-more-useful-to-myself/' rel='bookmark' title='Permanent Link: Making Twitter more useful to myself'>Making Twitter more useful to myself</a></li>
<li><a href='http://james.wanless.info/2009/01/could-twitter-kill-delicious/' rel='bookmark' title='Permanent Link: Could Twitter kill delicious?'>Could Twitter kill delicious?</a></li>
<li><a href='http://james.wanless.info/2007/09/social-software-concerns/' rel='bookmark' title='Permanent Link: Social software concerns'>Social software concerns</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>People, use your heads when deciding what to &#8216;twitter&#8217; about.  At a basic level, I can certainly see the value of staying connected with your friends.  However, when you start plugging twitter into social networks like Facebook, it&#8217;s a recipe for annoyance, plain and simple.  Why do I care what you think as you watch some TV show?  I don&#8217;t.</p>
<p>Personally, I really don&#8217;t want to let others know the minutiae of my day and I have absolutely zero interest in knowing what a friend of mine is thinking as they ponder life&#8217;s mysteries while sipping a Starbuck&#8217;s latte at their laptop keyboard.  If I find my online friend&#8217;s thoughts of interest, I can easily stay in touch via many other means.  Let&#8217;s face it, only the early adopters already extensively using social media will be twittering anyway.</p>
<p>I&#8217;ve really relegated Facebook to being a way to send a note to friends and acquaintances and that&#8217;s pretty much it.  I find the information stream coming from Facebook friend updates to be far more than I need, anyway, and I certainly couldn&#8217;t imagine having any use for even more of that crap via services like <a href="http://friendfeed.com/">FriendFeed</a>, so why would I want to follow anyone on Twitter?  Sorry, the details of your day, or mine for that matter, are simply not that interesting or important.  And let&#8217;s face it, we all know <a href="http://www.smh.com.au/news/technology/facebook-friends-not-real-friends-judge/2008/03/27/1206207279597.html">Facebook friends are not always real friends</a>, anyway.</p>
<p>So, given all this preamble about my preferences, why on earth would I want to see a new level of unwanted detail on Facebook via the Twitter app?  But there it is, right below the status updates on my logged-in Facebook homepage.  &#8220;So-and-so is twittering: my Salsbury steak is mushy &#8230;&#8221;  So what?  Apparently your brain took a holiday when you decided to twitter that little nugget.</p>
<p>Just one more reason to ignore Twitter and use Facebook even less.</p>


<ul><li><a href='http://james.wanless.info/2009/01/making-twitter-more-useful-to-myself/' rel='bookmark' title='Permanent Link: Making Twitter more useful to myself'>Making Twitter more useful to myself</a></li>
<li><a href='http://james.wanless.info/2009/01/could-twitter-kill-delicious/' rel='bookmark' title='Permanent Link: Could Twitter kill delicious?'>Could Twitter kill delicious?</a></li>
<li><a href='http://james.wanless.info/2007/09/social-software-concerns/' rel='bookmark' title='Permanent Link: Social software concerns'>Social software concerns</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2008/03/twits-shouldnt-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social software concerns</title>
		<link>http://james.wanless.info/2007/09/social-software-concerns/</link>
		<comments>http://james.wanless.info/2007/09/social-software-concerns/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 00:45:54 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=343</guid>
		<description><![CDATA[I don&#8217;t know what to make of Facebook. Honestly. I&#8217;ve never used MySpace and doubt I ever will. I started using LinkedIn, but found it of limited appeal because I couldn&#8217;t do anything much with it. Then I joined Facebook and used it like a madman for two or three weeks. Now I find I&#8217;m [...]

<ul><li><a href='http://james.wanless.info/2008/11/bc-politics-and-social-software-platforms/' rel='bookmark' title='Permanent Link: BC politics and social software platforms'>BC politics and social software platforms</a></li>
<li><a href='http://james.wanless.info/2009/03/avoiding-social-media-spam/' rel='bookmark' title='Permanent Link: Avoiding social media spam'>Avoiding social media spam</a></li>
<li><a href='http://james.wanless.info/2007/09/social-networks-for-social-research/' rel='bookmark' title='Permanent Link: Social networks for social research'>Social networks for social research</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know what to make of Facebook.  Honestly.  I&#8217;ve never used MySpace and doubt I ever will.  I started using <a href="http://www.linkedin.com">LinkedIn</a>, but found it of limited appeal because I couldn&#8217;t <em>do</em> anything much with it.  Then I joined Facebook and used it like a madman for two or three weeks.  Now I find I&#8217;m lucky if I look at it a couple times a week.  And on and on this pattern goes.  Trying and sticking with one tool consumes more time than I have and it&#8217;s often a hassle trying a new one.</p>
<p>As an agent for change, I see real potential in online community.  However, when it comes to casual or fun tools, with every new social software tool, I&#8217;m forced to invite a list of users and then go virtually <em>doing</em> things together.  I&#8217;m afraid after full days in the online world I tend to spend my spare time taking care of my body through real-world pursuits. </p>
<p><span id="more-343"></span>Perhaps trying and using new social software tools would be less of a pain if open authentication really took hold.  For example, using the OpenID concept, having one central ID and contact list would mean that you could sign into any one of these applications and invite friends without ever having to import or transfer anything between platforms.  If using Flickr, last.fm, MySpace, Facebook, YouTube, Twitter and/or any other of a myriad tools meant you could simply sign up and login without creating a new account, I&#8217;m sure I&#8217;d try and use a lot more software.</p>
<p>Extend this concept to an open API across the social software world and, well &#8230;. OK, I&#8217;m dreaming in technicolour.  Enough of that, because, along with many other things that would probably cripple revenue opportunities the individual vendors.</p>
<p><a href="http://blog.webreakstuff.com/2007/08/fixing-social-networks/">Webreakstuff got it right</a>, methinks, when they mused about the value of OpenID and microformats to help open up social networks from this perspective:</p>
<blockquote><p>I want networks to ask me, right off the bat when signing up, if I already have a profile that can be imported in (through hCard+XFN). I type in the URL for my OpenID and the network gets my information (gets OpenID page, downloads hCard formatted information, builds my user information based on that). Then it can grab my list of friends from XFN formatted data. With one textfield (the URL for either my OpenID or a profile on a different network), it would pre-populate both my information and the information for friends I want to add. Sweet.</p></blockquote>
<p>Beyond the hassle of using Facebook enough to leverage its value, I&#8217;ve always had questions about its security and whether it exposed too much.  I&#8217;ve heard stories about identity theft through a little solid Facebook-ing coupled with a little Google research.  The fact that <a href="http://www.zephoria.org/thoughts/archives/2007/09/06/confused_by_fac.html">joining groups may expose you to far more openness than you&#8217;d like</a> AND that profiles become littered with moronic applications and the lustre begins to wear off a bit.</p>
<p>Like anything new which presents some level of opportunity to be exploited, the hype abounds for Facebook.  Applications for the API roll out left, right and centre, but I&#8217;m pretty sure almost no one is making real money off them yet.</p>
<p><a href="http://www.cyberjournalist.net/news/004299.php">Newspapers</a> and <a href="http://www.cyberjournalist.net/news/004298.php">mock newscasts</a> are <a href="http://www.readwriteweb.com/archives/new_york_times_launches_facebook_app.php">making sure</a> they don&#8217;t get left behind either.  However, if Facebook had not been hyped mercilessly over the past year, do you think the New York Times would bother with it?  I don&#8217;t.</p>
<p>While I agree that corporations tend to ignore things to which they should pay more attention, I think <a href="http://www.stoweboyd.com/message/2007/09/kent-newsome-on.html">Stowe Boyd</a> misses the point about productivity.  Corporations are notoriously late adopters, and I would lean toward <em>most</em> use of Facebook in the office environment as a waste of time.  The nature of the Facebook environment means that doing one thing, leads to another, which leads to another.  Updating your status can quickly become a game of scrabble or multiple posts to friends&#8217; walls.</p>
<p>There&#8217;s a much stronger argument for using instant messaging, wikis, and employee forums as internal productivity tools and leveraging tools like blogs, forums, and feeds for external marketing communications.  I guess that&#8217;s the point that I&#8217;ve been coming to in this piece.  Specific tools are good at specific jobs and, when they have solid rationale, they should be leveraged to maximum advantage, whether it&#8217;s for business, personal or community-building purposes.</p>
<p>I&#8217;m not sure, though, that the usefulness I see in a lot of social software extends to using every new tool that comes along and taking the time to keep using it, particularly when none of the systems will talk to each other.</p>


<ul><li><a href='http://james.wanless.info/2008/11/bc-politics-and-social-software-platforms/' rel='bookmark' title='Permanent Link: BC politics and social software platforms'>BC politics and social software platforms</a></li>
<li><a href='http://james.wanless.info/2009/03/avoiding-social-media-spam/' rel='bookmark' title='Permanent Link: Avoiding social media spam'>Avoiding social media spam</a></li>
<li><a href='http://james.wanless.info/2007/09/social-networks-for-social-research/' rel='bookmark' title='Permanent Link: Social networks for social research'>Social networks for social research</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2007/09/social-software-concerns/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Social networks for social research</title>
		<link>http://james.wanless.info/2007/09/social-networks-for-social-research/</link>
		<comments>http://james.wanless.info/2007/09/social-networks-for-social-research/#comments</comments>
		<pubDate>Sun, 30 Sep 2007 01:35:35 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://james.wanless.info/?p=340</guid>
		<description><![CDATA[Social networks are cool. But to get any benefit out of them, it is pretty important to spend significant and frequent chunks of time using them. I&#8217;ll admit it, I got bored with Facebook quickly and now I&#8217;m lucky if I check it twice a week. For me, in practical terms, a tool like Facebook [...]

<ul><li><a href='http://james.wanless.info/2007/09/social-software-concerns/' rel='bookmark' title='Permanent Link: Social software concerns'>Social software concerns</a></li>
<li><a href='http://james.wanless.info/2009/09/social-media-for-crm/' rel='bookmark' title='Permanent Link: Getting social media for CRM right'>Getting social media for CRM right</a></li>
<li><a href='http://james.wanless.info/2009/03/avoiding-social-media-spam/' rel='bookmark' title='Permanent Link: Avoiding social media spam'>Avoiding social media spam</a></li>
</ull>]]></description>
			<content:encoded><![CDATA[<p>Social networks are cool.  But to get any benefit out of them, it is pretty important to spend significant and frequent chunks of time using them.  I&#8217;ll admit it, I got bored with Facebook quickly and now I&#8217;m lucky if I check it twice a week.  For me, in practical terms, a tool like Facebook for regular social discourse just can&#8217;t hold my interest for long.  Use the concept to build something around an important issue or as an agent of real change and that&#8217;s different.</p>
<p>While my misgivings about Facebook make me doubt its usefulness as anything but fun diversion, a <a href="http://www.danah.org/papers/essays/ClassDivisions.html">Danah Boyd essay from June</a> has me wondering if there&#8217;s something deeper to online social networking, in terms of social research, and what these systems say about us.  I&#8217;ll admit to the kind of knee-jerk reaction to MySpace that Danah writes about as she notes the class distinction between users of the two sites.</p>
<p>The discomfort in her writing doesn&#8217;t take away from what seem to be pretty keen observations about kids, their choice of social network and the broader perceptions around that.  Demographic and psychographic comparisons of the two types of users very clearly delineate along socio-economic lines.  While I&#8217;m no ivy-leaguer, the clean design and visual ubiquity of Facebook profiles appeals to me much more than the garish varieties of MySpace pages &#8211; I like white space and consistency.  While it&#8217;s easy to see the appeal of these stark differences for marketers, how can we use this information to effect positive social outcomes?  </p>
<p><span id="more-340"></span>Perhaps the divides between users of the two systems is more depressing social commentary on how we make assumptions about each other (and assumptions parents make about &#8216;their&#8217; kids using Facebook):</p>
<blockquote><p><strong>Danah Boyd:</strong><br />
The division around MySpace and Facebook is just another way in which technology is mirroring societal values. Embedded in that is a challenge to a lot of our assumptions about who does what. The &#8220;good&#8221; kids are doing more &#8220;bad&#8221; things than we are willing to acknowledge (because they&#8217;re the pride and joy of upwardly mobile parents). And, guess what? They&#8217;re doing those same bad things online and offline. At the same time, the language and style of the &#8220;bad&#8221; kids offends most upwardly mobile adults. We see this offline as well. I&#8217;ve always been fascinated watching adults walk to the other side of the street when a group of black kids sporting hip-hop style approach. The aesthetics alone offend and most privileged folks project the worst ideas onto any who don that style. When I see a divide like this, I worry because it reproduced the idea that the &#8220;good&#8221; kids are good and that Facebook participation is good.</p></blockquote>
<p>But are these conclusions about social class and online social network correct across the board?  After all, MySpace came first and appeals to younger users, probably in part, because of the colourful and tacky way profiles can look, and that it&#8217;s much more about music, hip-hop and entertainment than is Facebook.  Notwithstanding the fact that the clean white Facebook interface is not changeable, users can still trash up their space like crazy with everything from cyber-drink purchases, to zombie status and all manner of the downright silly and useless.  And, while Facebook came later and started as a closed college network, it&#8217;s trying to become the platform for everyone.  Just look at all the postings on <a href="http://www.craigslist.org">Craigslist</a> for Facebook application developers if you don&#8217;t believe me.</p>
<p>Certainly, it seems that some interesting research into behaviour and association can be done through online social networking, but I&#8217;m not sure it can inform us much beyond seeing if that behaviour is mirrored in the real world, or if something different or more profound is derived from using online social networks.</p>
<p>I know one thing.  From a taste perspective (and this isn&#8217;t a knock against hip-hop, MySpace OR those who like them), I&#8217;m no more likely to listen to hip-hop than I am to use MySpace.  Does that make me an elitist or racist?  No.</p>


<ul><li><a href='http://james.wanless.info/2007/09/social-software-concerns/' rel='bookmark' title='Permanent Link: Social software concerns'>Social software concerns</a></li>
<li><a href='http://james.wanless.info/2009/09/social-media-for-crm/' rel='bookmark' title='Permanent Link: Getting social media for CRM right'>Getting social media for CRM right</a></li>
<li><a href='http://james.wanless.info/2009/03/avoiding-social-media-spam/' rel='bookmark' title='Permanent Link: Avoiding social media spam'>Avoiding social media spam</a></li>
</ull>]]></content:encoded>
			<wfw:commentRss>http://james.wanless.info/2007/09/social-networks-for-social-research/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
