I hereby claim:
- I am jaredallard on github.
- I am jaredallard (https://keybase.io/jaredallard) on keybase.
- I have a public key ASDhZ3aCV1GM6DvU0rURtz2OyPWr9mp3-ba2IFzImxMD0Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env node | |
| /** | |
| * Generates a input/output list without writing JSON | |
| * | |
| * INSTALL: yarn add colors csv lodash | |
| * | |
| * @author Jared Allard <jaredallard@azuqua.com> | |
| * @license MIT | |
| */ |
| // WEB ENV | |
| const fs = require('fs') | |
| const data = fs.readFileSync('./workfront2.json') // actually proofhq | |
| let channel; | |
| try { | |
| channel = JSON.parse(data) | |
| } catch(e) { | |
| throw new Error('Failed to process Channel JSON.') |
| 2018-01-25 04:14:43.128 Info Main: Application path: /opt/emby-server/system/EmbyServer.dll | |
| 2018-01-25 04:14:43.175 Info Main: Emby | |
| Command line: /opt/emby-server/system/EmbyServer.dll -programdata /var/lib/emby -ffmpeg /opt/emby-server/bin/ffmpeg -ffprobe /opt/emby-server/bin/ffprobe -restartexitcode 3 -updatepackage emby-server-deb_{version}_amd64.deb | |
| Operating system: Unix 4.13.0.31 | |
| 64-Bit OS: True | |
| 64-Bit Process: True | |
| User Interactive: True | |
| Processor count: 2 | |
| Program data path: /var/lib/emby | |
| Application directory: /opt/emby-server/system |
| 2018-01-26 01:57:14.640 | |
| Application version: 3.2.70.0 | |
| https://media.tritonjs.com:4433/emby/videos/89b24d01481a033f5e6f3e85abeb2fb7/hls1/main/0.ts?DeviceId=c622f4a4436c96222f86b38fa3e808ba74af04f1&MediaSourceId=89b24d01481a033f5e6f3e85abeb2fb7&VideoCodec=h264&AudioCodec=mp3,aac&AudioStreamIndex=1&VideoBitrate=195726367&AudioBitrate=192000&PlaySessionId=64e5927d4d6d404bacef1253d81e6c55&api_key=&CopyTimestamps=false&TranscodingMaxAudioChannels=2&EnableSubtitlesInManifest=false&Tag=cc090a08752635650bfee403698f9387&RequireAvc=true&RequireNonAnamorphic=false&SegmentContainer=ts&MinSegments=2&BreakOnNonKeyFrames=True&TranscodeReasons=SecondaryAudioNotSupported&h264-profile=high,main,baseline,constrainedbaseline,high10&h264-level=51&h264-deinterlace=true | |
| {"Protocol":"File","Id":"89b24d01481a033f5e6f3e85abeb2fb7","Path":"/mnt/media-v1/production/tv/Mirai Nikki/01 - Sign Up.libx264.mkv","Type":"Default","Container":"mkv,webm","Name":"01 - Sign Up.libx264.mkv","IsRemote":false,"ETag":"cc090a08752635650bfee403698f9387" |
| #!/bin/sh | |
| set -e | |
| CONTAINER=r-kubernetes-kubelet-3-59fec1df | |
| HOSTPATH=/mnt/media-v1 | |
| CONTPATH=/mnt/media-v1 | |
| REALPATH=$(readlink -f $HOSTPATH) | |
| FILESYS=$(df -P $REALPATH | tail -n 1 | awk '{print $6}') | |
| while read DEV MOUNT JUNK |
| while true do | |
| print("POD: I'm running!") | |
| os.sleep(2) | |
| end |
| ---- Minecraft Crash Report ---- | |
| // My bad. | |
| Time: 2019-12-12 16:54:20 PST | |
| Description: Unexpected error | |
| java.lang.ArrayIndexOutOfBoundsException | |
| A detailed walkthrough of the error, its code path and all known details is as follows: |
| package worker | |
| import ( | |
| "context" | |
| "fmt" | |
| "runtime" | |
| "sync" | |
| ) | |
| // ProcessArray asynchronously processes an array, spinning up n (n being number of CPUs) goroutine worker |
| # syntax=docker/dockerfile:1.0-experimental | |
| FROM golang:1.17-alpine AS build | |
| ARG VERSION | |
| ENV GOCACHE "/go-build-cache" | |
| ENV GOPRIVATE github.com/org/* | |
| ENV CGO_ENABLED 0 | |
| WORKDIR /src | |
| # Copy our source code into the container for building | |
| COPY . . |