Skip to content

Instantly share code, notes, and snippets.

View anig1scur's full-sized avatar
🙄
Out sick

Stone anig1scur

🙄
Out sick
View GitHub Profile
@anig1scur
anig1scur / not me
Last active October 27, 2025 20:20
me
@anig1scur
anig1scur / emoji.js
Created June 15, 2024 16:29
categoried emoji list
const emojis = {
"Gesture": [
{
"name": "+1,thumbsup",
"char": "👍"
},
{
"name": "-1,thumbsdown",
"char": "👎"
@anig1scur
anig1scur / me.md
Last active October 26, 2025 20:28
me

not me

@anig1scur
anig1scur / stop-watch.js
Created December 6, 2023 05:17
two stopwatches using useRef and useState,, what's the difference?
function Stopwatch1() {
const timerIdRef = useRef(0);
const [count, setCount] = useState(0);
const startHandler = () => {
if (timerIdRef.current) {
return;
}
timerIdRef.current = setInterval(() => setCount((c) => c + 1), 1000);
};