Vaughan Rouesnel

Results 201 issues of Vaughan Rouesnel

I have to run `poetry run pytest` to make sure that pytest runs inside the project's venv. I couldn't get it to work with `ptw`. I tried `ptw --runner "poetry...

I am working with streams using the highland.js library, and I want to use ICS to flatten the christmas tree code shape when using `flatMap`. I need to return a...

``` #bin/index.coffee console.log process.argv ``` ``` coffee bin/index.coffee -- [ 'coffee', 'xxx/bin/index.coffee', '--' ] coffee -v CoffeeScript version 1.1.3 ``` ``` iced bin/index.coffee -- [ 'coffee', 'xxx/bin/index.coffee' ] iced -v...

I want to do something like this:- ``` await namespace 'Util.Logging', defer this @something = -> ``` instead of:- ``` await namespace 'Util.Logging', defer Util Util.something = -> ``` `namespace`...

Returns an error: `has no method 'icedToSlot'`

When including `iced.catchExceptions()`, if a test fails Mocha won't display a summary of test results.

a.ts ``` /// import _ = require('underscore') class Mapper {} ``` b.ts ``` /// var a: Mapper; ``` ``` > error TS2095: Could not find symbol 'Mapper'. ``` Removing the...

``` ``` ``` render() { return ( {this.renderKPIs()} ) } } export default Foo ``` See how it added `Foo` on the button. I would expect `Foo` to be on...

Would be nice to have the ability to override how an object is printed too. Sometimes I prefer this: `method=events.batchProcess id=883 params=[object Object] ...` to this: ``` { method: events.batchP.......