记录一次通过浏览器控制台和简单 JavaScript,从 Hugo 归档页批量提取文章 URL,并提交到 Bing Webmaster Tools 的实操过程,适合小站手动提交索引的场景。
Archives
All the articles I've archived.
2026 6
一月 6
2025 43
十二月 6
九月 1
八月 1
五月 2
四月 5
三月 9
D365 | 邮箱密码过期后的排查与修复
解决 Dynamics 365 邮箱密码过期导致的邮件发送故障,详细说明从问题发现到修复的完整流程,包括邮件日志查看与密码重置操作。适用于系统管理员快速排查邮件中断问题。
强身健体小贴士 | 修复 Garmin Connect 导出 CSV 在 Excel 中乱码的问题
通过修改 CSV 文件编码,解决 Garmin Connect 导出跑步数据在 Excel 中显示中文乱码的问题,简单三步即可完成。
强身健体小贴士 | 修复 Garmin Connect 导出 CSV 在 Excel 中乱码的问题
通过修改 CSV 文件编码,解决 Garmin Connect 导出跑步数据在 Excel 中显示中文乱码的问题,简单三步即可完成。
D365 | XrmToolBox 导出实体数据字典
使用 XrmToolBox 导出实体数据字典,介绍了两个强大的工具:Metadata Document Generator 和 Attributes Factory,这两款工具能够帮助用户快速导出所需的实体字段信息和选项集
二月 6
D365 | 常用的SQL
A guide on commonly used SQL queries in Dynamics 365 for querying views, reports, file sizes, security roles, and user assignments. ...
D365 | Plugin Registration Tool 安装指南
学习 Dynamics 365 Plugin Registration Tool 的两种安装方法,包括直接下载安装与 PowerShell 自动化脚本安装,并提供扩展工具安装选项,适用于插件开发与管理工作。
一月 13
Hugo | 添加不蒜子记录浏览量
不蒜子官网:https://ibruce.info 1.调整 hugo.yaml 添加 busuanzi 参数 params: busuanzi: enable: true 2.站点底部"访问量" 调整 layouts/partials/footer.html,在 </footer> 标签上方添加代码 {{ if .Site.Params.busuanzi.enable -}} <div class="busuanzi-footer"> {{ if eq $lang "zh" }} <span id="busuanzi_container_site_pv" >站点访问量:<span id="busuanzi_value_site_pv"></span ></span> {{- else }} <span id="busuanzi_container_site_pv" >Site Visits:<span id="busuanzi_value_site_pv"></span ></span> {{- end -}} </div> {{- end -}} 3.文章"访问量" 调整 layouts/_default/single.html,在 <div class="post-meta"> 里添加 ...
2024 16
十二月 7
Review | 24年的年终总结
今晚下班坐的这趟地铁下格外晃悠,瞄到了旁边一位老哥正在看着一篇标题为《xxx的年终总结》,想起自己也该写个年终总结。 因为往年的都没有写过年终总结(公司要求写的除外),一时难以下笔,但还是写点吧。 ...
D365 | 报表导出PDF解决方案:限制用户只能导出PDF格式
学习如何在Dynamics 365中通过自定义按钮强制用户只能导出PDF格式报表。本方案复用现有SSRS报表,通过JavaScript实现PDF生成和下载,解决多格式导出带来的管理问题。
Cooking | 青椒肉丝卤
材料 青椒、肉丝、蒜、葱 备料 肉丝投洗干净,攥干水份 腌肉丝:少量盐、胡椒粉、生抽,抓匀,然后放入兑好的淀粉水(土豆淀粉最佳) 切青椒、蒜末、葱末 操作 起锅放油,下肉丝,中小火炒至变色 炒至变色后放入葱末、蒜末,炒香 然后加入生抽、老抽、少许蚝油提鲜 翻炒均匀后加入热水(末过食材),盖盖 大概焖煮5分钟,加入食盐,然后进行勾芡即可出锅
十一月 2
十月 4
D365 | 使用API测试工具访问CRM(Postman / Apifox)
本文详细介绍如何使用 API 测试工具(如 Postman、Apifox)访问 Dynamics 365,包括注册 Azure 应用、获取 ClientId 和 ClientSecret、配置身份验证和 API 权限,以及在 Postman 中设置环境变量和获取访问令牌,帮助开发者快速调试 D365 Web API 接口。
D365 | 使用FetchXML创建自定义报表
学习在Dynamics 365中使用FetchXML开发SSRS自定义报表的完整流程。从Visual Studio环境配置、FetchXML查询编写,到报表设计、数据绑定和发布部署,包含详细的步骤说明和实战案例。
八月 2
一月 1
2022 3
二月 3
2019 2
三月 2
Markdown Syntax Guide
This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. ...
Code Syntax Guide
Inline Code(行内代码) This is Inline Code Only pre This is pre text Code block with backticks <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Example HTML5 Document</title> <meta name="description" content="Sample article showcasing basic Markdown syntax and formatting for HTML elements." /> </head> <body> <p>Test</p> </body> </html> Code block with backticks and language specified <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Example HTML5 Document</title> <meta name="description" content="Sample article showcasing basic Markdown syntax and formatting for HTML elements." /> </head> <body> <p>Test</p> </body> </html> Code block with backticks and language specified with line numbers 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Example HTML5 Document</title> <meta name="description" content="Sample article showcasing basic Markdown syntax and formatting for HTML elements." /> </head> <body> <p>Test</p> </body> </html> Code block with line numbers and highlighted lines PaperMod supports linenos=true or linenos=table 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Example HTML5 Document</title> <meta name="description" content="Sample article showcasing basic Markdown syntax and formatting for HTML elements." /> </head> <body> <p>Test</p> </body> </html> With linenos=inline line might not get highlighted properly. This issue is fixed with 045c084 1<!DOCTYPE html> 2<html lang="en"> 3 <head> 4 <meta charset="utf-8" /> 5 <title>Example HTML5 Document</title> 6 <meta 7 name="description" 8 content="Sample article showcasing basic Markdown syntax and formatting for HTML elements." 9 /> 10 </head> 11 <body> 12 <p>Test</p> 13 </body> 14</html> Code block indented with four spaces <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example HTML5 Document</title> </head> <body> <p>Test</p> </body> </html> Code block with Hugo’s internal highlight shortcode <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example HTML5 Document</title> </head> <body> <p>Test</p> </body> </html>