@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
| ほにクラブ利用規約(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
| :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
| 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
| // 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
| // ${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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| on_some_job_error() { | |
| kill "$(jobs -pr)" | |
| exit 1 | |
| } |
https://www.postgresql.org/docs/16/upgrading.html
dbOldに新しめのpostgresql-clientをインストールdbNewインスタンスの作成
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
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server; | |
| listen 443 default_server; | |
| listen [::]:443 default_server; | |
| server_name _; | |
| # Reject SSL handshake on port 443 | |
| ssl_reject_handshake on; |
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
| function ばかげる( | |
| normals: Readonly<TemplateStringsArray>, | |
| ...embededs: readonly unknown[] | |
| ): string { | |
| /* | |
| * NOTE: テンプレートリテラルによる呼び出しと各パラメーターの対応 | |
| * - `normals[0]${embededs[0]}normals[1]` | |
| * - `normals[0]` (embededs => []) | |
| * - `${embededs[0]}` (normals[0] => "", normals[1] => "") | |
| */ |
OlderNewer