Skip to content

Instantly share code, notes, and snippets.

View samartzidis's full-sized avatar

George Samartzidis samartzidis

View GitHub Profile
@mattmc3
mattmc3 / modern_sql_style_guide.md
Last active October 2, 2025 20:17
Modern SQL Style Guide
layout author title revision version description
default
mattmc3
Modern SQL Style Guide
2019-01-17
1.0.1
A guide to writing clean, clear, and consistent SQL.

Modern SQL Style Guide

@altrive
altrive / PSNuGet.ps1
Created January 24, 2014 14:29
Sample code to use NuGet as PowerShell package manager
$ErrorActionPreference = "Stop"
Set-StrictMode -Version Latest
$Script:PackageManager = $null
function Initialize-NuGetPackageManager
{
[CmdletBinding()]
param (
[hashtable] $Repositories = @{},