モカフレーバー。口に含むと栗のような香り。後味が柑橘系の酸味。
- 苦味: 2
- 酸味: 2
- 甘み: 4
- コク: 5
- 香り: 3
- 重さ: 2
import { formatters } from "sql-formatter"; | |
import type { Token as OrigToken } from "sql-formatter/lib/src/lexer/token"; | |
export type Token = OrigToken & { | |
line: number; | |
column: number; | |
}; | |
export const createParser = () => { | |
const tokenizer = formatters.bigquery.prototype.tokenizer(); |
import { generate } from "ts-to-zod"; | |
import clipboard from "clipboardy"; | |
(async () => { | |
const sourceText = await clipboard.read(); | |
const schema = generate({ | |
sourceText, | |
}) | |
.getZodSchemasFile() | |
.replace("// Generated by ts-to-zod\n", ""); |
#undef RGBLED_NUM | |
#define RGBLED_NUM 54 | |
#undef RGBLED_SPLIT | |
#define RGBLED_SPLIT {27, 27} | |
#define LED_LAYOUT( \ | |
L00, L01, L02, R00, R01, R02, \ | |
L03, L04, L05, R03, R04, R05, \ | |
\ | |
L06, L07, L08, L09, L10, L11, R06, R07, R08, R09, R10, R11, \ |
with | |
items as ( | |
select 1 as id, ['dog'] as tags | |
union all select 2 as id, ['cat'] as tags | |
union all select 3 as id, ['bird'] as tags | |
union all select 4 as id, ['dog', 'cat'] as tags | |
union all select 5 as id, ['cat', 'bird'] as tags | |
union all select 6 as id, ['bird', 'dog'] as tags | |
union all select 7 as id, ['dog', 'cat', 'bird'] as tags | |
) |
import Client from "@minodisk/medkit"; | |
(async () => { | |
const client = new Client(); | |
const postId = await client.createPost( | |
"<h3>Title</h3><h4>Subtitle</h4><p>Text</p>", | |
); | |
const html = await client.readPost(postId); // -> "<h1>Title</h1><h2>Subtitle</h2><p>Text</p>" or "<h3>Title</h3><h4>Subtitle</h4><p>Text</p>" | |
await client.updatePost( | |
postId, |
#/bin/bash | |
images=$(gcloud beta container images list --format 'value(name)') | |
for i in $images; do | |
tags=$(gcloud beta container images list-tags $i --format 'value(tags)') | |
for t in $tags; do | |
echo delete $i:$t | |
gcloud beta container images delete $i:$t --resolve-tag-to-digest --quiet | |
done |
package main | |
func main() {} |
jwPlayer.config.sources.forEach(function(source){if(source.default){window.open(source.file);return false}}) |