Skip to content

Instantly share code, notes, and snippets.

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

Mihai DarkAng3L

πŸ’­
πŸ”¨
View GitHub Profile
@t3dotgg
t3dotgg / try-catch.ts
Last active April 6, 2025 04:09
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;
};
@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. */
}
@wojteklu
wojteklu / clean_code.md
Last active April 6, 2025 07:15
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules