SQL Server Date to Varchar Conversion Formats

SQL Server Date to Varchar Conversion Formats

Often, I find the need for a specific format for a date. SQL has lots of great options with its convert function. Here's a handy chart. select convert(varchar, getdate(), 101) -- 12/23/2015 select convert(varchar, getdate(), 102) -- 2015.12.23 select convert(varchar, getdate(), 103) -- 23/12/2015 select convert(varchar, getdate(), 104) -- 23.12.2015 select convert(varchar, getdate(), 105) -- 23-12-2015 select [...]

Spinning up a New VM via Azure PowerShell – Quick

  A more in-depth version of this post can be found here. This article assumes that you have the following: An active Azure subscription. An Azure PowerShell installation. (This differs from the normal PowerShell installation.) Let’s get started. From the Azure Powershell command prompt, type: Add-AzureAccount Sign in to Azure. To get your SubscriptionName, simply execute [...]

An Introduction to Writing Externs in C for Max/MSP

An Introduction to Writing Externs in C for Max/MSP

Note that this paper was written in 2005-2006 while studying Computer Science at the University of Chicago. At the same time, I had added several Electronic Music courses with Howard Sandroff at UC. This paper might also be subtitled "when worlds collide".