实用工具

月伴飞鱼 2024-06-23 15:20:26
工具相关
支付宝打赏 微信打赏

如果文章对你有帮助,欢迎点击上方按钮打赏作者!

工资计算器:https://www.zhipin.com/wage

招商银行储蓄存款利率表:https://fin.paas.cmbchina.com/fininfo/interestrate

个人存款计算器:https://fin.paas.cmbchina.com/fininfo/calsaving

工具网站

在线API开发测试工具:

固定尺寸图片生成工具:

在线开发文档:

网易有道词典:

命名网站:

JSON格式化网站:

CRON表达式:

时间戳工具:

Logo网站:

传文件小工具:

文件转换工具:

Chrome插件

插件下载:https://chrome.zzzmh.cn/

FeHelper(前端助手) 前端工具集

GitHub1s:

沙拉查词:翻译

B站视频下载助手:下载BiliBili视频

Cookie-Editor:Cookie管理

Timer:倒数计时器扩展

  • 扩展ID:hepmlgghomccjinhcnkkikjpgkjibglj

篡改猴:可以在网站上运行用户脚本

百度AI图片助手

画图

https://excalidraw.com/

https://www.processon.com/

https://app.diagrams.net/

写作

代码粘贴网站:https://paste.ubuntu.com/

写作软件:

博客排版:https://www.mdnice.com/

图标:https://shields.io/

代码图片生成器: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/

文本工具

制作歌词:https://lrc-maker.github.io/#/

文本拼接:https://www.lddgo.net/string/line-reduce

前端相关

免费CDN:

中文文档:

PlantUML

PlantUML提供了一种用文本描述来绘制UML图的方式,可以绘制类图、时序图、用例图等等。

官网:http://plantuml.com

https://plantuml.com/zh/

预览网站: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

自我调用

image-20240109104634860
@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

入口和出口

image-20240109104736132
@startuml

participant c as "Client"
participant s as "Server"

[-> c: enter
[<- c: leave

@enduml

逻辑分支

image-20240109104840404
@startuml

participant c as "Client"
participant s as "Server"

alt a 
c -> s: a
else b
c -> s: b
end

@enduml

循环

image-20240109104937319
@startuml

participant c as "Client"
participant s as "Server"

loop 1000 times
    c -> s: DNS Attack
end

@enduml

自定义组

image-20240109105026126
@startuml

participant c as "Client"
participant s as "Server"

group title
    c -> s: do things
end

@enduml

注解

image-20240109105113404
@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

分隔线

image-20240109105201572
@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

外框

image-20240109105240434
@startuml

participant s as "Server"

box "Box" #LightBlue
    participant c as "Client"
end box

@enduml

结合ChatGPT

将一个登录流程的描述告诉 GPT 让它画出时序图。

Prompt 如下。

以客户端、登录服务、数据库为3个主体,画出整个登录过程的Sequence Diagrams:

客户端输入手机号,调用登录服务,查询数据库,查看手机号是否存在,如果不存在,直接通知客户端用户不存,如果存在,登录服务查询数据库验证手机号和密码是否匹配,如果匹配,返回用户信息,客户端跳转到首页。

请帮我生成 PlantUML 格式的类图,请开始画图吧。

支付宝打赏 微信打赏

如果文章对你有帮助,欢迎点击上方按钮打赏作者!