@Play
@Functonal
fun Player() {
Song(
bpm = 132,
groove = Grooves.Latin1,
)
}
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
#!/usr/bin/env bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
on_some_job_error() { | |
kill "$(jobs -pr)" | |
exit 1 | |
} |
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
// ${localWorkspaceFolder}/frontend/.dockerignore | |
node_modules | |
.next |
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
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | |
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile | |
{ | |
"name": "Existing Dockerfile", | |
"build": { | |
// Sets the run context to one level up instead of the .devcontainer folder. | |
"context": "..", | |
// Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename. | |
"dockerfile": "../Dockerfile", | |
// "target": "devcontainer" |
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
package com.thinaticsystem.mre | |
import aws.sdk.kotlin.runtime.auth.credentials.ProfileCredentialsProvider | |
import aws.sdk.kotlin.services.dynamodb.DynamoDbClient | |
import aws.sdk.kotlin.services.dynamodb.batchExecuteStatement | |
import aws.sdk.kotlin.services.dynamodb.batchWriteItem | |
import aws.sdk.kotlin.services.dynamodb.model.AttributeValue | |
import aws.sdk.kotlin.services.dynamodb.model.BatchStatementRequest | |
import aws.sdk.kotlin.services.dynamodb.model.WriteRequest | |
import aws.smithy.kotlin.runtime.auth.awscredentials.CredentialsProvider |
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
:root { | |
--theme-c: #457; | |
--accent-c: #4a7bc0; | |
--fc1: #a7a7a7; | |
--fc2: #89a; | |
--fc-black: #383838; | |
--link-fc: #599; | |
--card-bg-c: #393942; | |
--card-bc-hover: #364358; | |
--border-c: #555; |
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
ほにクラブ利用規約(v2.0) | |
**めんせき** | |
1. 本サイトは雰囲気で稼働しており、しなちくシステムの技術力の無さや突然の元気の喪失などにより本サービスに登録されたあなたのユーザー情報の全て(投稿したノート・メディア、プロフィール情報等)が**唐突に吹き飛ぶ**リスクが常にあります。 | |
ゆるしてね。 | |
**サービスの提供停止条件** | |
むかついたら干します。 | |
**これの効き目** |
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
(async() => { | |
const MISSKEY_NAME = 'ほにクラブ'; | |
const MISSKEY_HOST = 'https://honi.club'; | |
const MISSKEY_ADMIN_API_TOKEN = 'とーくん'; | |
const fn_copyToClipboard = (text) => { | |
const textarea = document.createElement('textarea'); | |
textarea.textContent = text; | |
document.body.appendChild(textarea); |
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
const isYun = | |
(maybe: Yun | Nene | Inn): maybe is Yun | |
=> !( | |
isGameCubeGenerators(maybe) | |
|| isToyokoInn(maybe) | |
); |
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
import * as P from 'terrario'; | |
const _ = P.option(P.alt([P.str(' '), P.str(' ')]).many(1)); | |
const degreeNatural = P.alt([ | |
P.str('Ⅰ'), | |
P.str('Ⅱ'), | |
P.str('Ⅲ'), | |
P.str('Ⅳ'), | |
P.str('Ⅴ'), |
NewerOlder