私は以下のコロナワクチンを接種済みです。
- 1回目: ファイザー製コロナワクチン
- 2回目: 武田薬品製コロナワクチン
以下に症状の経過を記録します。
また、その日最もきつかったものに「🔥」をつけています。
| 1 | |
| 00:00:00,819 --> 00:00:02,159 | |
| 韓国は終わった | |
| 2 | |
| 00:00:02,159 --> 00:00:04,449 | |
| 残酷に聞こえるかもしれませんが | |
| 3 | |
| 00:00:04,449 --> 00:00:08,059 |
| start() | |
| function start() { | |
| const message = window.prompt("発言してほしいメッセージを入力してください") | |
| const intervalMinutes = window.prompt("何分に1回発言してほしいか入力してください", "60") - 0 | |
| const intervalMilliseconds = intervalMinutes * 60 * 1 | |
| document.title = "🌸定期発言中!" | |
| speak(message) |
| main(); | |
| async function main() { | |
| clickXXXButton(); | |
| setPageXXXData(); | |
| } | |
| // your functions | |
| function clickXXXButton() {} |
| type _Size = "x-small" | "small" | "medium" | "large" | "x-large"; | |
| type USToI<T extends string> = { | |
| [P in T]: unknown; | |
| }; | |
| export type Size<K extends keyof USToI<_Size>> = keyof Pick<USToI<_Size>, K>; | |
| // Error! | |
| // const size: Size<"small" | "large"> = "medium"; |
| // https://www.worldometers.info/coronavirus/ | |
| { | |
| let result = '' | |
| let 現感染者数の合計 = 0 | |
| let 死亡者数の合計 = 0 | |
| let 完治者数の合計 = 0 | |
| let 重症者数の合計 = 0 |
Rust / Code of conduct より。
https://www.rust-lang.org/policies/code-of-conduct
| /* | |
| AUTO-COMPLETE SNIPPETS FOR GLSL WITHIN VISUAL CODE STUDIO | |
| Lewis Lepton | |
| https://lewislepton.com | |
| useful places that i grabbed info from | |
| http://www.shaderific.com/glsl | |
| https://www.khronos.org/opengl/wiki/OpenGL_Shading_Language | |
| plus various other papers & books | |
| */ |