Skip to content

Instantly share code, notes, and snippets.

View ErinsMatthew's full-sized avatar

Matthew ErinsMatthew

  • Northwest Arkansas, USA, North America, Earth
View GitHub Profile
@ErinsMatthew
ErinsMatthew / go-bag-contents.md
Created January 22, 2023 21:25
Go Bag Contents

Go Bag Contents

Being prepared for a natural disaster or other emergency is important. To prepare for such an event, you and your family should make sure you each have a go bag kit with basic necessities. Here is a list of things that I keep in mine, along with links where you get your own.

I encourage you to have at least one Go Bag per person, and one per vehicle as well.

Remember to rotate perishable items like snacks and bottled water every year.

@DexterHaslem
DexterHaslem / cm1000.py
Last active April 6, 2023 15:59
CM1000 modem log scraper thing
## this is a quick and dirty script to remotely login to a Netgear CM1000 modem,
# grab the docsis logs and format them as a csv for saving later. the webpage will only show so many
# and logs can be eventually be lost. this is also an easier way to grab/view them
# last tested on Firmware Version V7.01.01 jan 2 2022
import requests
import re
from time import time
from csv import DictWriter
from xml.dom.minidom import parseString
from datetime import datetime