Skip to content

Instantly share code, notes, and snippets.

TypeScript 5 hrs 34 mins β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘ 90.5%
JSON 22 mins β–ˆβ–Žβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 6.0%
JavaScript 4 mins ▏░░░░░░░░░░░░░░░░░░░░ 1.1%
Text 3 mins ▏░░░░░░░░░░░░░░░░░░░░ 0.8%
HTML 2 mins ▏░░░░░░░░░░░░░░░░░░░░ 0.7%
@rnmeow
rnmeow / 🌧 Quote
Last active September 10, 2024 20:17
β€œRadiate boundless love towards the entire world…”
β€” The Buddha
Updated at 11 Sept 2024, 04:17:04 GMT+8
@rnmeow
rnmeow / adobe_ae_timers.js
Last active April 21, 2023 14:42
Modern JavaScript code of music timer for Adobe After Effects.
/* 1. Timer */
function padZero (n) {
if (n < 10) return '0' + n;
else return n.toString()
}
t = Math.floor(Math.max((time - inPoint), 0));
min = Math.floor((t % 3600) / 60);
sec = padZero(Math.floor(t % 60));
`${min}:${sec}`