06 2021 档案

摘要:https://blog.csdn.net/pluto4596/article/details/100554295 阅读全文
posted @ 2021-06-30 18:41 hh9515 阅读(58) 评论(0) 推荐(0)
摘要:轻量tag(lightweight tags) git tag <tagname> 注解tag(Annotated Tags) git tag -a v1.4 git tag -a v1.4 -m "this is my version 1.4" 展示tags(Listing Tags) git t 阅读全文
posted @ 2021-06-30 03:20 hh9515 阅读(64) 评论(0) 推荐(0)
摘要:https://juejin.cn/post/6955266854839386119 阅读全文
posted @ 2021-06-28 23:11 hh9515 阅读(89) 评论(0) 推荐(0)
摘要:niz micro84改键位 1. 将capslock换成右control(这一步是为了不亮capslock的键盘灯,因为这个灯会在笔记本的部分亮起,比较烦人) 2.将右control换成right_fn(micro84编程软件中的概念) 3.将左下角的ctrl换成home 4.使用macOS中的软 阅读全文
posted @ 2021-06-28 00:23 hh9515 阅读(1488) 评论(3) 推荐(0)
摘要:https://github.com/BenziAhamed/Menu-Bar-Search#:~:text=Type%20m%20in%20Alfred%20to,or%20do%20a%20fuzzy%20search. 阅读全文
posted @ 2021-06-16 16:18 hh9515 阅读(74) 评论(0) 推荐(0)
摘要:1. 在karabiner中设置 2. 在bettertouch中应用为openfinder 3. 在keyboardmaestro中设置为active的时候到frontmostwindow 阅读全文
posted @ 2021-06-15 17:32 hh9515 阅读(58) 评论(0) 推荐(0)
摘要:这篇很好 个人总结: 1. 客户端向服务端发其请求,服务端发送证书。 2.客户端本地有内置的证书签发机构对应的公钥,客户端使用公钥解密签名,然后自己计算hash看是否一致。 如果不一致,客户端会进行信任链的验证操作。 数字证书和 CA 机构 在说校验数字证书是否可信的过程前,我们先来看看数字证书是什 阅读全文
posted @ 2021-06-15 13:09 hh9515 阅读(2678) 评论(0) 推荐(0)
摘要:https://ryanhanson.dev/ 阅读全文
posted @ 2021-06-14 19:28 hh9515 阅读(25) 评论(0) 推荐(0)
摘要:cursorsense CursorSense is an application that adjusts cursor acceleration and sensitivity. It can move the cursor to a specified destination, such as 阅读全文
posted @ 2021-06-14 17:55 hh9515 阅读(124) 评论(0) 推荐(0)
摘要:1. 在设置里设置一下1个手指按时候的力度 2. 设置trackpad中的选项 3. 关闭系统自带的force touch 阅读全文
posted @ 2021-06-13 20:22 hh9515 阅读(127) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-06-13 16:55 hh9515 阅读(33) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-06-12 16:21 hh9515 阅读(65) 评论(0) 推荐(0)
摘要:https://github.com/cocoahuke/shrink_trackpad 阅读全文
posted @ 2021-06-11 01:02 hh9515 阅读(49) 评论(0) 推荐(0)
摘要:总结: 目标:尽快生成rendertree(rendertree包含了各节点以及他们的computed样式,之后进行layout和paint) 需要:DOMTree和CSSOM Tree ,一起生成renderTree 1. js可能会查询cssom,所以必须先加载完cssom,才能执行js (可以 阅读全文
posted @ 2021-06-06 20:30 hh9515 阅读(128) 评论(0) 推荐(0)
摘要:1.如果没有设置z-index 默认值是auto,浏览器会根据顺序来决定zindex,同层级,顺序下面的会在上面 2.如果你的z-index不生效,你需要把元素的position设置为static之外的值,(在flexbox或grid中不需要考虑这个情况) 目的是生成一个stacking conte 阅读全文
posted @ 2021-06-05 22:36 hh9515 阅读(251) 评论(0) 推荐(0)
摘要:http://www.bradyharan.com/ computerphile: https://www.youtube.com/watch?v=8ZtInClXe1Q 阅读全文
posted @ 2021-06-05 02:28 hh9515 阅读(35) 评论(0) 推荐(0)
摘要:<link rel="preload"> 浏览器会高优先下载资源并缓存,进行执行,如果link标签中的as属性是stylesheet(as='stylesheet'),那么html在parse的时候会了解到这是一个CSS资源。 ,由于加了predload指令,这个css的加载不会引起 render 阅读全文
posted @ 2021-06-05 00:50 hh9515 阅读(666) 评论(0) 推荐(1)
摘要:1. host host x.com host -t ns x.com host -t mx x.com 2. nslookup nslookup. x.com nslookup set type=ns x.com set type=mx x.com 3. dig dig x.com global 阅读全文
posted @ 2021-06-02 02:48 hh9515 阅读(45) 评论(0) 推荐(0)