Skip to main content

Recently Updated Pages

Docker Buildx Multi-Arch

Code Snippets

sudo docker buildx create --use --name multi-arch-builder Usage: sudo docker buildx build --pla...

Updated 1 month ago by Admin

macOS Defaults

Code Snippets

Auto-Resize Columns in column view defaults write com.apple.finder _FXEnableColumnAutoSizing -bo...

Updated 6 months ago by Admin

Handle Exceptions with Task.WhenAll()

Code Snippets

var tasks = Enumerable.Range(0, 10).Select(async _ => await Task.Delay(1000)); var whenAll = Tas...

Updated 6 months ago by Admin

RegEx in multiple files multi-line pattern

Code Snippets

pcregrep -h -r --include=".*\.cs" -M "LogEvent\([\s\S]*?\)\;" . -h: Exclude filenames -r: rec...

Updated 8 months ago by Admin

Async Parallel

Code Snippets

static Task ParallelForEachAsync<T> (IEnumerable<T> source, ...

Updated 1 year ago by Admin

Left outer join

Code Snippets

from leftTable in context.leftTable join rightTable in context.rightTable on leftTable.FKRight...

Updated 1 year ago by Admin

List iteration using span

Code Snippets

var list = new List<int>(); foreach(var item in CollectionsMarshal.AsSpan(list)) { } On...

Updated 1 year ago by Guest

Optional<T>

Code Snippets

See Attachments

Updated 1 year ago by Guest

Load Assembly Dynamically

Code Snippets

In order to Copy NuGet dependecies to the output folder add this to classlibrary.csproj: <CopyLo...

Updated 1 year ago by Admin

Mount host volumes in WSL2

Code Snippets

Add the following to /etc/wsl.conf [automount] options = "metadata"

Updated 1 year ago by Admin

Change file encoding with linux

Code Snippets

To get current encoding: file -i {filename} To convert it: iconv -f {sourceEncoding} -t {targe...

Updated 1 year ago by Admin

Build project with SourceGenerator on linux

Code Snippets

Add Microsoft.Net.Compilers.Toolset package to the project that references the source generator.

Updated 1 year ago by Guest

Batching with LINQ

Code Snippets

static IEnumerable<IEnumerable<T>> Batch<T>(this IEnumerable<T> source, int batchSize) { ...

Updated 2 years ago by Guest

Authentik NPM Redirect with Websocket support

Code Snippets

# Increase buffer size for large headers # This is needed only if you get 'upstream sent too b...

Updated 2 years ago by Guest

AsyncHelper

Code Snippets

public static class AsyncHelper { private static readonly TaskFactory _myTaskFact...

Updated 3 years ago by Guest