人工智能生成媒体简介

场景 最近在更改博客简介(关于我),由于长时间不写作文😅不知道如何描写。 于是想到了人工智能,用几个关键词让AI生成一段描述。 步骤 使用人工智能写作工具如下: 可以选择……

阅读全文

org-mode语法 | emacs

大纲 Org-mode天然支持大纲视图,通过在文档中定义标题,可以方便的浏览每个小节,从而把握文档的总体内容。 标题 正文中的标题用*标记,位于行首,*之后要有一个空……

阅读全文

org转md尖括号问题

问题描述 在写博客时从org mode转markdow如果org里写了html,输出时会把尖括号转义&lt; 解决办法 加入内联标记: 1 @@html:<b>@@bold text@@html:</b>@@ 参考资料 ox-huo org转m……

阅读全文

github访问超时

问题描述 国内如果没有翻墙,github访问超时是很常见的事情 解决办法 绕过dns解析 步骤 查询访问github最快的服务器ip 使用工具: 站长之家ping检测 修改ho……

阅读全文

判断有效的手机号 | JAVA

在从前端获取手机号后,首先需要校验手机号是否有效 如下: 1 2 3 4 5 6 7 8 9 10 11 12 public static boolean isChinaMobile(String mobile) { if (mobile == null) return false; String PATTERN = "^((13[0-9])|(14[0,1,4-9])|(15[0-3,5-9])|(16[2,5,6,7])|(17[0-8])|(18[0-9])|(19[0-3,5-9]))\\\\d{8}$"; // Set the email pattern string Pattern p = Pattern.compile(PATTERN); // Match the given string with the pattern Matcher m = p.matcher(mobile); // check whether……

阅读全文

获取URL参数 | JAVA

日常开发中需要解析URL里的参数与值 如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 /** * @description 解析日……

阅读全文

win11新版输入法占用快捷键

问题描述 win11新版微信输入法快捷键占用问题 默认占用shift 切换中英文 占用shift + F6 未知功能 占用 ctrl + shift + F 简繁体切换 解决方法 参考链接 微软拼音输入法占用S……

阅读全文