<?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/"
	>

<channel>
	<title>Blog Relations</title>
	<atom:link href="http://www.blog-relations.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blog-relations.com</link>
	<description>We make blogs and Podcasts</description>
	<pubDate>Tue, 19 May 2009 15:29:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Import Excel into WordPress</title>
		<link>http://www.blog-relations.com/2009/05/19/import-excel-into-wordpress/</link>
		<comments>http://www.blog-relations.com/2009/05/19/import-excel-into-wordpress/#comments</comments>
		<pubDate>Tue, 19 May 2009 15:08:21 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
		
		<category><![CDATA[Blog Home]]></category>

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

		<guid isPermaLink="false">http://www.blog-relations.com/?p=1236</guid>
		<description><![CDATA[Importing bulk data from an Excel Spreadsheet into WordPress is fiddly and frustrating, but it can be done]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just uploaded data from a spreadsheet with hundreds of posts into WordPress.  It nearly drove me crazy in the process, but I think it saved time in the end.  I could see this sort of data import being useful for something like an e-commerce site.</p>
<p>I have actually done this once before, but it didn&#8217;t seem any easier the second time.  If only for the sake of my own remembering, here&#8217;s how it&#8217;s done.</p>
<p>First of all you need to add a plug-in of sorts to WordPress.  I say &#8220;of sorts&#8221; because it&#8217;s more of a hack than a plug in proper.    Many thanks to<a href="http://www.site2nd.org/"> Site 2nd </a>for this though.   You can download Site 2nd&#8217;s <a href="http://www.site2nd.org/wordpress/csv-import-to-wordpress/">modified CSV Import Script here. </a></p>
<p>Site 2nd has modified this script from one by Zac Preble.  <a href="http://www.zackpreble.com/2008/03/28/importing-posts-from-csv-file-into-wordpress/">You can read Zac&#8217;s instructions here.</a> But you are also going to need a few Excel tricks.  So here&#8217;s some full instructions.  I hope they make sense to you.</p>
<p>First of all, upload the modified CSV Import Script into /wp-admin/import/  (NOT into your plugins folder).  Now in your WordPress admin , look under Tools, Import.  You will see a lot of options for importing data including one that wasn&#8217;t there before - CSV, or Comma Separated (I&#8217;m not sure what the &#8220;V&#8221; is for !).</p>
<p>Now in Excel you need to prepare or modify your data.  You are going to need some columns.  The first are going to be as follows:</p>
<p>wp_title   wp_post_date    wp_category   wp_content    wp_tags</p>
<p>If you need custom fields, you can add some columns on the end with any names you like Apples, Pears, Oranges, etc &#8230; these will be the keys for your custom fields.</p>
<p>Fill your data under these columns.  If you are familiar with WordPress it should be fairly obvious what goes where.  Just one thing.  The date has to be in this format, and it has to contain a time.</p>
<p>2009/01/30 12:00:00</p>
<p>It&#8217;s a bit of a B***er  but Excel doesn&#8217;t have an option to covert dates into the this format.   I had to change them all by hand.</p>
<p>Tags should be comma separated.   In the data I received, they were all under separate columns.  I had to create the tags under the wp_tag column by copying them from the other columns.   I did this using an Excel formula.   It&#8217;s like this:</p>
<p>=A2 &amp;&#8221;,&#8221; &amp; B2 &amp;&#8221;,&#8221; &amp; C2</p>
<p>Let&#8217;s break that down.</p>
<p><em>= </em>means, well, equals.   It tells Excel that this is a formula.</p>
<p><em>A2</em> is the first cell that I want to copy over into the column called wp_tags.</p>
<p><em>&amp;&#8221;,&#8221;</em> puts a comma after the first tag</p>
<p><em>&amp; B2</em> copies over cell B2</p>
<p>Then, to make this formula work the whole way down the column called wp_tags,  you have to grab the bottom right corner of the cell where you wrote the formula, and drag it all the way down.  In the next row the  cells <em>A2 B2 C</em>2  should be converted to<em> A3 B3 C3 </em> etc.</p>
<p>Now we are going to have to do something similar at the end so we can grab all our data and dump it into a text file with the extension CSV.  This is the file that we will actually upload into WordPress.</p>
<p>I did this by creating a final column and copying all the other columns that I needed, over into it, and separating the data not with a comma, but with a Pipe |  as per Zac&#8217;s instructions.</p>
<p>The formula I used looked like this:</p>
<p>=A2 &amp;&#8221;|&#8221; &amp; B2 &amp;&#8221;|&#8221; &amp; C2 &amp;&#8221;|&#8221; &amp; D2 &amp;&#8221;|&#8221; &amp; E2 &amp;&#8221;|&#8221; &amp; G2 &amp;&#8221;|&#8221; &amp; H2 &amp;&#8221;|&#8221;  &amp; I2 &amp;&#8221;|&#8221; &amp; J2  &amp;&#8221;|&#8221; &amp; K2 &amp;&#8221;|&#8221; &amp; L2 &amp;&#8221;|&#8221; &amp; M2 &amp;&#8221;|&#8221; &amp; N2 &amp;&#8221;|&#8221; &amp; O2 &amp;&#8221;|&#8221; &amp; P2 &amp;&#8221;|&#8221;  &amp; q2 &amp;&#8221;|&#8221; &amp; r2 &amp;&#8221;|&#8221; &amp;CHAR(10)</p>
<p>You should now recognise that  the way to copy a cell is write:</p>
<p><em>A2</em></p>
<p>and for subsequent cells:</p>
<p><em>&amp; B2</em></p>
<p>etc.</p>
<p>To add in a pipe separator write:</p>
<p><em>&amp;&#8221;|&#8221;</em></p>
<p>At the end, you need to encode it all correctly for text with:</p>
<p><em>&amp;CHAR(10)</em></p>
<p>Drag this formula all the way down the column as before.  Now block and copy the whole column into a text file and save it with the extension .CSV.   You will find that all your data is nicely dumped without any trace of spreadsheet formula.   You just have a lot of data separated by pipes |.</p>
<p>You may fine some inverted commas in between the lines of your data entries.   Just get rid of those with a quick search and replace in your text editor.</p>
<p>This isn&#8217;t all yet, though.   Your CSV file needs a header.  This will also be pipe separated and the same as in your spread sheet so it will begin</p>
<p>wp_title|wp_post_date|wp_category|wp_content|wp_tags|</p>
<p>And then have some more headings if you need custom fields</p>
<p>wp_title|wp_post_date|wp_category|wp_content|wp_tags|apples|pears|</p>
<p>Just put the header in first row of your text file above all the post entries.</p>
<p>Now you are ready to upload.  But just try this out the first time with a couple of entries.  If it uploads incorrectly, you don&#8217;t want to spend an afternoon deleting hundreds of posts.   That&#8217;s when it gets really frustrating.</p>
<p>Go to WordPress, Tools,  Import, CSV, and upload the file.  The wheel should spin.  It show the files it is uploading.  It should wish you a nice day.   You should then find the imported posts and see that all the data, including tags and categories has been entered correctly.  I have to say, I didn&#8217;t get it right first time.  Or second time,&#8230;. actually I lost count of  how many times I tried. But I got there in the end.  So it can be done.   I hope you have swifter luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-relations.com/2009/05/19/import-excel-into-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WolframAlfa Isn&#8217;t Sure Most of the Time</title>
		<link>http://www.blog-relations.com/2009/05/18/wolframalfa-isnt-sure-most-of-the-time/</link>
		<comments>http://www.blog-relations.com/2009/05/18/wolframalfa-isnt-sure-most-of-the-time/#comments</comments>
		<pubDate>Mon, 18 May 2009 14:31:09 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
		
		<category><![CDATA[Blog Home]]></category>

		<guid isPermaLink="false">http://www.blog-relations.com/?p=1234</guid>
		<description><![CDATA[Wolfram&#124;Alpha isn't sure what to do with your input.]]></description>
			<content:encoded><![CDATA[<p>What is the recipe for apple pie?<br />
<em>Wolfram|Alpha isn&#8217;t sure what to do with your input.</em></p>
<p>Who is the Prime Minister of Great Britain?<br />
Input interpretation:<br />
prime minister of United Kingdom<br />
Result:<br />
Gordon Brown<br />
Basic information:<br />
official position | Prime Minister\nstart date | June 27, 2007 (1 year ago)<br />
Sequence:More<br />
November 1990 to May 1997 (6 years) | John Major\nMay 1997 to June 2007 (10 years) | Tony Blair\nJune 2007 to present | Gordon Brown<br />
Government structure:<br />
prime minister | Gordon Brown<br />
Personal information:<br />
full name | Gordon Brown\ndate of birth | 20 February 1951 (age: 58 years)\nplace of birth | Glasgow,Glasgow City,United Kingdom<br />
Timeline:<br />
Timeline</p>
<p>Who is the speaker of the House of Commons?<br />
<em>Wolfram|Alpha isn&#8217;t sure what to do with your input.</em></p>
<p>What&#8217;s on at the Odeon Cinema Marble Arch?<br />
<em>Wolfram|Alpha isn&#8217;t sure what to do with your input.</em></p>
<p>Personally I wouldn&#8217;t give £5 for it.   I don&#8217;t think Google is going to fork out zillions for something that isn&#8217;t quite sure yet. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-relations.com/2009/05/18/wolframalfa-isnt-sure-most-of-the-time/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tweets about Storynory</title>
		<link>http://www.blog-relations.com/2009/05/14/tweets-about-storynory/</link>
		<comments>http://www.blog-relations.com/2009/05/14/tweets-about-storynory/#comments</comments>
		<pubDate>Thu, 14 May 2009 14:29:27 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
		
		<category><![CDATA[Blog Home]]></category>

		<guid isPermaLink="false">http://www.blog-relations.com/?p=1229</guid>
		<description><![CDATA[Twitter provides a window onto the audience of our podcast]]></description>
			<content:encoded><![CDATA[<p>It still intrigues me up to look at the latest tweets about<a href="http://storynory.com"> Storynory</a>.  Some of them are mine, but many are by listeners.   It&#8217;s a window onto the world of our audience..  And it&#8217;s nice to see that some the people listening are adults.    Some comments are  good, some bad (one mother seems to think it&#8217;s annoying&#8230;. or does she mean her daughter being hyper?) .   I try to join in the conversation where it seems to call for it - to point out that we do have pictures, for instance.</p>
<p><a href="http://search.twitter.com/search?q=storynory">Here are the latest tweets. </a></p>
<p>#<br />
storynory: The story behind the story of the Wicked Uncle http://bit.ly/VhwIu (expand)<br />
half a minute ago from web · Reply · View Tweet</p>
<p>#<br />
Valla_me_normal<br />
gaileroy: @TheNDM I parked mine listening to storynory.com and then opened the bottle of red.<br />
2 days ago from web · Reply · View Tweet</p>
<p>#<br />
Silver-fern-128&#215;128_normal<br />
MiramarMike: Today is brought to you by Podcast Updates with new Storynory.com, The Perfect 10, Jon Richardson and @wossy http://ff.im/2Ny0k<br />
2 days ago from FriendFeed · Reply · View Tweet</p>
<p>#<br />
Awesome_avatar_normal<br />
erima: Totally digging the Storynory podcast (children’s stories read aloud) http://storynory.com/<br />
2 days ago from Tweetie · Reply · View Tweet</p>
<p>#<br />
Audiotweets_04_normal<br />
CelleCast: The Wicked Uncle cellecast now live! Listen/Interact by ph:415-707-3017 http://cellecast.com/storynory/<br />
3 days ago from CelleCast Talkback · Reply · View Tweet</p>
<p>#<br />
Feb-april_2007_012_2_normal<br />
JaminLietze: Free audio stories 4 kids http://storynory.com/ Thanks @sharpjacqui<br />
5 days ago from Twitterrific · Reply · View Tweet</p>
<p>#<br />
Hugh_100_normal<br />
storynory: I meant this url http://bit.ly/7Zlyy (expand)<br />
7 days ago from web · Reply · View Tweet</p>
<p>#<br />
Hugh_100_normal<br />
storynory: Storynory has a picture with every story, and some have specially commissioned sets http://bit.ly/7Zlyy (expand)<br />
7 days ago from web · Reply · View Tweet</p>
<p>#<br />
Dsc_0053_normal<br />
jessrisser: http://storynory.com/archives/ has audio stories for kids but no pictures. So sad&#8230;<br />
7 days ago from web · Reply · View Tweet</p>
<p>#<br />
Hugh_100_normalCopy_of_100_0015_normal<br />
storynory: @JennieTanner Thank you ! I&#8217;d never thought of our listeners as a giant back up before. There&#8217;s a new story every week.<br />
8 days ago from web · Reply · View Tweet · Thread Show ConversationHide Conversation</p>
<p>#<br />
Copy_of_100_0015_normalHugh_100_normal<br />
JennieTanner: @storynory Don&#8217;t tell my son! I think I&#8217;ve downloaded most of them already! If u lose ur archive u can always contact me!!<br />
8 days ago from TweetDeck · Reply · View Tweet · Thread Show ConversationHide Conversation</p>
<p>#<br />
Hugh_100_normal<br />
storynory: @JennieTanner There are over 150 stories on the storynory<br />
9 days ago from web · Reply · View Tweet</p>
<p>#<br />
Vpprectangle_normalTahoe_normal<br />
vppartners: @p2173 Try Storynory - brit voice not too annoying. Probably best for 10 and under - free! http://ow.ly/4YXC<br />
10 days ago from HootSuite · Reply · View Tweet · Thread Show ConversationHide Conversation</p>
<p>#<br />
Audiotweets_04_normal<br />
CelleCast: The Monkey and the Boar cellecast now live! Listen/Interact by ph:415-707-3017 http://cellecast.com/storynory/<br />
10 days ago from CelleCast Talkback · Reply · View Tweet</p>
<p>#<br />
Photo_579_normal<br />
anaed: Lauren hyper and annoying in room with her listening to storynory, meditations next!<br />
11 days ago from TwitterFon · Reply · View Tweet</p>
<p>#<br />
N514188328_461657_9676_1__normal<br />
MarleyGang: @RebelLemming Thanks!!! I just found a bunch of classics from storynory.com too. Going to the site now!<br />
11 days ago from web · Reply · View Tweet</p>
<p>#<br />
Copy_of_100_0015_normal<br />
JennieTanner: How many stories are there on the Storynory website?<br />
11 days ago from TweetDeck · Reply · View Tweet</p>
<p>#<br />
Hugh_100_normal<br />
storynory: @PockhuhnFilm Great, I didn&#8217;t know you could catch storynory on Blip.FM - but it&#8217;s good to know.<br />
13 days ago from web · Reply · View Tweet</p>
<p>#<br />
1_normal<br />
PockhuhnFilm: listening to &#8220;Little Red Riding Hood - Storynory&#8221; ? http://blip.fm/~5akqt<br />
13 days ago from Blip.fm · Reply · View Tweet</p>
<p>#<br />
Mothers_200px_normal<br />
sophiegreen: @storynory I&#8217;m sure there could be some storynory goodness in that!<br />
13 days ago from web · Reply · View Tweet </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-relations.com/2009/05/14/tweets-about-storynory/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Story of the Wicked Uncle</title>
		<link>http://www.blog-relations.com/2009/05/13/the-story-of-the-wicked-uncle/</link>
		<comments>http://www.blog-relations.com/2009/05/13/the-story-of-the-wicked-uncle/#comments</comments>
		<pubDate>Wed, 13 May 2009 12:54:50 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
		
		<category><![CDATA[Blog Home]]></category>

		<category><![CDATA[How? What?]]></category>

		<guid isPermaLink="false">http://www.blog-relations.com/?p=1217</guid>
		<description><![CDATA[Storynory has a Wicked Uncle]]></description>
			<content:encoded><![CDATA[<p><a href="http://storynory.com">Storynory</a> has developed a friendly alliance with an ecommerce site called <a href="http://storynory.com/2009/05/11/the-wicked-uncle/">Wicked Uncle.</a>  </p>
<p><a href="http://wickeduncle.co.uk">Wicked Uncle </a> sells children&#8217;s toys.  It&#8217;s not aimed at kids, or even at parents, but at uncles and god parents who are terrible at remembering birthdays.    It remembers the date for them, and even suggests a selection of  gifts suitable for the child&#8217;s age.</p>
<p>I met Wicked Uncle&#8217;s owner, Mike O&#8217;Shea after a mutual friend put us together.  We thought it would be nice to do something together and so I wrote a story about a Wicked Uncle which you <a href="http://storynory.com/2009/05/11/the-wicked-uncle/">can listen to here. </a>   </p>
<p>The uncle in question is more irresponsible than wicked, but all the same, you probably wouldn&#8217;t want him to look after your kids for the weekend.    Mike&#8217;s previous business, <a href="http://splendour.com">Splendour.com</a>, which sells lingerie, was probably just a touch more wicked. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-relations.com/2009/05/13/the-story-of-the-wicked-uncle/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Helicopter flights and sites</title>
		<link>http://www.blog-relations.com/2009/05/05/helicopter-flights-and-sites/</link>
		<comments>http://www.blog-relations.com/2009/05/05/helicopter-flights-and-sites/#comments</comments>
		<pubDate>Tue, 05 May 2009 21:27:28 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
		
		<category><![CDATA[Blog Home]]></category>

		<guid isPermaLink="false">http://www.blog-relations.com/?p=1208</guid>
		<description><![CDATA[I have to admit that I should have been working today on phase II of  helihub.com, I site that I&#8217;m building for a client.   Phase II and III will, we hope, transform it into the the leading site for helicopter enthusiasts.   It will also show how to stretch WordPress  [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.blog-relations.com/wordpress/wp-content/uploads/2009/05/sp_a0013.jpg" alt="sp_a0013" title="sp_a0013" width="270" height="360" class="alignnone size-full wp-image-1210" />I have to admit that I should have been working today on phase II of <a href="http://helihub.com"> helihub.com,</a> I site that I&#8217;m building for a client.   Phase II and III will, we hope, transform it into the the leading site for helicopter enthusiasts.   It will also show how to stretch WordPress  -  giving it sophisticated searching and sifting functionality for a substantial database.   </p>
<p>But today is my birthday.  And a neighbour very kindly offered to take me up in his helicopter.  How could I resist?   It was a beautiful day, and we flew along the Thames from Kew to Canary Wharf and back, first ducking under the Heathrow flightpath at 1000 feet, and then over Houses of Parliament and quite a few landmarks. </p>
<p>A short while ago I knew nothing at all about helicopters.  I still don&#8217;t know much, but I can tell you that we flew in a Robinson 44 and you can read all the <a href="http://www.helihub.com/tag/R44/">latest news about it here</a>.</p>
<p>And here is a another pic from my mobile phone.</p>
<div id="attachment_1211" class="wp-caption alignnone" style="width: 370px"><img src="http://www.blog-relations.com/wordpress/wp-content/uploads/2009/05/sp_a0019.jpg" alt="City of London Gerkhin " title="gerkhin" width="360" height="270" class="size-full wp-image-1211" /><p class="wp-caption-text">City of London Gerkhin </p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-relations.com/2009/05/05/helicopter-flights-and-sites/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Listening to Twitter</title>
		<link>http://www.blog-relations.com/2009/04/24/listening-to-twitter/</link>
		<comments>http://www.blog-relations.com/2009/04/24/listening-to-twitter/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 06:13:56 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
		
		<category><![CDATA[Blog Home]]></category>

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

		<guid isPermaLink="false">http://www.blog-relations.com/?p=1204</guid>
		<description><![CDATA[Listen to yourself on Twitter -  use it for research as well as communication.]]></description>
			<content:encoded><![CDATA[<p>Neville Hobson says<a href="http://www.nevillehobson.com/2009/04/21/twitter-is-for-listening/"> Twitter is for listening</a>.    It&#8217;s a great opportunity to find out what people are saying about you or your company and <a href="http://search.twitter.com/">you can search here.</a> </p>
<p>I did a quick <a href="http://search.twitter.com/search?q=storynory">search for Storynory </a>and I was truly amazed.  My tweets were there, but also a regular flow of people saying &#8220;just listening to Storynory&#8221;.   Oh wow !  I&#8217;m delighted. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-relations.com/2009/04/24/listening-to-twitter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>McBride: Three  reminders about blogs</title>
		<link>http://www.blog-relations.com/2009/04/13/mcbride-three-reminders-about-blogs/</link>
		<comments>http://www.blog-relations.com/2009/04/13/mcbride-three-reminders-about-blogs/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 20:00:37 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
		
		<category><![CDATA[Best Practice]]></category>

		<category><![CDATA[Blog Home]]></category>

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

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

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

		<guid isPermaLink="false">http://www.blog-relations.com/?p=1200</guid>
		<description><![CDATA[The  Easter Scandal in British politics proves once again that Government does not, and cannot understand what blogs are about.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.order-order.com/2009/04/draper-%E2%80%9Cabsolutely-totally-brilliant-damian%E2%80%9Dbrown-%E2%80%9Cthere-is-no-place-in-politics-for-the-dissemination-or-publication-of-material-of-this-kind%E2%80%9D/">The Easter Scandal</a> in British politics proves once again that Government does not, and cannot understand what blogs are about.   One of Gordon Brown&#8217;s <a href="http://www.brandrepublic.com/InDepth/Features/738867/PROFILE-Damian-McBride-Political-press-adviser-Number-10/">closest advisers</a> planned to plant unfounded rumours about opposition politicians and their wives in a phony blog run by a <a href="http://www.labourlist.org/">crony</a>.  Big mistake. </p>
<p>Three reminders about blogs. </p>
<ol>
<li>Big institutions cannot find the authentic voice needed to run a successful blog.  The fake blog (RedRag) would not have rung true.  </li>
<li>You can&#8217;t just start a blog and expect that people will take any notice of you.  It takes time, hard work, networking, and consistency for a blogger to build up a following.    There was never any chance that a new fabricated blog would burst onto the scene and make waves.  It would have gone unnoticed because it hadn&#8217;t taken time to grow roots and branches into the blogging scene. </li>
<li>The blogosphere is one giant lie-detector.  Information in blogs that count is peer reviewed by the rest of the blogosphere.  Lies and fabrications always out.  It&#8217;s a myth that blogs are a good place to spread unfounded rumours.   Get an unfounded rumour on the BBC  (as New Labour used to do in its youth) and it becomes The Truth.  To get a story established in the blogosphere, it has to stand up to vigorous cross-examination and testing. </li>
</ol>
<p>A lot of people have a lot of trouble understanding what blogs are about - and they always will.   I don&#8217;t think that governments or large companies are ever really going to &#8220;get it&#8221;. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-relations.com/2009/04/13/mcbride-three-reminders-about-blogs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Children&#8217;s books in digital era</title>
		<link>http://www.blog-relations.com/2009/03/26/childrens-books-in-digital-era/</link>
		<comments>http://www.blog-relations.com/2009/03/26/childrens-books-in-digital-era/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 05:14:34 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
		
		<category><![CDATA[Blog Home]]></category>

		<category><![CDATA[digital publishing]]></category>

		<guid isPermaLink="false">http://www.blog-relations.com/?p=1192</guid>
		<description><![CDATA[ Publishing and digital are finally coming together.   I also believe that free is the way forward - and that advertisers will start to look at buying slots in digital books.   From Bologna.]]></description>
			<content:encoded><![CDATA[<p>The annual <a href="http://www.bookfair.bolognafiere.it/">Children&#8217;s Book Fair in Bologna</a>, is a little quieter than two years ago when I was last here.   I remember lines of people queuing up to get in, the squash around the coffee stand,  and the chatter of publishers filling up all the cafes and restaurants in the old quarter of this lovely Italian city.  None of that is true this year.<br />
<!-- more --></p>
<p>Some publishers - such all of Penguin&#8217;s children&#8217;s imprints from America - are not sending editorial teams this year.  They only have the marketing people here.  But those publishers that I&#8217;ve met say that they have been busy selling international rights for their books &#8220;to the usual people&#8221;.   </p>
<p>I  find that publishers are saying that they are &#8220;fascinated&#8221; to learn about all things &#8220;digital&#8221;.  That is a real turn-around from two year ago when they were faintly polite about some guys with a website (<a href="http://storynory.com">Storynory</a>).   </p>
<p>The coming <a href="http://www.londonbookfair.co.uk/">London Book Fair</a> has an particular emphasis on digital publishing, with talks and seminars.  Amazon has led the way with Kindle  - the tool for easy-on-the-eye digital books.  They&#8217;ve also bought <a href="http://audible.com">Audible</a>,  which is a sort of Amazon for downloadable audiobooks.  <a href="http://audiblekids.com">AudibleKids </a> sponsors Storynory, and publishers are interested in that link, because in hard times they might not be so keen to give away a free CD in the back of a picture book.  It&#8217;s more attractive to sell some downloadable audio.</p>
<p>It doesn&#8217;t seem so long ago that publishers were a bit sniffy about the internet, and not too happy using email. They were like the people who worked for BBC TV and didn&#8217;t realise that the BBC&#8217;s internet site had a bigger audience.  Newspapers went through the same process, at first despising online publishing, and then, as their paper sales plummeted, realising that both the audience and the advertisers were living in a different universe.  Now the papers with a future are those that have invested in digital - and it&#8217;s <a href="http://telegraph.co.uk">The Telegraph </a>that&#8217;s leading the way in the UK.</p>
<p>I believe that publishing and digital are finally coming together.   I also believe that free is the way forward - and that advertisers will start to look at buying slots in digital books.  But that will take a while yet, because it will horrify traditional publishers, and besides, they don&#8217;t yet have advertising departments.  Talk about culture shock !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-relations.com/2009/03/26/childrens-books-in-digital-era/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Podango</title>
		<link>http://www.blog-relations.com/2008/12/27/podango/</link>
		<comments>http://www.blog-relations.com/2008/12/27/podango/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 07:28:53 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
		
		<category><![CDATA[Blog Home]]></category>

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

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

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

		<guid isPermaLink="false">http://www.blog-relations.com/?p=1188</guid>
		<description><![CDATA[The future of Podango, a podcasting-start-up, is in doubt]]></description>
			<content:encoded><![CDATA[<p>About a year ago, as an experiment,  I uploaded some audio onto <a href="http://www.podango.com/">Podango,</a> the podcasting start-up.  Today I received an email saying that sadly, their future is in doubt:</p>
<blockquote><p>Our ability to continue operations past the end of this year (2008) is in question. We do not want any of you, or any of your shows to be negatively affected by this uncertainty and so we are encouraging you to begin taking all necessary steps to secure your data or begin moving to another hosting provider.</p></blockquote>
<p>The truth is that podcasting isn&#8217;t profitable enough to support more than one or two major service companies.   As far as we are concerned, <a href="http://libsyn.com">Libsyn</a> is the only game in town.  They offer unlimited bandwidth and cost-effective hosting for audio and video based on the amount you upload and store every month - and they make a profit out of it.   Through their parent company,<a href="http://www.wizzard.tv/"> Wizzard Media</a>, they arrange sponsorship deals for podcasts.   Wizzard is listed on the Nasdaq, and Libsyn seems to be a rare instance of a company that hasn&#8217;t lost its user-friendly start-up ethos after selling up to a bigger company. </p>
<p>Unfortunately, not many other podcasting service companies are going to survive the downturn.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-relations.com/2008/12/27/podango/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blind Users</title>
		<link>http://www.blog-relations.com/2008/11/20/blind-users/</link>
		<comments>http://www.blog-relations.com/2008/11/20/blind-users/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 14:04:29 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
		
		<category><![CDATA[storynory]]></category>

		<guid isPermaLink="false">http://www.blog-relations.com/?p=1143</guid>
		<description><![CDATA[I&#8217;m sitting in cafe or British Library, working on coding up Sophie&#8217;s fab new design for Storynory.  I was just interrupted by a Skype user I did not know.   I was a bit suspicious at first, but then delighted to find that I was chatting to a Storynory listener - born in [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sitting in cafe or British Library, working on coding up Sophie&#8217;s fab new design for Storynory.  I was just interrupted by a Skype user I did not know.   I was a bit suspicious at first, but then delighted to find that I was chatting to a Storynory listener - born in 1997, Korean, living in Ho Chi Minh city in Vietnam, the son (or daughter, not sure) of a Korean teacher in a school, and blind.  </p>
<p>He or she was using a screen reader, which reads text off the screen.   Obviously audio stories appeal to blind users,  but they also need to be able to find their way around the text and links of the site.   And that means designing with basic accessibility in mind - like not putting text into images, or at least using a good <a href="http://www.mezzoblue.com/tests/revised-image-replacement/">image replacement technique </a>like Gilder / Livin.  Currently our header has no text behind it, but I&#8217;m going to fix that in the new Storynory design. </p>
<p>Anyway  I&#8217;m pleased to say that the user said that it was easy to find the way around our site.  </p>
<p>One thing you are supposed to do is to put navigation sidebars below the main text in the markup.  The idea is that the user doesn&#8217;t listen to the screen reader repeating the links again and again.   I&#8217;m wondering about this.  Surely it&#8217;s important to be able to find the navigation quickly&#8230;. ? Just thinking about this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-relations.com/2008/11/20/blind-users/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Storynory in Korea</title>
		<link>http://www.blog-relations.com/2008/11/18/storynory-in-korea/</link>
		<comments>http://www.blog-relations.com/2008/11/18/storynory-in-korea/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 21:50:43 +0000</pubDate>
		<dc:creator>Hugh</dc:creator>
		
		<category><![CDATA[storynory]]></category>

		<guid isPermaLink="false">http://www.blog-relations.com/?p=1141</guid>
		<description><![CDATA[Storynory has been written up in one of Korea's leading national daily newspapers.  ]]></description>
			<content:encoded><![CDATA[<p>It was a happy coincidence.  Last weekend our kids&#8217; podcast, Storynory, published an audio-story from Korea called <a href="http://storynory.com/2008/11/17/the-blind-mans-daughter/">&#8220;The Blind Man&#8217;s Daughter&#8221;</a>.    Unkown to us, Storynory was at the same time <a href="http://news.chosun.com/site/data/html_dir/2008/11/16/2008111600327.htm">written up in Chosen</a>, one of Korea&#8217;s leading daily newspapers.   The article mentions several English story websites for children,  and I&#8217;m told that that the author remarks on our narrator&#8217;s English accent ( Natasha&#8217;s accent is Welsh, strictly speaking) - and says that he&#8217;s embarrassed on behalf of Korea&#8217;s children who only know English spoken with an American accent. </p>
<p>Our audio stories are already popular in Korea.  We syndicate them to a site run by Koid, Korea&#8217;s Telephone directory.  <a href="http://www.speak114.co.kr/">It&#8217;s called Speak 114.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog-relations.com/2008/11/18/storynory-in-korea/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.404 seconds -->
<!-- Cached page generated by WP-Super-Cache on 2009-07-04 00:00:24 -->
