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
FROM golang:1.8 | |
WORKDIR /app | |
COPY ./executable /app/executable | |
CMD ["./executable"] |
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
// 1- go to https://www.facebook.com/pages/?category=liked | |
// 2- inspect to find the unlike class name | |
// 3- add it to unlikeClassName var and run that gist | |
var unlikeClassName = '_43rm' | |
Array.from(document.getElementsByClassName(unlikeClassName)).forEach((el) => { | |
el.click(); | |
}); |
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
package main | |
import ( | |
"io/ioutil" | |
"log" | |
"os" | |
) | |
func main() { | |
files, err := ioutil.ReadDir("./Camera") |
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
recod in OBS | |
export as MP4 | |
if you have exported to mkv | |
convert it first to mp4 | |
$fmpeg -i ./source/3.mkv -c:v libx264 -preset ultrafast -crf 0 ./mp4/3.mp4 | |
convert to mov | |
$ ffmpeg -i raw_footage.mp4 -vcodec mjpeg -q:v 2 -acodec pcm_s16be -q:a 0 -f mov footage_mjpeg.mov | |
import in davinci resolve | |
export as youtube file (will come out without audio) | |
Encode back |
OlderNewer