Skip to content

Instantly share code, notes, and snippets.

View cyysky's full-sized avatar

CHONG YOE YAT cyysky

View GitHub Profile
@cyysky
cyysky / Popcat click
Last active August 15, 2021 06:31
Popcat
setInterval(()=>{document.dispatchEvent(new Event("keydown"));document.dispatchEvent(new Event("keyup"))},40)
/*
1) Open https://popcat.click
2) Open console (F12)
3) Insert code & run
*/
var event = new KeyboardEvent('keydown', {
key: 'g',
ctrlKey: true
@cyysky
cyysky / README.md
Last active September 30, 2019 16:29 — forked from willprice/README.md
Install OpenCV 4.1.1 for Raspberry Pi 3 or 4 (Raspbian Buster) with Optional OpenGL QT5 support

Install OpenCV 4.1.1 on Raspbian Buster

$ chmod +x *.sh
$ ./download-opencv.sh
$ ./install-deps.sh
$ ./build-opencv.sh
$ cd ~/opencv/opencv-4.1.1/build
## For success python compile need to add -latomic manually to link.txt      
#https://github.com/opencv/opencv/issues/15192