対応バージョン: 3.7.2218.55
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
;------------------------------------------------------------------------------ | |
; 前提: | |
; 日本語, 英語キーボードどちらでも使用可能 | |
; 英語キーボードの場合、変換・無変換キーが存在するUS配列として扱えるAX配列を利用する | |
; 参考: | |
; https://www.atmarkit.co.jp/ait/articles/0001/26/news001.html | |
; Change Key使用: | |
; 日本語キーボードの場合 | |
; Caps Lock -> Ctrl | |
; 英語キーボードの場合 |
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
# -*- coding: utf-8 -*- | |
import re | |
from pathlib import PurePath | |
from typing import Any, Dict # NOQA | |
import fire | |
import pandas as pd | |
from openpyxl.styles import Alignment, Border, Font, PatternFill, Side | |
from openpyxl.styles.borders import BORDER_THIN |
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
// ==UserScript== | |
// @name Arcadia local Viewer | |
// @namespace http://tampermonkey.net/ | |
// @version 0.41 | |
// @description Replace URL of Arcadia, to read in local file. | |
// @author toriwasa | |
// @match file:///D:/test/*.html | |
// @grant none | |
// ==/UserScript== |
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
status key command | |
Composition Backspace Backspace | |
Conversion Backspace Cancel | |
Precomposition Backspace Revert | |
Composition Ctrl a MoveCursorToBeginning | |
Conversion Ctrl a SegmentFocusFirst | |
Composition Ctrl Backspace Backspace | |
Conversion Ctrl Backspace Cancel | |
Precomposition Ctrl Backspace Undo | |
Composition Ctrl d MoveCursorRight |
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
// 引数を元にコピー元ディレクトリからコピー先ディレクトリに再帰的にファイルをコピーする | |
// ビルド対象でない静的ファイルをビルド先ディレクトリに単純にコピーするためのスクリプト | |
// npm script で呼び出すことで利用する | |
// Usage: ts-node ./copy_assets.ts ./srcDirPath ./destDirPath | |
import { | |
readdirSync, | |
lstatSync, | |
existsSync, | |
mkdirSync, |
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
// ==UserScript== | |
// @name bing to google | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Edgeのスタート画面やアドレスバーから検索したときにBing検索からGoogle検索に飛ばすユーザースクリプト | |
// @author toriwasa | |
// @match https://www.bing.com/search* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net | |
// @grant none | |
// @downloadURL https://gist.github.com/toriwasa/8d8d03e2b19e0149b3195d85b305b2b3/raw/dd8a727084baacb5491b47f903eb3ef53640b5c5/bing_to_google.user.js |