Carlos Vargas

Results 10 comments of Carlos Vargas

I know we had PR #88, but it never got merged. You might want to take a look there and see if @tusharmakkar08 wants to update it or abandon it.

@turrtle13 I made a PR #65 about this yesterday.

Bah, just realized that I could have written: ``` python with self.recorder.use_cassette(cassette_name): with self.cli_runner.isolation() as runner: ``` like ``` python with self.recorder.use_cassette(cassette_name) as cassette, self.cli_runner.isolation() as runner: ``` if anyone...

@ueg1990 `contextlib.nested` has been deprecated since 2.7 (https://docs.python.org/2/library/contextlib.html#contextlib.nested)

Not sure if you're asking about `git pull` (which is really `git fetch && git merge` or `git pull --rebase` or rebasing PRs or merging PRs, but they're all kinda...

@coreyshuman a `git bisect` isn't really useful when doing a PR. Its use case is for when you are debugging something and are trying to find when a bug was...

- I second the use of black. @stephengtuggy the Python VSCode plugin includes it. By default it uses ` autopep8`, but you can change it to `black`. @DropsOfSerenity Corey wants...

I agree @zbyte64 and @DropsOfSerenity. We have to point out all those things and let people experiment, but we also need to provide at least some recommended libraries/frameworks/tools that they...

Don't forget that we have an in-progress branch with some of this done: https://github.com/Shift3/standards-and-practices/tree/ac53b5655b09947150fbc555e4e818d35c1e63a7/aws/terraform/eb-cloudfront We just gotta clean it up and split it into modules (I say like that's easily...

I second this. While we should add an official Github issue if there is one, I would suggest that we should also add any Stack Overflow or blog post links...