1. 配置工作环境 sudo apt install gcc build-essential bison flex gettext tcl sharutils libncurses-dev zlib1g-dev exuberant-ctags g++ texinfo patch vim libtoo ...
分类:
系统相关 时间:
2020-03-28 13:23:19
阅读次数:
86
[TOC] 任务一:基于winpcap的网络嗅探工具的实现 1 实践原理介绍 Windows用户态中的winpcap与Unix中的libpcap库相兼容,使用winpcap库实现网络嗅探工具的原理与Unix下使用libpcap非常的类似,具体的实现技术如下图: 根据上面的技术图可知嗅探器的实现 基本 ...
分类:
其他好文 时间:
2020-03-28 09:17:18
阅读次数:
119
一、三元表达式 1、普通和三元表达式区别: 1.普通的表达式 def func(x,y): if x > y: return x else: return y ? res = func(1,2) print(res) 2、三元表达式 语法格式:条件成立时返回的值 if 条件 else 条件不成立时要 ...
分类:
编程语言 时间:
2020-03-25 23:25:09
阅读次数:
77
一.yield表达式的应用 在函数内可以采用表达式形式的yield。 >>> def eater(): ... print('Ready to eat') ... while True: ... food=yield ... print('get the food: %s, and start to ...
分类:
编程语言 时间:
2020-03-25 21:39:07
阅读次数:
91
用记事本或者其他什么文本编辑器,打开项目的.csproj文件,定位到<WebProjectProperties>,把关于IIS的配置<DevelopmentServerPort>、<DevelopmentServerVPath>、<IISUrl>属性都清空,<AutoAssignPort>为True ...
分类:
其他好文 时间:
2020-03-25 00:52:04
阅读次数:
94
文字替换需求如下: pro_get_show->proGetShow 检索正则:(_[a-z]?) 替换的正则:\J "\0".toUpperCase().replace('_','') 以上利用了\j 的脚本功能。 参考网址: http://www.emeditor.org/zh-cn/howto ...
分类:
其他好文 时间:
2020-03-24 19:13:34
阅读次数:
150
1.打开官方下载地址:https://www.microsoft.com/zh-CN/download/details.aspx?id=29062 2.勾选下载SQL Server 2012和SSMS(图形化管理界面)的安装包 3.下载完成,启动SSMS:SQLManagementStudio_x6 ...
分类:
数据库 时间:
2020-03-21 21:03:26
阅读次数:
354
Advanced Aspects of Nature Inspired Search and Optimisation 2019/2020Lab 2 MSc: Time Series Prediction with GPNB! This coursework is only compulsory f ...
分类:
其他好文 时间:
2020-03-20 18:38:46
阅读次数:
61
1、批量创建那些规格差不多的文件名 1 [root@linuxidc net]# for i in `seq -w 10` 2 > do touch stu\_$i\_linux.jpg 3 > done 4 [root@linuxidc net]# sl 2、然后,使用rename进行修改 1 [ ...
分类:
其他好文 时间:
2020-03-17 19:18:27
阅读次数:
120
本文章详细介绍备份过程中遇到的坑。导出:expdpvids/vids123@orclvidsdirectory=dpdatadumpfile=db20200311214001.dmplogfile=20200311214001.log删除线部分非必须,可以不要导出常见错误:连接到:OracleDatabase11gExpressEditionRelease11.2.0.2.0-64bitProdu
分类:
数据库 时间:
2020-03-12 09:31:13
阅读次数:
65