| title | author | created_at | updated_at | license |
|---|---|---|---|---|
各種yield方式のパフォーマンス計測 |
syusui_s |
2022-07-25 |
2022-09-07 |
CC-BY-SA 3.0 |
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
| /** | |
| * This file is licensed under MIT license, not AGPL. | |
| * | |
| * Copyright (c) 2023 Syusui Moyatani | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights | |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| * copies of the Software, and to permit persons to whom the Software is |
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
| // This code is Public domain (Creative Commons Zero CC0-1.0) | |
| // https://creativecommons.org/publicdomain/zero/1.0/deed.ja | |
| // from nostr-tools (Public domains) | |
| export type NostrEvent = { | |
| id?: string; | |
| kind: number; | |
| tags: string[][]; | |
| pubkey: string; | |
| content: string; |
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
| /* | |
| * To the extent possible under law, Shusui Moyatani has waived all copyright and related or neighboring rights to this file. | |
| * https://creativecommons.org/publicdomain/zero/1.0/deed.ja | |
| */ | |
| import { createSignal, onMount, onCleanup } from 'solid-js'; | |
| type ReadResult = { | |
| dataType: DataType; | |
| options: Options; |
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 VideoPlaybackRate.user.js | |
| // @author Shusui Moyatani | |
| // @description Change speed of video | |
| // @namespace https://gist.github.com/syusui-s/VideoPlaybackRate.user.js | |
| // @version 3.0.2 | |
| // @match http*://*/* | |
| // @grant none | |
| // @run-at context-menu | |
| // @downloadURL https://gist.github.com/syusui-s/5db8676b21db522cedbc1028c75dddb6/raw/VideoPlaybackRate.user.js |
- 次のいずれかの拡張機能をインストールしてください
- Tampermonkey (Proprietary, multi-platform)
- Greasemonkey (FLOSS, Firefox only)
- uBlacklistをインストール
- 設定画面を開く
- 一番下の「ブラックリストを購読する」の「購読を追加する」をクリック
- 下記の通りに設定する
- 名前:
VTuber Gossip Blacklist
- 名前:
- URL:
https://gist.githubusercontent.com/syusui-s/9449f216f373db2187cbfd496d1aceca/raw/vtuber_gossip_ublacklist.txt
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
| let g:quickrun_config.fsharp = { | |
| \ 'type': 'fsharp/concurrent_process/dotnet_fsi', | |
| \ } | |
| let g:quickrun_config["fsharp/concurrent_process/dotnet_fsi"] = { | |
| \ 'runner': 'concurrent_process', | |
| \ 'command': 'dotnet', | |
| \ 'cmdopt': 'fsi', | |
| \ 'runner/concurrent_process/load': '#load "%S";;', | |
| \ 'runner/concurrent_process/prompt': '> $', |