Archive for May, 2007
Progress with the LINQ to RDF Query Provider is continuing apace. I have been pretty tightly focused for the last few days, so I haven’t ad time to post an update. I’ve lately been working on a SPARQL query, which will allow me a much richer palette to play with. Here’s the current version of [ READ MORE ]
Here’s an example I pasted from LinqToRdf. private void GenerateBinaryExpression(Expression e, string op) { if (e == null) throw new ArgumentNullException("e was null"); if (op == null) throw new ArgumentNullException("op was null"); if (op.Length == 0) throw new ArgumentNullException("op.Length was empty"); BinaryExpression be = e as BinaryExpression; if (be != null) { QueryAppend("("); Dispatch(be.Left); QueryAppend(")"+op+"("); [ READ MORE ]
Paul Stovell has written a good post calling for people to make writing good code a habit they employ every day. Think of it as like going to work in dirty underwear. What would your mother think if you were run over in the street, and they found you had been doing Agile[ READ MORE ]
As promised last time, I have extended the query mechanism of my little application with a LINQ Query Provider. I based my initial design on the method published by Bart De Smet, but have extended that framework, cleaned it up and tied it in with the original object deserialiser for SemWeb (a semantic web library [ READ MORE ]
Last time I hurriedly showed you how you can perform the next step of converting a triple store into an ORM system of sorts. The purpose of all this activity, and the reason I left off blogging about LINQ was that I am working on a system to allow me to use LINQ with a [ READ MORE ]
I’ve been off the air for a week or two – I’ve been hard at work on the final stages of a project at work that will go live next week. I’ve been on this project for almost 6 months now, and next week I’ll get a well earned rest. What that means is I [ READ MORE ]
Normally I have a very optimistic outlook. Especially when it comes to technological breakthroughs. But this morning I was given pause for thought. MAKE magazine carried a news article today about a highly accurate DNA replicator for $10. I am fully convinced that such breakthroughs can be used to tackle the issues of world poverty, [ READ MORE ]
Get every new post delivered to your Inbox.