https://keyoxide.org/openpgp4fpr:EE3A8EF380B4EC6F5590E3F1E645D09ED439FB0E
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
"""Convert mirakurun / mirakc json file of channels into m3u8 playlist file.""" | |
from __future__ import annotations | |
import argparse | |
import json | |
import re | |
import sys | |
from pathlib import Path | |
from textwrap import dedent |
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 -eu | |
requirements=(curl gh gpg grep sed tee) | |
if ! command -v "${requirements[@]}" &>/dev/null | |
then | |
echo "required: ${requirements[*]}" >&2 | |
exit 1 | |
fi |
Component | Product | Qty. | Unit price (JPY) |
---|---|---|---|
CPU Fan | SCYTHE 12cm MARK3 SCKTT-3000 | 1 | 3400 |
CPU Grease | ARCTIC MX-4 | 1 | 1000 |
CPU | Intel CPU Corei7 14700KF BX8071514700KF/AZ | 1 | 76540 |
Case | CORSAIR 4000D CC-9011200-WW CS7975 | 1 | 3400 |
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 | |
# In `Podfile`: | |
# ``` | |
# # Linter / Formatter | |
# pod 'SwiftLint' | |
# ``` | |
cat <<'A' > .swiftlint.yml | |
# Directory and file filters |
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
# ヤマハルーターでIPv4 over IPv6 (DS-Lite) をtransixで設定する | |
# 2024-05現在 | |
# 検証環境: ルーター - RTX830, プロバイダー - IIJひかり IPoEオプション有り ひかり電話契約なし | |
# 参考: | |
# https://network.yamaha.com/setting/router_firewall/ipv6/ds-lite#non-contract | |
# クライアントから接続 | |
# telnet 192.168.100.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
#!/usr/bin/env bash | |
# Epson Inkjet Printer Driver (ESC/P-R) for Linux | |
sudo apt install ./epson-inkjet-printer-escpr_*_amd64.deb | |
# also | |
sudo apt install printer-driver-escpr psutils cups |
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 | |
echo 'https://github.com/eggplants/ubuntu-setup.sh' |