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
| // https://gist.github.com/tablacus/b706707ae86aa4fd7d126d5d117a853d | |
| // Toggle split pane (Vertical) Require "Split" - Tablacus Explorer | |
| function ToggleSplitPaneVertical() { | |
| if (te.Ctrls(CTRL_TC, true).Count > 1) { | |
| Addons.Split.Exec(1, 1); | |
| } else { | |
| Addons.Split.Exec(2, 3); | |
| // https://github.com/tablacus/TablacusExplorerAddons/wiki/switchpane | |
| Sync.SwitchPane.NextFV().Navigate(GetFolderView(), SBSP_NEWBROWSER); | |
| } |
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 argparse | |
| from zengin_code import Bank | |
| def format_name(s:str): | |
| from_letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-ャュョッ" |
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
| // ------------------------------------------------------------ | |
| // インデント直後では逆インデント、それ以外は直前の1字を削除 | |
| // ------------------------------------------------------------ | |
| function selectLine() { | |
| document.selection.EndOfLine(false, mePosLogical); | |
| document.selection.StartOfLine(true, mePosLogical); | |
| } | |
| function getIndentDepth(s) { |
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
| package main | |
| import ( | |
| "flag" | |
| "fmt" | |
| "image/png" | |
| "os" | |
| "time" | |
| "github.com/boombuler/barcode" |
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
| <# ///////////////////////////////////////////////////////////////// | |
| // | |
| // BEGINING OF FILE: | |
| // ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 | |
| // | |
| ///////////////////////////////////////////////////////////////// #> | |
| <# ============================== |
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
| /* | |
| 勉強時間の内訳を取得 | |
| */ | |
| // グローバル変数としてシートを取得 | |
| var sht = SpreadsheetApp.getActiveSpreadsheet().getSheets(); | |
| //////////////////////////////////////////////////////// | |
| // 集計時処理 |
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
| /* | |
| slack のカスタムアクションでシートに記入していく。 | |
| フルに稼働するためにはそのチャンネルにアプリとして追加する必要あり。 | |
| scope: interactive component / users.read / reactions.write / channels:read / groups:read | |
| */ | |
| var PROPERTIES = PropertiesService.getScriptProperties(); | |
| var BOT_USER_TOKEN = PROPERTIES.getProperty("BOT_USER_TOKEN"); | |
| var SHEET_ID = PROPERTIES.getProperty("SHEET_ID"); |
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
| # For documentation, see http://www.sumatrapdfreader.org/settings3.2.html | |
| MainWindowBackground = #fffde7 | |
| EscToExit = false | |
| ReuseInstance = false | |
| UseSysColors = false | |
| RestoreSession = true | |
| FixedPageUI [ | |
| TextColor = #000000 |
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
| .markdown-preview.markdown-preview { | |
| @accentColor: #3498db; | |
| @backgroundColor: #ffffff; | |
| @foregroundColor: #333333; | |
| @accentFont: 'Source Han Code JP N', Verdana, Arial, Helvetica, Roboto, sans-serif; | |
| @baseFont: "HelveticaNeue", Arial, "HiraginoKakuGothicProN", "HiraginoSans", Meiryo, sans-serif; | |
| @borderColor: #aaa; | |
| @codeDark: #364352; | |
| @codeLight: #f2f2f2; |