摘要:
Q: What is the meaning of life, the universe and everything else? A: 42 参见:生命、宇宙以及任何事情的终极答案 Q: What is the scientific name of the Australian animal th 阅读全文
摘要:
使用 netstat: sudo netstat -tulnp | grep ':22'
使用 lsof:sudo lsof -i :22
使用 ss:sudo ss -tulnp | grep ':22'
使用 fuser:sudo fuser 22/tcp 阅读全文
摘要:
docker inspect <container> | jq '.[].Config' # 查看 container 信息 docker inspect <container> | jq '.[].Config.Cmd' # 查看 container 的 Command 信息 docker ins 阅读全文
摘要:
WinGet WinGet 是微软官方的软件管理器。 搜索 WinGet 包 常用命令 winget install <packaeg> # 安装包 winget uninstall <package> # 卸载包 winget list # 列出已安装包 winget upgrade --all 阅读全文
摘要:
数字 n: int = 1000000000 print(f'{n:_}') # 1_000_000_000 print(f'{n:,}') # 1,000,000,000 对齐 var: str = 'var' # 右对齐,使用 _ 填充 print(f'{var:_>20}') # ______ 阅读全文
摘要:
~/.m2/settings.xml <settings> ... <mirrors> ... <mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> <name>aliyun maven</name> <url>https://maven.a 阅读全文
摘要:
Maven 设置 JDK 版本是通过 Apache Maven Compiler Plugin 插件实现的。它用于编译项目的源代码。 方法一 有时候你可能需要将某个项目编译到与当前使用的 JDK 版本不同的语言版本。你可以在编译时为 javac 工具添加 -source 和 -target 选项来实 阅读全文
摘要:
locale 介绍 在终端中,locale(本地化)设置是指与本地语言、国家和文化偏好有关的环境变量的配置。这些设定决定了程序如何处理和显示字符、时间、日期格式、货币等。 在类 Unix 系统(比如 Linux 和 macOS)中,locale 设置由一系列环境变量来定义,这些环境变量包括: LAN 阅读全文
摘要:
MMDB-Lookup | GitHub Lookup.java: import java.io.File; import java.net.InetAddress; import com.fasterxml.jackson.databind.JsonNode; import com.maxmind 阅读全文
摘要:
项目和依赖分别打入独立 JAR 包 使用 Maven Jar Plugin 插件,可以将项目自身单独打成一个 JAR 包,项目依赖的 JAR 包统一放置到指定目录。 在项目的 pom.xml 中添加如下配置: <project> ... <build> ... <plugins> ... <!-- 阅读全文