Skip to content

Instantly share code, notes, and snippets.

View wdpm's full-sized avatar
🎯

wdpm wdpm

🎯
View GitHub Profile
@wdpm
wdpm / rbtree.c
Last active September 30, 2022 15:58 — forked from GuoJing/rbtree.c
simple rbtree source code
#include <stdio.h>
#include <stdlib.h>
int BLACK = 0;
int RED = 1;
struct node
{
struct node *left;
struct node *right;
@wdpm
wdpm / douban.md
Last active April 2, 2021 00:27
My douban statistics

书 📚:4 在读 · 46 想读 · 140 读过
影 🎬:0 在看 · 0 想看 · 423 看过
音 🎵:0 在听 · 0 想听 · 0 听过

@wdpm
wdpm / quick-setup-after-github-new-repo.md
Created December 15, 2020 07:37
Quick setup after github new repo

…or create a new repository on the command line

echo "# expert-goggles" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:wdpm/expert-goggles.git
git push -u origin main