John Schember
John Schember
The StackOverflow code is using an API method that's depreciated, [getAllNetworks](https://developer.android.com/reference/android/net/ConnectivityManager#getAllNetworks()). So this method cannot be used. The getAllNetworks doesn't specify what order the networks will appear in the array,...
This was added in 4.3 but removed in 4.4 because it was unreliable and caused numerous issues. I haven't been able to determine a way to make this work reliably.
Let me think about it for a bit. I'm playing with CSS (which I'm not very good at) and sizing. I'm trying to figure out a good way to have...
A hack that could be in j-p-t is to create a low quality image with the same size what would be set to `src=` normally. For exmaple, if `src=800x600` normally,...
How are you doing the conversion? I took a 5.2 M image and did the following on it. ``` $ convert t.jpg -resize 800x600 t-800x600.jp $ convert t.jpg -resize 800x600...
> Implement a new command flag to only "close" (minimize to tray) without starting a new kdocker tray entry. The purpose of KDocker is to dock applications to the system...
The logic when a window is docked has been questionable for a long time. It's on my todo list to look at while updating the code.
commit 7f7a0cc fixes the logic for what it's supposed to do but the request which is always iconify on first dock. I'm keeping this open since the request is for...
This is a function of Gnome and not a bug.
I didn't make a generic function because there isn't much use for one. Outputting a number as a string in base 22, for example, isn't going to be widely used...