卡尔·萨根和他的宇宙

进化的秘诀就是死亡和时间。 我们好似只能展翅一日的蝴蝶,以为那一日就是永恒。

人类的一生以十年计数,而太阳的一生则以十亿年计数。与恒星相比,我们的一生好似蜉蝣,朝生暮死,一天即是一生。从蜉蝣的角度看,人类是迟缓的、无聊的,几乎完全不动的,好像全然静止似得。从恒星的角度看,人类只是小小的火花,在一个偏远寒冷的不规则固态硅铁球体表面上,微弱的闪耀。

所罗门王的指环

如果我能发现一条路,在几代人之后,仍有我的同类在行走,我就太幸运了。如果我穷尽一生的努力,能够发现一股小小的“上升气流”,可以协助其他科学家飞得更高,看得更远,我也会对命运表示无限的感激。

盲眼钟表匠

基因不是蓝图,而是实现一个过程的指令。基因和生物体更像是食谱和蛋糕的关系。蓝图可以根据实物还原,就像可以根据房子重构绘制蓝图。就算房屋改动或破损也可以按改变记录忠实记录反录。

Creating a New Theme

Introduction This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I’ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won’t cover using CSS to style your theme. We’ll start with creating a new site with a very basic template.
(Hu)go Template Primer

(Hu)go Template Primer

Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates.

新建项目 新建maven项目 select from archetype mvn archetype:generate -DgroupId=com.cj -DartifactId=webAppDemo -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false 意思就是我们通过archetype插件创建一个webapp项目,项目的groupId是com.cj,项目id是webAppDemo.使用的项目archetype是maven-archetype-webapp。也就是一个java web项目。interactiveMode= false,代表在执行过程中,用户不能进行输入操作。默认是true,需要用户进行操作。 Ant 转 Maven maven 安装目录 Bin:该目录包含Mvn运行的脚本 Boot:Maven自身的类加载器框架 Conf:包含非常重要的文件setting.xml Lib:该目录包含了所有Maven运行时需要的Jave类库 Mvn help:system(该命令会打印出所有的Java系统属性和环境变量) ~/.M2 maven本地仓库

参考: https://blog.csdn.net/bjywxc/article/details/104031875