Life at the bleeding edge

😀Mind map notes 😀File Vault

😀老男孩 - python入门与提高实践

摘要: // 😭😭😭😭😭😭😭😭😭 // 🤬🤬🤬🤬🤬🤬🤬🤬🤬 // 👉 / Zepto v1.2.0 zepto event ajax form ie zeptojs.com/license / (function (global, factory) { if (type 阅读全文
posted @ 2018-11-16 21:06 Clown-- 阅读(496) 评论(0) 推荐(0) 编辑
摘要: What is scope There are 3 steps undergo before executed It may be self evident, JavaScript falls under the general category of “dynamic” or “interpret 阅读全文
posted @ 2018-10-30 18:30 Clown-- 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 源码包安装和apt get/yum的区别 安装前的区别:概念上的区别 rpm和dpkg包是经过编译过的包,并且其安装位置由厂商说了算,厂商觉得安装在哪里合适,就会装在哪里,而源码包则是没有经过编译的文件,大部分由c语言写的,需要gcc编译器进行编译使用,如同java源文件和二进制文件的区别。 源码包 阅读全文
posted @ 2018-09-21 09:39 Clown-- 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 👺 XSS(Cross Site Scripting)跨站脚本攻击 Scripting能干什么(危害) 获取页面数据 获取cookies 劫持前端逻辑 发送请求 偷取网站任意数据 偷取用户资料 偷取用户密码和登入态 欺骗用户 分类 反射型 url参数直接注入的方式攻击 存储型 存储到数据库后读取后 阅读全文
posted @ 2018-09-04 18:40 Clown-- 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 👉 一点网络基础 应用层:http/ftp等协议所在层 传输层:TCP/UDP链接所在层 网络层:主要是IP地址所在层 👉 http协议进化史 http/0.9: 1. 只有一个命令Get 2. 没有Header等描述数据的信息 3. 服务器发送完毕,就关闭TCP链接 ps: 一个TCP链接可以 阅读全文
posted @ 2018-08-19 11:02 Clown-- 阅读(497) 评论(0) 推荐(0) 编辑
摘要: A simple sample with interface multiple extend Reflection 阅读全文
posted @ 2018-08-15 18:08 Clown-- 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 快速交换(Quick swap) 惰性计算(Lazy evaluation) 是指仅仅在真正需要执行的时候才计算表达式的值。 1. 避免不必要的计算,带来性能的提升。 对于条件表达式 ,在x为false的情况下y表达式的值将不再计算。而对于 ,当x的值为true的时候将直接返回,不再计算y的值。因此 阅读全文
posted @ 2018-08-13 16:47 Clown-- 阅读(176) 评论(0) 推荐(0) 编辑
摘要: General file encoding ways We most know, computer stores files with binary coding like . Generally, we do have some ways to encoding a file to solve o 阅读全文
posted @ 2018-08-06 16:34 Clown-- 阅读(337) 评论(0) 推荐(0) 编辑
摘要: Here we see a graphic like below: Now we use "typeof" and "instanceof" these built in methods to inspect them. You can't do any of operation on the to 阅读全文
posted @ 2018-05-22 19:10 Clown-- 阅读(114) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/29727419/is using var self this a good way to sync between a class and events 阅读全文
posted @ 2018-05-17 19:41 Clown-- 阅读(102) 评论(0) 推荐(0) 编辑