Skip to content
View mut3's full-sized avatar

Organizations

@burlingpwn

Block or report mut3

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. Infrastructue as code? try folder st... Infrastructue as code? try folder structure as code! discovered with the help of @whobrokethebuild
    1
    #!/bin/bash
    2
    poc_command="echo Hello, World!"
    3
    mkdir -p "$poc_command"
    4
    cd "$poc_command"
    5
    $(basename "$(pwd)")
  2. Check *.json for valid json, return ... Check *.json for valid json, return failures
    1
    #!/bin/bash
    2
    for i in *.json; do if ! jq . $i &>/dev/null; then echo "fail: ${i}"; fi; done