Nickapos blog
Mastodon
Sunday, June 13, 2021
Modern Python toolkit guide
›
Here is a breakdown of modern python development tools https://pycon.switowski.com/02-packages/pipx/
Saturday, May 15, 2021
Unmounting stuck nfs mounts
›
This usually happens when the nfs server is down, you cannot umount the nfs mount, because the system will say "not found or ser...
Thursday, May 6, 2021
Fuzzy finder
›
I learned recently about the fzf linux cli command. This is a text finder similar to grep but a lot more powerful. It can be used not only ...
Saturday, April 24, 2021
Handy ffmpeg Cheatsheet
›
https://gist.github.com/steven2358/ba153c642fe2bb1e47485962df07c730 First convert the subtitles to .ass format: ```` ffmpeg -i sub.srt sub...
Sunday, April 18, 2021
Stripping audio from video
›
Handy ffmpeg command to strip audio from video with high quality: ffmpeg -i ../video/$i -q:a 0 -map a $i.mp3
Tuesday, December 22, 2020
Stripping spaces from filenames
›
Here is a handy script for stripping spaces from filenames in a directory and all of its subdirectories: #!/bin/bash function strip_spaces_...
Friday, December 11, 2020
Validating yaml with python
›
python -c 'import yaml, sys; yaml.safe_load(sys.stdin)' < url-monitor-extension-config.yml
›
Home
View web version