Skip to main content

A Wiki Novel

One silly Christmas Party in 2005, My colleagues and I decided that what the world needed was a wiki novel. That anyone could edit. So, after a few beers, we started one, with the sentence:
"It's a compelling story of Vernon "FireFox" Wilson, a crack addicted journalist who decides to leave his humdrum job and become a ninja....
Alternatively, it could be about something good."

I kind of forgot about it, but Big Headed Simon pointed out that the Reluctant CyberProf had mentioned it in one of his essays... Then I kind of forgot about it some more, until Little Headed Simon told me that Penguin are actually doing the same thing, with their new wiki-novel, A Million Penguins.

They're proclaiming that:
" Anyone's allowed to write and edit the world-first novel, A Million Penguins, which is constructed in a similar way to the online encyclopedia, Wikipedia"

World First? I don't think so! We know better, right folks?

Anyways, I went back to our novel, and to my surprise (and secret delight) It had grown to two chapters! Two! Count-em!
(Admittedly, they're not very good chapters, but hey... )

So, if you'd like to hang with the cool kids, and get in on the real world-first wiki novel (instead of those fancy publishing company pretenders), you should drop by and share your literary acumen with the world... :)

Comments

Popular posts from this blog

Easter at Blackhead

Camping out on the headland, miles from anywhere. Big swell, off-shore winds, clear crisp nights and smoke from the wood fire. Sometimes it's so rewarding to get out from under the pressure of your life and just be a family of humans.

How to rename an XML Node in C#

This was driving me crazy - here's an easy cut and paste solution to not being able to use the DOM to rename a node for lazy developers like me: public static XmlNode RenameNode (XmlNode node, string namespaceURI,string qualifiedName) { if (node.NodeType == XmlNodeType.Element) { XmlElement oldElement = (XmlElement) node; XmlElement newElement = node.OwnerDocument.CreateElement(qualifiedName, namespaceURI); while (oldElement.HasAttributes) { newElement.SetAttributeNode(oldElement.RemoveAttributeNode(oldElement.Attributes[0])); } while (oldElement.HasChildNodes) { newElement.AppendChild(oldElement.FirstChild); } if (oldElement.ParentNode != null) { oldElement.ParentNode.ReplaceChild(newElement, oldElement); } return newElement; } else { return null; } ...

Democracy in Action...

I have to vote in the US Senate Election Tomorrow. Okay, I don't have to vote, but being an Australian American, voting is something we do. Australia has compulsory voting, which I am overwhelmingly supportive of. People often assume that the point of compulsory voting is to somehow educate people about politics - to force them to have an opinion. The reality has nothing to do with voters, and everything to do with ensuring good governance - By forcing politicians to care about every voter, rather than just the ones who can be bothered to go down to the poll both and vote, it means that politicians are consequently forced to address the needs of all the citizens in the country. Under a non compulsory voting system, it's mainly the wealthy and educated who vote. I was a little shocked to find out that part of the aim of the campaign advertisements that have been confusing me for the last month on TV is not to encourage voters to vote for one candidate or another, but to discou...