FAT (File Allocation Table) は MS-DOS のファイルシステム。 フロッピーディスク向けに設計されているため、ファイルサイズやファイル名などに制限がある。 FATの制限を大幅に拡張したファイルシステムが exFAT である。
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
| /*! | |
| * Neobeam - A modern take on LaTeX beamer | Default | |
| * | |
| * @theme neobeam-tex2e | |
| * @author Embracket / mikael-ros, Mako / tex2e | |
| * | |
| * @auto-scaling true | |
| * @size 16:9 1920px 1080px | |
| * @size 4:3 960px 720px |
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
| version: '3' | |
| services: | |
| app: | |
| build: | |
| context: . | |
| dockerfile: ./Dockerfile | |
| ports: | |
| - 3000:3000 | |
| links: |
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
| configure.php | |
| rss_86380e70026c8af52c338ac98e375a04.cache | |
| rss_d9a966ba3c3261d2b4a0bddc2faa12ca.cache | |
| checkout_payment_address.php | |
| account_password.php | |
| login.log | |
| address_book.php | |
| advanced_search_result.php | |
| pub/ | |
| .htaccess |
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 io # バイトストリーム操作 | |
| import textwrap # テキストの折り返しと詰め込み | |
| import re # 正規表現 | |
| import shutil # ターミナル幅の取得 | |
| from metatype import Type, List, ListMeta | |
| import dataclasses | |
| # TLSメッセージの構造体を表すためのクラス群 | |
| # 使い方: |
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
| P.<X> = ZZ[] | |
| def select_polynomial(m, d, p): | |
| f = [0] * (d + 1) | |
| f[d] = p // m^d | |
| r = f[d] * m^d | |
| for i in range(d - 1, -1, -1): | |
| f[i] = (p - r) // m^i | |
| r = r + f[i] * m^i | |
| f = P(f) |
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
| ; Excelの複数行の結合セルに貼り付ける | |
| !+v:: | |
| Critical | |
| SetKeyDelay, 0 | |
| Loop, parse, clipboard, `n, `r | |
| { | |
| line := StrReplace(A_LoopField, "`t") | |
| Send {F2}%line%{Enter} | |
| } |
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
| Write-Host "[INFO] ExecutionPolicy:" (Get-ExecutionPolicy) | |
| Write-Host "" | |
| function prompt { | |
| if (Test-IsAdmin) { | |
| $inputSign = " [admin]> " | |
| } else { | |
| $inputSign = " > " | |
| } |
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
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| ; 編集したらスタートアップに再登録する | |
| ; 1. AutoHotkeyScript.ahk を右クリックし、Compile Script を実行 | |
| ; 2. win + R で「shell:startup」を入力 | |
| ; 3. 常駐しているAutoHotkeyScriptの停止 | |
| ; 4. AutoHotkeyScript.exe をスタートアップに移動 |
NewerOlder