Skip to content
View tball-dev's full-sized avatar
  • Massachusetts
Block or Report

Block or report tball-dev

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. bitbucket-google-chat-notifications bitbucket-google-chat-notifications Public

    A simple flask application that acts as a notification bridge between Bitbucket and Google Chat.

    Python

  2. Print out directory and port of all ... Print out directory and port of all running tomcat instances
    1
    ps -ef | grep tomcat | grep -oE 'catalina.home([^\s]+)' | cut -d " " -f 1 | cut -d "=" -f 2 | while read x; do echo $x && grep "Connector port" $x/conf/server.xml | grep "HTTP" | cut -d "=" -f 2 | cut -d " " -f 1; done | xargs -n2 | column -t