I hereby claim:
- I am ollyg on github.
- I am gorwits (https://keybase.io/gorwits) on keybase.
- I have a public key whose fingerprint is 9472 21ED E9EA 6F5D 47F8 AEBC D8D3 EAEE 9C16 06DE
To claim this, I am signing this object:
<html> | |
<head> | |
<title>Force with Labelled Links</title> | |
<script src="http://mbostock.github.com/d3/d3.js?2.9.2"></script> | |
<style type="text/css"> | |
.node { | |
fill: #88f; | |
stroke: #44a; | |
stroke-width: 1px; | |
} |
reports: | |
- tag: hosts_network_today | |
label: 'Hosts On Network Today' | |
columns: | |
- {mac: 'MAC Address'} | |
- {dns: 'Router'} | |
- {port: 'Port'} | |
- {vlan: 'VLAN'} | |
- {ip: 'IP'} | |
- {nbname: 'NetBIOS'} |
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
our $home; | |
BEGIN { | |
use FindBin; | |
FindBin::again(); |
[alias] | |
branchlog = "!git log --oneline --decorate --left-right --graph master..." | |
pr = "!sh -c \"git checkout -b pr/$1 && curl -sL $(git config --get remote.origin.url | sed -e 's|:|/|' -e 's|^git@|https://|' -e 's|\\.git$|/pull/$1.patch|') | git am --whitespace=nowarn\" -" | |
pr-clean = "!git checkout - ; git for-each-ref refs/heads/pr/* --format=\"%(refname)\" | while read ref ; do branch=${ref#refs/heads/} ; git branch -D $branch ; done" |
#!/usr/bin/env perl | |
# This code works for dagolden, based on a program originally by rjbs. It | |
# might not work for you. You are hereby empowered to do anything you want | |
# with this code, including fixing its bugs and redistributing it with your | |
# own license and API and whatever you want. It'd be nice if you mentioned | |
# dagolden and rjbs in your fork, but if you don't want to, that's just fine. | |
# | |
# The only thing you can't do is act like there's some guarantee that this | |
# code will actually work or even refrain from blowing stuff up. You're on | |
# your own. -- rjbs, 2014-04-23 and dagolden, 2016-07-06 |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/perl | |
use warnings; | |
use strict; | |
use lib '/var/lib/netdisco'; | |
use netdisco qw/:all/; | |
config("/var/lib/netdisco/netdisco.conf"); |
RequestHeader unset X-REMOTE_USER | |
RequestHeader set X-REMOTE_USER "%{REMOTE_USER}e" env=REMOTE_USER | |
# see http://httpd.apache.org/docs/current/mod/mod_headers.html#header |
SELECT me.ip, | |
me.port, | |
me.creation, | |
me.descr, | |
me.up, | |
me.up_admin, | |
me.type, | |
me.duplex, | |
me.duplex_admin, | |
me.speed, |
#!/usr/bin/perl | |
use strict; | |
use warnings FATAL => 'all'; | |
use Test::More 0.88; | |
BEGIN { | |
use_ok('NetAddr::MAC'); | |
} |