Alexander Mills

Results 200 comments of Alexander Mills

like with `git commit -am "foo"` I think the last letter in the group can take a parameter, so `m` can take a param in the above. haven't verified that...

nevermind, looks like you open a channel like this: ```golang ch1, err := conn.Channel() failOnError(err, "Failed to open a channel") defer ch1.Close() ch2, err := conn.Channel() failOnError(err, "Failed to open...

I just ran into this one, StackOverflow doesn't seem to solve it short of commenting out the source

THANKS MDE!! can you install your version with Bower? Because when I installed with Bower it probably gave me the old version.

ummm, I was looking at the ejs source, it's trying to require('fs') and stuff, and I get an error saying readFileSync is not a function. I am familiar with node.js,...

I think the problem I am encountering is this: (1) I want to use includes (2) To use includes, I would have to pass in options (Error: `include` requires the...

yeah I see (a) include could do AJAX (not a good idea) (b) include could look for files adjacent to the current one. I am using RequireJS which bundles the...

also, one more question if we have to pass a filename option, how do we include multiple templates? is there a filenames (plural) option?

thanks FL - so on the server, when I compile a template file #1 I imagine that I put the compiled code into another file #2 and then in the...