摘要: 1、删除 C:\Users\admin\.ssh\known_hosts 中的链接地址 2、删除远超服务器用户目录下的 .vscode-server 3、允许ssh远超端口转发 vim /etc/ssh/sshd_config AllowTcpForwarding yes 4、替换windows 系 阅读全文
posted @ 2024-05-08 14:43 风中奔跑的蜗牛 阅读(22) 评论(0) 推荐(0) 编辑
摘要: Android NDK osip exosip jni arm 阅读全文
posted @ 2020-02-25 16:18 风中奔跑的蜗牛 阅读(1003) 评论(1) 推荐(0) 编辑
摘要: 1、下载 openssl-1.1.1c.tar.gz tar -zxvf openssl-1.1.1c.tar.gz cd openssl-1.1.1c 编译选项如下: ./Configure --prefix=/home/zhangsan/openssl --cross-compile-prefi 阅读全文
posted @ 2019-11-01 10:19 风中奔跑的蜗牛 阅读(1179) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> #include <stdlib.h> #include "iconv.h" #define CODE_UNICODE "UCS-2LE" int code_convert(const char *pFromCharset, const char *pToCharset, char *pInBuf, size_t nIn 阅读全文
posted @ 2019-10-30 17:12 风中奔跑的蜗牛 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 随笔一写、就没分开文件了! 阅读全文
posted @ 2017-07-26 14:49 风中奔跑的蜗牛 阅读(2170) 评论(0) 推荐(0) 编辑
摘要: 思路: 1、抓取解析获取整个网站的所有小说 2、抓取解析小说的所有章节路径 3、抓取解析小说所有章节的内容生成TXT 缺点: 1、学习PYTHON两天很多语法以及基础的细节不明白 2、对于不同网站的抓取解析有变动 阅读全文
posted @ 2017-07-03 11:16 风中奔跑的蜗牛 阅读(3222) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; static const unsigned char MonthTable[12] = { 31,28,31,30,31,30,31,31,30,31,30,31}; class Date{public: Date(i 阅读全文
posted @ 2016-06-28 18:14 风中奔跑的蜗牛 阅读(1833) 评论(0) 推荐(0) 编辑