I hereby claim:
- I am diftraku on github.
- I am diftraku (https://keybase.io/diftraku) on keybase.
- I have a public key ASB5wpHK3e1BcwCBw-IQilrcTQ0VnNkf0AtIn1Q6S08Nvwo
To claim this, I am signing this object:
| #!/bin/bash | |
| SUB_TRACKS="2:jpn 3:eng" | |
| find . -type f -iname "*.mkv" -print0 | while IFS= read -r -d '' file; do | |
| TITLE=$(basename "${file}" .mkv) | |
| echo $TITLE | |
| for track in $SUB_TRACKS; do | |
| TRACK_ID=$(echo $track | cut -d':' -f1) | |
| TRACK_LANG=$(echo $track | cut -d':' -f2) | |
| mkvextract tracks "${file}" "${TRACK_ID}:${TITLE}.${TRACK_LANG}.srt" | |
| done |
| [GlusterFS Daemon] | |
| title=GlusterFS (Daemon) | |
| description=GlusterFS Daemon | |
| ports=24007/tcp | |
| [GlusterFS Management] | |
| title=GlusterFS (Management) | |
| description=GlusterFS Management | |
| ports=24008/tcp |
I hereby claim:
To claim this, I am signing this object:
| # Microsoft Crapware | |
| 0.0.0.0 vortex.data.microsoft.com | |
| 0.0.0.0 vortex-win.data.microsoft.com | |
| 0.0.0.0 telecommand.telemetry.microsoft.com | |
| 0.0.0.0 telecommand.telemetry.microsoft.com.nsatc.net | |
| 0.0.0.0 oca.telemetry.microsoft.com | |
| 0.0.0.0 oca.telemetry.microsoft.com.nsatc.net | |
| 0.0.0.0 sqm.telemetry.microsoft.com | |
| 0.0.0.0 sqm.telemetry.microsoft.com.nsatc.net | |
| 0.0.0.0 watson.telemetry.microsoft.com |
| <?php | |
| /** | |
| * arrayToDataTable() | |
| * Converts PHP arrays to nested arrays fit for json_encode() | |
| * | |
| * Format Notice: | |
| * - $cols contains all the columns for the DataTable, each column having a type and a label. | |
| * Columns can be defined as plain arrays (containing only type and label, see below) or as a named array, | |
| * with each of the properties defined as key => value pairs. All columns must have at least a 'type'. | |
| * |
| Strict standards: Declaration of PoolsTheme::display_error() should be compatible with that of BaseThemelet::display_error() in {root}/ext/pools/theme.php on line 0 | |
| Call Stack: | |
| 0.0033 672624 1. {main}() {root}/index.php:0 | |
| Strict standards: Declaration of CustomUserPageTheme::display_login_page() should be compatible with that of UserPageTheme::display_login_page() in {root}/themes/danbooru/user.theme.php on line 0 | |
| Call Stack: | |
| 0.0033 672624 1. {main}() {root}/index.php:0 |
| #!/bin/bash | |
| if [ $# -lt 1 ] ; then | |
| $1="~/"; | |
| fi | |
| # print the header | |
| echo "."; | |
| echo "|-- $1"; | |
| parent="$1"; | |
| padding=""; | |
| recurse() { |