14

  1. 分享一篇我今天看的好文, 值得前端同学读. https://3perf.com/talks/web-perf-101/

    摘要: This is an introduction to the modern web loading performance. Learn why performance is important, what performance optimizations exist and what tools help to understand if your app is doing well.

  2. java 1.8 的 nio 在windows、linux、macosx、solaris上的实现分别用的是select、epoll、kqueue、poll。

  3. sql 在我看来最大的优点 就是 语法层面上 设计 偏自然语言,就比如 select name from student。

  4. 在你的认知中 数据库索引 是什么? 数据结构。

  5. Kernel 内核 在计算机科学中是一个用来管理软件发出的数据I/O(输入与输出)要求的计算机程序,将这些要求转译为数据处理的指令并交由中央处理器(CPU)及计算机中其他电子组件进行处理,是现代操作系统中最基本的部分。

    而Shell 就是内核的"外壳"

    A shell is a program that prints a prompt, reads a line of input from you, and then interprets it as one or more commands to manipulate files or run other programs. Before the invention of the GUI, the shell was the primary user interface of an OS.

  6. 前端Question: 如何判断一个函数 是箭头函数 还是 function 定义的函数.

    答案是 箭头函数是没有原型链的, 也就是 prototype 属性为空

    还有一种方式,箭头函数无法实例化,可以 在try catch 中 new func() 捕获异常,有异常就是箭头函数

  7. 简历中 技术能力熟练度参考表 了解:见过名字 熟悉:看过文档 掌握:用过 熟练:调试过 精通:准备过面试

Last updated