$ gunicorn main:app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| project = 'sphinx-revealjs-issue' | |
| copyright = '2021, Kazuya Takei' | |
| author = 'Kazuya Takei' | |
| release = '2021.2.28' | |
| extensions = [ | |
| 'sphinx.ext.todo', | |
| 'sphinx_revealjs', | |
| ] | |
| templates_path = ['_templates'] |
7/10にバンダイナムコアーツがリリースした、サービスMixBoxをヘッドレスモードのGoogleChromeで呼びます。 再生開始まで行い、それ以上のことはしません。
MixBoxは こちら
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Traial example for yandex-tank | |
| ## Usage | |
| ```bash | |
| docker-compose run tank | |
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| """Generated by act as 2017-12-30 09:57:20.386358 | |
| """ | |
| import sys | |
| import logging | |
| from pathlib import Path | |
| from git import Repo | |
| Logger = logging.getLogger('checkout_all_branches') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Core] | |
| Name = Timer | |
| Module = timer | |
| [Documentation] | |
| Description = Timer | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import fire | |
| class Calcurator(object): | |
| def add(self, first, second): | |
| return int(first) + int(second) | |
| if __name__ == '__main__': | |
| fire.Fire(Calcurator) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <iomanip> | |
| #include <random> | |
| #include <unistd.h> | |
| using namespace std; | |
| const int MAX_FLOOR = 14; | |
| const int ELEVATOR_COUNT = 4; | |
| const int RAISING_PROBABILITY = 10; |