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
| # Ctrl-Nで単語単位でサジェストを確定 | |
| "\C-n": clink-forward-bigword |
Custom functions for pokutuna/chrome-cocopy.
({title, url}) => `[${title.replace(/\s*[\[\]]\s*/g, ' ')} ${url}]`;Rich text format (pastable on slack)
.
├── .root
├── _legacy
├── _wiki
├── design_装幀
├── donation_献本
├── galley_ゲラ
│ ├── main_本文
│ │ ├── 0_layout_割付
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 Amazon to hanmono.com | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-07-25 | |
| // @description open hanmoto.com page by isbn | |
| // @author AWtnb | |
| // @match https://www.amazon.co.jp/*/dp/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=amazon.co.jp | |
| // @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
| import sys | |
| from pathlib import Path | |
| def main(bigger_dict_path, smaller_dict_path): | |
| smaller_set = set( | |
| Path(smaller_dict_path).read_text(encoding="utf-16-le").splitlines() | |
| ) | |
| output_path = Path(bigger_dict_path).with_stem("sieved") |
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
| * { | |
| font-family: "UDEV Gothic", "HackGen", "PlemolJP"; | |
| } | |
| .inline-title { | |
| color: #333; | |
| font-style: normal !important; | |
| font-weight: bold; | |
| font-size: 2em !important; | |
| } |
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
| function Get-EjectableDrive { | |
| [OutputType([System.IO.DriveInfo])] | |
| param() | |
| return [System.IO.DriveInfo]::GetDrives() | Where-Object {$_.DriveType -eq [System.IO.DriveType]::Removable} | |
| } | |
| function Invoke-DriveEject { | |
| try { | |
| fzf.exe --version > $null | |
| } |
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
| javascript:(function(){const l=document.location;const h=l.host;if(h.endsWith(".github.io")){const u=h.split(".")[0];const p=l.pathname;const nu=new URL("https://github.com/");nu.pathname=u+p;window.open(nu.toString(),"_blank")}}()) |
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 全角数字を半角にする() | |
| If Selection.Type = wdSelectionIP Then | |
| MsgBox "範囲選択して下さい" | |
| Exit Sub | |
| End If | |
| Dim i As Integer | |
| Application.ScreenUpdating = False | |
| For i = 0 To 9 | |
| With Selection.Find |
NewerOlder