Skip to content

Instantly share code, notes, and snippets.

View Peter-Juhasz's full-sized avatar

Juhász Péter Peter-Juhasz

View GitHub Profile
@Peter-Juhasz
Peter-Juhasz / AsciiStringAllocationCache.cs
Last active February 9, 2025 10:58
String allocation cache for common ascii byte sequences
using System.Buffers;
using System.Collections.Frozen;
using System.Diagnostics.CodeAnalysis;
using System.Text;
namespace App.Core.Collections;
public sealed class AsciiStringAllocationCache
{
public AsciiStringAllocationCache(ReadOnlySpan<string> strings, bool ignoreCase = false)
@Peter-Juhasz
Peter-Juhasz / vs.css
Last active November 14, 2015 11:46
Visual Studio Theme for GitHub
.pl-k {
color: blue;
}
.pl-v {
color: blue;
}
.pl-c1 {
color: #000;
@Peter-Juhasz
Peter-Juhasz / vs.css
Last active August 18, 2016 19:50
Visual Studio Theme for Monaco Editor
.monaco-editor .current-line {
background: none !important;
border: none !important;
}
.monaco-editor .cursors-layer > .cursor {
width: 1px !important;
}
.monaco-editor .bracket-match {