家
2014 年 3 月から現在の家に住んでいるらしい
引っ越ししたいが、快適すぎるので引っ越したくない
let options; | |
export const CustomSelect = { | |
template: ` | |
<select @change="$emit('input', $event.target.value)"> | |
<option v-for="e in options" :key="e.key" :value="e.value" :selected="e.value === value">{{ e.label }}</option> | |
</select>`, | |
props: { | |
value: String | |
}, |
2014 年 3 月から現在の家に住んでいるらしい
引っ越ししたいが、快適すぎるので引っ越したくない
まだ買ってないんだ
その前に引っ越すことになるのでは
// OK | |
type T = { | |
[key: string]: T | |
} | |
// OK | |
type U = { | |
foo: U | |
} & (() => string) |
PDF などの中にある一部の日本語の漢字が、見た目は同じだけど異なる謎の文字に変換されていることがある
U+9577
ではなく「⾧ (U+2FA7
)」になっている新型コロナウイルス感染症 (COVID-19) の流行に際して ── @xl1 の場合
社会こわれて楽しい
— 何もしてない (@xl1blue) February 28, 2020
2/2-2/9 でオランダ・アムステルダムとフランス・パリに行った記録
import { BlobServiceClient } from '@azure/storage-blob'; | |
import { QueueServiceClient } from '@azure/storage-queue'; | |
const conn = process.env.StorageConnectionString; | |
const containerName = process.env.StorageContainerName; | |
const queueName = process.env.StorageQueueName; | |
async function main() { | |
const blob = BlobServiceClient.fromConnectionString(conn); | |
const queue = QueueServiceClient.fromConnectionString(conn); |
jsdo.it がサービス終了するにあたってコードサルベージするためにやったこと
成果物: Salvaged codes from jsdo.it
もともと危ういコードを書いていたのもあり半分くらいはまともに動いてない