stuart lamour’s sussex notes

Entries categorized as ‘tech’

Rss strain

June 19, 2008 · Leave a Comment

I used to blog about things people had made/done on the web.

Now most of these things are announced via a blog post – everyone has a blog.

It’s easy for me to see new things via rss and be inspired. It seems more difficult (or just less automated!) for me to find the things i used to blog about before rss was so well delivered. It’s much easier to blog something delivered to your door than to go out onto the big wide scary internet and find original content that inspires you enough to blog it – and even then, the chances are someone beat you to it.

So basically these days the chances are most bloggers are writing a blog post about a blog post. It’s a change, you deal with it, and originality becomes more and more difficult.

If there is a perspective to add to the original post, thats good and becomes part of the community of interlinked bloggers we all know. If your a big blog or blog in a different geo/specialist area giving exposure to a smaller blog it’s probably a v.good thing.

As 20jfg we were part of a digital music panel hosted by musically at the great escape festival in brighton and all of the other panellists spoke of the web media overload/saturation they experience. Just how many rss feeds can you keep track of in your netvibes? How often do you actually check your delicious for that thing you bookmarked and must look at in further detail when you have time? And how can you blog it all ?

On those days when you really just want to give a heads without much more ? You can have your blog, of blogs.

http://www.google.com/reader/

mine with the catchy url

http://www.google.com/reader/shared/03770040989831834500

I think the icon says it best – an rss of (an rss)*

Categories: rss · tech
Tagged: , ,

del.icio.us bug

May 23, 2008 · Leave a Comment

del.icio.us allows javascript calls which return the Javascript Object Notation (JSON) output of a users tags. The JSON format is a stripped bare XML for easy use by Javascript. Unlike the tag rolls JSON tag feeds contains no style information and can be skinned much more easily to the hosting site style.

The following output is all based on the sussex.skills delicious page.

The lists below use the browser default style.

Delicious also allows javascript calls which return the JSON output of a users bookmarked urls in the JSON format. 

You can also allows you to limit the bookmarks to particular tag. 

Or pick the union of two tags

Which may sometimes result in the empty set e.g.

all good!

But then we found a bug…

A Bug – Pattern matching and the JSON post feed….

You can filter the links that are loaded by tag. To only get bookmarks tagged with both ‘art’ and ‘history’:

http://del.icio.us/feeds/json/sussex.skills/art+history

 

The sussex.skills cloud contains many hyphenated term such as ‘data-collection’. 6 links are tagged ‘data-collection’.

An intersection of a set such as ‘data-collection’ and ‘analyisis’ which contains only 1 tagged link should produce a maximum of 1 result.

The code for this query would be

http://del.icio.us/feeds/json/sussex.skills/data-collection+analysis

For our dataset the expected intersection is none – the one url tagged as ‘analysis’ has not also been tagged ‘data-collection’.

The actual outcome is:

Supposition.

None of our test data is tagged ‘data’ so the result should be the empty set, and a search for ‘data’ delivers the empty set. However a search for the tags ‘data’ AND ‘data’ revealed the answer.

 

The Delicious search algorithm is doing partial pattern matching on any term on either side of the ‘+’ sign in the javascript arguments – a greedy search.

This renders it a little useless for our needs of displaying courses tagged with a specific match of skills :(

I wrote to delicious about a month ago now, but have heard nothing back so far. Writing a reminder now.

Anyone else found this or any ideas about a work around?  

Categories: pattern matching · skillclouds · tech
Tagged: , , ,