Skip to content

Instantly share code, notes, and snippets.

View kaburkett's full-sized avatar
:octocat:
Currently working with Typescript, C#, DevOps, Azure

Kyle Burkett kaburkett

:octocat:
Currently working with Typescript, C#, DevOps, Azure
View GitHub Profile
@craigtp
craigtp / LargestDBs
Last active November 16, 2023 15:41
List the largest databases on a SQL Server instance
SELECT DB_NAME(database_id) AS DatabaseName,
Name AS Logical_Name,
Physical_Name, (size*8)/1024 SizeMB
FROM sys.master_files
ORDER BY SizeMB DESC
@kmorcinek
kmorcinek / .gitignore
Last active April 23, 2024 21:36
.gitignore for C# projects
# The following command works for downloading when using Git for Windows:
# curl -LOf http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore
#
# Download this file using PowerShell v3 under Windows with the following comand:
# Invoke-WebRequest https://gist.githubusercontent.com/kmorcinek/2710267/raw/ -OutFile .gitignore
#
# or wget:
# wget --no-check-certificate http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore
# User-specific files