09 2019 档案

摘要:【一】VSCODE官方插件库 https://marketplace.visualstudio.com/ 最好能在文件->首选项->设置中,搜索update,将Auto Update关闭,否则,如果网络或者配置有问题,在重启vscode时,会经常出现c/c++扩展更新,然后更新失败的问题 【二】菜单 阅读全文
posted @ 2019-09-26 09:50 chiwin 阅读(434) 评论(0) 推荐(0)
摘要:参考: https://dulishu.top/libevent-event-loop/ 阅读全文
posted @ 2019-09-10 10:09 chiwin 阅读(166) 评论(0) 推荐(0)
摘要:https://books.studygolang.com/gopl-zh/ https://chai2010.cn/advanced-go-programming-book/ 阅读全文
posted @ 2019-09-07 15:51 chiwin 阅读(575) 评论(0) 推荐(0)
摘要:服务端【编译:gcc server.c -o server】 客户端【编译:gcc client.c -o client 【备注:需要修改服务端地址,代码中为1.2.3.4】】 参考: https://www.cnblogs.com/yusenwu/p/4579167.html 阅读全文
posted @ 2019-09-06 17:46 chiwin 阅读(487) 评论(0) 推荐(0)
摘要:#include <stdio.h> #include <stdlib.h> #include <pthread.h> #include <unistd.h> #include <fcntl.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <regex.h> int main(){ 阅读全文
posted @ 2019-09-04 09:47 chiwin 阅读(236) 评论(0) 推荐(0)