https://github.com/rg3/youtube-dl/
apt-get install libav-tools ffmpeg # Linux (either one of either should do) brew install ffmpeg # OSX choco install ffmpeg # Windows
| FROM rust:alpine | |
| RUN apk add --no-cache \ | |
| bash \ | |
| binutils-gold \ | |
| ca-certificates \ | |
| clang \ | |
| curl \ | |
| g++ \ | |
| git \ |
| #!/usr/bin/env python | |
| # -*- coding: iso-8859-1 -*- | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Wordpress Watcher | |
| # Automating WPscan to scan and report vulnerable Wordpress sites | |
| # Forked from https://gist.github.com/Neo23x0/2a97509f50c57a2e737e | |
| # v0.1.1 | |
| # March 2017 | |
| # |
https://github.com/rg3/youtube-dl/
apt-get install libav-tools ffmpeg # Linux (either one of either should do) brew install ffmpeg # OSX choco install ffmpeg # Windows
| g_LastCtrlKeyDownTime := 0 | |
| g_AbortSendEsc := false | |
| g_ControlRepeatDetected := false | |
| *CapsLock:: | |
| if (g_ControlRepeatDetected) | |
| { | |
| return | |
| } |
| #!/bin/bash | |
| # some code copied from http://www.lowendbox.com/blog/wordpress-cheap-vps-lowendscript/ | |
| if [ -z "$1" ] | |
| then | |
| echo "Usage: nginx-site <hostname> (without the www. prefix)" | |
| exit | |
| fi |