Skip to content

Instantly share code, notes, and snippets.

@Takaitra
Takaitra / update_amp_cache.py
Last active August 31, 2021 05:25
Update AMP Content
#!/usr/bin/env python3
import base64
import glob
import readline
import time
import OpenSSL
from OpenSSL import crypto
import requests
@Takaitra
Takaitra / debounce.js
Last active May 10, 2018 18:58 — forked from Jon-Alonso/debounce.js
ES6 Debounce function
export function debounce (func, delay = 500) {
let timeout;
return function (...args) {
clearTimeout(timeout);
timeout = setTimeout(() => { func.apply(this, args) }, delay);
};
}