Skip to content

Instantly share code, notes, and snippets.

@myersguo
myersguo / gpt-practise.ipynb
Created June 2, 2023 05:47
gpt-practise.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Docker 的常用命令有:
1. docker images:列出本地主机上的镜像。示例:
bash
docker images
2. docker ps:列出运行中的容器。示例:
bash
docker ps
3. docker run:运行一个镜像。示例:
bash
docker run ubuntu echo "Hello world"
@myersguo
myersguo / spammify.c
Created March 29, 2018 12:57
python c module example
#include <Python.h>
static PyObject *SpamError;
static PyObject *
spam_system(PyObject *self, PyObject *args)
{
const char *command;
int sts;