https://www.postgresql.org/docs/16/upgrading.html
dbOldに新しめのpostgresql-clientをインストールdbNewインスタンスの作成
| // @ts-check | |
| "use strict"; | |
| const EVIL_DOMAINS = /** @type {const} */ ([ | |
| "error-report.com", | |
| "html-load.com", | |
| "content-loader.com", | |
| ]); | |
| /** | |
| * @param {string} urlString |
| function ばかげる( | |
| normals: Readonly<TemplateStringsArray>, | |
| ...embededs: readonly unknown[] | |
| ): string { | |
| /* | |
| * NOTE: テンプレートリテラルによる呼び出しと各パラメーターの対応 | |
| * - `normals[0]${embededs[0]}normals[1]` | |
| * - `normals[0]` (embededs => []) | |
| * - `${embededs[0]}` (normals[0] => "", normals[1] => "") | |
| */ |
| 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; |
https://www.postgresql.org/docs/16/upgrading.html
dbOld に新しめの postgresql-client をインストールdbNew インスタンスの作成| #!/usr/bin/env bash | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| on_some_job_error() { | |
| kill "$(jobs -pr)" | |
| exit 1 | |
| } |
| // ${localWorkspaceFolder}/frontend/.dockerignore | |
| node_modules | |
| .next |
| // 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" |
| 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 |
@Play
@Functonal
fun Player() {
Song(
bpm = 132,
groove = Grooves.Latin1,
)
}| :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; |