Skip to content

Instantly share code, notes, and snippets.

View simondmorias's full-sized avatar

Simon D'Morias simondmorias

View GitHub Profile
@simondmorias
simondmorias / deploy.ps1
Created July 16, 2018 12:31
Sample SQL Deployment Script
param(
$Server = "LOCALHOST",
$DatabaseName = "WideWorldImporters-LOCALDEV",
$Environment = "LOCALDEV",
$DBVersion = "0"
)
# Statics
$Dacpac = "bin\debug\WideWorldImporters.dacpac"
$PubProfile = "WideWorldImporters.publish.xml"
@simondmorias
simondmorias / sample.json
Created June 12, 2018 08:55
Sample geoJSON
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Polygon",
"coordinates": [[[ -0.144195556640625,52.019120643633386],
[-0.127716064453125,52.00052411347729],
[-0.10848999023437499,52.01193653675363],
[-0.12359619140625,52.02883848153626],
[-0.144195556640625,52.019120643633386]]]