Shimin Guo
Shimin Guo
Just a thought: seems it would be feasible to derive fmap for functors that are the composition of two or more functors, such as `deriveFmap(func(A) B, func() ([A], error)) ([B],...
Given the following basic macro definition ``` :import ( "fmt" "go/ast" ) :macro myMacro(arg ast.Node) ast.Node { fmt.Printf("arg has type %T\n", arg) return ~'{1} } ``` When applied directly in...
Thoughts on creating a user forum? A mailing list, slack channel, disord, gitter, or whatever. That way community members can help each other and discuss ideas.
In https://docs.rust-embedded.org/discovery/f3discovery/09-clocks-and-timers/nop.html, it was suggested that doing a `aux9::nop()` would prevent the loop from being optimized away. When I tried it, I got the following assembly: ``` (gdb) disassemble /m...
Fixes #165
Currently only tags are supported. It used to be that tags and labels are coupled somehow. It's no longer the case: https://cloud.google.com/compute/docs/labeling-resources#labels_tags
**Which component are you using?**: cluster-autoscaler **What version of the component are you using?**: 1.16.5 Component version: **What k8s version are you using (`kubectl version`)?**: 1.18 kubectl version Output $...
This will send jsonnet spinning, consuming 100% of CPU: ``` jsonnet -e '|||- abc |||' ``` Tested with v0.9.0. I was trying to see if jsonnet supported chomping the final...