Skip to content
View jmacego's full-sized avatar
Block or Report

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.

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

  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. Huawei e397u-53 Connectivity Huawei e397u-53 Connectivity
    1
    #!/usr/bin/env python
    2
    from __future__ import print_function
    3
    from sys import argv
    4
    import socket
    5
    import struct
  3. 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
    
                  
  4. Bookmarklet to widen the comment fie... Bookmarklet to widen the comment field on Meraki Switch ACLs and Firewall policies
    1
    javascript:(function(){var inputs = document.getElementsByTagName("input");for(var i = 0; i < inputs.length; i++) {if(inputs[i].name.match(/comment/) || inputs[i].className.match(/comment/) ) {inputs[i].size = 100;}}})();
  5. mac_format mac_format Public

    Forked from xraystyle/mac_format

    OS X app to quickly look up vendor information and translate MAC address into various vendor formats.

    Ruby

  6. SX127x_driver_for_MicroPython_on_ESP8266 SX127x_driver_for_MicroPython_on_ESP8266 Public

    Forked from Wei1234c/SX127x_driver_for_MicroPython_on_ESP8266

    SX127x (LoRa transceiver) driver for (Micro)Python on ESP8266/ESP32/Raspberry_Pi

    Python