/ Simple Node.js Download Client. Only support http and https. Only support get method. / import as path from "path"; import as fs from "fs"; import { ...
分类:
其他好文 时间:
2018-12-24 16:35:04
阅读次数:
168
PHP 使用var_dump($arr)时 没有格式化输出。 原因是没有启用‘XDebug’扩展 [xdebug]zend_extension ="d:/wamp/bin/php/php7.0.4/zend_ext/php_xdebug-2.4.0-7.0-vc14.dll" xdebug.remo ...
分类:
其他好文 时间:
2018-12-24 16:10:47
阅读次数:
130
错误 错误分为语法错误和逻辑错误 语法错误 1 2 3 4 5 >>> if File "<stdin>", line 1 if ^ SyntaxError: invalid syntax 程序执行过程中,python解释器会检测你的程序是否存在语法错误,如果程序出错python解释器会指出出错的一 ...
分类:
编程语言 时间:
2018-12-24 10:22:15
阅读次数:
279
碰到这个一般是内核没有开启相应的 macvtap 选项,开启相应选项后,就不会报错了。 但是 macvtap 工作起来还是不正常,宿主和虚拟都不能上网了。 ...
分类:
系统相关 时间:
2018-12-24 02:54:06
阅读次数:
404
需求是兼容到 IE8。 $.ajax 总是请求失败,直接跳转到 error 函数中,报错:拒绝访问。 网上的一些解决方法都试过了还是没有用,比如再请求之前设置 jQuery.support.cors = true,并调用 jquery.xdomainrequest.min.js 。更改 IE 设置, ...
分类:
Web程序 时间:
2018-12-24 02:31:04
阅读次数:
444
2 reading level assessment 最早:公式,syntactic特征(如句长)之后:概率语言模型(前两个论文),smoothed unigram分类器捕捉词的变化smoothed unigram分类器的Overall Accuracy and Generalization Abi ...
分类:
系统相关 时间:
2018-12-23 12:51:37
阅读次数:
224
Lecture note 4: Eager execution and interface Eager execution Eager execution is (1) a NumPy-like library for numerical computation with support for G ...
分类:
其他好文 时间:
2018-12-23 00:14:43
阅读次数:
149
在《C++并发编程实战》这本书中第3章主要将的是多线程之间的数据共享同步问题。在多线程之间需要进行数据同步的主要是条件竞争。 1 std::lock_guard<std::mutex> 在上述代码中使用了std::lock_guard<>模板,使用该模板定义的mutex在栈空间分配空间,在构造函数中 ...
分类:
编程语言 时间:
2018-12-22 18:39:47
阅读次数:
146
原文档:https://docs.python.org/3/library/typing.html 简介 python是一门动态语言,而动态语言的变量类型极其灵活,使其在做一些工具,脚本时非常方便,但是同时也给大型项目的开发带来了一些麻烦,比如过一阵子就不知道这个变量啥类型的了,而且IDE还不容易识 ...
分类:
其他好文 时间:
2018-12-21 18:08:16
阅读次数:
253
1.TensorFlow安装 pip install tensorflow (命令行安装方式) 可以在pycharm中object interpreter中之间搜索安装 2. ...
分类:
其他好文 时间:
2018-12-19 15:47:57
阅读次数:
170