Larry Clapp
Larry Clapp
If you're willing to tweak the cheatsheet template, you can sort the hotkeys (I would think; haven't tried it). The project homepage [documents the template](https://github.com/chieffancypants/angular-hotkeys#configuration) (briefly). (As an aside, if...
That sounds kind of neat. Can you give an example?
See #39 for a patch for this (though it may be outdated by now). I never got around to adding any tests, so Wes never merged it. (Sorry.)
Do we care about the issue mentioned [here](https://stackoverflow.com/questions/5266152/how-to-exit-in-node-js/37592669#37592669), which concludes > If you can you should set the exit code and allow Node to exit gracefully: > > process.exitCode =...
In case anyone besides me was confused by "in normal Go code" (I wondered, "why are you posting a GopherJS issue then?"), perillo just means that this is regular Go...
For what it's worth, I've had pretty good luck using Gobs for marshalling & unmarshalling.
I think you've raise some important issues. I see three distinct proposals: 1. Write a style guide. -- Good idea. Possibly premature, though. What's good style? Do we have a...
Have you tried temporarily renaming your own io package to see if the problem goes away?
> ```js > $unused($internalize($internalize(s.Object.t1, ptrType).Object.f1, $String)); > ``` > i.e. the erroneous $internalize(s.Object.t1, ptrType) I'll have to trust you that that's a bug. :) FWIW, it does seem to work....
In case anyone's wondering (I was :), access of regular Go embedded fields works fine, e.g. ```go type T3 struct { F3 string } type T4 struct { T3 }...