Skip to content

Instantly share code, notes, and snippets.

@steelbrain
steelbrain / custom_acpi_tables.md
Created February 3, 2024 02:00 — forked from lamperez/custom_acpi_tables.md
Load custom ACPI tables
@steelbrain
steelbrain / bridge-diff-subnet.sh
Created June 11, 2023 02:14 — forked from glenselle/bridge-diff-subnet.sh
Raspberry PI4 Wifi to Eth Bridge
#!/usr/bin/env bash
set -e
[ $EUID -ne 0 ] && echo "run as root" >&2 && exit 1
apt-get update && apt install -y dnsmasq
# Create a directory where we will store our `iptables` forwarding rules.
mkdir -p /etc/iptables
@steelbrain
steelbrain / questions.md
Created August 4, 2022 06:04 — forked from marolsi/questions.md
Relationship Compatibility

Questions to help you consider if a partner is right for you. Be sure to take a step back from your reasons for swaying one way or another, and answer as honestly as possible!

Questions

  1. Do you feel physically attracted to this person?
  2. Do you look forward to spending time with them?
  3. Do you feel like you don’t have to hold back who you are around them?
  4. Do you like the part of yourself that they bring out?
  5. Do you have evidence that your current lifestyles are compatible?
  6. What goals and dreams are important to you in your life? Are they compatible with this person’s goals and dreams?
  7. Do you have any principles that guide your decisions in life? If so, are you confident that they share or at least respect these?
@steelbrain
steelbrain / cygwin-mirror-speed.py
Created October 8, 2020 16:10 — forked from ushkinaz/cygwin-mirror-speed.py
Tests speed of http mirrors of cygwin
#!/usr/bin/env python3
"""
Tests http mirrors of cygwin
"""
import random
import time
from urllib.request import urlopen
import sys
__author__ = 'Dmitry Sidorenko'