Change Log
I work with AI assistants, primarily using Kagi Assistant, supplemented by Google Gemini and Microsoft Copilot, to implement changes on this site.
Last Modified: 3/23/2026, 12:06:20 AM
2026
2026-03-22
- Excluded the index page from search functionality on wiki and journal.
- Implemented caching to reduce build time and stay within Netlify's free plan limit of 300 minutes per month.
- Updated the Syntax Highlighting plugin to ensure proper functionality.
- Redesigned the navigation bar by replacing text links for search and RSS with SVG icons, and added a link to /journal.
- Revamped the Archive page with a custom layout inspired by Code and Me.
- Update style to fold previous years logs on Change Log.
2026-03-19
- Move Journal to bamorlove.com by 11ty Blog with a custom layout, retire Releasesapp.
- Add a specific RSS for journal.
2026-03-16
-
Update Script for opening new window
I set external links to open in a new window. Due to conflicts with inline JavaScript, I've updated the code accordingly.
<script type="text/javascript">
var links = document.links;
for (var I = 0, linksLength = links.length; I < linksLength; I++) {
if (links[I].protocol !== 'javascript:' && links[I].hostname !== window.location.hostname) {
links[I].target = '_blank';
}
}
</script>
2026-03-11
2026-03-06
-
Migrate ShortURL to Sink, retired OpenMyLink.
As OpenMyLink’s service level was quite low and there had been no response from them for about a month, I moved my short URL service to an open-source alternative called Sink,, which can be hosted for free on Cloudflare Worker.
I followed the instructions but failed several times. Eventually, I succeeded in deploying it with help from AI (Kagi Assistant), and linked my short URL domain bamor.love to the service.
Additionally, I updated the automation in Pabbly Connect so that a short URL is now automatically generated whenever new content is published on my blog.
2026-02-15
- Add search to wiki index page.
- Add self-hosted umami.
- Move to self-hosted blog by 11ty Blog
2026-02-13
- Start wiki on the same site.
2026-02-12
- Add figure caption.
- Add footnotes.
2026-02-10
2026-02-09
- Enhance the heading link (anchor) to support Chinese with 拼音.
2026-02-08
2025
2025-09-11
- Migrate the blog to Hyvor Blogs.
- Hide the navigation side bar on mobile screen.
- Minor changes for better css style.
2025-08-02
2025-07-22
2025-07-21
- Updated the
Archives page with a new template, rolling up entries by year. Thanks to Ava for sharing her approach.
2025-07-15