积极心理学资料索引与声明

《积极心理学》 系列 笔记 ,是笔者个人的学习记录摘抄。
其中主要的参考资料是(文章中将不再列出,除非特殊来源):
哈佛大学公开课:幸福课

  • 多数结论、文字皆为摘抄自视频中,少数为笔者自己的总结。
  • 本系列的文章内容架构为笔者自行梳理。
  • 多数图片为笔者自行制作,少数来自网上或公开的资料
Read More

Ubuntu 安装软件合集

记录 Ubuntu 平台下安装的部分软件。

awesome-linux-software

Node.js & 版本管理

  • 推荐的安装方式是通过 nvm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash

# verify installtion
command -v nvm
# print
nvm
# install nodejs
nvm install node

# special in o-my-zsh
# install as plugin
git clone https://github.com/lukechilds/zsh-nvm~/.oh-my-zsh/custom/plugins/zsh-nvm

# edit ~/.zshrc
plugins+=(zsh-nvm)

Read More