mpv --force-window=no "sound.wav"
ffplay -nodisp -autoexit "sound.wav"
powershell.exe -Command
(New-Object Media.SoundPlayer("sound.wav")).PlaySync()
$sound = (New-Object Media.SoundPlayer("sound.wav"))
$sound.PlaySync()
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://www.google.co.jp/search?q=美容室 | |
| &ie=utf-8&oe=utf-8&client=firefox-b&ei=WO3PWubtPMyQ8QeshqiADw | |
| &gfe_rd=cr&dcr=0 | |
| near=osaka | |
| 一部しか変わらない。 | |
| 関連する検索キーワード は地域次第で変わる | |
| 「東京都, 日本 - 検索履歴から」 or 元の地域 | |
| gfe_rd=cr | |
| 無くても変わらない |
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 $ = (selector)=> document.querySelector(selector) | |
| var $$ = (selector)=> Array.from(document.querySelectorAll(selector)) | |
| var $x = (xpathExpression)=> { | |
| let result = document.evaluate(xpathExpression, document, null, 7) | |
| for (let i=0; i<result.snapshotLength; i++) { | |
| ret[i] = result.snapshotItem(i) | |
| } | |
| return ret | |
| } |
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
| reg query HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID /d /s /f "C:\Windows\System32\jscript" |
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
| http://seiga.nicovideo.jp/api/comment/ng/get | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <response> | |
| <count>number:ng数</count> | |
| <ngclient> | |
| <id>NGの発行ID?</id> | |
| <type>NGのタイプ 1=ユーザー</type> | |
| <source>内容</source> | |
| <created>NGに入れた日時</created> |
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 FindWindowW = new NativeFunction(Module.findExportByName('user32.dll', 'FindWindowW'), 'pointer', ['pointer', 'pointer']) | |
| FindWindowW(NULL, Memory.allocUtf16String("無題 - メモ帳")) | |
| //var MessageBoxW = new NativeFunction(Module.findExportByName('user32.dll', 'MessageBoxW'), 'int', ['pointer', 'pointer', 'pointer', 'pointer']); | |
| //MessageBoxW(NULL, Memory.allocUtf16String("あ"), Memory.allocUtf16String("い"), Memory.allocUtf16String("MB_OK")) |
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 url = "" | |
| fetch(url).then(function(res){ | |
| res.text().then(function(mytext){ | |
| var doc = document.implementation.createHTMLDocument("") | |
| doc.body.insertAdjacentHTML = mytext | |
| console.log(doc) | |
| }) | |
| }) |
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
| http://flapi.nicovideo.jp/api/configurengclient?mode=get | |
| $x("//ngclient[type[text()='id']]/source/text()").map((e,i)=> e.data).join("\n") |