construction time again

by jebni on July 25, 2005

Thinking aloud: a few months ago, my supervisor offhandedly suggested that I could “create some sort of tool” as part of my research on blogging and “marginality”. Having let that brew for a while, I’m now thinking seriously about developing some software to dramatise the concepts deployed in my thesis. I’m interested in taking the metadata of the blogosphere to the limits of its own intelligibility, in order to create unexpected pathways and revaluations. It develops a line of speculation I tentatively offered in my BlogTalk paper:

If the Storybox participants can generate “neveryday” vocabularies in a wayward negotiation of their (pre)conditions of trauma, perhaps “information design” can, too. What this could involve remains to be seen.

RSS/Atom aggregation and folksonomic tagging will play a large part in this, coupled with my old flirtation with “automistake” functionality and the cybernetic unconscious. And perhaps it could help unpack the strange discussion that we had at BlogTalk about “protecting the Long Tail of the blogosphere”.

My move to software has also been lubricated by Samuel R. Delany’s “modular calculus”, a conceit with which he underwrote his self-deconstructing sword-and-sorcery series Return to Nevèrÿon. In Damien Broderick’s words, Nevèrÿon is, narratively speaking, “a generous, self-subverting machine for modelling practically everything mundane and contentious in our contemporary epistemic and social order”. Just what we need for neveryday life! But Delany also invests playfully in a dodgy scientific rhetoric that gives this vision a kind of cod-coherency, and this is where the software comes in — as an algorithmic generator of strained metaphors, a water balloon of strategic truth-identity that bursts on impact. Mysterious? It is to me, too :)…

[ tags: , , , , , , , , , , , ]

3 comments

Sounds interesting. I’ve been playing with tags and folksonomy myself as well as learning Ruby. If you are interested in seeing (or using) tRuTag, please feel free. Have fun!

by JH on 27 July 2005 at 6:24 pm. #

Funny you should mention Ruby, cos that’s what I’m planning to learn for this project — all the cool kids are doing it. And thanks for the heads-up.

by jebni on 27 July 2005 at 7:48 pm. #

I have a few languages under my belt and I started playing with Ruby about a month ago. I started with Rails and then Ruby. Now, it is by far my favorite language now. It seems that everything I hated typing in other languages such as looping constructs are so simplified.

For instance in language X when iterating through object in an array:


for {x; x=array.length; x=0 } {

array[x].do

}

or


for x = 0 to array.length

array[x].do

next

in Ruby would be:

array.each { |x| x.do }

If you are interested, here are my Ruby bookmarks.

by JH on 30 July 2005 at 11:37 am. #