Talk to myself.

React Folder Structure

Reference Links React Folder Structure in 5 Steps [2022] ...

解决 No matching host key type found. Their offer ssh-rsa

No matching host key type found. Their offer: ssh-rsa问题处理 - 知乎 https://zhuanlan.zhihu.com/p/616716090 Mac 上iterm2 脚本连接堡垒机报错 123456(base)x xxx@xxxMacBook-ProD > /usr/local/bin > expect /usr/l......

Chrome116 chromedriver 下载及配置

踩坑

chromedriver 116 版本下载 老版本下载(<=114): https://chromedriver.chromium.org/downloads 新版本下载: https://googlechromelabs.github.io/chrome-for-testing/ 具体步骤可参考文章: Chrome116驱动下载路径 解决版本不匹配问题 新版本下载后是Goo......

IOS日历同步到提醒事项-自动脚本

根据知乎上的文章修改为自己的需求, 2023年最新的IOS16.6是正常执行的。 知乎上的文章 【ios】日历同步—》提醒事项 单向同步+打卡功能 【作者:汀力】 点击展开代码1 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455......

Accessibility-WCAG 2.1 Reflow (400% zoom)

基于 WCAG 2.1 Reflow (400% zoom) 标准不太好理解的情况,找到了一些 W3C 委员会对它的讨论和解释。 Change 1.4.10 Reflow to level A SC 1.4.10: What is the minimum height for vertically scrolling content? WCAG 2.1 Understanding 1.4.......

pip3 install 成功- import requests仍找不到module:ModuleNotFoundError

ModuleNotFoundError 报错 1234567891011121314151617# 安装requests成功 -------------pip3 install requestsRequirement already satisfied: requests in /Users/yuanli/anaconda3/lib/python3.10/site-packages (2.2......

安装/使用/卸载Anaconda

安装Anaconda Anaconda官网下载 如果下载网速过慢,可以使用清华大学镜像: 下载列表:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 使用说明:https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/ 卸载Anaconda Anaconda官方卸载方法-英文版 An......

How to debug openssl command line

Openssl provides command line tool to let user operate the security functions conveniently in terminal. This official site describes openssl command in details. As we know, openssl is an open sourc......

__webpack_hmr 404 (Not Found)

调试 webpack-dev-server 和 webpack-dev-middleware 的时候,突然发现了控制台出现了一个错误提示: 1GET http://localhost:8080/__webpack_hmr 404 (Not Found) webpack.config.js 配置文件: 123456789101112 module.exports = { // ........

`delete`和Array.splice的区别[JavaScript]

delete delete will delete the object property, but will not reindex the array or update its length. This makes it appears as if it is undefined: 12345678910// Arrayconst myArray = ['a', 'b', 'c', '......