Alexander Mills

Results 290 issues of Alexander Mills

The readme says: "Make sure to add the dependencies before the directive's js file." I believe it should say: "Make sure to add the dependencies before the directive's *html file."

I can use a promise to retrieve the rows for the csv file, but I cannot seem to use a promise to retrieve the header, e.g.: ``` $scope.getCSVExportFileHeader = function(){...

Just wondering if there is a standard MIME type for the file that gets downloaded via this module? https://en.wikipedia.org/wiki/Media_type perhaps it's "application/octet-stream"? thanks!

Looking forward to using this module! What's missing in the docs (IMO) is the format of the array - there are several different potential array formats. I can try to...

It appears that `rm -rf` on hard link deletes original files this is dangerous and on Linux if you rm the hard link the original file is still intact. Can...

https://stackoverflow.com/questions/47292286/prevent-developers-from-unintentionally-killing-daemon-worker-processes-on-loc I am not sure if supervisor or forever can solve the problem described in the S.O. question - if someone could give me some tips or advice, that would...

so if I have a struct: ```golang package main import "log" var s = struct{Foo string}{"foo"} func acceptStruct(a interface{}, b interface{}) bool { return a == b } func main()...

Hey With the Node.js API, it's not clear whether it uses the easySauce config in the package.json file. Specifically, I don't know how to specify the test.html file to use,...

So I have this: ```js const path = require('path'); const easySauce = require('easy-sauce'); easySauce({ username: process.env.SAUCE_LABS_USERNAME, key: process.env.SAUCE_LABS_KEY, testPath: path.resolve(process.cwd() + '/test/unit/one.test.html'), platforms: [ [ 'Windows 10', 'chrome', 'latest' ],...