Skip to content
View chicofranchico's full-sized avatar
💭
I'm the supervisor / Can I get a taxi number?
💭
I'm the supervisor / Can I get a taxi number?

Block or report chicofranchico

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 Loading

  1. akka-microbenchmarking2 akka-microbenchmarking2 Public

    Scala 5 1

  2. akka-microbenchmark akka-microbenchmark Public

    testing of akka

    1

  3. configs configs Public

    Shell

  4. scripts scripts Public

    Python

  5. List container port mappings from EC... List container port mappings from ECS task definitions IFF they are defined
    1
    for task in $(aws ecs list-task-definitions | jq '.taskDefinitionArns' | tail -n +2 | head -n -1 | tr -d ',' | tr -d '"' | awk -F'/' '{print $2}') ; do aws ecs describe-task-definition --task-definition ${task} | jq '.taskDefinition | .taskDefinitionArn as $taskName | .containerDefinitions | .[] | select(.portMappings != []) | {TaskARN: $taskName, Ports: .portMappings}' ; done
  6. Get all private ips from all EC2 ins... Get all private ips from all EC2 instances having my-vm on the name tag
    1
    aws ec2 describe-instances | jq '.Reservations[] | .Instances[] | (.Tags | { "iname": ( map ( select(.Value | contains("my-vm")))[] | .Value ) } ) + ( { "ip": ( .NetworkInterfaces[].PrivateIpAddress) } )' | jq -s . | jq ' group_by(.iname)[] | {(.[0].iname): [.[] | .ip]}' | jq -s .