Nathan Bosscher

Results 11 comments of Nathan Bosscher

My usage here isn't a very good use case. Please ignore it. Nevertheless, it seems to me that .Lookup should function almost the same as .ServeHTTP() such that you could...

Yeah, if you look further down the output there should be a more descriptive error. Mine was ``` Error while loading icon from "C:\...\resources\uninstallerIcon.ico": invalid icon file ``` I was...

I ran into a similar issue when you define `getSuggestionValue` to return a non-string value. I know this isn't the issue that you were experiencing @giresse19, but might be helpful...

@gregoiregentil I was able to solve that same error by switching to electron-forge. But now I'm also getting the "Not available for testing" error

@gregoiregentil, I think I was also able to fix the error you saw by running this on the .app that was produced by electron-builder. Then repackaging with `productbuild` into a...

Digging further, this could be related to https://bugs.chromium.org/p/v8/issues/detail?id=13777 https://github.com/electron/electron/issues/36999

Seems to only happen when the following situation occurs ``` // process 1: open db (pragma busy_timeout = 30000) // process 2: open db (pragma busy_timeout = 30000) // process...

hrm, I'm unable to reproduce anymore. I was reproducing in my app and I've since refactored the app to avoid this problem... I'm fine with closing this if you're unable...

One trade off is that for nested structs, we end up doing most of the work in [sql.convertAssignRows](https://cs.opensource.google/go/go/+/refs/tags/go1.19.5:src/database/sql/convert.go;drc=ba913774543d7388b7bb1843fc7c1b935aebedda;bpv=0;bpt=1;l=490) twice This also further complicates reflectx. However, I think the functionality is...