If you ever wanted a simple bit of jQuery to copy values from one set of texboxes, to another set of texboxes, this is the post for you. This is useful for copying billing address details over to the shipping address. I looked everywhere for a post like this to give me the answer, so now that I solved it myself, I created the post for others who are looking for the same answer. Read More
Every now and again, there is a need to produce a list in a random order. I've found a very reliable way to do this using linq and the Guid class. It might sound complicated, but when you see the example, it should make sense and you should see how simple it is. Read More
You may or may not be aware of the .ForEach() Method which is available on List<T> objects. It is very handy for shortening your code. Lets say you want to write a method which returns a list of MailAdress objects. A more traditional way would be to do the following: Read More
There is an annoying feature in Umbraco which, when not wanted, seems like a bug. If you want to view a page with a different template, you can enter the url/templateAliasName Read More
Shorter code for using the value of a nullable object or another value if not. Read More
If, like me, you find it very annoying that Umbraco seems to stop you from entering whatever markup you want to put in the editor, then this post should help you. Read More
If you want to be able to generate random and realistic data for your program, there is a fantastic free resource called Mockaroo. Read More
A .NET Standard library which generates random passwords with different settings to meet the OWASP requirements Read More