- 基本事項
- 拡張子は
.ugcです。 - 文字コードは UTF-8、改行文字は LF もしくは CRLF を使用します。
- 1 つの行で 1 つのコマンド / ノーツを表します。
@か#で始まらない行は無視されます。- パラメーターが不足している行は無視されます。
- コメント行は
'で始めます。 - 時間の指定には
Bar'Tickの形式が使用されます。ここでは BarTick 形式と呼びます。 例: 0 小節 240 Tick 目 →0'240
- 拡張子は
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
| class CShellBrowser : public IShellBrowser { | |
| private: | |
| ULONG m_refCount = 0; | |
| HWND m_hwndHost = NULL; | |
| HWND m_hwndShellView = NULL; | |
| CComPtr<IShellView> m_shellView; | |
| CComPtr<IShellFolder> m_desktopFolder; | |
| CComPtr<IShellFolder> m_currentFolder; |
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
| <?php | |
| /**************************************************************************** | |
| cntdl v0.1 | |
| (c) 2020 inonote | |
| HTTP(S) で公開された連番ファイルを一括ダウンロードするスクリプト | |
| ## 推奨動作環境 | |
| * PHP 7.2.8 以上 | |
| * curl 7.55.1 以上 | |
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
| <?php | |
| function meminfo(){ | |
| $ret = array(); | |
| $txt = shell_exec('cat /proc/meminfo'); | |
| $lines = explode("\n", $txt); | |
| foreach($lines as $line){ | |
| if ($line === '') continue; | |
| $data = explode(':', $line, 2); | |
| $value = trim($data[1]); | |
| // 単位変換 |
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
| //10進数の数値を62進数に相互変換するやつ | |
| function decToBase62(num_){ | |
| if (num_ === null) return void 0; | |
| let num = Number(num_); | |
| if (isNaN(num)) return void 0; | |
| if (Math.floor(num) !== num) return void 0; | |
| let is_negative = num < 0; | |
| num = Math.abs(num); |
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 Good dAnimeStore | |
| // @namespace https://inonote.jp/ | |
| // @version 0.2 | |
| // @description dアニメストアを便利にするスクリプト。 | |
| // @author inonote | |
| // @match https://anime.dmkt-sp.jp/animestore/sc_d_pc* | |
| // @grant none | |
| // ==/UserScript== |