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 bash | |
set -euo pipefail | |
inetInterfaceIp=$( \ | |
ifconfig \ | |
| perl -0777 -pe 's/\n+^[ \t]/ /gm' \ | |
| grep 'inet ' \ | |
| grep RUNNING \ | |
| grep -v LOOPBACK \ | |
| sed -nE 's/([a-z0-9]+).* inet ([^ ]+).*/\1 \2/p' \ |
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 bash | |
set -euo pipefail | |
sshUser="REPLACE_ME" | |
sshKeys=$(cat <<'EOF' | |
REPLACE_ME | |
EOF | |
) | |
assert_root() { |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width,initial-scale=1"> | |
<title>GL-X3000 AT Command Tool</title> | |
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css"> | |
<style type="text/css"> |
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
git rebase --root --reset-author --exec 'export GIT_COMMITTER_DATE=$(git log --format="%aD" | head -n1); git commit --amend --no-edit --date="$GIT_COMMITTER_DATE"' |
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 http from 'node:http' | |
import https from 'node:https' | |
import net from 'node:net' | |
import type { Duplex } from 'node:stream' | |
import type { SecureContext } from 'node:tls' | |
import tls from 'node:tls' | |
import { parse as parseURL } from 'node:url' | |
import pem from 'pem' | |
import psl from 'psl' |
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 | |
# Script to transcode Vaudeville 4K AVC1 media to 1080p X264/Opus so that Proton | |
# Experimental or Proton GE can play cutscene video and audio. | |
# | |
# Move the script to ${steam_library}/steamapps/common/Vaudeville and run. This | |
# script requires ffmpeg. If ffmpeg crashes with a segfault, re-run the script | |
# until it succeeds. Files which have successfully been transcoded already will | |
# be skipped on subsequent runs. | |
# |
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 | |
echo -n "detecting installed version: " | |
installed=$(dpkg -l | awk '$1 == "ii" && $2 == "discord" { print $3 }') | |
if [[ "$installed" == "" ]]; then | |
echo "error" | |
exit 1 | |
fi | |
echo "$installed" | |
echo -n "detecting latest version: " |
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 | |
set -euo pipefail | |
cd $(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd -P) | |
build_dir=$(mktemp -d) | |
cleanup() { | |
if [[ -d "$build_dir" ]]; then | |
rm -rf "$build_dir" | |
fi |
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
const crypto = require('crypto') | |
const fs = require('fs') | |
const readline = require('readline') | |
const rl = readline.createInterface({ input: process.stdin, output: process.stdout }) | |
const prompt = (query) => new Promise((resolve) => rl.question(query, resolve)) | |
void (async () => { | |
const args = process.argv.slice(2) |
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 | |
function finish { | |
if [[ "${rtspContainerId:-}" != "" ]]; then | |
docker kill "$rtspContainerId" | |
fi | |
if [[ "${ffmpegPid:-}" != "" ]]; then | |
kill "$ffmpegPid" | |
fi | |
} |
NewerOlder