Skip to content
View jwboardman's full-sized avatar

Block or report jwboardman

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. whirlpool whirlpool Public

    Example Microservices using Kafka 3.3.1 and WebSockets with Netty 5.0.0-alpha2 with both React/Typescript and HTML/JavaScript UIs

    Java 37 12

  2. hot_example hot_example Public

    Using Handsontable Inside JQuery Tabbed Dialogs

    JavaScript 3

  3. Find all java or gulp processes and ... Find all java or gulp processes and kill
    1
    kill -9 $(ps | grep '[j]ava\|[g]ulp' | perl -nle'/^(\d*)\s.*$/ && print $1')
  4. Find local IP on default interface (... Find local IP on default interface (mac)
    1
    export MY_LOCAL_INTERFACE=$(route -n get default|grep interface|perl -nle'/^\s*interface: (.*)$/ && print $1')
    2
    export MY_LOCAL_IP=$(ipconfig getifaddr $MY_LOCAL_INTERFACE)
    3
    echo "Local interface is $MY_LOCAL_INTERFACE, IP is $MY_LOCAL_IP"