Skip to content

Instantly share code, notes, and snippets.

View limhenry's full-sized avatar
🦄
Coding like a T-Rex

Henry Lim limhenry

🦄
Coding like a T-Rex
View GitHub Profile
@CodingDoug
CodingDoug / README.md
Last active December 17, 2022 10:23
Copying data from Firebase Realtime Database to a Google Sheet in real time via Cloud Functions
@kdzwinel
kdzwinel / raf_throttler.js
Created July 7, 2017 08:12
Waiting for IntersectionObserver to get a better support…
function rafThrottler(callback) {
let rafId = null;
const flush = () => {
callback();
rafId = null;
};
return () => {
if (rafId) {
return;