winget upgrade --all
winget import --import-file "winget.json"
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
// @name Bandcamp Purchase Export | |
// @description Allows to export Bandcamp purchases as a CSV file. | |
const main = async () => { | |
const currentRates = rates("CHF"); | |
await loadAllPurchases(); | |
const allPurchases = purchases(await currentRates); | |
if (allPurchases.length == 0) { | |
alert( |
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
[Unit] | |
Description=Tunnel TCP traffic to WireGuard | |
After=network.target | |
[email protected] | |
[Service] | |
Type=simple | |
ExecStart=/usr/bin/udptunnel -s 443 127.0.0.1/51820 | |
Restart=on-failure |
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
FROM alpine:3.4 | |
RUN apk upgrade --no-cache && \ | |
apk add --no-cache transmission-daemon && \ | |
mkdir -p /var/lib/transmission/downloads && \ | |
mkdir -p /var/lib/transmission/watch | |
EXPOSE 9091 | |
VOLUME /var/lib/transmission/downloads | |
VOLUME /var/lib/transmission/watch |
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
# Contributor: Łukasz Jendrysik <[email protected]> | |
# Maintainer: Natanael Copa <[email protected]> | |
pkgname=ffmpeg | |
pkgver=2.8.5 | |
pkgrel=0 | |
pkgdesc="Complete and free Internet live audio and video broadcasting solution for Linux/Unix" | |
url="http://ffmpeg.org/" | |
arch="all" | |
license="GPL" | |
subpackages="$pkgname-dev $pkgname-doc $pkgname-libs" |
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
#!/bin/sh | |
SNIPPETS_DIR="snippets" | |
SNIPPETS_LENGTH="00:00:30" | |
SNIPPETS_START="00:02:00" | |
mkdir "${SNIPPETS_DIR}" | |
for file in "$@" | |
do | |
filename=$(basename "${file}" .wav) |
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
#!/bin/sh | |
# mygrator.sh v0.1 | |
# | |
# Usage: mygrator.sh USER PASSWORD | |
set -x | |
MYSQLUSER="${1}" | |
MYSQLPASS="${2}" |
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
#!/bin/sh | |
set -ex | |
PATH=/bin:/sbin:/usr/bin:/usr/sbin | |
KEYMAP="us us" | |
HOST=alpine | |
USER=anon | |
ROOT_FS=ext4 | |
BOOT_FS=ext4 |
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
#!/bin/bash | |
# installs/updates imapsync | |
TMPDIR=$(mktemp -d) | |
mkdir $TMPDIR/logs | |
apt-get update | |
apt-get install git make makepasswd rcs perl-doc libmail-imapclient-perl libfile-copy-recursive-perl libio-tee-perl libunicode-string-perl |
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
#!upstart | |
# | |
description "rTorrent deamon" | |
setuid rt | |
setgid rt | |
start on startup | |
stop on shutdown |
NewerOlder