Skip to content

Instantly share code, notes, and snippets.

View songminkyu's full-sized avatar
🏠
Working from home

songminkyu

🏠
Working from home
View GitHub Profile
@songminkyu
songminkyu / _deobfuscating-unminifying-obfuscated-web-app-code.md
Created July 17, 2025 12:03 — forked from 0xdevalias/_deobfuscating-unminifying-obfuscated-web-app-code.md
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code
@songminkyu
songminkyu / CopyOnWriteDictionary.cs
Created April 7, 2021 04:09 — forked from mikernet/CopyOnWriteDictionary.cs
Thread-Safe, Lock-Free, Append-Only, Copy-On-Write Dictionary
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
namespace Singulink.Collections