上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 81 下一页
摘要: 1. 笔者买不起pro版Vmware player,只能用community版。 2. 笔者不想参与insider program,不愿意发送过多诊断信息给微软。 3. 笔者曾经试着使用过hyper-v,但是使用之后发现效果有些不尽人意,想要转回vmware,但是此时用turn windows fe 阅读全文
posted @ 2020-11-17 20:49 雪溯 阅读(175) 评论(0) 推荐(0)
摘要: Apache IoTDB是一个由清华大学软件学院开始研发的物联网数据库,面向管理海量的columnar storage时间序列数据,它的接口类似于SQL,每个节点每秒可以支持写入数百万个数据点,数秒内可以获得数万亿个数据点的查询结果,能够在设备上或者在云上部署。架构很轻,能够和Apache Hado 阅读全文
posted @ 2020-11-11 11:59 雪溯 阅读(678) 评论(0) 推荐(0)
摘要: import 全部no publickey的源 sudo apt update 2>&1 1>/dev/null | sed -ne 's/.*NO_PUBKEY //p' | while read key; do if ! [[ ${keys[*]} =~ "$key" ]]; then sudo 阅读全文
posted @ 2020-11-11 10:41 雪溯 阅读(124) 评论(0) 推荐(0)
摘要: 基本地址 <script src="https://d3js.org/d3.v6.min.js"></script> Github: https://github.com/d3/d3 介绍 D3的主要功能是基于数据来变化DOM文档,比如根据输入的信息来快速生成/变更一个html中的table。或者用 阅读全文
posted @ 2020-11-06 20:23 雪溯 阅读(1539) 评论(0) 推荐(1)
摘要: Chaining getElementById getElementById本身无法连续使用,建议用querySeletor替换掉 Element.prototype.getElementById = function(id) { return this.querySelector("#"+id); 阅读全文
posted @ 2020-11-04 17:03 雪溯 阅读(99) 评论(0) 推荐(0)
摘要: nohup 当用户退出终端时,对应的命令不退出 阅读全文
posted @ 2020-11-04 10:26 雪溯 阅读(62) 评论(0) 推荐(0)
摘要: Source code: https://github.com/ChijinZ/VisFuzz Abstract 传统上模糊测试的一个瓶颈在于很难覆盖到被复杂的条件-比如magic number, 嵌套的条件所引导的程序支线,为此人们提出了白盒测试,然而即使这样,对复杂的条件的支持还是不够,比如ar 阅读全文
posted @ 2020-10-31 19:50 雪溯 阅读(280) 评论(6) 推荐(0)
摘要: Reference Tufail Muhammad , Zahid Halim , Majid Ali Khan , Visualizing Trace of Java Collection APIs by Dynamic Bytecode Instrumentation, Journal of V 阅读全文
posted @ 2020-10-28 21:26 雪溯 阅读(87) 评论(0) 推荐(0)
摘要: Function Pointers fn类型与Fn特性不一样,fn被称为function pointer,使用方法和Fn相似。但是在与C的FFI交互的时候,只能用fn。 fn add_one(x: i32) -> i32 { x + 1 } fn do_twice(f: fn(i32) -> i32 阅读全文
posted @ 2020-10-28 01:46 雪溯 阅读(107) 评论(0) 推荐(0)
摘要: Fully Qualified Syntax 当多个traits和struct具有相同的方法名时,默认会调用直接实现给这个struct的方法,要调用Trait中重名的方法,最好直接使用traitname::method(...)的方式。尤其是如果只是trait中associated function 阅读全文
posted @ 2020-10-28 01:08 雪溯 阅读(287) 评论(0) 推荐(0)
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 81 下一页