I hereby claim:
- I am pavelbinar on github.
- I am pavelbinar (https://keybase.io/pavelbinar) on keybase.
- I have a public key whose fingerprint is DF34 2F02 0515 A49C EC82 4DD8 4118 DA48 1C39 71D4
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"> | |
| <CORSRule> | |
| <AllowedOrigin>*</AllowedOrigin> | |
| <AllowedMethod>HEAD</AllowedMethod> | |
| <AllowedMethod>GET</AllowedMethod> | |
| <AllowedMethod>PUT</AllowedMethod> | |
| <AllowedMethod>POST</AllowedMethod> | |
| <AllowedMethod>DELETE</AllowedMethod> | |
| <MaxAgeSeconds>3000</MaxAgeSeconds> |
Instuctions available (moved) at REMOTE ORIGIN website: Extract Subtitles From mkv
| # Source: https://askubuntu.com/questions/178481/how-to-download-an-mp3-track-from-a-youtube-video | |
| youtube-dl --extract-audio --audio-format mp3 <video URL> |
| docker stop $(docker ps -a -q) | |
| docker rm $(docker ps -a -q) |
| #!/bin/bash | |
| # Script to launch installer jar based on linux/mac os | |
| unamestr=`uname` | |
| if [[ "$unamestr" == 'Linux' ]]; then | |
| sudo java -jar "${BIN_DIR}/Installer.jar" tv $@ | |
| else | |
| sudo java -XstartOnFirstThread -jar "${BIN_DIR}/Installer.jar" tv $@ | |
| fi |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Two Columns With Different Items Alignment</title> | |
| <style id="jsbin-css"> | |
| .column { | |
| position: absolute; | |
| width: 200px; | |
| height: 300px; |
| #!/bin/sh | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Set the colours you can use | |
| black='\033[0;30m' | |
| white='\033[0;37m' | |
| red='\033[0;31m' |
| @mixin center($width, $height) { | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| height: $height; | |
| width: $width; | |
| margin-left: - $width / 2; | |
| margin-top: - $height / 2; | |
| } |