技术博客

探索前端开发、算法、系统架构等技术领域的深度思考与实践经验

176
篇文章
34
个分类
124
个标签

快速导航

按分类浏览文章

精选文章

推荐阅读的优质内容

最新文章

最近发布的文章

js 获取滚动元素

js 获取滚动父元素 🔗 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 const isScrollable = function (ele) { const hasScrollableContent = ele.scrollHeight > …

#JS

canvas requestAnimationFrame画一个clock

canvas requestAnimationFrame 画一个 clock 🔗 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 …

#JS #canvas

github coding同步action

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 name: Sync Repo to CODING on: push: schedule: # 每天北京时间0点同步 - cron: "0 16 * * *" jobs: …

#github action

Benchmark.js 使用

Benchmark.js 🔗安装 🔗 npm install benchmark 使用 🔗 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 var Benchmark = …

#Benchmark

国内开源镜像网站

国内开源镜像网站 🔗阿里云:http://mirrors.aliyun.com/ 网易开源:http://mirrors.163.com/ 搜狐开

#开源镜像

Async.js

each 🔗数组循环调用iterator方法进行处理 _each方法对数组进行遍历, 内部使用iterator进行调用 only_once方法保证函数只会

前端缓存笔记

缓存分类 🔗 image.png HTTP缓存 🔗Expires 🔗缓存的绝对过期时间,此时间之后缓存都会失效 Expires过期时间会受到客户端时间影响变得不精准 Cache-Control 🔗

#前端缓存

linux 问题整理

rpmdb open failed 🔗 1 2 3 4 5 6 7 8 [root@VM-0-6-centos ~]# yum -y remove git error: rpmdb: BDB0113 Thread/process 423/140056922314816 failed: BDB1507 …

排序算法

排序算法样板代码 🔗冒泡排序 🔗typescript 🔗 1 2 3 4 5 6 7 8 9 10 11 function bubble_sort(arr: number[] = []): void { for (let i = 0; i < arr.length; i++) { for …

#排序

c++笔记

using和namespace都是C++中的关键字。std是标准库所驻之命名空间(namespace)的名称。 指针 🔗*: 定义指针变量 &

热门标签

探索热门技术话题

订阅更新

获取最新的技术文章和深度思考,直接发送到您的邮箱