Martin Man

Results 98 comments of Martin Man

I have it setup as http with forced redirect and it seems to work, I created the LB several months ago and updated it to add the ``do-loadbalancer-name`` annotation after...

I have implemented both double tap and pinch to zoom. The key to the working solution is to attach tap/double tap gesture detector to the content view inside zoom layout...

More debugging here: If you hook into the app/scene lifecycle, you will see that `NSApplication.shared.delegate` is actually `nil` until first scene completes loading. Only after that it makes sense to...

I have just encountered this issue as well. I believe it is caused by the fact that `PFUser.current` is stored both in keychain and on the filesystem. When you `logOut`...

Investigation: Both `PFUser.currentUser` and `PFInstallation.currentInstallation` are loaded from disk (sessionToken from keychain) and kept in memory for the whole life of process (main or extension). Because data and keychain are...

> > PFUser.currentUser and PFInstallation.currentInstallation are loaded from disk (sessionToken from keychain) > > Maybe a solution would be to store the current user and installation in keychain like the...

@mtrezza Yeah, always storing/fetching from either keychain or disk could be a solution. The `sessionToken` being sensitive and unique to everything makes sense to store in keychain (we do that...

If you check the networking wrappers in enet, you will find you that you can actually use enet on top of TCP socket. It does not make much practical sense...

Thanks @jpwalters for this report and suggested workaround. Can confirm that your fix works https://github.com/victronenergy/venus-influx-loader/commit/2c55b4741b4f634984cf67b7b4da27e33489842e. However not sure what has changed and why `to:` no longer works. `CNavLink` param `to`...

@LowAmmo I took a quick look and it LGTM. I will have to get some time to pull your branch and see whether the compilation will be clean... thanks!