yay-bin
- AUR / Pacman helperdowngrade
- Pacman package downgrade helperkernel-modules-hook
- Prevent kernel mods from breaking on kernel upgradesystemd-boot-pacman-hook
- Update systemd entry on systemd-boot upgradebolt
- Utility to manage/trust thunderbolt accessories without udevd rulesreflector
- Updated mirrorlist
This file contains 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
#!/bin/sh | |
/usr/bin/hda-verb /dev/snd/hwC1D0 0x20 0x500 0x7 | |
/usr/bin/hda-verb /dev/snd/hwC1D0 0x20 0x500 0x7 | |
/usr/bin/hda-verb /dev/snd/hwC1D0 0x20 0x500 0x10 | |
/usr/bin/hda-verb /dev/snd/hwC1D0 0x20 0x500 0x10 | |
/usr/bin/hda-verb /dev/snd/hwC1D0 0x20 0x500 0x10 | |
/usr/bin/hda-verb /dev/snd/hwC1D0 0x20 0x400 0xe20 | |
/usr/bin/hda-verb /dev/snd/hwC1D0 0x20 0x500 0x10 | |
/usr/bin/hda-verb /dev/snd/hwC1D0 0x20 0x400 0xe20 |
This file contains 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
#!/bin/sh | |
# Check for required project dependencies and install | |
# git hooks bundled with this project | |
echo "" | |
echo "Checking dependencies..." | |
if [ -z "$(command -v git-secret)" ]; then | |
cat <<\EOF |
This file contains 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 os | |
from django.core.exceptions import ImproperlyConfigured | |
from distutils.util import strtobool | |
def get_env(var_name, default=None, is_bool=False, is_int=False, is_float=False, is_list=False, is_required=False): | |
""" Loads a value from the environment variable <var_name> and returns | |
that value, optionally explicitly cast as a type. | |
If the environment variable is not set, return <default>. |
This file contains 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
#### Make sure install-pkgs is present in /config/scripts/pre-config.d/install-pkgs | |
#### Pre-Upgrade | |
mkdir -p /config/data/firstboot/install-packages/ | |
cd /config/data/firstboot/install-packages/ | |
curl -OL <https://github.com/WireGuard/wireguard-vyatta-ubnt/releases> | |
#### Upgrade | |
add system image <https://www.ui.com/download/edgemax/edgerouter-4> | |
sudo reboot |
This file contains 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
# Wireguard Configuration for NetworkManager | |
# | |
# sudo vim /etc/NetworkManager/system-connections/wg0.nmconnection | |
# sudo chmod 0600 /etc/NetworkManager/system-connections/wg0.nmconnection | |
# sudo nmcli connection reload | |
# | |
[connection] | |
id=home.rew1red.com | |
type=wireguard |
This file contains 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
/** | |
* Switchboard LED Flasher | |
* Created for Teensy 3.2 | |
* Copyright (c) Winston Astrachan 2019 | |
* | |
* Emulates a telephone switchboard with 8 lights, blinking them | |
* to simulate incoming calls at psuedo-random intervals. | |
*/ | |
const int LAMP1 = 9; |
This file contains 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
#! /bin/bash | |
# | |
# APT Installed | |
# Compare currently installed packages with archived package list | |
# | |
# (c) Winston Astrachan 2019 | |
ARCHIVE_FILE=/etc/apt/basepackages.txt |
This file contains 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
#!/usr/bin/env python3 | |
import datetime | |
import shutil | |
import os | |
import sys | |
if not len(sys.argv) > 1: | |
print("Expects path to F1 episode as first argument") | |
quit(1) |
This file contains 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
variables: variables.yml | |
schedules: | |
- tasks: '*' | |
interval: | |
minutes: 5 | |
templates: | |
deluge: | |
deluge: |
NewerOlder