<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>Jacky&apos;s Blog</title><description>hello</description><link>https://blog.justdev.cn/</link><item><title>浅探浏览器事件循环机制</title><link>https://blog.justdev.cn/posts/eventloop/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/eventloop/</guid><description>最近面试问事件循环相关的概念挺多的，一起系统的学习一下浏览器的事件循环机制。</description><pubDate>Wed, 07 May 2025 00:00:00 GMT</pubDate></item><item><title>MCP 在 server 端的探索</title><link>https://blog.justdev.cn/posts/llm/mcp-server-demo/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/llm/mcp-server-demo/</guid><description>Manus 的爆火，让这玩意在社区也愈发火热，我们来浅浅的探索一下 MCP 是个什么东西、能干什么。</description><pubDate>Sat, 22 Mar 2025 00:00:00 GMT</pubDate></item><item><title>在 linux 服务器部署 DeepSeek-R1</title><link>https://blog.justdev.cn/posts/llm/build-your-own-local-llm/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/llm/build-your-own-local-llm/</guid><description>在低成本 Linux 服务器上部署 DeepSeek-R1 大模型的操作指南。</description><pubDate>Thu, 27 Feb 2025 00:00:00 GMT</pubDate></item><item><title>Mac 电脑安装 PostgreSQL</title><link>https://blog.justdev.cn/posts/sql/postgre-sql/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/sql/postgre-sql/</guid><description>在 Mac 上通过 Homebrew 安装并配置 PostgreSQL 数据库的步骤。</description><pubDate>Sat, 27 Jul 2024 00:00:00 GMT</pubDate></item><item><title>获取echarts计算后的grid边距</title><link>https://blog.justdev.cn/posts/echarts/get-computed-grid-offset/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/echarts/get-computed-grid-offset/</guid><description>探索如何获取 ECharts 计算后的 grid 实际边距值，解决动态 label 导致边距不准的问题。</description><pubDate>Mon, 22 Jul 2024 00:00:00 GMT</pubDate></item><item><title>gorm 查表自动加 s 问题</title><link>https://blog.justdev.cn/posts/golang/gorm-table-name/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/golang/gorm-table-name/</guid><description>解决 GORM 查询时自动在表名后添加 s 导致查询失败的问题。</description><pubDate>Sat, 04 May 2024 00:00:00 GMT</pubDate></item><item><title>恢复丢弃的 git stash 数据</title><link>https://blog.justdev.cn/posts/git/git-stash-fsck/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/git/git-stash-fsck/</guid><description>使用 git fsck 命令恢复被 git stash clear 误删的 stash 数据。</description><pubDate>Thu, 25 Apr 2024 00:00:00 GMT</pubDate></item><item><title>go-get 遇到 🧱 的解决方法</title><link>https://blog.justdev.cn/posts/golang/go-get-fail/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/golang/go-get-fail/</guid><description>解决 go get 命令因 GFW 导致依赖下载超时，配置国内代理加速的方法。</description><pubDate>Wed, 20 Mar 2024 00:00:00 GMT</pubDate></item><item><title>使用 pre-commit hook 在提交前追加更新日期</title><link>https://blog.justdev.cn/posts/use-precommit-hook/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/use-precommit-hook/</guid><description>利用 Husky pre-commit hook 在提交时自动更新 Markdown 文章的修改日期。</description><pubDate>Sun, 04 Feb 2024 00:00:00 GMT</pubDate></item><item><title>JavaScript 中的树</title><link>https://blog.justdev.cn/posts/data-structure/tree-data-structure-in-javascript/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/data-structure/tree-data-structure-in-javascript/</guid><description>来看看 Javascript 中树结构的实现。</description><pubDate>Wed, 06 Dec 2023 00:00:00 GMT</pubDate></item><item><title>JavaScript 中的链表</title><link>https://blog.justdev.cn/posts/data-structure/linked-list-in-javascript/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/data-structure/linked-list-in-javascript/</guid><description>来看看 Javascript 中链表的实现，链表是动态数据结构，因为我们可以轻松添加或删除元素，它甚至可以根据需要增长。就像数组一样，链表按顺序存储元素，但不像数组那样连续存储元素。</description><pubDate>Sun, 03 Dec 2023 00:00:00 GMT</pubDate></item><item><title>用户体验之 CLS</title><link>https://blog.justdev.cn/posts/user-experien/cumulative-layout-shift/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/user-experien/cumulative-layout-shift/</guid><description>CLS 是用户体验中不可缺失的一部分，是一个以用户为中心、用来衡量可视区域元素稳定性的重要标准，可以帮助我们定量计算出用户遇到意料之外的布局偏移的频率。CLS小可以确保我们的页面有一个良好的用户体验，来看看什么是CLS，以及如何优化CLS。</description><pubDate>Fri, 24 Nov 2023 00:00:00 GMT</pubDate></item><item><title>函数式编程</title><link>https://blog.justdev.cn/posts/functional-programming/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/functional-programming/</guid><description>函数式编程是一个很古老的概念，早于第一台计算机的诞生。函数式编程是随着 react 的流行而受到越来越多的关注（就跟 google 地图和 gmail 带火了 Ajax 一样）React 的高阶组建使用了高阶函数，而高阶函数就是函数式编程的一个特性。</description><pubDate>Wed, 17 May 2023 00:00:00 GMT</pubDate></item><item><title>我的博客发展史</title><link>https://blog.justdev.cn/posts/my-blog-life/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/my-blog-life/</guid><description>历经好几年，我博客的正式版终于上线了，来回顾一下我这些年里一步步搭过的博客系统。</description><pubDate>Wed, 19 Apr 2023 00:00:00 GMT</pubDate></item><item><title>GraphQL 使用 part1</title><link>https://blog.justdev.cn/posts/use-graphql-1/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/use-graphql-1/</guid><description>来了解一下 GraphQL 吧，一种新的前后端交互方式，节省前后端联调成本。</description><pubDate>Sun, 02 Apr 2023 00:00:00 GMT</pubDate></item><item><title>你不知道的 CSS 之包含块</title><link>https://blog.justdev.cn/posts/css-block/</link><guid isPermaLink="true">https://blog.justdev.cn/posts/css-block/</guid><description>Example of a markdown file with code blocks and syntax highlighting</description><pubDate>Tue, 06 Dec 2022 00:00:00 GMT</pubDate></item></channel></rss>