Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am g19fanatic on github.
  • I am padb (https://keybase.io/padb) on keybase.
  • I have a public key ASA7JStmge8Kotp0kNgEAfN1X-1cQqYW8jVS0Odu9S1VnAo

To claim this, I am signing this object:

@g19fanatic
g19fanatic / .gitignore
Last active January 4, 2019 20:13 — forked from micw/install_jenkins_plugin.sh
Script to install one or more jenkins plugins including dependencies while jenkins is offline
plugins/
@g19fanatic
g19fanatic / pub.py
Created October 23, 2012 17:10
Example Publisher
import zmq
con = zmq.Context()
sock = con.socket(zmq.PUB)
sock.bind("tcp://localhost:5000")
i = 0
while True:
i = i + 1
msg = "%s %s" % (i, i*i+i-2*i)