cjt published on included in hugo 推荐使用 Hugo extended 版本 由于这个主题的一些特性需要将 SCSS 转换为 CSS, 推荐使用 Hugo extended 版本来获得更好的使用体验。 主题参考 ubuntu 如何安装snap 也就说你的Ubuntu
cjt published on included in c/c++ 源码参考:Muduo 第二部分:Muduo网络库 10. 初探EventLoop 10.1 什么都不做的EventLoop 一个EventLoop就是一个事件循环
cjt published on included in c/c++ 1. 开始 iostream库包含两个基础类型istream和ostream,分别表示输入流和输出流。一个流就是一个字符序列,是从IO设备读出或写
cjt published on included in c/c++ 前言 服务器设计的目的 高性能 高可用 故障转移(failover) 伸缩性 library和framework: 库中类相对比较独立,我们编写应用的时候
cjt published on included in 计算机网络 1. 开始前的准备 首先在cmd窗口执行ifconfig命令,查看主机ip地址: 1 2 3 4 5 6 7 8 9 10 11 C:\Users\Administrator>ipconfig Windows IP 配置 以太网适配器 以太网: 连接特定的 DNS 后
cjt published on included in c/c++ 1. 头文件stdio.h 1.1 fopen函数 C 库函数 FILE *fopen(const char *filename, const char *mode) 使用给定的模式 mode 打开 filename 所指向的文件。 1 2 3 #include <stdio.h> FILE *fopen(const char *filename, const char *mode) 调用fopen函数,