nsf

Results 289 comments of nsf

I answered on golang-nuts, but since I'm not subscribed, I guess the message waits confirmation. Whatever, I'll repeat myself here. Try adding: `import _ "net"` to any demo and see...

I can't help you since I don't have a mac. All I knew is this `import _ "net"` trick.

What version of the go compiler are you using? (run: `go version`)

Okay with help from @dominikh on irc, I've found the source of that error, it comes from an old Go version: ``` 14:10:03 dominikh | nsf: from Go 1.0.x 14:10:11...

Hey guys, to fix the problem add this property to SimpleSelect: ``` uid={item => item.value} ``` I honestly can't read livescript well, so I don't know how exactly react-selectize uses...

Yeah, it segfaults somewhere. I guess my other option is to just copy & paste imgui into two translation units, maybe wrap them into different namespaces and use it this...

Yeah, sorry, this segfault was actually my fault. But anyways I decided to split imgui into two translation units. This way I'm 100% sure the instances have nothing shared and...

Well, if you ask me, I would definitely prefer explicit context variable. But when it comes to having both APIs, global style and the one with context variable, it's a...

@ocornut wrapped the second copy into a different namespace

No, with TLS - one instance per thread, unless you do that push/pop trick from cuda API. Also TLS is bad for coroutine-like situation where your jobs can be scheduled...