2024-10-14 検証
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 | |
# === | |
# > master node & agent node(s) | |
# === | |
sudo apt update -y && sudo apt upgrade -y | |
sudo systemctl stop dphys-swapfile | |
sudo systemctl disable dphys-swapfile | |
sudo rm -f /var/swap |
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 | |
# get your tailnet name with jq: | |
tailscale status --json | jq -r '.MagicDNSSuffix' | |
# or, without jq: | |
tailscale status --json | grep -m1 MagicDNSSuffix | cut -f4 -d'"' |
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 -S pipx run | |
# https://github.com/ltsdw/gofile-downloader | |
# /// script | |
# requires-python = ">=3.12" | |
# dependencies = [ | |
# "requests", | |
# ] | |
# /// | |
from concurrent.futures import ThreadPoolExecutor |
$ lldb -- ...
(lldb) help
Debugger commands:
apropos -- List debugger commands related to a word or subject.
breakpoint -- Commands for operating on breakpoints (see 'help b' for
shorthand.)
command -- Commands for managing custom LLDB commands.
device -- Commands to interact with devices.
diagnostics -- Commands controlling LLDB diagnostics.
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
{"openapi":"3.0.3","info":{"title":"mirakc Web API","description":"","contact":{"name":"Contributors of mirakc"},"license":{"name":"MIT OR Apache-2.0"},"version":"3.2.3"},"servers":[{"url":"/api"}],"paths":{"/channels":{"parameters":[],"get":{"tags":["channels"],"summary":"Lists channels.","operationId":"getChannels","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/MirakurunChannel"}}}}},"500":{"description":"Internal Server Error"}}}},"/channels/{type}/{channel}/services/{sid}/stream":{"parameters":[],"get":{"tags":["channels::services::stream","stream"],"summary":"Gets a media stream of a service.","operationId":"getServiceStreamByChannel","parameters":[{"name":"X-Mirakurun-Priority","in":"header","description":"Priority of the tuner user","required":false,"schema":{"type":"integer","format":"int32","nullable":true}},{"name":"type","in":"path","description":"Channel type","required":true,"schema":{"$ref":"#/components/schema |
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
{ | |
"openapi": "3.0.1", | |
"info": { | |
"version": "2.10.0", | |
"title": "epgstation", | |
"license": { | |
"name": "MIT", | |
"url": "https://github.com/l3tnun/EPGStation/blob/master/LICENSE" | |
} | |
}, |
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
# Usage: | |
# mkdir -m 777 -p ./keeby | |
# cd keeby | |
# ...copy this compose file... | |
# docker compose up -d | |
services: | |
ytarchive: | |
container_name: ytarchive | |
image: ghcr.io/jim60105/ytarchive:latest |
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
"announcement_last_id": 10, | |
"disable_resuming_shorts_player": true, | |
"hide_album_cards": true, | |
"hide_artist_cards": true, | |
"hide_crowdfunding_box": true, | |
"hide_shorts_home": true, | |
"hide_shorts_search": true, | |
"hide_shorts_subscriptions": true, | |
"shorts_disable_background_playback": true, | |
"ryd_shorts": false |
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 | |
# Updated at: 2024-09-01 | |
# Environment: | |
# - Machine: RaspberryPi 4 | |
# - Tuner: PX-M1UR | |
# - Card reader: SCR3310 v2.0 | |
# - OS: RaspberryPi OS Lite (Debian GNU/Linux 12 bookworm) | |
# Architecture: | |
# ``` |