A code vault that got hit by a design brick. Create, manage, search, and share code snippets — all powered by GitHub.
import { useState, useEffect } from "react"; export function useDebounce<T>( value: T, delay: number ): T { const [debounced, setDebounced] = useState(value); useEffect(() => { const timer = setTimeout( () => setDebounced(value), delay ); return () => clearTimeout(timer); }, [value, delay]); return debounced; }
Search and retrieve your snippets instantly with optimized GitHub indexing.
Your data lives in your own GitHub repository. Full control, full transparency.
Share public snippets with the community or privately with your team.
popeo.ts
wwqewq
uwo0wis
psjdowow