This file contains hidden or 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
| # audo quality 0-9 https://trac.ffmpeg.org/wiki/Encode/MP3 | |
| for f in *.flac; do ffmpeg -i "$f" -c:a libmp3lame -q:a 2 "${f/%flac/mp3}"; done |
This file contains hidden or 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
| for f in *.json | |
| do | |
| pi=$(jq .playlist_index < "$f") | |
| pi=$(printf %03d $pi) | |
| d=$(jq -r .upload_date < "$f") | |
| b=$(basename "$f" .info.json) | |
| for ff in "$b"* | |
| do | |
| mv -v "$ff" "$pi $d $ff" |
This file contains hidden or 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
| e1edf9d1967ca96767dcc2b2d6df69f4 | |
| 4194eb91842c8e7e6df099ca73c38f28 | |
| 94c4dd41f9dddce696557d3717d98d82 | |
| d4cfc27d16ea72a96b83d9bdef6ce2ec | |
| bc0d0a22a7a46212135ed0ba77d22f3a | |
| 867380888952c39a131fe1d832246ecc | |
| 8c32ab09ec0210af60d392e9b2009560 | |
| 0f53ea7949d32ef24f9186207600403c | |
| 24eaa9820350012ff678de47cb85b639 | |
| d915b2a9ac8749a6b837404815f1ae25 |
This file contains hidden or 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
| \[FormalA] | |
| \[FormalB] | |
| \[FormalC] | |
| \[FormalD] | |
| \[FormalE] | |
| \[FormalF] | |
| \[FormalG] | |
| \[FormalH] | |
| \[FormalI] | |
| \[FormalJ] |
This file contains hidden or 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
| *://www.tutorialspoint.com/* | |
| *://www.geeksforgeeks.org/* | |
| *://www.w3schools.com/* | |
| *://www.programiz.com/* | |
| *://www.techonthenet.com/* | |
| *://fresh2refresh.com/* | |
| *://www.quora.com/* | |
| *://www.researchgate.net/* | |
| *://www.w3resource.com/* | |
| *://www.improgrammer.net/* |
This file contains hidden or 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
| output_dir = render_build | |
| [global:map] | |
| render_view = topdown | |
| texture_size = 4 | |
| [global:world] | |
| default_view = 0,0,64 | |
| default_zoom = 5 |
This file contains hidden or 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
| -- Just add this to the end of the control.lua file in the save file and then replay the file | |
| script.on_nth_tick(1800, function(event) | |
| game.take_screenshot{ | |
| surface = game.surfaces[1], | |
| position = {0,0}, | |
| resolution = {3840,2160}, | |
| zoom = 0.2, | |
| path = "timelapse/" .. string.format("%06d", event.tick/event.nth_tick) .. ".jpg", | |
| quality = 95, |
This file contains hidden or 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
| # requires xq with --raw output support (https://github.com/boyska/xq fork) | |
| xq -r '//item/enclosure/@url' Podcast.ashx | wget -i - |
This file contains hidden or 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 remote add origin [email protected]:jxu/repo.git # use set-url if already set | |
| git push -u origin master |
This file contains hidden or 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
| yt-dlp -f129 --sponsorblock-remove sponsor $url |