Blog
Paul Seal's personal blog
Blog posts
Here are some tips about going to Codegarden that you will learn from going yourself, but you will benefit from if you find them out before you go.
umbraco How to fix the error when a user is deleted in Umbraco v7This is a simple and specific example for when someone has deleted a user in Umbraco 7 and now the pages aren't loading in the backoffice.
sql How to strip the trailing slash off a URL in SQLThis post shows you how to remove the trailing slash off a URL in SQL and teaches you a lesson about Skybrud Redirects.
sql SQL snippet for creating a database with a login and user in SQLThis post is just basically a SQL snippet for you to copy, paste and edit for use when you need to create a SQL database with a login and a user.
umbraco How to create a custom section and dashboard in Umbraco 8In this post I share some code with you that I used to create a custom section and dashboard in Umbraco 8.
umbraco How to serve content for legacy .html urls in an Umbraco 8 siteIn this post I share some code to help you serve content in your umbraco site where you have stored a legacy .html urls as a property on your content items in umbraco.
umbraco How to send emails in Umbraco 9 using IEmailSenderIn this post I show you how to send emails in Umbraco 9
umbraco How to create a NuGet package for a simple App_Plugin style Umbraco v9 packageIn this post I will show you what is required to create a NuGet package out of an App_Plugin type package which doesn't have any .NET code.
umbraco Umbraco 9 Useful SnippetsJust a reference post for me to use when working with Umbraco v9
umbraco 100 Days Of Umbraco Day 1I have decided to set myself a challenge of doing 100 days of code, but based on Umbraco.
umbraco How to do CRUD operations with NPoco in Umbraco 8How to do CRUD operations with NPoco in Umbraco 8
dev Regex to check if there are at least x number of digits in a phone number stringThis post gives you a regex so you can check if there are at least x numbers in a string. This is ideal for phone number fields where you don't care about the format but you do want there to be some numbers.