0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

day1-Y

Posted at
  • 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をコーディングできる環境を作成
    • シーケンス図の作成
      • 使い方の練習

image.png

@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>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?