Skip to content

Instantly share code, notes, and snippets.

View pierre-dekode's full-sized avatar
🚀

Pierre Saïkali pierre-dekode

🚀
View GitHub Profile
@t3dotgg
t3dotgg / try-catch.ts
Last active December 7, 2025 23:13
Theo's preferred way of handling try/catch in TypeScript
// Types for the result object with discriminated union
type Success<T> = {
data: T;
error: null;
};
type Failure<E> = {
data: null;
error: E;
};
@adrienne
adrienne / mullenweg-wpe.md
Last active November 22, 2025 13:16
The Mullenweg/WPE Thing