Rusco

Results 14 comments of Rusco

Question: Does DCE also get applied to the standard go packages ? For example the "time" package is a real heavy wight regarding the js size, even when importing only...

// commandline sequence with Node 4.2.1: c:\Go\work\src\github.com\rusco\dummy>node -v v4.2.1 c:\Go\work\src\github.com\rusco\dummy>type main.go ``` go // +build js package main import "github.com/gopherjs/gopherjs/js" func log(i ...interface{}) { js.Global.Get("console").Call("log", i...) } func main() {...

Looks like not. node main.js -> throws the exception gopherjs run main.go -> nothing

Looks the same. Let's wait until some other windows user confirms this, I can live with running node manually.

I confirm it works :+1: I did it sligthly differently. I use the 64 bit version of http://tdm-gcc.tdragon.net/ which is easier to handle on Win10/64bit imo. Then I unzipped the...

Might help: https://github.com/marcboeker/go-duckdb/issues/4#issuecomment-2176409066

I tried again with the most up-to-date tech stack: Win11, Go 1.19.1, TDM-GCC, DuckDB 0.5.0 libraries and confirm the bug 😔 Commenting out the Ping() statements leads to the same...

you say: "iterate over elements of a jQuery object". In this example its an array of plain dom elements: https://jsfiddle.net/m31rxf76/1/

I am just questioning the assumptions you make: "... returns an array of jQuery objects". I think it's an array of plain (untyped) objects. The typescript definition files say it's...

It was a deliberate design decision to stick to the jQuery-isms as close as possible: Given that the jQuery has a huge head start regarding popularity and developer mindset it...