- 博客(9)
- 收藏
- 关注
原创 SEO: 面向搜索引擎的网站建设
面向搜索引擎的网站建设,主要分为三个部分:如何更好的让搜索引擎收录网站中的内容、如何在搜索引擎中获得良好的排名、如何让用户从众多的搜索结果中点击你的网站。简单来说,就是收录、排序、展现。1. 良好收录机器可读使用文字而不是图片、Javascript等来显示重要的内容或链接Ajax等搜索引擎不能识别的技术,只用在需要用户交互的地方,而不把希望搜索引擎“看”到的导航及正文内容放到Ajax中...
2019-10-14 15:26:29 598
原创 JavaScript 循环
两种循环执行代码的方式:setInverval,每秒执行一次callback,1秒实际上是周期,而非间隔setInterval(function run() { //some code}, 1000)递归setTimeout,执行完代码后,等待1秒,再次执行,1秒是真正的间隔setTimeout(function run() { // some code setTi...
2018-12-13 01:35:51 146
原创 软件工程笔记 清华大学刘强etc
1. 初识软件工程面向过程、对象、构件、服务,粒度逐渐增大瀑布式开发,敏捷开发开发过程:需求 - 分析、设计、实现、测试 - 产品2. 编写高质量代码google 推出的针对多种语言的编码规范,建议阅读python IDE pycharm代码静态分析工具,检查代码是否符合规范- python - pylint- HTML - HTMLHint- CSS - CSSLint...
2018-12-07 17:42:40 2099
原创 FCC React takeaway
/* React code samples from FreeCodeCamp */// JSX element needs to be wrapped in one element. Parentheses are optional.const JSX = ( <div> <p className="myClass"&a
2018-10-28 02:50:28 168
原创 FCC jQuery takeaway
Before started<script> $(document).ready(function() { // code here will run after browser load the document. });</script>PurposeCodeSelect element by tag name$("el
2018-10-24 06:02:32 157
原创 操作系统笔记 清华大学陈渝
课程概要基本概念及原理操作系统介绍中断及系统调用内存管理进程及线程调度同步文件系统I/O子系统基本概念操作系统是控制软件,管理应用程序,为应用程序提供服务,杀死应用程序,分配资源,管理外设抽象:CPU - 进程,内存 - 地址空间,磁盘 - 文件OS分为Shell(界面)和Kernel(内核)并发(一段时间内同时运行) vs 并行(同一时刻同时运行)实例:U...
2018-09-29 23:22:06 5354 3
原创 JS String API
PropertyPropertySyntaxstring.length'abc'.length // 3MethodMethodSyntaxReturnString.fromCharCode()String.fromCharCode(65);"A"-String.fromCharCode(65, 66, 67);"ABC"S...
2018-09-23 20:05:22 578
原创 Permutation in lexicographic order
To generate all permutation in lexicographic order, first sort the sequence in (weakly) increasing order (repeated elements are accepted).The following algorithm generates the next permutation lexic...
2018-09-12 01:54:00 326
原创 Find consecutive letters in a string using regex [JS]
find consecutive letters in a string:console.log('aaaa bbbbb cccccc dd'.match(/([a-z])\1{3,}/g));// ["aaaa", "bbbbb", "cccccc"]// using \1 to refer to matched content in the
2018-09-06 05:13:40 209
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人