This file contains 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
# coding: utf-8 | |
""" | |
openBD API | |
[openBDプロジェクト(カーリル・版元ドットコム)](https://openbd.jp)によって提供される書誌情報・書影を、だれでも自由に使える、高速なAPI. # noqa: E501 | |
OpenAPI spec version: 1.0.0 | |
Generated by: https://github.com/swagger-api/swagger-codegen.git | |
""" |
This file contains 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
{ | |
"Blog Snippet": { | |
"scope": "markdown", | |
"prefix": "blogsnippet", | |
"body": [ | |
"# ${1:title}", | |
"", | |
"## ${2:サマリ}", | |
"$0", | |
"* ${3:背景}", |
This file contains 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
code --install-extension christian-kohler.path-intellisense | |
code --install-extension CoenraadS.bracket-pair-colorizer-2 | |
code --install-extension DavidAnson.vscode-markdownlint | |
code --install-extension donjayamanne.githistory | |
code --install-extension eamodio.gitlens | |
code --install-extension googlecloudtools.cloudcode | |
code --install-extension GrapeCity.gc-excelviewer | |
code --install-extension HookyQR.beautify | |
code --install-extension IBM.output-colorizer | |
code --install-extension ICS.japanese-proofreading |
This file contains 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
"""fizzbuzz | |
https://gist.github.com/kazuho/3300555 のようにPythonでif文を使わずにFizzBuzzを実装したもの | |
doctest実行するときは`python -m doctest fizzbuzz.py -v` | |
""" | |
from itertools import cycle | |
from collections.abc import Iterator | |
fizz = cycle(["", "", "Fizz"]) |