Alexander Mills

Results 295 issues of Alexander Mills

for example, twitter.postMedia is not in the NPM repo am I right?

ldapjs can cache results from AD - does this module offer any caching ability?

hey, this is working for me, but now we are switching to using a custom filter. We are using the `ad.findUser()` method Instead of this standard filter filter: '(sAMAccountName={{username}})' we...

I filed this issue with cli-table https://github.com/Automattic/cli-table/issues/109 then I discovered cli-table2...can cli-table2 allow the user to change the header color? totally struggling with this, this should be easy fml.

just fyi this might be another way (better? dunno) https://stackoverflow.com/a/41929624/1223975 ```js const fs = require('fs'); fs.access('./foobar.sh', fs.constants.X_OK, (err) => { console.log(err ? 'cannot execute' : 'can execute'); }); ```

I have waited like 5 minutes, and the the TTL for a key was only 10 seconds at most, I have also restarted Redis for good measure. But *still* for...

If I have these two lines of code: `var Sentinel = sentinel.Sentinel(endpoints);` `var client = Sentinel.createClient(REDIS_SENTINEL_MASTER_NAME, {role: 'master'});` When Redis is not running, or it is misconfigured, your library will...

I am confused by this lib - looking at the code - it doesn't seem to run off of the main thread - it just uses process.nextTick or setImmediate to...

Hi there! I am in the process of writing an agnostic test runner: https://github.com/sumanjs/suman Suman is agnostic, it can run anything with a hashbang. I am not very familiar with...

Say I have this: ```js const opts = [ { names: ['force', 'f'], type: 'bool', help: 'Force everything (and say yes to everything).', default: 'foobar' // should be a boolean,...