Skip to content

Instantly share code, notes, and snippets.

@jmacego
jmacego / keybase.md
Created June 16, 2018 21:11
Keybase Proof

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

@jmacego
jmacego / huawei-dhcp-decode.py
Last active June 19, 2018 01:12
Huawei e397u-53 Connectivity
#!/usr/bin/env python
from __future__ import print_function
from sys import argv
import socket
import struct
"""
Decode the DHCP string given by AT^DHCP? on Huawei USB Modem and
print out appropriate commands to add it statically.
Tested under Python 2.7, 3.5, and 3.6
No warranty of any kind.
@jmacego
jmacego / AS Prefix Search
Last active March 11, 2019 03:34
Query Level3s IRR for prefixes advertised by an AS MACRO, in blocks short enough to not break Kibana's URL
@jmacego
jmacego / name-interfaces.py
Last active March 1, 2019 01:47
Script to name / interact with interfaces when ports 1-24 are plugged into the top and ports 25-48 are plugged into the bottom of a switch
#!/bin/python
from __future__ import print_function # Python 2 compatibility fix
# Script to name ports for natural patching (1 to 1, 2 to 3..25 to 2).
i = 1 # Initialize to the starting number for your port .
# Set starting number, ending number, and increment setting an increment
# of 2 is most common.
for x in range(1, 48, 2):
i += 1 # this really could to at the end and not have the -1 in the
@jmacego
jmacego / do-vlsm.py
Last active April 10, 2022 20:59
Efficiently create a number of subnets out of a larger prefix
#!/bin/env/python
from __future__ import print_function
import ipaddress
def do_vlsm(sorted_vlans):
supernet = input("Supernet: ") or "192.168.224.0/20"
current_subnet = ipaddress.ip_network(supernet)
available_subnets = [current_subnet]
print("\nSubnet Lengths:")
for vlan in sorted_vlans:
@jmacego
jmacego / meraki-wider-comments-bookmarklet
Created March 14, 2019 17:25
Bookmarklet to widen the comment field on Meraki Switch ACLs and Firewall policies
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;}}})();
@jmacego
jmacego / jekyllserve.sh
Last active March 14, 2019 20:44
Bash function to pull jekyll site and serve
#!/bin/bash
# Profile function to add a convenient jekyllserve command and also a
# function to cd to the directory, do a git pull, open in sublime,
# serve the site and then open it in a web browser.
#
# Works on OSX with sublime CLI installed. YMMV for other platforms.
# You also probably want to rename things. Consider this a template.
#
# Also... I just have this in my ~/.profile so I type jmaclabs and it
# just works. Here's how that looks different:
@jmacego
jmacego / rom-playlist.sh
Created March 16, 2020 01:43
rom folder to playlist - RetroPie PSX
#!/bin/bash
# Take a folder with a structure like:
# File (Disc 1).bin
# File (Disc 1).cue
# File (Disc 2).bin
# File (Disc 2).cue
# ...
# and rename the .cue files to .CD# and then create a .m3u
# suitable to RetroPie
for i in *.cue; do
def bytes_to_str(size, mebi=False, precision=2):
"""Accept size in bytes, return size in string with KB, MB, GB
Will always return, increase the fields with TB, etc to prevent
103892GB or similar"""
mult = 1024 if mebi else 1000
units = {1000: ['KB', 'MB', 'GB'],
1024: ['KiB', 'MiB', 'GiB']}
for unit in units[mult]:
size = size / mult
if size < mult: