Learning programming is different from learning a programming language

We are all programmers, and we are all learners. It’s surprising to see how many people(learners) who are bashing their head against the walls thinking they are learning to program. You might be learning a programming language instead of programming itself Don’t feel surprised to know that computer science does not study computers. Instead, it’s the study of automated problem solving using computers. Problem-solving is computer science, not programming. That’s why many computer science students seem not to understand why they learn algorithm or mathematics. ...

March 20, 2019 · 5 min · 891 words · zooboole
Hello, hugo~

Hello, hugo!

01 Hugo 安装配置 1.1 安装 Hugo(Windows) 安装文档:Install Hugo on Windows . 使用 scoop 安装,搜索 hugo 安装包如下: > scoop search hugo Results from local buckets... Name Version Source Binaries ---- ------- ------ -------- hugo-extended 0.129.0 main hugo 0.129.0 main 推荐安装扩展版的 hugo: > scoop install hugo-extended 1.2 创建项目 文档:Create Site . 首先,使用 hugo 创建项目: # 可以使用 --format yaml/json 设置配置文件格式,默认 toml > hugo new site my-site > cd my-site 然后,下载主题并配置: # 下载主题,可以使用其他方式,只要把主题放到 themes 目录下即可 > git submodule add https://github.com/nnn/theme-xxx.git themes/xxx # 配置主题为下载好的那个 > echo "theme = 'xxx'" >> hugo.toml 最后,启动项目,访问控制台打印的地址即可: ...

September 15, 2017 · 2 min · 235 words · Spring