工资计算器:https://www.zhipin.com/wage
招商银行储蓄存款利率表:https://fin.paas.cmbchina.com/fininfo/interestrate
个人存款计算器:https://fin.paas.cmbchina.com/fininfo/calsaving
工具网站
在线API开发测试工具:
固定尺寸图片生成工具:
在线开发文档:
网易有道词典:
命名网站:
JSON格式化网站:
CRON表达式:
时间戳工具:
Logo网站:
传文件小工具:
文件转换工具:
Chrome插件
FeHelper(前端助手) 前端工具集
GitHub1s:
使用在线VS Code打开GitHub上的代码。
原来网址:
修改后的网址:
沙拉查词:翻译
B站视频下载助手:下载BiliBili视频
Cookie-Editor:Cookie管理
Timer:倒数计时器扩展
- 扩展ID:hepmlgghomccjinhcnkkikjpgkjibglj
篡改猴:可以在网站上运行用户脚本
百度AI图片助手
画图
写作
代码粘贴网站:https://paste.ubuntu.com/
写作软件:
- Typora,主题:https://theme.typora.io/theme/Drake/
代码图片生成器:https://carbon.now.sh/
Chrome插件:壹伴插件(公众号)
微信公众号封面图片提取:http://www.mgpaiban.com/tool/wxfm.html
小红书
青柠设计封面图:https://www.qingning6.com/
图怪兽封面图:https://818ps.com/
B站工具
B站视频下载:https://bili.iiilab.com/
B站视频封面提取:
音乐相关
免费音乐播放器:https://lxmusic.toside.cn/
歌曲歌词LRC下载:https://www.musicenc.com/
免费音乐搜索网站:
免费音乐网站:
学习相关
PDF阅读器:https://koodo.960960.xyz/zh
博客搭建
站点生成神器:https://docusaurus.io/
文本工具
前端相关
免费CDN:
中文文档:
PlantUML
PlantUML提供了一种用文本描述来绘制UML图的方式,可以绘制类图、时序图、用例图等等。
预览网站:https://www.plantuml.com/plantuml/uml/SyfFKj2rKt3CoKnELR1Io4ZDoSa70000
请求、回调、渲染
@startuml
participant c as "Client"
participant s as "Server"
c -> s: fetch
activate s
c -> c: render
activate c
deactivate c
s --> c: callback
deactivate s
c -> c: render
activate c
deactivate c
@enduml
自我调用
@startuml
participant c as "Client"
participant s as "Server"
activate c
c -> c: internal call 1
activate c
deactivate c
c -> c: internal call 2
activate c
deactivate c
@enduml
入口和出口
@startuml
participant c as "Client"
participant s as "Server"
[-> c: enter
[<- c: leave
@enduml
逻辑分支
@startuml
participant c as "Client"
participant s as "Server"
alt a
c -> s: a
else b
c -> s: b
end
@enduml
循环
@startuml
participant c as "Client"
participant s as "Server"
loop 1000 times
c -> s: DNS Attack
end
@enduml
自定义组
@startuml
participant c as "Client"
participant s as "Server"
group title
c -> s: do things
end
@enduml
注解
@startuml
participant c as "Client"
participant s as "Server"
c -> s: fetch
note left: left note
note over c, s
multiline
middle note
end note
s --> c: callback
note right: right note
@enduml
分隔线
@startuml
participant c as "Client"
participant s as "Server"
== Stage A ==
c -> s: A
s --> c: callback
== Stage B ==
c -> s: B
s --> c: callback
@enduml
外框
@startuml
participant s as "Server"
box "Box" #LightBlue
participant c as "Client"
end box
@enduml
结合ChatGPT
将一个登录流程的描述告诉 GPT 让它画出时序图。
Prompt 如下。
以客户端、登录服务、数据库为3个主体,画出整个登录过程的Sequence Diagrams:
客户端输入手机号,调用登录服务,查询数据库,查看手机号是否存在,如果不存在,直接通知客户端用户不存,如果存在,登录服务查询数据库验证手机号和密码是否匹配,如果匹配,返回用户信息,客户端跳转到首页。
请帮我生成 PlantUML 格式的类图,请开始画图吧。