Tim Kevin Oxley
Tim Kevin Oxley
Hi @feross! If you pass a `` as the `fill` to `Buffer.alloc(size[, fill[, encoding]])` node (v14.15.1) will copy those bytes verbatim into the buffer, whereas with the `ferros/buffer` package, it...
`@document` seems much closer to current purpose of `@page`: https://developer.mozilla.org/en-US/docs/Web/CSS/@document ``` css @document url(http://www.w3.org/), url-prefix(http://www.w3.org/Style/), domain(mozilla.org), regexp("https:.*") { /* CSS rules here apply to: + The page "http://www.w3.org/". + Any...
can't take any project seriously sans favicons
I have a requirement to implement these extensions: [system.multicall](http://mirrors.talideon.com/articles/multicall.html) and [introspection](http://xmlrpc-c.sourceforge.net/introspection.html) It might make sense to (optionally) include these in this module. Your call.
The xml-rpc 'protocol' (specifically the serialising and deserializing component) could be easily refactored out of this module and into its own separate module. Benefits: - API changes such as those...
Currently, if there's no `.catch` errors will vanish mysteriously. Native promises in chrome 41.0.2249.0 (current canary) will print a message about unhandled promise errors:  but if the es6-shim is...
hey just added an optional fade-in when elements are added to the dom, makes it a little smoother
say I want to serve an npm module (eg underscore) via stitch, is this the best way? ``` var stitch = require('stitch'), path = require('path') // grab the parent directory...
Following on from https://github.com/sstephenson/stitch/pull/11#issuecomment-1645886 Merging into stitch would probably make sense, though there are some minor conflicts with libs and practices. Currently we're using different test frameworks (nodeunit vs jasmine);...
let's say I npm install someModule without linking to someModule's source on the filesystem as a path in createPackage(), is there any way to include serverside scripts?