This is a general-purpose function to ask Yes/No questions in Bash, either with or without a default answer. It keeps repeating the question until it gets a valid answer.
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
# Maintainer: Strykar <[email protected]> | |
pkgname=go-livepeer-bin | |
_pkgname=go-livepeer | |
pkgver=0.5.21 | |
pkgrel=1 | |
pkgdesc='Official Go binaries of the Livepeer protocol' | |
arch=('x86_64') | |
url='https://github.com/livepeer/go-livepeer' | |
license=('MIT') |
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 | |
# Download, extract and update Livepeer binary from Github to a pre-existing directory you set below | |
# It assumes you have extracted the previous livpeer tar.gz in it and run livepeer from the same directory | |
# Not intended to be run as root | |
# | |
# Expects bash, jq, curl, grep, sed, sha256sum and tar to be installed, usually available even on embedded systems | |
# Windows Subsystem for Linux (WSL) or Cygwin should provide every utility on Windows | |
# shellcheck disable=SC2015 | |
set -euf -o pipefail |
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
# ASN 18207 YouBroadBand | |
# 103.247.210.0/24 | |
# 103.39.4.0/23 | |
# 103.48.96.0/22 | |
# 103.5.70.0/24 | |
# 123.201.0.0/16 | |
# 150.107.208.0/22 | |
# 175.100.128.0/19 | |
# 196.1.104.0/24 | |
# 203.109.64.0/18 |
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/sbin/nft -f | |
## vim: ft=pf | |
flush ruleset | |
define wan = eth0 | |
define cjd = tun0 | |
define wg_int = wg0 | |
define vpn_gw = 192.168.10.1 | |
define vpn_net = 192.168.10.0/24 | |
define proto_allow = { ah, esp, igmp, ipv6 } |
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
#!/hint/bash | |
# | |
# /etc/makepkg.conf | |
# | |
######################################################################### | |
# SOURCE ACQUISITION | |
######################################################################### | |
# | |
#-- The download utilities that makepkg should use to acquire sources |
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
[Unit] | |
Description=AutoSSH service to remotely access signald's unix socket for weechat's signal.py (/smsg +145789323231) | |
After=network-online.target | |
# Use this instead if autossh will interact with the local SSH server | |
# After=network-online.target sshd.service | |
[Service] | |
Environment="AUTOSSH_GATETIME=30" | |
Environment="AUTOSSH_POLL=30" | |
Environment="AUTOSSH_FIRST_POLL=30" |
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
root@apu:~# time awk 'BEGIN { OFMT = "%.0f"; for (i = 0; i < 50000; i++) print (95/100 * 42) }' > /dev/null | |
real 0m0.517s | |
user 0m0.435s | |
sys 0m0.081s | |
root@apu:~# time awk 'BEGIN { for (i = 0; i < 50000; i++) printf("%.0f\n", (95/100 * 42)) }' > /dev/null | |
real 0m0.862s | |
user 0m0.624s | |
sys 0m0.237s |
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 | |
# v0.1 Avinash H. Duduskar <[email protected]> | |
# This adjusts OpenWRT SQM settings by re-calculating up/down bandwidth | |
# Needs the Speedtest.net CLI binary - https://www.speedtest.net/apps/cli | |
# Call this script every 4 or 6 hours via cron | |
set -euf -o pipefail | |
_sqm_int="queue" # Your actual wan interface: ifstatus wan | grep -e l3_device | |
_pul="90" # Percentage of wan upload speed to set, 90-95 is good | |
_pdl="95" # Percentage of wan download speed to set, 90-95 is good |
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
# | |
# Copyright (C) 2006-2015 OpenWrt.org | |
# | |
# This is free software, licensed under the GNU General Public License v2. | |
# See /LICENSE for more information. | |
# | |
include $(TOPDIR)/rules.mk | |
PKG_NAME:=ncurses |