-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss.xml
1 lines (1 loc) · 16.9 KB
/
rss.xml
1
<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[静水深流's blog]]></title><description><![CDATA[个人博客_web前端_JavaScript_面试_算法解析_技术总结_原创]]></description><link>https://slbyml.github.io</link><generator>RSS for Node</generator><lastBuildDate>Thu, 12 Sep 2024 06:31:40 GMT</lastBuildDate><atom:link href="https://slbyml.github.io/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[zh-CN]]></language><item><title><![CDATA[首页]]></title><link>https://slbyml.github.io/</link><guid isPermaLink="true">https://slbyml.github.io/</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[学习网站收藏]]></title><link>https://slbyml.github.io/link.html</link><guid isPermaLink="true">https://slbyml.github.io/link.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[文章列表]]></title><link>https://slbyml.github.io/list.html</link><guid isPermaLink="true">https://slbyml.github.io/list.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[探索 SSE:服务器推送技术的魅力与应用]]></title><description><![CDATA[SSE早在2004年就开始制定 HTML5 规范草案,08年被各大浏览器实现和支持,并在14年正式被W3C 标准化,但是其一直处于比较边缘化,很少被讨论的状态;本人也仅是只闻其名,直到最近做AI Copilot ,前后端的交互方式由原定的websocket改为了业内常用也比较符合使用场景的sse的交互方式;同时跟同事交流时发现和多人对sse并不是太了解,所以将近期做的调研进行整理输出!]]></description><link>https://slbyml.github.io/http/sse.html</link><guid isPermaLink="true">https://slbyml.github.io/http/sse.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Fri, 02 Aug 2024 10:58:55 GMT</pubDate></item><item><title><![CDATA[图解DIFF算法介绍]]></title><description><![CDATA[什么是DIFF,什么是Virtual DOM,现代前端框架为什么要有DIFF?他有什么好处,本文用几张图讲解如何vue3和react是如何实现的DIFF算法]]></description><link>https://slbyml.github.io/javascript/diff.html</link><guid isPermaLink="true">https://slbyml.github.io/javascript/diff.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Wed, 25 Oct 2023 00:00:00 GMT</pubDate></item><item><title><![CDATA[如何使用javascript实现复制出的文案带链接?]]></title><description><![CDATA[开发者在用户允许的情况下可以通过JavaScript来读写剪贴板;从而方便的实现粘贴、复制等能力;本文会研究Clipboard API和execCommand的使用方法,同时也会简单研读下开源项目clipboard.js是如何实现的复制能力。]]></description><link>https://slbyml.github.io/javascript/copy.html</link><guid isPermaLink="true">https://slbyml.github.io/javascript/copy.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Tue, 25 Jul 2023 11:14:17 GMT</pubDate></item><item><title><![CDATA[基于vuepress2搭建专属自己的博客,并集成各种常用功能]]></title><description><![CDATA[每个技术人都应该有一个个人博客来展现自己。本文通过Vuepress2升级静态博客系统,从零开始制作一个够用、专属自己的稳定博客。博客支持了评论、首页、列表页、分页、标签、草稿箱等等各种自定义功能来为我们的博客增加亮点和交互]]></description><link>https://slbyml.github.io/saves/blog.html</link><guid isPermaLink="true">https://slbyml.github.io/saves/blog.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Mon, 19 Sep 2022 01:41:06 GMT</pubDate></item><item><title><![CDATA[听说你至今不晓得缓存淘汰算法?实现LRU、LFU和FIFO?]]></title><description><![CDATA[缓存淘汰算法,在进程中也被称作页面置换算法,即程序在运行时,若新访问的不在内存中而需将其存入内存,若此时内存已无多余空间,此时就需要从内存中清除一些数据来存储最新的访问数据,而这个算法就是针对需要淘汰的数据给出最优、最高效和命中率最高的方案.]]></description><link>https://slbyml.github.io/algorithm/cache.html</link><guid isPermaLink="true">https://slbyml.github.io/algorithm/cache.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Tue, 13 Sep 2022 11:48:42 GMT</pubDate></item><item><title><![CDATA[最长递增子序列及vue3.0中diff算法]]></title><description><![CDATA[VUE3.0对diff过程进行了大升级,去掉了key查找,而是变成了计算最少移动dom的方案,然后在进行dom更新,它的计算方式就是以最长递增子序列算法为基础进行改造的]]></description><link>https://slbyml.github.io/algorithm/diff.html</link><guid isPermaLink="true">https://slbyml.github.io/algorithm/diff.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Mon, 22 Aug 2022 00:00:00 GMT</pubDate></item><item><title><![CDATA[二进制之入门到应用实践]]></title><description><![CDATA[二进制数据是用0和1两个数码来表示的数。它的基数为2,进位规则是“逢二进一”,借位规则是“借一当二”,二进制运算在工作中和vue3中都会有大量应用和实践!]]></description><link>https://slbyml.github.io/javascript/bit.html</link><guid isPermaLink="true">https://slbyml.github.io/javascript/bit.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Sun, 21 Aug 2022 00:00:00 GMT</pubDate></item><item><title><![CDATA[常见算法学习]]></title><description><![CDATA[本文包括自己遇到的、文章中看到的、面试中的一些算法问题,包括但不限于各种排序、leetCode、乱序等,是一篇总结、学习类文章]]></description><link>https://slbyml.github.io/algorithm/study.html</link><guid isPermaLink="true">https://slbyml.github.io/algorithm/study.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Thu, 18 Aug 2022 00:00:00 GMT</pubDate></item><item><title><![CDATA[CSS 形状的实现]]></title><description><![CDATA[本文意在总结项目中用到和可能会用到的形状图形,并通过css来实现,减少页面上图片的请求数量,并可以不失真的更改形状大小和颜色]]></description><link>https://slbyml.github.io/css/shape.html</link><guid isPermaLink="true">https://slbyml.github.io/css/shape.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Mon, 08 Aug 2022 00:00:00 GMT</pubDate></item><item><title><![CDATA[ajax取消接口请求]]></title><description><![CDATA[总结ajax取消接口请求的方法,以及在axios中对同一时间多个相同接口请求的拦截并取消及切换标签后取消上个页面请求的(防止页面数据和当前页面条件不相符)方法]]></description><link>https://slbyml.github.io/javascript/axios.html</link><guid isPermaLink="true">https://slbyml.github.io/javascript/axios.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Tue, 12 Jul 2022 00:00:00 GMT</pubDate></item><item><title><![CDATA[前端常见的安全问题]]></title><description><![CDATA[web安全是前端领域绕不开的一个话题,许多程序猿只专注于业务实现,觉得攻击离自己很远,而安全相关的策略也只停留在面试层面。对于一个没有考虑到安全问题的产品,很容易受到黑客的重点关注,从而造成严重损失!]]></description><link>https://slbyml.github.io/http/safe.html</link><guid isPermaLink="true">https://slbyml.github.io/http/safe.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Thu, 28 Apr 2022 00:00:00 GMT</pubDate></item><item><title><![CDATA[关于http服务端的学习&总结]]></title><description><![CDATA[本文包括自己遇到的、文章中看到的、面试中的一些http、服务器问题,包括但不限于浏览器缓存,http状态吗,https等,是一篇总结、学习类文章]]></description><link>https://slbyml.github.io/QA/http.html</link><guid isPermaLink="true">https://slbyml.github.io/QA/http.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Mon, 21 Mar 2022 00:00:00 GMT</pubDate></item><item><title><![CDATA[前端面试题总结]]></title><description><![CDATA[本文总结自己遇到的、文章中看到的、面试中的一些javascript问题,包括但不限于es6、函数的区别、AMD&CMD、async&defer区别、输入URL后干了什么等,本文主要是讲解理论只是,代码量少]]></description><link>https://slbyml.github.io/QA/js-theory.html</link><guid isPermaLink="true">https://slbyml.github.io/QA/js-theory.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Sun, 12 Dec 2021 00:00:00 GMT</pubDate></item><item><title><![CDATA[javascript原生代码实现及代码总结]]></title><description><![CDATA[本文总结自己遇到的、文章中看到的、面试中的一些javascript问题,及实现方式其中也会包括一些源码实现,及polyfill,包括但不限于JsonP、柯里化函数 currying、计算交集、乱序、动态创建脚本、new的模拟、lazyMan、EventEmitter等,本文主要讲代码,所以代码量比较多]]></description><link>https://slbyml.github.io/javascript/js.html</link><guid isPermaLink="true">https://slbyml.github.io/javascript/js.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Fri, 10 Sep 2021 00:00:00 GMT</pubDate></item><item><title><![CDATA[LeetCode算法学习总结-简单]]></title><description><![CDATA[数据结构与算法是每个前端必须经历的阶段,学好算法并非一日之功,需要不断的学习,积累和刷题;学好算法对于面试和平时工作中都有很大的助力;本文是在学习leetcode中对于算法的总结与积累]]></description><link>https://slbyml.github.io/algorithm/easy.html</link><guid isPermaLink="true">https://slbyml.github.io/algorithm/easy.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Mon, 23 Aug 2021 00:00:00 GMT</pubDate></item><item><title><![CDATA[LeetCode算法学习总结-困难]]></title><description><![CDATA[数据结构与算法是每个前端必须经历的阶段,学好算法并非一日之功,需要不断的学习,积累和刷题;学好算法对于面试和平时工作中都有很大的助力;本文是在学习leetcode中对于算法的总结与积累]]></description><link>https://slbyml.github.io/algorithm/hard.html</link><guid isPermaLink="true">https://slbyml.github.io/algorithm/hard.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Mon, 23 Aug 2021 00:00:00 GMT</pubDate></item><item><title><![CDATA[LeetCode算法学习总结- 中等]]></title><description><![CDATA[数据结构与算法是每个前端必须经历的阶段,学好算法并非一日之功,需要不断的学习,积累和刷题;学好算法对于面试和平时工作中都有很大的助力;本文是在学习leetcode中对于算法的总结与积累]]></description><link>https://slbyml.github.io/algorithm/medium.html</link><guid isPermaLink="true">https://slbyml.github.io/algorithm/medium.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Mon, 23 Aug 2021 00:00:00 GMT</pubDate></item><item><title><![CDATA[排序算法总结]]></title><description><![CDATA[数据结构与算法对于一个程序员的发展有着至关重要的作用,学好算法对于我们的工作帮助会很大,这里有大量经过javascript实现的算法代码,本文意在总结一些常见的算法,帮助同学们查看,及在项目中应用,文章来源于总结、面试、掘金、leetCode等网站;]]></description><link>https://slbyml.github.io/algorithm/sort.html</link><guid isPermaLink="true">https://slbyml.github.io/algorithm/sort.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Fri, 20 Aug 2021 00:00:00 GMT</pubDate></item><item><title><![CDATA[扫码登录的实现原理]]></title><description><![CDATA[OAuth 2.0 是一种授权机制,主要用来颁发令牌(token).而网站的扫码登录基本都是给予OAuth原理实现的,如微信扫码登录等]]></description><link>https://slbyml.github.io/saves/oauth.html</link><guid isPermaLink="true">https://slbyml.github.io/saves/oauth.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Sat, 17 Apr 2021 00:00:00 GMT</pubDate></item><item><title><![CDATA[Javascript之常见类型判断汇总]]></title><description><![CDATA[类型判断在前端开发中应用非常之广泛,有常见的六个基本类型的判断,有对数组、对象、日期等的判断,更有对DOM元素、arguments对象的判断,本文将借鉴jQuery和网上的例子实现对各种类型的判断]]></description><link>https://slbyml.github.io/javascript/type.html</link><guid isPermaLink="true">https://slbyml.github.io/javascript/type.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Thu, 01 Apr 2021 00:00:00 GMT</pubDate></item><item><title><![CDATA[JavaScript各种继承方式和优缺点]]></title><description><![CDATA[javascript继承无论是在工作中还是在面试中,都会经常遇到,目前常见的继承有六七种,不同的继承方式也有各自不同的优缺点;红宝书中对继承有详细的介绍和讲解,本文意在总结、记录;]]></description><link>https://slbyml.github.io/javascript/extend.html</link><guid isPermaLink="true">https://slbyml.github.io/javascript/extend.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Fri, 12 Mar 2021 00:00:00 GMT</pubDate></item><item><title><![CDATA[webpack开发、使用及优化总结]]></title><description><![CDATA[本文总结webpack的一些使用,原理及优化;webpack已成为前端打包的主流工具,它的作用是对项目中的静态资源进行统一管理,为项目的发布提供最优的打包和部署方案,可以把应用中的js、css、图片等资源集中打成一个或多个包文件。]]></description><link>https://slbyml.github.io/QA/webpack.html</link><guid isPermaLink="true">https://slbyml.github.io/QA/webpack.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Tue, 09 Mar 2021 00:00:00 GMT</pubDate></item><item><title><![CDATA[从JavaScript中的拷贝开始思考]]></title><description><![CDATA[对象拷贝在我们平时撸代码的时候是一个很常见的需求,但是就这样一个简简单单的拷贝,背后就涉及到很多的知识点,延伸出很多的东西。所以,身为老油条,有必要将自己能够想到的知识点抖搂出来。]]></description><link>https://slbyml.github.io/javascript/clone.html</link><guid isPermaLink="true">https://slbyml.github.io/javascript/clone.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Mon, 22 Feb 2021 00:00:00 GMT</pubDate></item><item><title><![CDATA[vue原理、使用及面试方面的总结]]></title><description><![CDATA[本文包括但不限于vue响应式原理、vue生命周期、vue-router、vuex、dom-diff实现等,vue是一套用于构建用户界面的渐进式JavaScript框架。与其它大型框架不同的是,Vue 被设计为可以自底向上逐层应用。Vue 的核心库只关注视图层,方便与第三方库或既有项目整合]]></description><link>https://slbyml.github.io/QA/vue.html</link><guid isPermaLink="true">https://slbyml.github.io/QA/vue.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Fri, 22 Jan 2021 00:00:00 GMT</pubDate></item><item><title><![CDATA[前端发展及选择]]></title><description><![CDATA[本文总结自己遇到的、文章中看到的、面试中的一些问题,是对前端现状,框架选型、框架对比、前世今生、个人发展、职业规划等的总结,使一些开放性问题的总结]]></description><link>https://slbyml.github.io/QA/free.html</link><guid isPermaLink="true">https://slbyml.github.io/QA/free.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Sat, 09 Jan 2021 00:00:00 GMT</pubDate></item><item><title><![CDATA[css面试总结]]></title><description><![CDATA[本文包括自己遇到的、文章中看到的、面试中的一些css问题,包括但不限于BFC、居中等,是一篇总结、学习类文章]]></description><link>https://slbyml.github.io/QA/css.html</link><guid isPermaLink="true">https://slbyml.github.io/QA/css.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Tue, 22 Sep 2020 00:00:00 GMT</pubDate></item><item><title><![CDATA[JavaScript 数组展开(扁平化)和underscore的 flatten]]></title><description><![CDATA[数组展开就是将嵌套数组扁平化(专为为一维的),这在面试中经常遇到,平时工作中也有可能会遇到,本文将几种常见的方式展现出来]]></description><link>https://slbyml.github.io/javascript/flatten.html</link><guid isPermaLink="true">https://slbyml.github.io/javascript/flatten.html</guid><dc:creator><![CDATA[slbyml]]></dc:creator><pubDate>Mon, 21 Sep 2020 00:00:00 GMT</pubDate></item></channel></rss>