| ア段 | イ段 | ウ段 | エ段 | オ段 | |
|---|---|---|---|---|---|
| ア行 | ア | イ | ウ | エ | オ |
| カ行 | カ | キ | ク | ケ | コ |
| サ行 | サ | シ | ス | セ | ソ |
| タ行 | タ | チ | ツ | テ | ト |
| ナ行 | ナ | ニ | ヌ | ネ | ノ |
| ハ行 | ハ | ヒ | フ | ヘ | ホ |
| マ行 | マ | ミ | ム | メ | モ |
| ヤ行 | ヤ | ユ | ヨ |
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 python3 | |
| """ | |
| This script reads the TSV-format content from clipboard and plots multiple | |
| graphs for helping the user to visualize the bill. | |
| """ | |
| import clipboard | |
| import matplotlib.pyplot as plt | |
| import pandas as pd | |
| from dateutil.parser import parse |
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 python3 | |
| """ | |
| This script enables the user first copy the bill statement lines from its PDF | |
| file then coverts it to a TSV format, which can be directly pasted into a | |
| spreadsheet application such as Google Sheets. | |
| """ | |
| import clipboard | |
| OUTPUT_FILENAME = 'reformatted.tsv' |
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 python3 | |
| """ | |
| Test file for the blockchain basic functions. | |
| """ | |
| import unittest | |
| from chain import Block, Chain | |
| class Test(unittest.TestCase): | |
| """ |
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
| """ | |
| Implementation of the simple and basic block chain objects. | |
| """ | |
| import hashlib | |
| from datetime import datetime | |
| DIFFICULTY = 4 | |
| class Block(): |
| あ段 | い段 | う段 | え段 | お段 | |
|---|---|---|---|---|---|
| あ行 | あ | い | う | え | お |
| か行 | か | き | く | け | こ |
| さ行 | さ | し | す | せ | そ |
| た行 | た | ち | つ | て | と |
| な行 | な | に | ぬ | ね | の |
| は行 | は | ひ | ふ | へ | ほ |
| ま行 | ま | み | む | め | も |
| や行 | や | ゆ | よ |
| a段 | i段 | u段 | e段 | o段 | |
|---|---|---|---|---|---|
| a行 | a | i | u | e | o |
| ka行 | ka | ki | ku | ke | ko |
| sa行 | sa | shi | su | se | so |
| ta行 | ta | chi | tsu | te | to |
| na行 | na | ni | nu | ne | no |
| ha行 | ha | hi | fu | he | ho |
| ma行 | ma | mi | mu | me | mo |
| ya行 | ya | yu | yo |
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
| final private FormParserFactory parserFactory = | |
| FormParserFactory.builder().build(); | |
| interface GetPostParameterCallback { | |
| void done(Map<String, Object> params); | |
| } | |
| private void getPostParameters(HttpServerExchange exchange, | |
| final GetPostParameterCallback callback) { | |
| try { |
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
| Sub Splitbook() | |
| Dim vis As Long, xPath As String, xWs As Worksheet | |
| xPath = Application.ActiveWorkbook.Path | |
| Application.ScreenUpdating = False | |
| Application.DisplayAlerts = False | |
| Application.EnableEvents = False | |
| i = 1 | |
| For Each xWs In ThisWorkbook.Sheets | |
| vis = xWs.Visible |
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
| sudo apt-get update | |
| sudo apt-get install -y python-pip | |
| pip install --upgrade pip | |
| pip install --user tensorflow tensor2tensor | |
| PROBLEM=translate_enzh_wmt8k | |
| MODEL=transformer | |
| HPARAMS=transformer_base_single_gpu | |
| DATA_DIR=$HOME/t2t_data |