Skip to content

Instantly share code, notes, and snippets.

View anthonyrussano's full-sized avatar
🌱

Anthony C Russano anthonyrussano

🌱
View GitHub Profile
-----BEGIN CERTIFICATE-----
MIIHKzCCBZOgAwIBAgIQClNlrwBehz1gXoEoS5ulXDANBgkqhkiG9w0BAQsFADBg
MQswCQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTcwNQYDVQQD
Ey5TZWN0aWdvIFB1YmxpYyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gQ0EgT1YgUjM2
MB4XDTI1MTAxMzAwMDAwMFoXDTI2MTExMjIzNTk1OVowbzELMAkGA1UEBhMCVVMx
DjAMBgNVBAgTBVRleGFzMS0wKwYDVQQKEyRFeHBlcmlhbiBJbmZvcm1hdGlvbiBT
b2x1dGlvbnMsIEluYy4xITAfBgNVBAMTGGVudGl0bGVtZW50LnNhYXMuZWRxLmNv
bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczOUGJlRmBMMwokA3Z
21Zl98jup551uunm7/VMT2342eDIqnbyD5EQL7EVabV7nRkA9SRVRG5pLJer1oAe
Zbnz7SXQxpdQUtPFE6a6TpYPtTQiBZ22qfPm7bsl8y7BOFMTAExt4XsLNCuU8pul
@anthonyrussano
anthonyrussano / README.md
Created May 19, 2025 05:54
Beginner-friendly Cybersecurity Roadmap

Below is a beginner-friendly roadmap you can follow from absolute zero to your first industry-recognized credential. Skim it all once, then work through it one phase at a time.


Phase 0 – Orient yourself

What Why it matters How to tackle it
Computer fundamentals (how files, memory, processes, permissions work) Security builds on IT basics. Any free “Introduction to IT” YouTube playlist or Google Career Certificate “Foundations of Cybersecurity” module 1. ([Coursera][1])
**Netw
@anthonyrussano
anthonyrussano / README.md
Created May 18, 2025 23:20
TCP P2P NAT Traversal

This is a self-contained example of both the rendezvous server (UDP brokering) and a fully-asyncio P2P client that:

  1. Uses STUN to detect your NAT type and public mapping (pystun3)
  2. Attempts a permanent UPnP port forward if available (miniupnpc)
  3. Registers with a public rendezvous server over UDP
  4. Performs a simultaneous TCP open (true TCP hole-punch) via asyncio
  5. Falls back to a simple TCP-relay on the rendezvous server if punching fails

You’ll need to install:

@anthonyrussano
anthonyrussano / gist:d86fd524e0bab8d0104ded16b2089683
Last active November 7, 2022 19:18
Clone Repo via SSH - GitHub Actions Workflow
steps:
- name: Clone repo
env:
SSH_KEY: ${{ secrets.SSH_KEY }}
run: |
echo "${{ secrets.SSH_KEY }}" > /tmp/ssh-key
chmod 0600 /tmp/ssh-key
eval `ssh-agent`
ssh-add /tmp/ssh-key
ssh -A -o StrictHostKeyChecking=no

Installing K3s on Raspberry Pi Cluster

Description

This article will document how to deploy K3s to a cluster of Raspberry Pis.

Requirements

I am using the following: