天明博客总经理的头像-天明的博客
天明博客总经理管理员超级版主
这家伙很懒,什么都没有写...
Tello无人机编程中文版库说明-天明的博客
安装yarn-天明的博客

安装yarn

安装nodejs1、curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -2、sudo apt-get install -y nodejs正式安装yarncurl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo ap...
5个月前
07512
代码文件要求-天明的博客

代码文件要求

代码文件要求代码文件按如下格式组织假设考生考号为TJ-J0003,考生姓名为王小明,其文件夹应命名为:TJ-J0003。该文件夹下有四个子文件夹,分别对应四道题目,假设四道题目英文名分别为division...
ubuntu20.04安装Podman-天明的博客

ubuntu20.04安装Podman

. /etc/os-release echo 'deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/ /' | sudo tee /etc/apt/sources.list.d/devel:kubic:...
turtle渐变填充-天明的博客

turtle渐变填充

import turtle pen = turtle.Turtle() pen.speed(0) pen.colormode(255) l = 200 r = 255 g = 2 b =50 for j in range(50): pen.fillcolor(r,g,b) pen.begin_fill() for i in range(3): pen.for...