查找大小为零的文件

 查找大小为零的文件:   forfiles /s /m * /c "cmd /c if @isdir == FALSE if @fsize EQU 0 echo @path"  限制类型(*.log):   forfiles /s /m *.log /c "cmd /c if @isdir == FALSE if @fsize EQU 0 echo @path"  进行删除操作:   forfiles /s /m * /c "cmd /c if @isdir == FALSE if
分类: 其他 发布时间: 04-10 22:44 阅读次数: 0

201671010426 孙锦喆 实验四附加实验

实验内容和步骤 按名单中指定互评小组,对对方小组的《实验四 结对项目》的项目成果进行评价,具体要求如下: 对项目博文作业进行阅读并进行评论,评论要点包括:博文结构、博文内容、博文结构与PSP中“任务内容”列的关系、PSP中“计划共完成需要的时间”与“实际完成需要的时间”两列数据的差异化分析与原因探究。 克隆结对方项目源码到本地机器,利用实验提供文件的测试软件,要求测试不少于10次。测试文件百度网盘链接:https://pan.baidu.com/s/1O4T3OG3DMvpJJRz2XFwJv
分类: 其他 发布时间: 04-10 22:44 阅读次数: 0

windows许可证即将过期

win+R 输入 slmgr.vbs -xpr 查看日期 激活工具地址: 链接: https://pan.baidu.com/s/1S5nealQM1bytPYV6CYbgyg 提取码: sbmu microsoft toolkit 比较好用 初始界面是这样 激活windows, office 安装 默认autokms activite激活 激活成功 windows版本选择 emmm,只能激活6个月左右吧
分类: 其他 发布时间: 04-10 22:44 阅读次数: 0

给定一个数组,求最大数

//递归方法 //选择排序法 思想:默认第一个数为最大值,从第二个数依次与max比较,若有比max大的数,则存入max中。 int maximum(int a[],int n) int maximum(int a[],int n) { { int max; int max=a[0]; if(n==1) for(i=1;i<=n;i++) return a[0]; { max=maximum(a,n-1); if(a[i]>max) if(max<a[n-1]) max=a[i]; max=a[
分类: 其他 发布时间: 04-10 22:44 阅读次数: 0

springboot中使用kindeditor富文本编辑器实现博客功能

  kindeditor在之前已经用过,现在在springboot项目中使用。并且也在里面使用了图片上传以及回显等功能。   其实主要的功能是图片的处理:kindeditor对输入的内容会作为html标签处理,对于image的做法是先将图片传到后台服务器,然后上传成功之后回传图片的URL,之后内容中增加<img src='url'>进行回显,当然保存到数据库也是img标签进行保存的。   下面的代码涉及到了:Restful风格的请求、SpringMVC文件的上传、不配置虚拟路径的前提下请求图片
分类: 其他 发布时间: 04-10 22:44 阅读次数: 0

Flask系列05--Flask的配置config

一.flask配置 示例说明, 就是使用config进行配置 from flask import Flask ​ app = Flask(__name__) # type:Flask app.config["DEBUG"] = True # debug模式开启 config配置参数详解: 源码中的参数如下图 { 'DEBUG': False, # 是否开启Debug模式 'TESTING': False, # 是否开启测试模式 'PROPAGATE_
分类: 其他 发布时间: 04-10 22:44 阅读次数: 0

poj1019(打表预处理+数学)

题目链接:http://poj.org/problem?id=1019 题意:对于序列1121231234...,求第i个数字(i<=2147483647)。 思路:记第一组为1,第二组为12,第三组为123,打表预处理计算除第2147482647位在第31268组,然后预处理计算前31268组的位数,存储在sum数组中,其中(int)log10((double)i)+1表示数据 i 的位数。然后模拟就行了,计算出当前要计算的第x位处在第k1组中,然后找到所求位数位于整数 i 中,把 i 后面
分类: 其他 发布时间: 04-10 22:44 阅读次数: 0

hashmap源码阅读

//一些重要的常量 //Node数组的默认长度 static final int DEFAULT_INITIAL_CAPACITY = 1 << 4; // aka 16 //Node数组的最大长度 static final int MAXIMUM_CAPACITY = 1 << 30; //负载因子 static final float DEFAULT_LOAD_FACTOR = 0.75f; //链表转换为树的阈值,超过这个长度的链表会被转换为红黑树 static final
分类: 其他 发布时间: 04-10 22:44 阅读次数: 0

Django速成:构建一个Blog

1.创建项目 组织Django代码最简单的方式是使用Django的“项目”(project):一个包含了组成单个网站的所有文件的目录。Django提供了一个叫django-admin.py的命令来帮助创建这样项目的目录。 Windows下: (py2_django) E:\Demo_Django>django-admin startproject mysite (py2_django) E:\Demo_Django> 运行之后,我们用资源管理器,可以发现新建了一个mysite文件夹,如图: 解
分类: 其他 发布时间: 04-10 22:44 阅读次数: 0

一批次梳理

1、mainActivity--splashActivity-loginActivity--HomePageActivity 2、HomePageActivity // 启动定位、MQTT等服务 initService(); //版本更新 UpdateManager updateManager = new UpdateManager(this); updateManager.start(true); //登录成功之后给后台传递手机的各种信息 loginVM.sendPhoneProperty(
分类: 其他 发布时间: 04-10 22:44 阅读次数: 0

A guide to the Kernel Development Process

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/88926749 Contents: 1. Introduction 1.1. Executive summary 1.2. What this documen
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:GTP:GPRS Turning Protocol- GPRS隧道协议

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/88957232 Table of Contents gtpc.h * GTP-C v2 Header GPRS Turning Protocol <GPRS
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:RRC:(Radio Resource Control):无线资源控制协议

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/88958355 Table of Contents rrc_asn1.h 见过一个头文件六万多行的吗? rrc_asn1.h lib\include\srsl
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:BCD码转换mnc、mcc、plmn

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/88958599 Table of Contents bcd_helpers.h //PLMN(Public Land Mobile Network,公共陆地移
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:block_queue.h阻塞队列类

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/88958895 Table of Contents block_queue.h block_queue.h lib\include\srslte\common
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:buffer_pool.h

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/89040738 buffer_pool.h lib\include\srslte\common 6232 2/28/2019 119 /** * * \
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:crash hanlder

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/89040771 Table of Contents crash_handler.h lib\include\srslte\common 1395 2/28/2
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:生成多播信道表gen_mch_tables

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/89041348 Table of Contents gen_mch_tables.h gen_mch_tables.c 我在代码里做出了注释,如下: sf_
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:NAS非接入层、PDCP分组数据汇聚协议、PDU 协议数据单元 "头文件"

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/89041555 非接入层(原名NAS - Non-access stratum) 分组数据汇聚协议(PDCP - Packet Data Convergenc
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:安全密钥 liblte_security_xxxxxx

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/89109228 Table of Contents liblte_security.h liblte_security.cc liblte_security.
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0