Skip to content

Instantly share code, notes, and snippets.

@darconeous
darconeous / rect-starlink-cable-hack.md
Last active December 7, 2024 17:45
Hacking the Rectangular Starlink Dishy Cable
@jeremymaya
jeremymaya / dotnet-macOS.md
Last active April 12, 2024 11:36
ASP.NET Core Development with macOS
@imvaskii
imvaskii / noip-dyndns-update.py
Last active December 30, 2024 12:09
A python (python3) script to update no-ip (https://www.noip.com) dynamic dns ip.
#!/usr/bin/env python
import requests, socket
username = ""
password = ""
hostname = "" # your domain name hosted in no-ip.com
# Gets the current public IP of the host machine.
myip = requests.get('http://api.ipify.org').text