-
Recent Posts
Recent Comments
Twitter
- http://t.co/OSKx9YIs? Now there is a mental image I don't need... and no, I haven't checked it out! 2 weeks ago
- I am sherlocked! 1 month ago
- I just unlocked the "Superstar" badge on @foursquare! http://t.co/zlDpOxJH 2 months ago
- Thanks to @nebytes and @gillcleeren last night for an interesting talk. Sorry I had to leave early as I was enjoying #winrt. 2 months ago
- Cool #telerik stress toy. Ninja! http://t.co/lYph5z02 2 months ago
Archives
- January 2012
- December 2011
- November 2011
- July 2011
- April 2011
- August 2010
- July 2010
- June 2010
- May 2010
- March 2010
- February 2010
- December 2008
- November 2008
- August 2008
- July 2008
- May 2008
- April 2008
- March 2008
- January 2008
- November 2007
- October 2007
- September 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
- April 2004
- March 2004
- February 2004
Categories
Meta
Category Archives: Code
Silverlight and the Authorization Header – OAuth
I discovered the other day that there are issues when using Silverlight and setting the Authorization header, the preferred method for sending the oauth parameters to a service. http://oauth.net/core/1.0a/#consumer_req_param Silverlight 3.0 does not however let you set the Authorization header. … Continue reading
OAuth and Flickr – Part 2
Continuing on from Part 1. Update: I got the order of the parameters wrong below so my example signature was incorrect. I have now fixed that. Authenticating with Flickr The process of authenticating with Flickr is a 3 stage process. … Continue reading
Posted in Code
21 Comments
OAuth and Flickr – Part 1
Flickr recently announced (well OK, it was back in June) that they would be supporting OAuth 1.0a as the future authentication method for accessing the Flickr API. They say that sometime in 2012 the old authentication token scheme will be … Continue reading
Posted in Code
2 Comments
Developer Developer Developer North in Sunderland in October 2011
Just woke up to the news that the North East is to gets its first Developer Developer Developer (DDD) community conference. http://www.nebytes.net/post/DDD-Northe28093Saturday-8th-October-2011e28093Session-Submission-Open!.aspx The conference is community driven and community organised, and best of all free. You can submit your own … Continue reading
Windows Phone 7 – What I’ve Learnt So Far
I’ve been launching headlong into Windows Phone 7 development as can be seen from my previous post and I’ve come across some little tit bits I thought I’d post up here. Jump Start Training I can’t begin to say how … Continue reading
Flickr.Net for Silverlight/Windows Phone 7
Just a quick note to say I’ve released the first version of the Flickr.Net library to support Silverlight (3.0 and 4.0) and the new Windows Phone 7 SDK. The release can be downloaded from flickrnet.codeplex.com – use the FlickrNetSilverlight.dll file in … Continue reading
Silverlight and Monotouch with Flickr.Net
The Flickr.Net library has been getting a bit of love recently. Monotouch Firstly, it got mentioned on the dotnetrocks podcast a week or so ago, a talk with Chris Hardy about Monotouch. Postcast: http://www.dotnetrocks.com/default.aspx?showNum=568 – Flickr.Net is mentioned about 31minutes in. … Continue reading
Missing drive when using Remote Desktop
Usually when you remote desktop to another machine you can turn on automatic mapping of your local drives to drives on the server – for example you local C: drive is available at \tsclientc However recently I have been experiencing … Continue reading
Flickr.Net API Library 3.0 Release
I’ve just released a brand spanking new version of the Flickr.Net API library. The big things to note are that this version has over 150 unit tests to make sure it is working correctly. It also covers 100% of the … Continue reading
Posted in Code
3 Comments
Regex Split bug in JScript?
I’ve been messing around with JavaScript quite a bit recently and I came across a ‘bug’ in the Microsoft implementation of the split() method. Take the following example string (note the two tabs at the end): var s = “HellotHowtaretyoutt”; … Continue reading