Skip to content

Instantly share code, notes, and snippets.

[nonsenso@mucho ~]$ traceroute 74.114.208.25
traceroute to 74.114.208.25 (74.114.208.25), 30 hops max, 60 byte packets
1 216.182.229.184 (216.182.229.184) 0.803 ms 216.182.229.174 (216.182.229.174) 28.338 ms 216.182.231.74 (216.182.231.74) 6.482 ms
2 100.65.91.144 (100.65.91.144) 139.234 ms 100.66.8.70 (100.66.8.70) 14.725 ms 100.65.83.128 (100.65.83.128) 5.920 ms
3 100.66.11.172 (100.66.11.172) 17.525 ms 100.66.44.38 (100.66.44.38) 1.194 ms 100.66.44.124 (100.66.44.124) 8.430 ms
4 100.66.50.130 (100.66.50.130) 18.417 ms 100.66.7.185 (100.66.7.185) 14.721 ms 100.66.7.55 (100.66.7.55) 19.859 ms
5 100.66.5.197 (100.66.5.197) 19.500 ms 100.66.6.187 (100.66.6.187) 13.072 ms 100.66.5.185 (100.66.5.185) 16.876 ms
6 100.65.14.65 (100.65.14.65) 0.329 ms 100.65.13.129 (100.65.13.129) 0.228 ms 100.66.5.125 (100.66.5.125) 10.064 ms
7 100.65.15.145 (100.65.15.145) 10.929 ms 52.93.28.181 (52.93.28.181) 0.749 ms 52.93.28.179 (52.93.28.179) 0.875 ms
8 52.93.28.145 (52.93.28.145) 0.833 m

Keybase proof

I hereby claim:

  • I am dstockman on github.
  • I am dstockman (https://keybase.io/dstockman) on keybase.
  • I have a public key ASAPenzqGrz_xRc3S9C0Ri6zEZcTKwawUK7hItoP9qX0dwo

To claim this, I am signing this object:

@dstockman
dstockman / gist:0f4742a0da830ca55a8dd061096b0463
Created November 25, 2018 18:05
Nice detective work, Lou.
[23:11:46] <@xunil> too quiet.
[23:23:42] xunil begins investigating the disappearance of #linuxOS members
[23:25:22] <@xunil> MacRohard was clearly killed by the illuminati for knowing too much.
[23:25:29] <@xunil> mindstrm similarly, but the mob this time.
[23:25:54] <@xunil> dieman accidentally stumbled on a stash of nazi gold and was killed to hide the secret.
[23:26:23] <@xunil> ange1a was literally bored to death by hanging out with her mother and relatives for Thanksgiving.
[23:27:11] <@xunil> if i were actually a cop at this point i'd be promoted to detective.
[23:27:50] <@xunil> alexander lost the will to live after learning of the Filson/DiResta collaborations that have been going on for _some time_ now.
[23:28:10] <@xunil> uriah got lost in his massive new home in Michigan and starved to death.
[23:29:48] <@xunil> Hool misunderstood what kind of biker gang meeting he was going to and died of embarrassment after showing up to Sturgis on a Cannondale.
@dstockman
dstockman / gist:ea0e40a55e2e619746803b33700fc48a
Created August 30, 2018 04:44
logz.io user creation csv curl
# logz_peeps.csv (example)
Bob Dobbs,bob@corp.eternalslack.org
Connie Dobbs,connie@corp.eternalslack.org
# one liner rodeo
(IFS=,; cat logz_peeps.csv | while read name email ; do curl -X POST "https://api.logz.io/v1/user-management" -H "accept: application/json" -H "content-type: application/json" -H "X-API-TOKEN: HIMOM" -d '{ "username": "'"$email"'", "fullName": "'"$name"'", "accountID": XXXXX, "roles": [ 2 ]}' ; done)
### Keybase proof
I hereby claim:
* I am dstockman on github.
* I am dstockman (https://keybase.io/dstockman) on keybase.
* I have a public key whose fingerprint is 53A3 5CA5 02C1 C587 98ED D07B 9471 9DA1 8087 18BA
To claim this, I am signing this object:
@dstockman
dstockman / ec2tags.rb
Last active August 29, 2015 14:06 — forked from zarmstrong/ec2tags.rb
require 'facter'
if Facter.value("ec2_instance_id") != nil
instance_id = Facter.value("ec2_instance_id")
region = Facter.value("ec2_placement_availability_zone")[0..-2]
tags = Facter::Util::Resolution.exec("aws ec2 describe-tags --filter Name=resource-id,Values=#{instance_id} --region #{region} --output text | cut -f 2,5|awk 'BEGIN{FS=\" \";OFS=\"|\"} {$1=$1; print $0}'")
tags.scan(/(.*)\|+(.*)/) do |key, value|
fact = "ec2_tag_#{key}"
Facter.add(fact) { setcode { value } }
end