Wiki
A collection of 86 articles
Recognition-Primed Decision Making Model
Recognition of goals, cues, expectancies and actions. Perform the actions if there’s a pattern match. If there are several candidates, people usually try them one by one and adopt the first one which meets all the requirements.
SWR
SWR is a React Hook for data fetching. FAQ ┌ How to Disable the First Fetching When Setting refreshInterval? Set revalidateOnMount to false.
Tailwind CSS
FAQ ┌ How to Apply Classes Via CSS Use @apply. @tailwind base; @tailwind components; @tailwind utilities; @layer base { h1 { @apply text-2xl; } h2 { @apply text-xl; } } @layer components { .
Fzf
Fzf is a command-line interactive selector which supports fuzzing filter.
Fusion Tree
Fusion is a B-tree that there are at most $w^{1/6}$ keys in a node. These keys can be compressed into a single machine word using approximate Patricia code. Fusion Trees CS166: Data Structures
NP-completeness
A problem is said to be NP-hard if everything in NP can be transformed in polynomial time into it, and a problem is NP-complete if it is both in NP and NP-hard. 📖 NP-completeness - Wikipedia
One-on-one Meeting
Keywords 1:1, 1-1 Done is better than perfect Setup My Template What is the most important thing we need to discuss today? What are your most significant accomplishments since we last met? What are the most important things you will focus on before we meet next?…
Taking Notes
Encode in my own words instead of transcribing. Create shorthand system. Abbreviations Symbols Colors Create critical summary. Include your own questions, observations and other critical thoughts. Cornell Style: Take notes on the right two-thirds of the page.
fd
fd is a program to find entries in your filesystem. It is a simple, fast and user-friendly alternative to find. While it does not aim to support all of find’s powerful functionality, it provides sensible (opinionated) defaults for a majority of use cases.