Sphinx拡張 文字数表示パネル pageinfo.py に、翻訳率表示を加えた拡張です。
pageinfo.py と pageinfo.html を以下のように配置:
sphinx-project/ +- index.rst +- conf.py +- ext/pageinfo.py +- _templates/pageinfo.html
| package main | |
| import ( | |
| "context" | |
| "sync" | |
| ) | |
| // Dispatcher represents a job dispatcher. | |
| type Dispatcher struct { | |
| sem chan struct{} // semaphore |
| """ | |
| An implementation of TOTP as described in https://tools.ietf.org/html/rfc6238#section-4 aka Google Authenticator Style 2-factor Auth | |
| """ | |
| import base64 | |
| import datetime | |
| import hashlib | |
| import hmac | |
| import sys | |
| import struct | |
| import time |
Sphinx拡張 文字数表示パネル pageinfo.py に、翻訳率表示を加えた拡張です。
pageinfo.py と pageinfo.html を以下のように配置:
sphinx-project/ +- index.rst +- conf.py +- ext/pageinfo.py +- _templates/pageinfo.html
| // ==UserScript== | |
| // @name Ignore slack user | |
| // @namespace https://github.com/uzimith/ | |
| // @version 0.1 | |
| // @description ignore slack user | |
| // @author uzimith | |
| // @match https://*.slack.com/* | |
| // @grant none | |
| // ==/UserScript== |
| #!/usr/bin/env bash | |
| # https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/ | |
| # https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c | |
| # https://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver | |
| # https://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception | |
| # https://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal | |
| # https://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04 | |
| # Versions | |
| CHROME_DRIVER_VERSION=`curl -sS https://chromedriver.storage.googleapis.com/LATEST_RELEASE` |