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 picture which describes how to do it:
HOST WITH EMULATOR (terminal) Use ssh to connect to another PC. Then kill adb server and start it as server: ssh macmini@192.168.0.87 adb kill-server adb -a nodaemon server ON PC…
After users have been engaging with your Android app for a while, they may encounter a window that prompts them to rate the app. This valuable call to action presents…
The first thing users see when they open your app. A well-designed splash screen can set the tone for the entire user experience, while a poorly designed one can frustrate…
I'm not exactly sure when I discovered it, but I have come across an incredibly valuable diagram of Java's collections, in my humble opinion. It has proven to be an…
"Kotlin is compatible with Java and can be used to create applications for the Android platform.""Kotlin is safer and more flexible than Java, thanks to additional data types (e.g. nullable…
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…