Google Play Billing Reports – modify csv to display only specific columns
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…
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…
This script helps move builded apk to external path i.e Dropbox drive or Google drive. Here is a gradle script for copying apk according to build type: def publish =…
for %%f in (*.m4a) do ( Â ffmpeg -i "%%f" -acodec libmp3lame -ab 320k "%%f.mp3" )
for %%f in (*.m4a) do ( ffmpeg -loop 1 -i bear.jpg -i "%%f" -c:a aac -c:v libx264 -crf 0 -preset veryfast -shortest "video-%%f.mp4" )
// ==UserScript== // @name StackOverflow Remove Questions From Users With Points Lower Than N // @namespace http://stackoverflow.com/ // @include *stackoverflow.com* // @version 1 // @grant none // ==/UserScript== // var…
Here is simple script in bash to covert epub to mobi. #!/bin/bash clear; for entry in *.epub; do ebook-convert "$entry" "$entry.mobi" done
Short script for removing articles below X dig points. Works for main and next pagined pages. You can set own MIN_VALUE. Below the script. // ==UserScript== // @name Wykop.pl -…
Here is script for better front page style. // ==UserScript== // @name Better style for stackoverflow front page // @namespace // @description changes background of front page and interesting items…