This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Expletives({ children }) { | |
let [, forceUpdate] = useState(); | |
let mounted = useRef(false); | |
useEffect(() => { | |
mounted.current = true; | |
// don't want to cause any seizures. | |
if (window.matchMedia("(prefers-reduced-motion: reduce)").matches) { | |
return; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum-config-manager --enable "Red Hat Enterprise Linux Server 7 Extra(RPMs)" | |
sudo yum install docker -y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import numpy | |
import pyaudio | |
import re | |
import sys | |
WIDTH = 79 | |
BOOST = 1.0 |