Skip to content
View jmacego's full-sized avatar

Block or report jmacego

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 Loading

  1. Efficiently create a number of subne... Efficiently create a number of subnets out of a larger prefix
    1
    #!/bin/env/python
    2
    from __future__ import print_function
    3
    import ipaddress
    4
    
                  
    5
    def do_vlsm(sorted_vlans):
  2. Query Level3s IRR for prefixes adver... Query Level3s IRR for prefixes advertised by an AS MACRO, in blocks short enough to not break Kibana's URL
    1
    #!/usr/bin/env python
    2
    from __future__ import print_function # Python 2 compatibility fix
    3
    from sys import argv, exit
    4
    from subprocess import check_output
    5