virtualenv生成虚拟环境、pip freeze导出依赖、用国内源加速安装导出的依赖requirements.txt
React的 Component存在的问题、及解决(PureComponent)
1. Component存在的问题?
- 父组件重新render(), 当前组件也会重新执行render(), 即使没有任何变化
- 当前组件setState(), 重新执行render(), 即使state没有任何变化
2. 解决Component存在的问题
- 原因: 组件的componentShouldUpdate()默认返回true, 即使数据没有变化render()都会重新执行
- 办法1: 重写shouldComponentUpdate(), 判断如果数据有变化返回true, 否则返回false
- 办法2: 使用PureComponent代替Component
- 说明: 一般都使用PureComponent来优化组件性能
hashcat使用说明
1.抓包
首先用CDlinux系统进行抓包,CDlinux抓包我就不详细说明了
- 到这里可以查看如何安装CDlinux http://jingyan.baidu.com/article/7f766daf5173a94101e1d0fa.html
- 到这里可以查看如何使用CDlinux http://jingyan.baidu.com/article/1e5468f9293d07484961b7d4.html
2.简介
- hashcat是用来破解WPA2的包,当然也可以破解很多东西(如系统密码、rar、MD5等等,它比较受欢迎)
- hashcat下载 https://hashcat.net/
- windows 和linux 都可以,破解速度还可以,主要还用到GPU显卡并行模式,破解速度相当快
- Git:https://github.com/hashcat/hashcat
Github+Hexo搭建个人博客
python使用虚拟环境virtualenv
详情请点阅读全文
用hexo快速搭建github博客
发表于
分类于
前端
Hello World
发表于
更新于
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
《React后台管理系统实战:六》角色管理:
详情请点阅读全文
js reduce用法
详情请点阅读全文