Tommywhy's blog

Full stack developer。


  • Home

  • About

  • Tags

  • Categories

  • Archives

  • Search

Data Structure

Posted on 2019-09-21
数据结构是程序员基本功,只可惜我是半路出家,学的又是唱戏的花架子。难得一个人清净,好好不补课。 Background计算机 两个功能, 计算 与 存储。计算内容属于算法篇,而存储就牵扯到的数据结构。 数据存储在哪里? CPU 寄存器 Register -> 高速缓冲存储器 Cache - ...
Read more »

Algorithms

Posted on 2019-09-21
说到算法 就会引出两个概念: 时间复杂度,空间复杂度。由于时代在进步,所以空间复杂度已经被无限忽略。更多的在乎时间复杂度,毕竟生命有限嘛。
Read more »

JS数组

Posted on 2019-08-23
最近在学习《数据结构与算法》,数据结构中数组的重要性不言而喻。 由于 js 随意的动态性,总结一下数组的用法。 Arrayarray 定义 通过 new Array 创建数组时, 如果是一个参数且必须是个正整数,就是在定义长度。若是多个参数,则是赋值。1var arr = new Array(5); ...
Read more »

JS中的this

Posted on 2019-08-05 | In front end
this 这个东西一直很酷扰我。昨天更是让我 debug 了一夜。。。 于是决心记录一下 this 原理正规调用函数方法是用 call(), 其中第一个参数就是 this, 即调用函数的对象。1fn().call(undefined,args[,,,]) 如果 this 是 undefined, ...
Read more »

HTML & CSS

Posted on 2019-06-23 | In front end
HTML5 与 CSS3 自认为基础已经娴熟,但还是有很多 tricky 点不了解。特开贴记录。 HTML5dl 标签 表格标签,从未使用过。类似于 table,但还有所不同。 仅使用 键值对 的表格。 123456789<dl><dt>Age</dt>< ...
Read more »

JS遗珠

Posted on 2019-06-08 | In front end
对于Javascript 的学习从未停止过,奈何其水深无法想象。JS基础回顾,作为前端部分开篇内容再好不过了。 其中包括了 聊雪峰、阮一峰、方应航等大神博文,还有j《avascript 高级程序设计》 一书的内容。 夯实基础,开卷有益。 basicscript 标签又六个属性。不要用延迟脚本。 阻 ...
Read more »

sql

Posted on 2019-06-08 | In DB
作为一名程序员,最终要的是数据。 DB 分类的开篇总结一些常用的命令,为以后漫长的数据之旅打下基础。 mysql cmd服务器上常用mysql命令 123mysql -u root -pmysql -h 10.0.1.99 -u root -p // -h 指定IP或域名 sql statement ...
Read more »

Git

Posted on 2019-05-27 | In 效率
开篇想了很久才决定要写什么,作为一名 Web 开发人员,第一必备的技能应该就是 git 了。没什么好说的,记录git一些常用命令,以备查阅。 git 命令 cmd最常用的命令 12345git addgit commitgit status -sb // 参数 sb 很有用~!git diffgit ...
Read more »

Hello World

Posted on 2019-05-26
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 ...
Read more »

Tommy Jiang

9 posts
3 categories
5 tags
GitHub E-Mail
© 2019 — 2021 Tommy Jiang