Vaughn Iverson
Vaughn Iverson
Sounds that way... Or maybe create a github wiki for the project: https://github.com/skosch/Crimson/wiki
As a simpler half-measure that also has the advantage of being able to drive test file generation, etc. I wonder about just specifying a new exported function in `build/global.go` like:...
I quickly prototyped this using approach 2) above, and it works exactly as I need, e.g.: ```go Generate() for _, f := range GeneratedFuncInfo() { fmt.Printf("Func: %s \t Sig: %s...
BTW, a much simpler way to enable all of this would be to just export the global context variable and let users go to town, _buyer beware_ style. I suppose...
After sleeping on this, I've spent a bit of time this morning trying out another approach to this issue. What I'm really trying to do here is gain hooks into...
I hasten to add: yes, I know that `Doc()` is variadic, and using it that way is the "correct" way to address the use cases above. But attempts A-C above...
I'm not that enthusiastic about auto-wrapping, agree that's really on the coder to auto wrap if they want. Note that `Comment` and `Commentf` also suffer from case A: ```go TEXT("add",...
That is a very good question! To my knowledge there is no explicit way to logout. The way the DDP protocol works is that you must authenticate with each new...
Hi, anytime you configure a "cluster" of machines working together (I use that term in the loosest sense) you will face issues of how to manage and coordinate them, and...
It would, but tokens are probably a better idea simply because they expire and are easily revoked in case of compromise.