Steve

Results 13 comments of Steve

@Vindaar Just flagging mainly to help target issues that may impact new users, and I appreciate the suggestions. Cairo is a pain on windows, as you warn in the Readme,...

What are people doing for this now?

For now I suppose you can do: ``` document.getElementById("divId").style.width = "200px" ``` But I'm not sure if this is optimal or a good idea.

This seems to work: ``` tdiv: verbatim """ """ ```

I'm a bit of a noob so there is likely a better way, but I was getting this to work: ``` type StreamRowsDataFrame = ref object of DataFrame[string] hasHeader: bool...

Is there a work around?

I'm running 1.4.8, windows 10.. it might acutally be a different issue. I'm running the basic example with the sqlite backend `let backend = newSQLBackend("sqlite:///httpauth_test.sqlite3")` Error: ``` .nimble\pkgs\httpauth-0.3.0\httpauth.nim(22, 19) Error:...

> Try set CGO_ENABLED=1. After set this flag it works on my Windows machine. This worked for me as well.

Thanks for the response. Still having similar issue. I get more information if I write to disk using `db, err := sql.Open("duckdb", "foobar.db")` Here is what I see: ``` PS...

@marcboeker Excited about this release. Still having trouble on windows 10 though. Using the code from below: ``` package main import ( "database/sql" "log" "fmt" _ "github.com/marcboeker/go-duckdb" ) var (...