$ youtube-dl -F <video hash>
[youtube] bpLrdqm6tWc: Downloading webpage
[youtube] bpLrdqm6tWc: Downloading video info webpage
[youtube] bpLrdqm6tWc: Extracting video information
[youtube] bpLrdqm6tWc: Downloading MPD manifest
[info] Available formats for bpLrdqm6tWc:
format code extension resolution note
This file contains 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/local/bin/emacs --script | |
;;-*- mode: emacs-lisp;-*- | |
(defun process (string) | |
"just reverse the string" | |
(concat (nreverse (string-to-list string)))) | |
(condition-case nil | |
(let (line) | |
;; commented out b/c not relevant for `cat`, but potentially useful |
This file contains 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
# /etc/iptables.rules | |
*filter | |
# allow loopback (lo0) reject anything from 127/8 which is not coming from lo0 | |
-A INPUT -i lo -j ACCEPT | |
-A INPUT ! -i lo -d 127.0.0.0/8 -j REJECT | |
# null packets, syn-flood, XMAS | |
-A INPUT -p tcp --tcp-flags ALL NONE -j DROP | |
-A INPUT -p tcp ! --syn -m state --state NEW -j DROP |
This file contains 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
#/etc/fail2ban/jail.local | |
[DEFAULT] | |
# Ban hosts for one hour: | |
bantime = 3600 | |
[sshd] | |
enabled = true |
This file contains 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
FORMAT: 1A | |
HOST: http://polls.apiblueprint.org/ | |
# Attributes Rendering | |
## User by type [/user{?userType,userTypeAsEnum}] | |
### Retrieve [GET] | |
- Parameters | |
- userType (UserType) - The user type |
This file contains 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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains 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
'use strict'; | |
module.exports = function (options, cb) { | |
return { | |
succeed: function (result) { | |
if (result === undefined) { | |
return cb(null); | |
} else { | |
if (typeof result !== 'string'){ | |
return cb(JSON.stringify(result)); | |
} else { |
This file contains 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
var fs = require('fs'); | |
var path = require('path'); | |
var drafter = require('./drafter.nomem.js'); | |
/* | |
* Convert a duration from `process.hrtime()` into milliseconds. | |
*/ | |
function ms(duration) { | |
return duration[0] * 1000 + duration[1] / 1e6; | |
} |
This file contains 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
KERNEL=="card0", SUBSYSTEM=="drm", ENV{DISPLAY}=":0", ENV{XAUTHORITY}="/home/wvi/.Xauthority", RUN+="/usr/local/bin/hotplug_monitor.sh" |
This file contains 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
--- | |
Language: Cpp | |
# BasedOnStyle: WebKit | |
AccessModifierOffset: -4 | |
AlignAfterOpenBracket: false | |
AlignConsecutiveAssignments: false | |
AlignEscapedNewlinesLeft: false | |
AlignOperands: false | |
AlignTrailingComments: false | |
AllowAllParametersOfDeclarationOnNextLine: true |