Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomoya/iron-editor-2024
エディタの鉄人 2024
https://github.com/tomoya/iron-editor-2024
Last synced: 11 days ago
JSON representation
エディタの鉄人 2024
- Host: GitHub
- URL: https://github.com/tomoya/iron-editor-2024
- Owner: tomoya
- Created: 2024-08-04T08:20:14.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-04T09:28:35.000Z (5 months ago)
- Last Synced: 2024-12-23T23:40:15.771Z (16 days ago)
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# エディタの鉄人 2024
こちらは[東京Emacs勉強会 サマーフェスティバル2024](https://tokyo-emacs.connpass.com/event/321255/)で行われたエディタ鉄人のお題リポジトリです。
## お題1
[東京Emacs勉強会 サマーフェスティバル2024 参加者一覧](https://tokyo-emacs.connpass.com/event/321255/participation/#participants)をコピーして作成したテキスト [source.txt](source.txt)ファイルから、参加者一覧のリストを作成してください。
### 回答例
こんな感じでユーザー名を1行づつにしてください。
```
Kyure_A
yasunori
nekurai
...(以下略)
```## お題2
[schema.prisma](schema.prisma)ファイルから、以下のtbls用のコメントYMALファイルを作成してください。
```yaml
comments:
- table: Account
tableComment: アカウント
columnComments:
id: ID
userId: ユーザーID
type: タイプ
refresh_token: リフレッシュトークン
-
table: Session
tableComment: セッション
columnComments:
id: ID
sessionToken: セッショントークン
userId: ユーザーID
expires: 失効日時
-
table: User
tableComment: ユーザー
columnComments:
id: ID
name: 名前
email: Eメール
emailVerified: 認証済みフラグ
```