Posts

Showing posts from May, 2020

Tab key not working in tmux

Add the following to the .tmux.conf:     unbind -n Tab Wow, TAB is back!

Using GDAL with SpringBoot in Ubuntu

To use GDAL with SpringBoot in Ubuntu: Apt install gdal-bin, gdal-data, libgdal-java (optionally libgdal26, don't know whether it's necessary) Set the Environment variables in Eclipse: GDAL_DATA = /usr/share/gdal LD_LIBRARY_PATH = /usr/lib/jni:$LD_LIBRARY_PATH Reference:  http://geoexamples.blogspot.com/2012/05/running-gdal-java.html

OpenShot UI too large on screen in Windows

OpenShot UI could become very large in your Windows if you can set your screen scale to something like 150%. To resolve this issues, you may adjust the " QT_AUTO_SCREEN_SCALE_FACTOR " value: Add line SET QT_AUTO_SCREEN_SCALE_FACTOR=0 before launch.exe in the batch file " C:\Program Files\OpenShot Video Editor\launch-win.bat " Reference: https://github.com/OpenShot/openshot-qt/issues/2443 If you are using the PortableApps's build, you can add the line " QT_AUTO_SCREEN_SCALE_FACTOR=0 " under the " [Environment] " in file " OpenShotPortable.ini " in " \OpenShotPortable\App\AppInfo\Launcher "