https://devblogs.microsoft.com/typescript/announcing-typescript-4-2/
下記のように、Rest Elements が tuple の最初でなくても使えるようになっています。
| Host i-* | |
| GSSAPIAuthentication no | |
| StrictHostKeyChecking no | |
| UserKnownHostsFile /dev/null | |
| LogLevel ERROR | |
| IdentityFile ~/.ssh/id_rsa | |
| ProxyCommand sh -c 'aws ec2-instance-connect send-ssh-public-key --instance-id %h --instance-os-user %r --ssh-public-key file://~/.ssh/id_rsa.pub && exec aws ec2-instance-connect open-tunnel --instance-id %h' |
https://devblogs.microsoft.com/typescript/announcing-typescript-4-2/
下記のように、Rest Elements が tuple の最初でなくても使えるようになっています。
| WITH | |
| tables AS ( | |
| SELECT | |
| table_id | |
| FROM | |
| `{project_id}.{dataset_name}`.__TABLES__ | |
| WHERE | |
| table_id NOT LIKE 'LOAD_TEMP_%' | |
| AND table_id NOT LIKE 'TMP_%' | |
| ), |
| ruby '2.7.1' | |
| gem 'rails', github: 'rails/rails' | |
| gem 'tzinfo-data', '>= 1.2016.7' # Don't rely on OSX/Linux timezone data | |
| # Action Text | |
| gem 'actiontext', github: 'basecamp/actiontext', ref: 'okra' | |
| gem 'okra', github: 'basecamp/okra' | |
| # Drivers |
2020/5/31追記:
自分用のメモに書いていたつもりだったのですが、たくさんのスターを頂けてとても嬉しいです。
と同時に、書きかけで中途半端な状態のドキュメントをご覧いただくことになっており、大変心苦しく思っています。
このドキュメントを完成させるために、今後以下のような更新を予定しています。
2021/1/22追記:
| import React from "react"; | |
| const scaleWidth = 500; | |
| const scaleHeight = 500; | |
| function draw(canvas, scaleX, scaleY) { | |
| const context = canvas.getContext("2d"); | |
| context.scale(scaleX, scaleY); | |
| context.clearRect(0, 0, canvas.clientWidth, canvas.clientHeight); |
| import { createConnection, getConnection, Entity, getRepository } from "typeorm"; | |
| import { PrimaryGeneratedColumn, Column } from "typeorm"; | |
| @Entity() | |
| export class MyEntity { | |
| @PrimaryGeneratedColumn() | |
| id?: number; | |
| @Column() | |
| name?: string; |
| sudo amazon-linux-extras install epel -y | |
| sudo yum install stress -y |
| Short name | Full name |
|---|---|
| csr | certificatesigningrequests |
| cs | componentstatuses |
| cm | configmaps |
| ds | daemonsets |
| deploy | deployments |
| ep | endpoints |
| ev | events |
| hpa | horizontalpodautoscalers |