Skip to content

Instantly share code, notes, and snippets.

View vielmetti's full-sized avatar
🌴
I may be slow to respond.

Edward Vielmetti vielmetti

🌴
I may be slow to respond.
View GitHub Profile
@vielmetti
vielmetti / Jetson-Nano-parts.md
Last active September 11, 2023 11:22
Jetson Nano setup - parts needed that are not in the box.
title
Jetson Nano parts list

Jetson Nano parts shopping list

If you get a bare Jetson Nano, you'll need some parts to make it a usable, useful computer. Here's a shopping list.

Power supply

@mulka
mulka / go.py
Created August 2, 2019 04:29
Dash buttons controlling hue bulbs
import datetime
import sys
from scapy.all import *
import requests
last_probe = {}
button_names = {
'mac_address': 'human readable name'
@atomicstack
atomicstack / fetch_raspberry_pi_firmware.sh
Last active May 6, 2025 12:36
a one-liner to fetch the latest revisions of /boot/*.{elf,dat} in the RPi firmware repository (because it's a 14GB repo and cloning takes forever, and we're only interested in ~20MB of data). requires the command line utils wget and jq
wget --base=https://github.com/raspberrypi/firmware/raw/master/ -i <( wget -qO- https://github.com/raspberrypi/firmware/raw/master/boot/ | grep 'react-app.embeddedData' | perl -nE 's{\s+<script[^>]+>}{}; s{</script>}{}; say' | jq -r '.payload.tree.items[].path | select(test("(elf|dat)$"))' )
@SwitHak
SwitHak / 20211210-TLP-WHITE_LOG4J.md
Last active July 2, 2025 20:42
BlueTeam CheatSheet * Log4Shell* | Last updated: 2021-12-20 2238 UTC

Security Advisories / Bulletins / vendors Responses linked to Log4Shell (CVE-2021-44228)

Errors, typos, something to say ?

  • If you want to add a link, comment or send it to me
  • Feel free to report any mistake directly below in the comment or in DM on Twitter @SwitHak

Other great resources

  • Royce Williams list sorted by vendors responses Royce List
  • Very detailed list NCSC-NL
  • The list maintained by U.S. Cybersecurity and Infrastructure Security Agency: CISA List
Uncurated to read/watch list from kubecon2022 slack:
https://kubernetes.io/docs/home/
https://helm.sh/docs/
https://docs.docker.com/engine/reference/builder/
https://learning.kasten.io/
kubernetes the hardway - https://github.com/kelseyhightower/kubernetes-the-hard-way
#!/bin/bash
list_vrfs () {
echo -e "\nChoose an option:"
PS3=$'\n''Choose an option: '
options=("Show all VRFs" "Show VRFs in a specific metro" "Show specific VRF by UUID")
select opt in "${options[@]}"
do
case $opt in