MIT 6.S081 Lab traps

Compulsory exercises

Preparation

  • reading
  • To start the lab, switch to the trap branch
1
2
3
git fetch
git checkout traps
make clean
阅读更多

CTF

Introduction

CTF(Capture The Flag)夺旗赛,是网络安全爱好者之间的竞技游戏。

阅读更多

Shell

Introduction

Shell通常是运行在操作系统用户层的一个程序,它的表现很像操作系统的外壳(Shell),它接受键盘输入并执行程序,将结果写入到标准输出流中。shell的种类很多,有bash,zsh,fish等

阅读更多

Vim

Introduction

Vim是一个类似于Vi的著名的功能强大、高度可定制的文本编辑器

阅读更多

Manim

Introduction

Manim是数学视频博主3b1b开发并使用的Python图形引擎,用于制作数学科普视频。
manim

Usage

基本框架

python
1
2
3
4
5
from manimlib import *
import numpy as np

class SceneName(Scene):
def construct(self):

MIT 6.S081 Lab pgtbl

Compulsory exercises

Preparation

  • reading
    preparation

  • To start the lab, switch to the pgtbl branch:

1
2
3
git fetch
git checkout pgtbl
make clean
阅读更多