Nabil Servais

Results 20 comments of Nabil Servais

Hello, I implemented the ST_isvalid of postgis : https://github.com/blackrez/turf-isvalid. How I can add in turf?

Thanks for the update, I have a new error. ``` D LOAD '/media/psf/nabil/project/sqlitescanner/build/release/sqlite_scanner.duckdb_extension'; Error: IO Error: File "/media/psf/nabil/project/sqlitescanner/build/release/sqlite_scanner.duckdb_extension" could not be loaded: /media/psf/nabil/project/sqlitescanner/build/release/sqlite_scanner.duckdb_extension: undefined symbol: _ZTIN6duckdb23LocalTableFunctionStateE ```

Hello, I upgraded to the 0.4.0 of DuckDB and the loading works but I can't load sqlite3 database. ``` Use ".open FILENAME" to reopen on a persistent database. D LOAD...

I'm launching the shell without parameters, as you can see : ``` nabil@dev-server:/media/psf/nabil/project/sqlitescanner$ duckdb v0.0.1-dev0 Enter ".help" for usage hints. Connected to a transient in-memory database. Use ".open FILENAME" to...

And if I put a duckdb db instead of a sqlite3 db, the extensions seems to accept the duckdb db. ``` nabil@dev-server:/media/psf/nabil/project/sqlitescanner$ duckdb gnop.db v0.0.1-dev0 Enter ".help" for usage hints....

With this piece of code : ```golang package main import ( "fmt" "github.com/owulveryck/onnx-go/backend/x/gorgonnx" ) func main() { backend := gorgonnx.NewGraph() fmt.Println(backend) } ``` We have the following error : ```...

Just stub the method and don't work. ``` /usr/local/tinygo/bin/tinygo run main.go # database/sql/driver ../../../usr/local/go/src/database/sql/driver/types.go:227:20: rv.Type().Elem().Implements undefined (type reflect.Type has no field or method Implements) ``` Then I remove `/usr/local/go/src/database/sql/driver/driver.go` and...

Also there is a dependencies on uuid (which is linked to sql/drivers) and tinygo is not compatible to this module right now.

With gorgonia (based on the example) : ``` # github.com/pkg/errors ../go/src/github.com/pkg/errors/stack.go:166:15: Callers not declared by package runtime ../go/src/github.com/pkg/errors/stack.go:39:16: fn.FileLine undefined (type *runtime.Func has no field or method FileLine) ../go/src/github.com/pkg/errors/stack.go:28:16: fn.FileLine...

> UUID is linked with sql/driver? I think we can get rid of this. We need to find a way to generate names and avoid conflicts in our namespace. Yes*...