tomkcook

Results 27 comments of tomkcook

Here's a sample syslog where this occurred: ``` May 27 08:40:04 localhost pppd[14034]: pppd options in effect: May 27 08:40:04 localhost pppd[14034]: debug debug#011#011# (from command line) May 27 08:40:04...

Yes! It works! Brilliant! Thank you! More exclamation marks!!!!

This happens because explicitly passing a directory to which the user does not have permission as the cwd to POpen causes a PermissionError to be thrown. Compare: ``` $ mkdir...

@ianwestcott Given your analysis, why not do as I suggested and pass `self._working_dir` instead of `os.getcwd()`? In this case `_working_dir` will be `None` and this avoids the `PermissionError`.

> Thanks for raising a PR @tomkcook > Can you please > > 1. Sign your PR using the steps mentioned above > > 2. Elaborate what you did, and...

I'm seeing the same. Starting background location updates like this: ``` BackgroundLocation.setAndroidNotification( title: "MyApp", message: "Tracking your location", icon: "@mipmap/ic_launcher", ); BackgroundLocation.setAndroidConfiguration(5000).then((p) { BackgroundLocation.startLocationService(); BackgroundLocation.getLocationUpdates((location) { print("${location.latitude}, ${location.longitude}"); }); return...

I'm seeing this too. On disconnect, usually the first sign is that the call to `ReadMessage()` at line gowebsocket.go:131 exits with an error. The only effect this has is that...

My pull request works in the case where the connection is actively interrupted (eg the computer's ethernet cable is yanked or the wifi connection drops out). It doesn't address the...

Actually it seems likely that this is a consequence of #27.