Bruno Vieira

Results 14 comments of Bruno Vieira

I would like to see this merged since `withCredentials` default to `true` prevents accessing resources on many servers and the solution might not be obvious for users. Especially if your...

I've thought of it an can still implement this approach, but ended up going for the [Docker data volume](https://docs.docker.com/storage/volumes/) approach for its benefits: >Volumes have several advantages over bind mounts:...

I really like literate coding with [docco](http://jashkenas.github.io/docco) that automatically [generate docs](http://rawgit.com/bionode/bionode-ncbi/master/docs/bionode-ncbi.html) from [code comments](https://github.com/bionode/bionode-ncbi/blob/master/lib/bionode-ncbi.js#L64-L107), but maybe we should switch to a more [user friendly](https://docs.travis-ci.com/api/?shell) docs with [Slate](https://github.com/lord/slate).

Hey, check the new (WIP) documentation at http://doc.bionode.io The repo is [bionode/doc.bionode.io](https://github.com/bionode/doc.bionode.io) and you can just edit the [index.html.md](https://github.com/bionode/doc.bionode.io/blob/master/source/index.html.md) file and PR.

Do: ```bash git clone [email protected]:bionode/MODULE_NAME.git cd MODULE_NAME npm install --save-dev standard ``` Then [add standard to tests](https://github.com/bionode/bionode-ncbi/blob/master/package.json#L63). and do `npm test` to get all the style errors. You can also...

Do: ```bash git clone [email protected]:bionode/bionode-MODULE_NAME.git cd bionode-MODULE_NAME npm install --save-dev insight ``` Then add to the lib folder the [anonymous-tracking.js](https://github.com/bionode/bionode-ncbi/blob/master/lib/anonymous-tracking.js) file. [Require that file](https://github.com/bionode/bionode-ncbi/blob/master/lib/bionode-ncbi.js#L41) in the main module JS file....

Use [bionode-template](https://github.com/bionode/bionode-template) as a starting point. Maybe we just need to update that repo, maybe we need to use something like [yeoman](http://yeoman.io). We should discuss pros and cons.

> an online course would help significantly There's some stuff at http://try.bionode.io but it could be improved. Content is here: https://github.com/bionode/get-bionode/tree/master/markdown Implementation is here: https://github.com/bionode/try-bionode#how-does-httptrybionodeio-works

Another project that is wrapping bioinformatic tools is the [Common Workflow Language](http://common-workflow-language.github.io), and after chatting with @tetron at [#biohack15](http://2015.biohackathon.org) he added to the current implementation of the specification [some support](https://github.com/common-workflow-language/cwltool-service/blob/master/cwltool_stream.py)...

Does Docker's "[machine](http://blog.docker.com/2015/02/announcing-docker-machine-beta/)" solves this? Should we switch from boot2docker to "machine" in the short term?