Daniel Jewell

Results 49 comments of Daniel Jewell

There is a setting in Hacker's Keyboard that lets you control this behavior. It's called "Ctrl-A (select all) override" under the "Key behavior settings" Try setting it to "Use Ctrl-A...

FWIW, I just checked out tag v1.5.1 (commit e69dbb9) (before the af4baec commit) -- and it seems to work beautifully. Perhaps a fallback option to the old way if `multiprocessing.Pool()`...

Android's libc (Bionic) doesn't support Semaphores and thus doesn't support SemLock ... I just tried running pipupgrade with ```-j 1``` in the hopes that a single job would disable trying...

Yes, I've used [aeolwyr/tergent](https://github.com/aeolwyr/tergent) and termux with great success... (although Termux on the latest Android versions has/had some issues... haven't checked to see if they're resolved) That said, the KeyStore...

Random thought - Could the phantom process killer "feature" added in Android 12(?) be related here? (I know that it was kind of a huge problem for termux ....... https://github.com/termux/termux-app/issues/2366)

For what it's worth, this sounds like a *Python* issue perhaps? The ```locale``` module is part of Python itself, of course (https://docs.python.org/3/library/locale.html) ... Also, be aware that a lot of...

This is true. I tried running ```python3 delegator.run(['make', 'clean']) ``` and got a very different result than what I was expecting! The current setup requires running: ```python3 delegator.run(['make clean']) ```

On a related note, the current `install_requires` dependencies are (as of the time of posting this comment): https://github.com/trailofbits/polyfile/blob/438628fea2d32ee97b9f23a7aef7ffa3fdc80a0a/setup.py#L26-L39 With the disclaimer that I *fully* understand (1) why versioning dependencies can...

@barbeau For what it's worth, GPSTest does show that it's receiving signal from SBAS/WAAS (PRNs 131, 133)... Although it only shows a signal (C/N0) - no flags. I don't know...

>built on top of pandas Yes, I can confirm this... There's basically pd.Series >> GeoSeries and pd.DataFrame >> GeoDataFrame. And in fact GeoDataFrame inherits pd.DataFrame: https://github.com/geopandas/geopandas/blob/master/geopandas/geodataframe.py The biggest difference with...