myndzi
myndzi
You can fix it (in the compiled css) around line 187 by setting top to '3em' instead of '0', and set bottom to '0', removing 'height: 100%'; finally, remove the...
Is there a way to select a portion of an image and apply filters to only that portion? Hardmode: circular selections?
I'm not sure what you want to do about this one, really. Most of the time, the type of a value is inferred from the default value if it's not...
The docs say that channels implicitly emit close events when a connection closes, but I can't see any code in channel_model.js or channel.js that does this (I assume it's precipitated...
Hi there. I'm stumbling through trying to use ts-morph to generate some code from an interface. One thing I'm hoping to do is essentially annotate fields in the interface to...
See: http://stackoverflow.com/questions/30869460/node-js-browserify-error-on-parsing-tar-file/30878794#30878794, https://github.com/substack/stream-browserify/issues/8 It would be nice if this module emitted actual instances of Buffer so that it is compatible with other streams, specifically for `.pipe`
## Feature Request ### Description Talos has config for specifying attached disks and their partitions, and will automatically partition and format them when it boots with an _uninitialized_ disk present....
Code: ``` javascript var errors = require('errors'); errors.create({ name: 'FooError' }); throw new errors.FooError('custom message'); ``` Output: ``` myndzi@tetrisguide:~/foo$ node -v v0.10.33 myndzi@tetrisguide:~/foo$ node test /home/myndzi/foo/test.js:7 throw new errors.FooError('custom message');...
The docs here: https://nodejs.org/api/errors.html#errors_error_capturestacktrace_targetobject_constructoropt claim that the target of the `captureStackTrace` method's `.toString` method will be used to generate the error message line, but it doesn't seem to be so,...
## Description In the source, the `mb.album_info` function calls track_info for each recording in a release... but then overrides certain values such as `title`, `artist`, and `length`. This unexpectedly causes...