wasm是基于堆栈的虚拟机的二进制指令格式。在这次比赛中遇到,记录一下。 IDA反编译插件 下载地址:https://github.com/fireeye/idawasm 食用方法: install the python module: python.exe setup.py install man ...
分类:
其他好文 时间:
2020-05-27 18:23:19
阅读次数:
126
window terminal下添加alias 首先需要将window terminal的启动已powerShell打开的窗口,一半都是默认行为 github地址 https://github.com/DaiHangLin/my-power-shell-module 此項目是爲了在powerShel ...
2020/05/26 1、模Match块儿化开发的优点: 方便代码的管理,提高代码的复用性,降低代码耦合、每个模块儿都有自己的作用域 当前流行的模块儿化规范有:commonJS、AMD、CMD、ES6的import commonJS 是同步加载 主要实践者是node.js 模块儿输出用module. ...
分类:
其他好文 时间:
2020-05-27 15:11:58
阅读次数:
68
项目初始化 vue-element-admin 源码 git clone https://github.com/PanJiaChen/vue-element-admin cd vue-element-admin npm i npm run dev 若npm 报错 Cannot find module ...
分类:
其他好文 时间:
2020-05-27 12:31:19
阅读次数:
137
某项目中,我们从传感器采集数据,每收集到1G数据后,做数据分析,最终只保存分析结果。这样很大的临时数据如果常驻内存,将消耗大量内存资源,我们可以使用临时文件存储这些临时数据(外部存储)。 临时文件不用命名,且关闭后会自动删除。 解决方案:使用标准库中tempfile下的TemporaryFile,N ...
分类:
编程语言 时间:
2020-05-27 11:52:39
阅读次数:
96
#外部文件使用django的models,需要配置django环境 import os if __name__ == '__main__': os.environ.setdefault("DJANGO_SETTINGS_MODULE", "singletablehw.settings") ## im ...
分类:
其他好文 时间:
2020-05-26 20:00:01
阅读次数:
59
创建新项目: ng new angularproject 创建依赖: npm install 安装组件: ng g component components/home ng g component components/pcontent 在app-routing.module.ts里面配置路由 im ...
分类:
编程语言 时间:
2020-05-26 10:33:31
阅读次数:
114
A Survey on Deep Learning for Named Entity Recognition https://arxiv.org/abs/1812.09449 命名实体识别(Named Entity Recognition, NER)是指从自由文本中识别出属于预定义类别的文本片段。N ...
分类:
其他好文 时间:
2020-05-25 22:29:32
阅读次数:
106
1.AttributeError: module 'urllib.response' has no attribute 'read' 代码: res=urllib.response.read().decode('UTF-8')#读取网页内容,用utf-8解码成字节 1) python3中应该 imp ...
分类:
其他好文 时间:
2020-05-25 19:32:09
阅读次数:
61
1.读取 2.数据预处理 3.数据划分—训练集和测试集数据划分 from sklearn.model_selection import train_test_split x_train,x_test, y_train, y_test = train_test_split(data, target, ...
分类:
其他好文 时间:
2020-05-25 19:27:04
阅读次数:
61