hectorv
hectorv
Similar to https://github.com/donnemartin/system-design-primer/pull/207, we could have something like this: ``` pandoc \ --pdf-engine=xelatex \ --toc -N \ -V colorlinks -V urlcolor=NavyBlue -V toccolor=Red \ -o system-design-primer.pdf \ README.md ``` but...
+1 here's my `get-function-configuration`: ``` ❯ aws lambda get-function-configuration --function-name earth { "FunctionName": "earth", "FunctionArn": "arn:aws:lambda:us-east-1:xxx:function:earth", "Runtime": "python2.7", "Role": "arn:aws:iam::xxx:role/lambda_basic_execution", "Handler": "lambda.lambda_handler", "CodeSize": 18362355, "Description": "Earth SNS topic", "Timeout": 3,...
How about something like this? ``` ❯ monkeytype list-modules | xargs -n1 monkeytype apply ```
I got here because I was _just_ thinking how cool this would be 😄 By the way, do you guys know why the `pytest_addoption` hook doesn't appear in `pytestdebug.log`? I'm...
+1 The `CommaList` exception got me here.