Tim Kevin Oxley

Results 74 issues of Tim Kevin Oxley

Would like to be able to `require('some-workshopper')` and do some magic. This would mean the 'default' workshopper file in a workshop would go from: ``` js workshopper(config) // automatically prints...

Would be good if we could collect statistics and feedback on the exercises. #### Minimum - how long it took to complete each exercise - which exercises were completed and...

Currently, even if a solution crashes with a non-zero exit code, a submission will still pass so long as the stream output is matched. Should probably match submission's exit code...

Currently one can serialize mnemonist data-structures with `.toJSON` but there does not appear to be a standard way to deserialize. I'd like to be able to cache mnemonist structures in...

If you have dependencies installed with npm i.e. as a non-symlink dir `node_modules/dependency_name`, ied will crash when it tries to readlink the dir. ``` > mkdir ied-npm-crash > cd ied-npm-crash...

When trying to install this particular package `ied` does a bit of work, then fails with a weird `getaddrinfo ENOTFOUND` error: ``` > ied install css-loader [==============================] 100.00%/usr/local/lib/node_modules/ied/lib/install_cmd.js:65 if (err)...

It appears HMR can not work with jumpstate due to complaints like: `An action called "${actionName}" in the ${sandboxName} sandbox already exists! Please pick another action name!` or, in other...

Currently it appears both hooks and effects run before the reducer. I'd like to be able to fire a side effect after the reducer has updated the state e.g. to...

Using this tool can generate an awful lot of log noise. See below for a sample of output from just a few minutes of use. I was reconfiguring my webpack...

enhancement

The way obfuscate is used with setters/getters is rather unusual. It should probably just be a obfuscate static+instance method and a deobfuscate static method. i.e. instead of: ``` js //...