Skip to content

Instantly share code, notes, and snippets.

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.

#!/bin/bash
#SBATCH --job-name=Myjob ### 作业名称
#SBATCH --nodes=1 ### 使用节点数量 只有一个节点(seine)
#SBATCH --ntasks=8 ### 使用的CPU核数 最大值32
#SBATCH --partition=cadd ### 使用的队列 只有一个队列(cadd)
#SBATCH --output=%j.out ### 输出文件
#SBATCH --error=%j.err ### 错误输出文件
## 使用 docker 运行命令
docker run hello-world
#!/bin/bash
#SBATCH --job-name=Myjob ### 作业名称
#SBATCH --nodes=1 ### 使用节点数量 只有一个节点(seine)
#SBATCH --ntasks=8 ### 使用的CPU核数 最大值32
#SBATCH --partition=cadd ### 使用的队列 只有一个队列(cadd)
#SBATCH --output=%j.out ### 输出文件
#SBATCH --error=%j.err ### 错误输出文件
## 使用 docker 运行命令
docker run hello-world
class Grid {
Width: number = 0;
Height: number = 0;
}
class Margin {
Left: number = 0;
Top: number = 0;
}
// We use & to join together the types we want to use to create our intersection.