- Git Githubについて
- アカウントの作成
- システム開発のスキル
- PowerShell
- VSCode
git clone https://github.com/***/***.git
git pull
git status
git add kuroda_add.txt
git commit -m "新しいファイル"
git push
- PowerShellでGitを使いやすくする
- posh-gitを有効化
- git statusのフォント色を変える
- [VSCode]Markdown PreviewをCSSで読みやすくする
- 「Ctrl + Shift + P」で検索窓を出します
- 「Markdown Preview Enhanced: Customize CSS」を入力してEnter
- CSSを記述して保存
- cliborダウンロードでコピペを簡単に
- CTRL2回
- VSCodeでmarkdownとplantumlをコーディングできる環境を作成
- シーケンス図の作成
- 使い方の練習
- シーケンス図の作成
@startuml
title PC入出力シーケンス
header テストシーケンス
footer ページ %page% / %lastpage%
'上から順番に並ぶ
'ユーザ挿入はactor ユーザ
actor ユーザ
participant PC #99FF99
participant ディスプレイ
participant USB
participant CPU
box PC
participant 外付けHDD
participant ディスプレイアダプタ
participant プリンタ
end box
'条件分岐を定義
'alt条件分岐 最後にend
alt キーボード
ユーザ -> PC : キー入力
else マウス
ユーザ -> PC : マウス入力
end
'分類子を中心に位置指定できる
note over 外付けHDD: 上部
note left ディスプレイ: 左側
note right プリンタ: 右側
ユーザ -> PC : <font color="blue">キー入力</font>
PC -> ディスプレイ : 文字
ディスプレイ -> ユーザ : 表示文字
ユーザ -> PC : キー入力
activate PC
note over PC : 処理中
PC -> プリンタ : データ送信
deactivate PC
プリンタ -> ユーザ : 印刷処理
@enduml
'改行したい場合には、「\n」を入れる。
'カラーコード変更 participant プリンタ #99FF99
'フォントの色HTMLのfontタグで指定 ユーザ -> PC : <font color="red">キー入力</font>