iHateRegex
https://ihateregex.io/ 一个收集常用正则表达式的资源库,并通过可视化帮助理解。
paperless-ngx
https://github.com/paperless-ngx/paperless-ngx
Paperless-ngx 是一个文档管理系统,可将您的文献资料转换为可搜索的本地在线存档。
ggpubr
https://github.com/kassambara/ggpubr
Hadley Wickham 的 ggplot2 是一个出色且灵活的包,用于在 R 中进行优雅的数据可视化。但是,默认生成的图需要一些精巧的设计才能用于学术发表。 此外,要自定义 ggplot,语法不透明,这增加了没有高级 R 编程技能的研究人员的难度。
‘ggpubr’ 包提供了一些易于使用的功能,用于创建和定制基于 ‘ggplot2’ 的发布就绪图。
ggdotchart(dfm, x = "name", y = "mpg_z",
color = "cyl", # Color by groups
palette = c("#00AFBB", "#E7B800", "#FC4E07"), # Custom color palette
sorting = "descending", # Sort value in descending order
add = "segments", # Add segments from y = 0 to dots
add.params = list(color = "lightgray", size = 2), # Change segment color and size
group = "cyl", # Order by groups
dot.size = 6, # Large dot size
label = round(dfm$mpg_z,1), # Add mpg values as dot labels
font.label = list(color = "white", size = 9,
vjust = 0.5), # Adjust label parameters
ggtheme = theme_pubr() # ggplot2 theme
)+
geom_hline(yintercept = 0, linetype = 2, color = "lightgray")
svgwrite
https://github.com/mozman/svgwrite
使用Python生成svg图片
Diploma PDF Generator
https://github.com/streamlit/example-app-pdf-report
使用streamlit建立的学习证书生成器,大家感兴趣可以使用一下。需要注意的是,python环境最好是3.7版本,3.8、3.9运行该代码会出Bug。
PyScript
可以在html中嵌入可执行的Python代码。