Mike Badescu

Results 14 comments of Mike Badescu

To clarify, do you still plan to keep the `Schema` class meta `unknown`? ``` class Meta: unknown = INCLUDE ```

I am not JS expert, but based on the stackoverflow answer I expect it has something to do with the `` declaration (see page source), which might be specific to...

Agree. `linkDistance` can be used to increase separation between points, but it is not sufficient as the text size will not change.

Packages to be installed are supposed to be listed in the variable `R_PACKAGES` (originally defined in `settings_default.sh`). The code to install them is located in the second part of the...

> how exactly how it's supposed to work In `setup_user.sh` define a variable `R_PACKAGES` as shown in `settings_default.sh`. For example: ```bash # do not use commas or quotes, leave spaces...

AWS lambda and R ref links - [Analyzing Genomics Data at Scale using R, AWS Lambda, and Amazon API Gateway](https://aws.amazon.com/blogs/compute/analyzing-genomics-data-at-scale-using-r-aws-lambda-and-amazon-api-gateway/) - [Extracting Video Metadata using Lambda and Mediainfo](https://aws.amazon.com/blogs/compute/extracting-video-metadata-using-lambda-and-mediainfo/) - [Run...

ideas: #### logging - ~~use python logging: http://docs.aws.amazon.com/lambda/latest/dg/python-logging.html~~ - ~~write input_json, output_json ?~~ - ~~log other errors (e.g. R failures) ?~~ - per 12 factors, keep it simple, let R...

hack to increase the deployment size: - check that R is installed from source - install R in the normal place, but install lib in temp, e.g., `/tmp/lib` - create...

- We need Python to call R from within the AWS lambda container (since AWS lambda calls a Python function). - EC2 machines already have AWS CLI installed so it...