git 删除远程分支 发表于 2019-02-20 | 分类于 Git git branch -r 查看远程分支git branch -r -d origin/AirportProducts 删除本地远程分支 AirportProducts branch-namegit push origin :AirportProducts 删除远程仓库的分支 阅读全文 »
CodeSnippet C language 发表于 2019-01-31 使用OutputDebugString输出调试信息1234567891011121314151617void __cdecl odprintf(const char* fmt, ...){ char buf[4096], *p = buf; va_list args; va_start(a ... 阅读全文 »
负载均衡算法 发表于 2019-01-24 | 分类于 algorithm 轮询算法(round-robin)1234567891011SERVER_LIST = [ '10.246.10.1', '10.246.10.2', '10.246.10.3',]def round_robin(serv ... 阅读全文 »