Skip to content
View aj-arena's full-sized avatar

Block or report aj-arena

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. Copy all the bindings from one rabbi... Copy all the bindings from one rabbitmq queue and attach them to another queue. Non-destructive
    1
    #!/usr/bin/env zsh
    2
    # Written for zsh
    3
    
                  
    4
    ## RabbitMQ Management HTTP API (aka view all rabbitmq rest apis)
    5
    ## http://localhost:15672/api
  2. Disable the master password requirem... Disable the master password requirement for pgAdmin 4. Assumes MacOS
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    set -e  # Abort on errors
    4
    set -u  # Abort on attempt to use undefined variable
    5
    
                  
  3. Delete All Pyenv Virtualenvs Delete All Pyenv Virtualenvs
    1
    # set IFS (The Internal Field Separator) to new line 
    2
    IFS=$'\n'
    3
    
                  
    4
    # for each virtualenv, force delete (delete without prompt)
    5
    # omit evn aliases as they are duplicate