Randoom a Michael Friis production

News Essay

(This summer I applied for the “Coders Wanted” Knight Foundation Scholarship at the Medill School of Journalism. In case anyone’s interested, I’m uploading the essays I wrote for my application.)
Question: In the new media landscape, it’s possible for anyone to do the things that professional journalists do: for instance, dig up information other people are [...]


Knight Foundation Scholarship Essay

(This summer I applied for the “Coders Wanted” Knight Foundation Scholarship at the Medill School of Journalism. In case anyone’s interested, I’m uploading the essays I wrote for my application.)
Question: How do journalism and technology relate to one another in the digital age?
Technology relates to journalism in two different ways: It is a topic of [...]


Exchange Rate data

As part of our ongoing efforts at making sense of the Tenders Electronic Daily procurement contracts, I had to get hold of historical exchange rates to convert the values of all the contracts into a comparable form. Professor Werner Antweiler at The University of British Columbia maintains a very impressive, free database of exactly this [...]


Posted
20 May 2009 @ 9am

Tagged
Meta

Folkets Ting beta launched

I’ve created a new web site on Danish politics in the tradition of The Public Whip and OpenCongress (although it’s not yet nearly as good as those guys). It’s called Folkets Ting and comes with a complimentary blog (both in Danish). Go check it out.


Transatlantic Facebook application performance woes

Someone I follow on Twitter reported having problems getting a Facebook application to perform. I don’t know what they are doing so this post is just guessing at their problem, but the fact is that — if you’re not paying attention — you can easily shoot yourself in the foot when building and deploying Facebook [...]


Webcam face detection in C# using Emgu CV

Some time ago I wrote a post on how to do face detection in C# using OpenCV. I’ve since begun using the Emgu CV wrapper instead of opencvdotnet. Emgu CV is much better, in active development and it even runs on Mono. Two gotchas:

You don’t have to install OpenCV, but instead have to copy the [...]


LinqtoCRM and updating entities

There are some pitfalls when retrieving CRM entities with LinqtoCRM and trying to update them through the CRM web service. The most intuitive (but wrong) approach would be this:
var res = from c in p.Linq()
select c;

foreach (var con in res)
{
con.address1_line1 = “foo”;
service.Update(con);
}
This fails unfortunately. I think someone at Netcompany (my former employer) worked [...]


LinqtoCRM competitor and new version

A few days, a former collegue alerted me to xRM LINQ, a new commercial query provider for Microsoft CRM. I’ve downloaded the trial, of course, and it looks pretty good. xRM LINQ decided not to use usual web service classes and instead provide their own class generator/entity mapper (LinqtoCRM has one too, but only for [...]


Found your start-up in Hong Kong?

I’ve just returned from a trip to Hong Kong. While there, I toured several startup parks and incubators and talked to a lot of entrepreneurs and some government officials. I think it just may be a pretty cool place to found your tech startup. Read on for reasons why.
In the fall (of 2008) I won [...]


Randoom on the move

Right — after a few years on ITU servers, I’ve moved my blog to a separate domain hosted by Netplads. This was mostly for SEO reasons, so that I could build Google Juice on my own and not have my page rank muddled with whatever ITU does. The new host also allows .htaccess modifications so [...]


← Before