How to switch email providers without losing your emails

Recently, I needed to switch to a new email server and I didn’t want to lose all my emails. If I were switching from one cPanel web host to another it would be easy because cPanel has a migration process. But What if you’re moving between two different types of systems? I figured there has […]

Read More…

Dynamic CSS Classes in LESS

I’m always learning something new or getting better at things. Constant improvement is important to me. I recently began using LESS at work and figured out how to do something cool that I thought was worth documenting and sharing. If you’re still reading this you probably already have some exposure to both LESS and CSS, so I’ll […]

Read More…

Get Row Number Based on Physical Location in SQL Server

Getting Row Number in SQL Server Assigning a row number to your results in SQL is a common task and is doing so is pretty straight-forward so I won’t spend a lot of time on it here. Take a look at the syntax here: USE AdventureWorks2008R2; GO SELECT PersonType, FirstName, LastName, ROW_NUMBER() OVER(PARTITION BY PersonType […]

Read More…