有哪些Web应用开发的基础工具和资源推荐?
摘要:mybatis https:blog.csdn.netqq_45656077articledetails129923785 https:openstd.samr.gov.cnbzgkgbnewGbInfo?hcno=0
mybatis
https://blog.csdn.net/qq_45656077/article/details/129923785
https://openstd.samr.gov.cn/bzgk/gb/newGbInfo?hcno=0C4E83CE82045550C147C782750B221A
0 基础工具
ASCII表
ASCII 表 - 菜鸟教程
ASCII = American Standard Code for Information Interchange
0x00 = NUT = NUL = (space)
cron
cron在线表达式生成与逆向解析器
https://cron.ciding.cc
https://iotools.cloud/zh/tool/cron-expression-generator
时间转换
https://tool.lu/timestamp/
https://ol.woobx.cn/tool/timestamp
https://www.beijing-time.org/shijianchuo/
https://www.osgeo.cn/app/s2290
https://c.runoob.com/unit-conversion/6902/
https://www.iamwawa.cn/timezone.html
行政区划
全国行政区划信息查询平台 - 民政部
模拟身份证号码生成
http://sfz.fatcarter.cn/
http://study.100xgj.com/sfz/
https://www.1234wu.net/sfz.htm
正则表达式
https://www.runoob.com/regexp/regexp-syntax.html
中国手机号码校验
"^((13[0-9])|(14[0-9])|(15([0-9]))|(16([0-9]))|(17([0-9]))|(18[0-9])|(19[0-9]))\\d{8}"
md5
https://www.cmd5.com/
https://www.cmd5.com/hash.aspx
base64
在线工具
https://www.toolhelper.cn/EncodeDecode/Base64
'hello' => 'aGVsbG8='
base64 编码
方法1 shell
# echo -n 'hello' | base64
aGVsbG8=
# echo 'hello' | base64 【错误示范】
aGVsbG8K
echo -n: 此选项使输出省略换行符,即在输出后不换行。
建议使用此命令行时带上参数-n。
