Read books
Glukhovsky Dmitry - Outpost - 4/2024
Glukhovsky Dmitry - Outpost - 4/2024
Unleash the power of this macOS terminal script to elegantly rename your ebook files, incorporating titles and even handling multiple authors seamlessly. Say goodbye to messy filenames and hello to…
Here is the snippet ready to use in terminal: for f in *; do mv "$f" "$f.tmp"; mv "$f.tmp" "`echo $f | tr "[:upper:]" "[:lower:]"`"; done
To avoid having to do manual modifications to the csv file, we can use a script ready for this. cat PlayApps_202205.csv| csvcut "," 1 2 4 6 7 14 15…
Here is an sample hot to add element to all words listed in the column. Solution is provided in the picture.
Just delete the file from this site and follow the instructions: https://www.adobe.com/devnet-docs/acrobatetk/tools/Labs/cleaner.html The file is called AcroCleaner.
NOTE: XAMPP is going to use PHP version 8 in this "tutorial". Install xampp. If you don't have brew then you will have to install it. brew install xampp Go…
In short, here is the snippet converting parameter from POST/GET to boolean: if (isset($_GET['debug'])) { $DEBUG = filter_var($_GET['debug'], FILTER_VALIDATE_BOOLEAN); }
To make it possible you have to first kill the running instance of VNC server and then start it again with additional argument. Here are the commands: 1. vncserver -list…
There are few steps to do: Install plugin it by call (https://github.com/Urucas/QLGradle): brew cask install qlgradle 2. In terminal reload qlmanager (https://stackoverflow.com/a/62650032/619673): qlmanage -r 3. Reload finder (https://9to5mac.com/2019/01/18/restart-finder-mac/): Apple logo…