上一页 1 ··· 5 6 7 8 9
摘要: c++检测输入的是否为数字: 代码: bool isNum(const string & str) { const char *ch = str.c_str(); if (*ch <='Z' && *ch >= 'A' || *ch <='z' && *ch >='a') { return fals 阅读全文
posted @ 2022-04-06 09:51 Maguyusi 阅读(9) 评论(0) 推荐(0)
摘要: 安装各种依赖 yum -y install wget vim pcre pcre-devel openssl openssl-devel libicu-devel gcc gcc-c++ autoconf libjpeg libjpeg-devel libpng libpng-devel freet 阅读全文
posted @ 2022-03-24 15:03 Maguyusi 阅读(53) 评论(0) 推荐(0)
摘要: AlmaLinux9: dnf --enablerepo=crb install oniguruma-devel ​ yum install epel-release yum install oniguruma-devel ​ 阅读全文
posted @ 2022-03-24 14:32 Maguyusi 阅读(33) 评论(0) 推荐(0)
摘要: ffmpeg -ss START -t DURATION -i INPUT -vcodec copy -acodec copy OUTPUT 例如: ffmpeg -ss 0:0:21 -t 0:0:30 -i input.mp4 -vcodec copy -acodec copy output.m 阅读全文
posted @ 2022-03-04 00:06 Maguyusi 阅读(84) 评论(0) 推荐(1)
摘要: LEDE/OpenWrt 编译完成后,关闭开机启动的时候的打印信息 步骤:打开文件 /boot/grub/grub.cfg 修改为以下内容 删除 console=tty0 serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1 --r 阅读全文
posted @ 2022-02-06 01:02 Maguyusi 阅读(68) 评论(0) 推荐(0)
摘要: #include <iostream> #include <string> #include <boost/regex.hpp> int main() { std::string tmpStr= "192.168.0.1"; boost::regex expression("([0-9]+).([0 阅读全文
posted @ 2021-11-17 09:50 Maguyusi 阅读(24) 评论(0) 推荐(0)
摘要: 开始==>运行==>输入(gpedit.msc)==>用户配置==>管理模板==>windows组件 ==>Internet explorer==>右边找到 禁用更改主页设置 双击==>启用==>在下 面填写一个你喜欢的主页 <=| OK 阅读全文
posted @ 2021-08-17 22:01 Maguyusi 阅读(14) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int main() { while(true) { char temp; cin >> temp; if ( (temp <= 'Z' && temp >= 'A') || (temp <= 'z' && temp 阅读全文
posted @ 2021-05-16 18:10 Maguyusi 阅读(8) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9