Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@badmotorfinger
badmotorfinger / create_directory_hash.ps1
Created April 28, 2023 20:50
Generates a single hash from the contents of a directory
# Define the directory to hash
$dir = "C:\Path\To\Directory"
# Define the hash algorithm to use
$hashAlgorithm = "SHA256"
# Get all files in the directory (including subdirectories)
$files = Get-ChildItem -Path $dir -Recurse | Where-Object {!$_.PSIsContainer}
# Create an empty hash object
# sudo -s
# Then (do not resize the terminal window. Seems to affect the ability to accept the MS EULA):
# curl -Lks https://gist.githubusercontent.com/badmotorfinger/b8f0665125629ed105cb0f3574a20713/raw/eee6723994c3a07d51f13e004a58ebeaaea18b19/fresh-install.sh | /bin/bash
# Prevent Windows and Linux fighting over time. Prevent Linux from changing time on the mobo
timedatectl set-local-rtc 1 --adjust-system-clock
# Proton VPN
@badmotorfinger
badmotorfinger / dupfinder.ps1
Last active July 23, 2022 19:59
Use ReSharper command line tool dupFinder to produce a report of duplicated C# code
$reportFileName = 'dupfinder.html'
$dupFindLocation = 'C:\dev\tools\ReSharperCliTools\dupfinder.exe'
if (-not (Test-Path $dupFindLocation)) {
Write-Host "dupfinder.exe not found in path $dupFindLocation"
Write-Host "Download tools from https://www.jetbrains.com/help/resharper/2017.1/ReSharper_Command_Line_Tools.html"
exit
}
$xsl = '<?xml version="1.0" encoding="utf-8"?>
@badmotorfinger
badmotorfinger / Enable-CSharp-WarningsAsErrors.ps1
Last active June 15, 2017 06:44
Recursively processes all csproj files in a directory and adds/updates a node for both Release and Debug configurations to treat the specified C# warnings as errors
# Warnings to treat as errors
# See end of script for descriptions
$cSharpWarnings = '162,168,169,219,1717,0067,649,618,183,184,1060,1058,809,672,612,1522,465,1998'
$formatting = ',1570,1574'
$interopWarnings = ',626,684,824'
$casWarnings = ',688'
$warnings = $cSharpWarnings + $formatting + $interopWarnings + $casWarnings
Get-ChildItem *.csproj -Recurse | % {
@badmotorfinger
badmotorfinger / json-pretty
Created July 29, 2014 05:26
A compact JSON beautifier
// Highly compact JSON beautifier/formatter. Not very efficient and could definitely be improved. The main issue is with
// the number of allocations and memory presure being placed on the heap and garbage collector if the input is large.
// It is the shortest in terms of code size though.
// Source: http://stackoverflow.com/questions/4580397/json-formatter-in-c/24782322#24782322
private const string INDENT_STRING = " ";
static string FormatJson(string json) {
int indentation = 0;
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Reflection;
namespace Bleroy.Helpers {
public static class NotNull {
public static TProp Get<TSource, TProp>(this TSource source, Expression<Func<TSource, TProp>> property) where TSource : class {
if (source == null) return default(TProp);
var current = property.Body;
@badmotorfinger
badmotorfinger / SelectMany God
Last active August 29, 2015 13:58
Using the SelectMany() God function.
void Main()
{
// An implementation of the Where method using the SelectMany() method.
TestWhere();
// An implementation of Join using the SelectMany() method.
TestJoin();
}
public static IEnumerable<T> Where<T>(IEnumerable<T> stuffs, Func<T, bool> predicate)
@badmotorfinger
badmotorfinger / gist:9618765
Last active August 29, 2015 13:57
Use LINQ query expressions without requiring IEnumerables, to compose functions.
// Full credit goes to Wes Dyer http://blogs.msdn.com/b/wesdyer/archive/2008/01/11/the-marvels-of-monads.aspx
// Explanation of how query expressions are translated in to extension method syntax.
public class Identity<T>
{
public T Value { get; private set; }
public Identity(T value) { this.Value = value; }
public static implicit operator Identity<T>(T value) {
return new Identity<T>(value);
// Only let input Observable fire every 'n' seconds at most
// but unlike Throttle, items fire immediately when they aren't
// rate-limited.
public IObservable<T> RateLimit<T>(this IObservable<T> This, TimeSpan interval, IScheduler scheduler)
{
var slot = default(IObservable<Unit>);
var input = This.Publish().RefCount();
return input.Window(input, _ => {
if (slot != null) return slot;
@badmotorfinger
badmotorfinger / gist:5972009
Last active December 19, 2015 14:49
A LINQ extension method which eagerly finds an item or items with the lowest value in the collection.
[Test]
public void TestEmpty()
{
CollectionAssert.AreEqual(
new int[0].MinsBy(i => i),
new int[0]);
}
[Test]
public void TestPreserveOrderAndValue()