Mario Gutierrez

Results 68 comments of Mario Gutierrez

I have a slightly different approach in my self-contained branch. The inline reporter removes any lines that have 'nodeunit/' in them and also colorizes any line that belongs to the...

@jzimmek `withProps` provides the props so make them optional with `Partial` ```js export interface WithProps { name: string age: number } const App = (props: Partial) => { return {props.name}...

Please submit. I'll add an argument `--driver pg` to override the default.

I'm actually working on integrating literate programming docs [rocco/docco](http://jashkenas.github.com/docco/), maybe this weekend if I can get a little bit of free time.

There is also `execSeries`. I added `execParallel` for symmetry. TBH, I rarely used it. I used it in testing to delete data from a set of tables without concern for...

Should have a fix in the next couple of days. The stack format changed in 1.6. Just so I have notes when I work on this: go 1.5 ``` go...

I'm not sure if this helps. The way I use logxi for package-private logging is to create a logger with a namespace. ``` //// models/init.go var logger = log.New("my-models") ```...

I need to refactor how logxi reads environment vars. The unit tests are more complicated than they need to be because of it. Do you want to take a stab...