Skip to content

Instantly share code, notes, and snippets.

@tomarbuthnot
tomarbuthnot / gist:1c148a3ad09641f6313d
Created October 8, 2014 15:48
Sort Files by Size PowerShell
Get-ChildItem -Path c:\ -Recurse | Sort-Object Length -Descending | Select-Object length,name,directory -First 100 | Format-Table -AutoSize
@nthdeveloper
nthdeveloper / Moq_Cheat_Sheet.md
Last active October 17, 2025 13:02
Moq cheat sheet for most common scenarios