blog
My blog of techy stuff, ranging around SQL (SQL Server, that is), C# and .net, JavaScript and a smattering of stuff about the Orchard CMS (that powers my site) as I get more familiar with it. There's the occasional non-technical post when something is of interest to me that I feel is worth sharing, but they should be few and far between
-
Creating a branch from a revision with Git
A very short "memo to self" post to note down how to create a branch using the git command line, from a specific revision:
git checkout -b MyBranchName 22322e768c9956bb93a3701504250124c4d5bf53
This …
-
A couple of links on recruitment
I've been a bit quiet over the past month due to starting a new role which has kept me thoroughly occupied with the usual "information brain-splosion". One of the things I'm going to have to do now I' …
-
Being more accessible: Highlighting images that don't have alternate text
I saw a tweet recently that showed a really cool trick you can use to highlight when images are either have missing, or empty, alternate text. As Wikipedia says (so it must be true!):
The alt …
-
Setting an O365 user to have no password expiry via PowerShell
If, like me, you're using Office 365 as your email solution you may have encountered the situation where you don't get emails landing from such things as blog comments because the password has …
-
Link Dump
Another assortment of links, of interest to me, that may be of interest to you!
The Rough History of MSBuild
This one's here really as a jumping-off point to the other posts in this guys blog. He's …
-
The dreaded coding / technical test
I've given, and taken, different flavours of coding/technical "test" which seem to fall into three main buckets
Write some code on a computer
Write some code on a whiteboard
Talk through a …
-
Using is instead of == to check whether an object is a null reference
A tweet yesterday by Bertrand Le Roy:
Something in C# I learned today: `if (a is null)` is not just prettier, it's also more robust than `if (a == null)`. thx @MadsTorgersen
— Bertrand Le Roy (@ …
-
Putting an "about me" blurb at the bottom of each post
By the time you read this, each of the posts in this blog (and the recipe blog) will come with an "about me" blurb at the bottom of the page, in no particular order, Scott Hanselman has one:
As …
-
Top 10 posts for October 2017
I put together the occasional "link dump" post where I drop a series of links that I've had open in tabs that are of interest to me, and that I think may be of interest to others. In a semi-related …
-
The simplest ASP.NET Core app that'll serve static content
NOTE: This post is targeting .NET Core / ASP.NET Core 2.0, not 1.x
I have a confession to make, I've not spent much time or energy looking into the ins and outs of .NET Core, ASP.NET Core, Entity …