- Go to your Wasabi console and create a new access key.
- Save the following securely:
To make your Raspberry Pi Zero 2 W broadcast a hostapd
network upon powering on, you'll need to install and configure hostapd
and dnsmasq
, and set up a static IP for the wireless interface. Here's a detailed guide on how to achieve this:
- Install Necessary Packages: Install
hostapd
anddnsmasq
. - Configure Static IP for WLAN: Set a static IP for the wireless interface.
- Configure Hostapd: Set up the access point details.
- Configure Dnsmasq: Set up the DHCP server.
- Enable Services on Boot: Ensure
hostapd
anddnsmasq
start on boot.
Hey there 👋 I'm Ryan!
🚀 Building things one keystroke at a time
🧠 Fueling curiosity with code and too much coffee
🎨 Turning ideas into commits and bugs into features
🛠️ I dabble in:
- Writing clean(ish) code.
- Breaking and fixing things with 💪
- Chasing the perfect git commit
message
💬 Ask me about:
- Why tabs are better than spaces (or vice versa)
- That one weird bug that took 3 hours to fix but 1 line to solve
- Cool open source tools and side projects
⚡ Fun fact: I once debugged a problem by walking away and eating a sandwich. It worked.
Thanks for stopping by—now go ship something awesome! 🚢✨
: | |
self.key = key.encode() | |
self.cipher = Fernet(self.key) | |
def encrypt(self, plaintext: str) -> str: | |
encrypted_text = self.cipher.encrypt(plaintext.encode()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
view.py | |
CLI View layer | |
author: Ryan Long <[email protected]> | |
""" | |
import argparse | |
import pathlib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
import timeit | |
import time | |
def main(): | |
start_time = timeit.default_timer() | |
# timed work here | |
time.sleep(1) | |
NewerOlder