
随便记记
renefox
StackOverFlow, you're my only hope!
展开
-
Everything works exactly like I would expect it to.
Everything works exactly like I would expect it to.原创 2022-01-21 14:32:08 · 280 阅读 · 0 评论 -
Learnings every year
my learnings原创 2021-12-28 10:50:32 · 80 阅读 · 0 评论 -
偶尔的有感而发
语言是用来沟通的,英语作为一门语言,是用来沟通,用来消除信息差,而不是用来做题的。语法就是为了方便理解内容而生,逐步约定俗成的,而不是为了难倒学生。原创 2021-12-27 11:31:36 · 154 阅读 · 0 评论 -
Life is too important to be taken seriously
完美主义 - 不足无伤大雅,设置规定时间匆匆忙忙 - 关注慢且大的长期任务取悦他人 - 捍卫自身权利,不可能所有人都满意原创 2021-11-19 15:22:30 · 381 阅读 · 0 评论 -
--save-dev
build期间 加-dev 如npm install gulp@4 --save-devruntime期间 不用加-dev原创 2021-11-15 17:42:27 · 781 阅读 · 0 评论 -
js中两个对象的比较
https://stackoverflow.com/questions/201183/how-to-determine-equality-for-two-javascript-objectsThe default equality operator in JavaScript for Objects yields true when they refer to the same location in memory.在JavaScript for Objects中,当它们引用内存中的相同位置时,默认的相原创 2021-11-09 18:05:14 · 379 阅读 · 0 评论 -
splice拼接
var arr = [1,2,3,4,5,6,7];arr.splice(5)// 返回被删除的[6,7],原来的数组变成[1,2,3,4,5]原创 2021-11-05 16:01:57 · 142 阅读 · 0 评论 -
从1加到100
var total = 0;for (let index = 1; index <= 100; index++) { total += index;}console.log(total);原创 2021-11-05 15:03:44 · 180 阅读 · 0 评论 -
the difference between attribute and property
https://stackoverflow.com/questions/258469/what-is-the-difference-between-attribute-and-propertyIn general terms (and in normal English usage) the terms mean the same thing.In the specific context of HTML / Javascript the terms get confused because the H原创 2021-11-01 17:51:23 · 133 阅读 · 0 评论 -
Mode values returned by PowerShell
https://stackoverflow.com/questions/4939802/what-are-the-possible-mode-values-returned-by-powershells-get-childitem-cmdled - Directorya - Archiver - Read-onlyh - Hiddens - Systeml - Reparse point, symlink, etc.原创 2021-11-01 13:30:14 · 108 阅读 · 0 评论 -
Unix and Linux
Unix于1969年由贝尔实验室开发出来,使用至今已变更了很多个版本。目前主流的Unix系统有三种,分别是AIX、HP-UX、Solaris,这些Unix系统互不兼容。Linux于1991年由芬兰大学生Linus开发出来,是一个类Unix系统,但是其代码不源自任何Unix版本,完全不是Unix的一个分支,而是一个开源版的模仿。现在Linux主要使用在PC机和嵌入式,或者一些小型企业的服务器;而Unix垄断着大型企业的关键性应用领域。作者:Choid链接:https://www.zhihu.com/q原创 2021-11-01 13:23:44 · 179 阅读 · 0 评论 -
LinkedIn Learning Notes for Habits that lead to success
https://www.linkedin.com/learning/success-habits-2阻碍成功的3个坏习惯完美主义 - 设置规定时间,不足无伤大雅匆匆忙忙 - 关注慢,大的长期任务取悦他人 - 捍卫自身权利,不可能所有人满意原创 2021-11-01 13:03:13 · 102 阅读 · 0 评论