Skip to content
View LarsFronius's full-sized avatar
:octocat:
:octocat:
Block or Report

Block or report LarsFronius

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. heroku-buildpack-xray heroku-buildpack-xray Public

    Forked from sandbochs/heroku-buildpack-xray

    Runs AWS X-Ray Daemon on Heroku

    Shell 2

  2. If you ever want to debug a kinesis ... If you ever want to debug a kinesis stream, copy this bash one liner.
    1
    On a mac, `brew install awscli gnu-sed` before.
    2
    
                  
    3
    streamname=staging;aws kinesis describe-stream --stream-name $streamname --output text | grep SHARDS | awk '{print $2}' | while read shard; do aws kinesis get-shard-iterator --stream-name $streamname --shard-id $shard --shard-iterator-type LATEST --output text | while read iterator; do while output=`aws kinesis get-records --shard-iterator $iterator --output text`; do iterator=`echo "$output" | head -n1`; echo "$output" | gsed 1d | grep RECORDS | while read record; do echo $record | awk '{print $2}' | base64 -D; done; done; done; done