David Pate

Results 8 issues of David Pate

This PR adds the ability to pass a custom FS implementation when using `ncp` along with a simple test for it and documentation about what it requires.

Looking through the code I noticed that [`fs.utimesSync(path, atime, mtime)`](http://nodejs.org/api/fs.html#fs_fs_utimessync_path_atime_mtime) is being [used to update timestamps](%28https://github.com/DavidTPate/ncp/blob/aad8c93befd190725da95a234d3419a79697ea24/lib/ncp.js#L131%29) instead of [`fs.utimes(path, atime, mtime, callback)`](http://nodejs.org/api/fs.html#fs_fs_utimes_path_atime_mtime_callback). Is there any particular reason? I see that...

This PR adds the ability for a function to be specified for the `secret` option. When a function is passed it is called with `req` passed to it so that...

enhancement
pr
ideas
needs rebase

This PR is being done in conjunction with expressjs/session#214. Currently, in order to vary the secret value for the cookie parser instantiations I have to memoize them. I'd much rather...

enhancement
pr
ideas

Currently trying out `c7n-org` instead of utilizing custom scripts to run the `custodian` command multiple times. I see that the ability to send output to S3 is still present, but...

kind/enhancement
area/tools

As I've been digging more and more into the xAPI specification, it's become pretty clear to me that I have no clue how some of these APIs are supposed to...

patch

Here's my fix to the "Tap to Refresh" removal. It's not using any of the odd adding of views to make it longer or anything like that, instead it simply...

Hi there! I'm using this library for one of my projects and ran into an instance where I had an authorization end-point similar to the following: `http://www.example.com/oauth2/authorize?parameter1=value1` where I was...