- 原詩: Michael William Master, Linda Creed, Geraid Goldstein
- 大阪弁翻訳: ChatGPT
I believe the children are our future
Teach them well and let them lead the way
Show them all the beauty they possess inside
I believe the children are our future
Teach them well and let them lead the way
Show them all the beauty they possess inside
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use feature 'say'; | |
| my @live=( | |
| { | |
| service => 'bluecast', | |
| enable => 1, | |
| url => 'https://bluecast-9y4ewmyc.whip.livekit.cloud/w', |
| javascript:(()=>{const w=document.createTreeWalker(document.body,NodeFilter.SHOW_TEXT,{acceptNode:n=>n.nodeValue.trim()?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_REJECT});let n;while(n=w.nextNode()){n.nodeValue=n.nodeValue.replace(/\S/g,"🐈⬛");}})() |
gphoto2 --auto-detect で AEG Snap 300 と認識される。| #!/usr/bin/env perl | |
| # カレントディレクトリのFLACファイルにタグをつける | |
| # ファイル名の「XYY_NNNN」からタグを作成する | |
| use strict; | |
| use warnings; | |
| use feature 'say'; | |
| use File::Find; | |
| use File::Basename; | |
| my @filelist; |
| #!/bin/bash | |
| set -eu | |
| do_cmd1() { | |
| echo "cmd1" | |
| } | |
| do_cmd2() { | |
| echo "cmd2" | |
| } |
| #!/bin/bash | |
| set -eu | |
| exec yt-dlp -f bestaudio --extract-audio --audio-format mp3 --audio-quality 0 --postprocessor-args '-af silenceremove=start_periods=1:start_duration=0.1:start_threshold=-70dB:start_silence=1' -o "%(upload_date)s - %(title)s.%(ext)s" "$1" |