Skip to content

Instantly share code, notes, and snippets.

View DarkAng3L's full-sized avatar
πŸ’­
πŸ”¨

Mihai DarkAng3L

πŸ’­
πŸ”¨
View GitHub Profile
@DarkAng3L
DarkAng3L / try-catch.ts
Last active March 25, 2025 19:40 — forked from t3dotgg/try-catch.ts
Handling try/catch in TypeScript
// Types for the result object with discriminated union
type Success<T> = [null, T];
type Failure<E> = [E, null];
type Result<T, E = Error> = Success<T> | Failure<E>;
export async function tryCatch<T, E extends Error = Error>(
promise: Promise<T>
): Promise<Result<T, E> {
try {
const result = await promise;
@DarkAng3L
DarkAng3L / CSS: Reset by Kevin Powell.css
Created April 16, 2024 10:18
CSS: Reset by Kevin Powell
/*
* Kevin Powell
* https://youtu.be/2lyDv0wOQuQ
* https://youtu.be/cCAtD_BAHNw
*/
*, *::before, *::after {
box-sizing: border-box; /* Switch to border-box for box-sizing. */
}