20250509.1600z - ffmpeg notes
Covert PNG to 1080 width. ffmpeg -i input.png -vf "scale=1080:-1" output.png Make instragram friendly MP4 from PNG (w/scrolling) ffmpeg -loop 1 -i input.png -vf "fade=t=in:st=0:d=3,fade=t=out:st=15:d=3,scroll=vertical=0.001,scale=-1:1920, crop=iw:1080:0:0,format=yuv420p" -t 20 output.mp4
20241011.1820z - telebasic (telehack's dartmouth basic) notes. CINT() and NINT() behavior
10 ? "NINT()":? "nint(3.4)=";:? nint(3.4):? "nint(3.5)=";:? nint(3.5):? "nint(3.6)=";:? nint(3.6) 20 ? "CINT()":? "cint(3.4)=";:? cint(3.4):? "cint(3.5)=";:? cint(3.5):? "cint(3.6)=";:? cint(3.6) >run NINT() - rounds down nint(3.4)= 3 nint(3.5)= 3 nint(3.6)= 4 CINT() - rounds up cint(3.4)= 3 cint(3.5)= 4 cint(3.6)= 4
20240827.0533z - rename cookbook entry: rename -- 's/\.\./\./g' * removes double dots (shows escaping)
20240827.0524z - Use rename -- 's/ /./g' * to sub . for space in filenames.