Dimitri Merejkowsky
Dimitri Merejkowsky
Here is the workflow I'm following for my project (assuming last release is 3.11) 'master' branch is for stable releases, 'next' is for development. On 'next': - First, alpha release:...
Steps to reproduce: * Make sure `~/.git` does not exist * Create ~/.config/git/config` with a least two includes, like so: ```ini [include] path = /path/to/1 path = /path/to/2 ``` Run...
There's an API for that, at least for github: https://developer.github.com/v3/pulls/#update-a-pull-request
Currently I workaround it by writing something like: ```rust let input = "foo_bar"; let ugly = input.to_train_case().replace("-", "_"); assert_eq!(ugly, "Foo_Bar"); ```
It's much safer to ask linux users to install the python(3)-lxml package provided by their distro (if it exists)
I prefer creating and activating virtualenvs only when there is a `setup.py` file at the top. Going through the source code, I found I could do that by editing the...
If you're using this action with a documentation built with sphinx, you'll get 404 errors because no `.nojekyll` file is present in the generated commit. Maybe this action should be...
### Use case: We have a signing keypair that has been generated by an other program in a different language, and we need to sign and verify messages with them....
Saw this on [Karol Kuczmarski's blog](http://xion.io/post/programming/gisht-recap.html). Looks like he enjoyed the experience. BTW, I found your blog post from his ...
This should make the CI happier