08 2018 档案
Hexo 主题 hexo-theme-tranquilpeak 部分功能总结
摘要:最近发现了一个 Hexo 主题,又好看功能又强大,hexo-theme-tranquilpeak,这里总结一下遇到的问题,以及注意事项。安装使用问题要安装说明,使用 Github 仓库中 Release 里边的压缩包来使用,不要直接拉仓库,因为有些文件不存在。使用注意事项想要在文章后边添加画廊功能,...
Intellij IDEA 每日提示集锦-201808
摘要:Intellij IDEA 每天的 tip of the day 的翻译,每日翻译一个,这里是 2018 年 8 月份的tip of the day。2018-08-24Use F2/⇧F2 keys to jump between highlighted syntax errors.Use ⌥⌘↑...
重读设计模式 - 里氏替换原则
摘要:一、总览LSP: Liskov Substitution Principle.Functions that use pointers or references to base classes must be able to use objects of derived classes withou...
重读设计模式 - 单一职责原则
摘要:一、总览SRP: Single responsibility principleThere should never be more than one reason for a class to change.基本思想:高内聚,低耦合。引起一个类变化的原因只有有一个。即每个类只能负责一个单独的职责,...