Linux Learning Notes

Practice

Environment variable in Linux

Ref:

Read More

Docker and Kubernetes: The Complete Guide - Learning Notes

Section 1: Dive into Docker

Screen Shot 2021-02-27 at 15.50.34

Read More

Python Learning Note

Practice Note

Read input

Read a list of input

Ref: https://stackoverflow.com/questions/15963959/reading-a-line-of-integers-in-python

Read More

Shell Script Learning Notes

Practice

Read file line by line

Here I read requirements.txt file to create an output file of commands and execute it

Read More

Flask Learning Notes

This is my notes while learning Flask.

Ref: https://dormousehole.readthedocs.io/en/latest/index.html

Read More

Vim Learning Notes

Find and Replace

Ref: https://harttle.land/2016/08/08/vim-search-in-file.html

Read More

Django Learning Notes

Notes

Modify Model and Migration

The process of modifying a model:

Read More

Git Learning Notes

[toc]

Learn Git Branching

This is my notes while learning https://learngitbranching.js.org/

Read More

Missing Semester Learning Notes

This is the note while learning the course Missing Semester.

Ref: https://missing.csail.mit.edu/

Read More

Java Learning Notes

[toc]

Java Basic

Data Type

Int and Integer

(1) 由于Integer变量实际上是对一个Integer对象的引用,所以两个通过new生成的Integer变量永远是不相等的。

Read More