Recent Comments
rmiesen on Continuous Testing for Visual Studio: @Håvard: thank you for your follow up. I am glad to hear that the...
Håvard on Continuous Testing for Visual Studio: @rmiesen Installed code contracts, currently works fine for me on...
rmiesen on Continuous Testing for Visual Studio: That’s very strange. On my machine, the Enum Utilities...
Håvard on Continuous Testing for Visual Studio: @rmiesen Thanks for reporting your problem. Sadly, I am not even...
rmiesen on Continuous Testing for Visual Studio: I attempted to use the continuous integration plugin for VS 2010 on...
Glen on RSA using BouncyCastle: Hi Harvard, Thanks for this. I was actually able to use your suggestions in blinding...
Twitter
- UI designers: An animated progress bar indicating how long a pop-up will stay open is not helpful. It just makes the pop-up even more noisy. 2010/09/01
- Really cool interactive music video using HTML5: http://bit.ly/cdtaOF 2010/08/31
- @follesoe If you're doing code-first, go with EF4 CTP4. CTP lacks support for migration, but that's coming. It's looking very promising. 2010/08/30
Category Archives: Technical
Mocking HtmlHelper in ASP.NET MVC 2 and 3 using Moq
Still having trouble mocking HtmlHelper? This is an update to my previous post on mocking HtmlHelper way back when ASP.NET MVC RC1 was released. Eric notified me through a comment on the post and a question on StackOverflow that the … Continue reading
Copyable available on GitHub
People actually download and use Copyable, and they tend to use it in scenarios I haven’t used it in. This results in bug reports and patch submissions. So far, these have been given to me by e-mail or by blog … Continue reading
Posted in Announcements, C#, Code, Technical
Tagged .net, C#, Code, copy, copyable, git, github, open source, Technical
2 Comments
Minimalistic MapReduce in .NET 4.0 with the new Task Parallel Library (TPL)
Among the news in .NET 4.0 are several additions by the Parallel Computing Platform Team. As I wandered through the documentation of the Task library with cloud computing and parallelism buzz in the back of my head, I got the … Continue reading
Posted in C#, Code, Concurrency, Technical
Tagged .NET 4.0, C#, Code, Concurrency, Parallel, Technical, TPL
Leave a comment
RSA using BouncyCastle
Trying to do RSA using BouncyCastle, but struggling to find your way around the API? In a previous post (see here) I pondered why the RSA implementation in System.Security.Cryptography is restricted to only the most common usage scenarios. I mentioned … Continue reading
Mocking HtmlHelper in ASP.NET MVC RC1 using Moq
For those of you trying to mock HtmlHelper, but finding it difficult, here’s a mock that works in ASP.NET MVC RC1.