Rusco
Rusco
From the recent "3 gotchas" discussion on reddit (https://www.reddit.com/r/golang/comments/3r8yz1/3_go_gotchas/): Gopherjs: http://www.gopherjs.org/playground/#/Kj7gpCZpI- output: {A} {B} {C} &{A} &{B} &{C} versus Go: http://play.golang.org/p/w3apET-wcX output: {A} {B} {C} &{C} &{C} &{C}
Probably related to #341 : ``` go //file dummy_test.go: package dummy import "testing" func TestNothing(t *testing.T) { } ``` ### go test ...pathtodummypackage gives: **ok** ### gopherjs test ......pathtodummypackage gives:...
``` go // +build js package main import "github.com/gopherjs/gopherjs/js" func log(i ...interface{}) { js.Global.Get("console").Call("log", i...) } func main() { print("print message") log(" log message") } ``` ``` gopherjs run main.go...
Question: Why does reset.css getting included in mimic.css ? Isn't reset-ing (or normalize-ing) something which is normally done by your choosen base css framework (bootstrap, material design etc.) and out...
Hi maoberlehner, on my Win10 /Chrome70 Box I ran into issues regarding CORS with the browser-sync package, even the "--cors" flag did not help. I couldn't serve the index.html page....
Setting bits is very verbose, I propose some shortcuts like for example: c.Set(1, 2, 4, 6) or c.SetMultiple(1,2,4,6) and c := &bitset.BitSet{1,2,6,6}