dbaumgarten

Results 110 comments of dbaumgarten

I know I am a little late to the party, but for future reference: I found a way to use the v2 kv-engine with gomplate. You have to add an...

Wouldn't it be possible do design the v2-support in a way that it at least emits a warning when it detects that you are using a (now broken) workaround. Looking...

Googling a bit I found out, that file permissions passed to os.OpenFile are modified by the umask of the process (which in my case is 077). Interestingly os.Chmod is not...

Sorry, I totally forgot about this. Fixed the formatting error.

Finding out of a variable somehow influences a global should be possible, but probably requires some effort to do it properly. Removing assignments to variables that er never referenced would...

This problem effectively consists of two parts: 1. Local Common Subexpression Elimination. Use a temporary variable to store long expressions (constants, global vars, formulas) that are used multiple times in...

I will probably add part 1 and 2 soon-ish. But as they require quite some testing it won't be in the next released version (which will just contain Bugfixes and...

Just a small update on this: I have started working on it and even got it to a somewhat working state. But it still requires a bit more work to...

While that's absolutely a reasonable suggestion, it would make the whole include-logic a lot more complicated. I was just to lazy to do it "properly" ^^. Also while that's simple...

The first example seems to be a duplicate of #84 . Statements on one line should usually be seperated by spaces, except when not. This could theoretically be "fixed", but...