コミナティ筋注接種の記録です。
- 経口補水液パウダーを用意
- ロキソニンを用意
- 2L程度の水を冷蔵庫で冷やしておく(1L切る頃に補充する。主に経口補水液に利用。)
- 電気ケトル(いつでもお湯を飲めるように)
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 | |
*/ |