Talk to myself.

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

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

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', '......

iframe 内外页面通信

window.parent 获取上一级的window对象。 如果当前窗口是一个 <iframe>, <object>, 或者 <frame>,则它的父窗口是嵌入它的那个窗口。如果还是iframe则是该iframe的window对象, 如果没有parent,则返回自身的引用。 window.top 获取最顶级容器的window对象,即,就是你打开页面的wi......

How to modify UserAgent - JS, IOS and Android

UserAgent User-agent Header UserAgent Headers Chrome bug https://developer.mozilla.org/en-US/docs/Glossary/Forbidden_header_name "Note: The User-Agent header is no longer forbidden, as per sp......

GraphQL All you should know

Should you consider GraphQL?

GraphQL: From Excitement to Deception GraphQL是一种新趋势,但并未说服所有人。虽然移动和前端团队喜欢它的惊人工具和强类型,但后端工程师提出了一些问题,例如缺乏适当的分页、缓存、MIME类型以及管理GraphQL类型和本机类型的复杂性。随着项目的增长,需要使用昂贵的工具(如Stitching或Federation)来修复大型模式。生态系统尚不够成熟......