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
module.exports = (grunt) -> | |
grunt.initConfig({ | |
# Load package.json | |
pkg: grunt.file.readJSON('package.json') | |
# Compass config | |
compass: |
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
{ | |
"name": "project-name", | |
"version": "1.0.0", | |
"description": "Project Description", | |
"author": "Winston Astrachan", | |
"license": "All Rights Reserved", | |
"private": true, | |
"devDependencies": { | |
"coffee-script": "^1.9.3", | |
"grunt": "^0.4.5", |
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
### | |
JS Routing and Init System | |
### | |
if typeof window.MANIFEST is "undefined" | |
window.MANIFEST = | |
VIEWS: {} | |
UTILS: {} | |
### |
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
# Generated by iptables-save v1.6.0 | |
*filter | |
:INPUT DROP [0:0] | |
:FORWARD ACCEPT [0:0] | |
:OUTPUT ACCEPT [0:0] | |
-A INPUT -i lo -j ACCEPT | |
-A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT | |
-A INPUT -p tcp -m conntrack --ctstate NEW,ESTABLISHED -m tcp --dport 41864 -j ACCEPT | |
-A INPUT -p icmp -m icmp --icmp-type 0 -j ACCEPT | |
-A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT |
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
# On the host | |
============= | |
lxc config set openvpn raw.lxc 'lxc.cgroup.devices.allow = c 10:200 rwm' | |
lxc config device add openvpn tun unix-char path=/dev/net/tun | |
# In the container | |
================== | |
1. mknod /dev/net/tun c 10 200 |
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: |
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
#! /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
/** | |
* 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; |
OlderNewer