API手册
Java8:Java 8 中文版 - 在线API中文手册 - 码工具 (matools.com) Mybatis: 官方: mybatis – MyBatis 3 | 简介 mybatis-spring – MybatisPlus:MyBatis-Plus (baomidou.com) Spring框架: Starter:Developing with Spring Boot Spring配置文件属性介绍:Common Application Properties...
素材站
图标站点: iconfont-阿里巴巴矢量图标库 图片站点:Awesome Wallpapers - wallhaven.cc
文档
文档处理 文档格式转化:OnlineConvertFree软件是在线免费转换软件, 能转换各种文件、视频、音频和照片等。 文档检索 搜索图书: Jiumo Search 鸠摩搜索 - 文档搜索引擎 (jiumodiary.com) Z-Library。世界上最大的数字图书馆。
测网速
SpeedTest:Speedtest by Ookla - The Global Broadband Speed Test 网飞测试:Speedtest by Ookla - The Global Broadband Speed Test 中国科技大学测速:中国科学技术大学测速网站 (ustc.edu.cn) 东北大学测速网(带宽较高):东北大学网络测速网站 (neu6.edu.cn)
常用图像处理
图片降噪:waifu2x (udp.jp) -> github:nagadomi/waifu2x: Image Super-Resolution for Anime-Style Art (github.com)
查看端口占用Netstat
netstatnetstat -tunlp 用于显示 tcp,udp 的端口和进程等相关情况。netstat 查看端口占用语法格式:netstat -tunlp | grep 端口号 -t (tcp) 仅显示tcp相关选项 -u (udp)仅显示udp相关选项 -n 拒绝显示别名,能显示数字的全部转化为数字 -l 仅列出在Listen(监听)的服务状态 -p 显示建立相关链接的程序名
DCL双检锁实现线程池单例模式
@Slf4j public class ThreadPool { private static ThreadPoolExecutor instance; private ThreadPool() { } public static ThreadPoolExecutor getInstance(){ if (instance != null) return instance; ...
慢系统调用
慢系统调用(Slow system call) 原文链接:慢系统调用 与 信号 - 穆穆兔兔 - 博客园...
Linux监控GPU和CPU
CPU – HTOP简介htop 是Linux系统中的一个互动的进程查看器,一个文本模式的应用程序(在控制台或者X终端中),需要ncurses。与Linux传统的top相比,htop更加人性化。它可让用户交互式操作,支持颜色主题,可横向或纵向滚动浏览进程列表,并支持鼠标操作。 安装apt install -y htop 使用-C --no-color 使用一个单色的配色方案-d --delay=DELAY 设置延迟更新时间,单位秒-h --help ...