Tag: .NET
-
Babeling in defence of JavaScript
And so it goes, the eternal question “What is wrong with JavaScript?” and the inevitable, inescapably droll, reply: Nothing![] == '' // -> true[] == 0 // -> true[''] == '' // -> true[0] == 0 // -> true[0] == '' // -> false[''] == 0 // -> true — Scott Hanselman (@shanselman) June 16,…
-
A functional solution to interfacitis?
/ˈɪntəfeɪsʌɪtəs/ noun noun: interfacitis inflammation of a software, most commonly from overuse of interfaces and other abstractions but also from… well… actually it’s mostly just interfaces. An illness of tedium Over the years my experience has come to show me that unnecessary abstractions cause some of the most significant overheads and inertia in software projects.…
-
FileFormatException: Format error in package
OK so we’re all completely clear on what this error means and what must be done to resolve it right? I mean with a meaningful error like that how can anyone be mistaken? Oh? What’s that? You still don’t know? Let’s be a bit more specific: System.IO.FileFormatException: Format error in package Better? Didn’t think so.…
-
Things I wish I knew 10 years ago: Abstractions
We need to talk about abstractions The main reason I decided to start this blog is that I have begun working for a company that has genuinely challenged many of my assumptions about how software should be developed. I have spent much of my career learning from the more prominent voices in software development about…
-
A C#/.NET SCEP Client
Source Code: Download Zip Archive As you have ended up here I must assume that, like me, you have a requirement to interface with a SCEP server using .NET and you have struggled to find any helpful examples of how to achieve this. I hope that this blog entry might be of some help to…