<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| import argpase | |
| import fileinput | |
| if __name__ == '__main__': | |
| parser = ArgumentParser() | |
| parser.add_argument('--dummy', help='dummy argument') | |
| parser.add_argument('files', metavar='FILE', nargs='*', help='files to read, if empty, stdin is used') | |
| args = parser.parse_args() | |
| # If you would call fileinput.input() without files it would try to process all arguments. |
| [run] | |
| branch = True | |
| source = . |
| # Stop all containers | |
| docker stop `docker ps -qa` | |
| # Remove all containers | |
| docker rm `docker ps -qa` | |
| # Remove all images | |
| docker rmi -f `docker images -qa ` | |
| # Remove all volumes |
| // Refrence from: https://gist.github.com/beevelop/a0f2c76e79610dca01550c9a93f83876 | |
| // Copy following scripts in the developer console of page included markdown content you want to print: | |
| (function () { | |
| var $ = document.querySelector.bind(document); | |
| $('#readme').setAttribute('style', 'position:absolute;top:0;left:0;right:0;bottom:0;z-index:100;background-color:white'); | |
| $('#readme>article').setAttribute('style', 'border: none'); | |
| $('body').innerHTML = $('#readme').outerHTML; | |
| window.print(); | |
| })(); |
This is a collection of the things I believe about software development. I have worked for years building backend and data processing systems, so read the below within that context.
Agree? Disagree? Feel free to let me know at @JanStette.
Keep it simple, stupid. You ain't gonna need it.
Это краткая памятка, которая подходит во время вспышки любого респираторного вирусного заболевания. Я ее пишу не для того, чтобы вы срочно начинали все это делать - никакого повода нет. Но, если вы хотите снизить вероятность получения или распространения вирусов - прочитайте.