↧
Answer by vesperto for keeping file across android app uninstall/reinstall
Since getExternalStorageDirectory() is no longer deprecated i'm using that instead of hardcoded /sdcard.getExternalStoragePublicDirectory(String) keeps returning the same as...
View ArticleAnswer by vesperto for How to see what options my php was configured with?
You can use:php -i | grep configure
View ArticleAnswer by vesperto for Cross platform bluetooth development solutions
Qt Bluetooth seems quite promising in that it supports Android, iOS, Linux, macOS and Windows.
View ArticleAnswer by vesperto for CRTSCTS not define when compiling as C99
You can use -D_DEFAULT_SOURCE -std=c99 instead of -std=gnu99, at least in gentoo. It "seems more standard" to me.Searching around in /usr/include, I see:/usr/include/features.h 52 _DEFAULT_SOURCE The...
View Article