matplotlib https://matplotlib.org/index.html ...
分类:
其他好文 时间:
2020-07-10 13:44:24
阅读次数:
51
TP5.1解决跨域 博客说明 文章所涉及的资料来自互联网整理和个人总结,意在于个人学习和经验汇总,如有什么地方侵权,请联系本人删除,谢谢! 介绍 在前后端分离开发的时候就会遇到跨域的问题,在本地调试的时候可能不会出现什么太大的问题,但是上线部署的时候难免会遇到问题 不过这种跨域的问题还是最好在后端解 ...
分类:
其他好文 时间:
2020-07-10 13:44:05
阅读次数:
56
一 、前言 我是把Linux系统安装在虚拟机中的,用的是VMware。 在终端工具和操作界面中。 VMware里面采用的网络适配器是NAT技术。 标题中的Centos和RHEL区别就不多说了,自行百度。 ping不通域名和IP地址;并且ifconfig命令回车之后并不会出来正确的IP地址。 ip a ...
分类:
其他好文 时间:
2020-07-10 13:43:48
阅读次数:
86
国外镜像会很慢 可用 get命令查看registry npm congfig get registry 原版结果为 http://registry.npmjs.org 用set命令换成阿里的镜像就可以了 npm config set registry https://registry.npm.tao ...
分类:
其他好文 时间:
2020-07-10 13:43:13
阅读次数:
83
abstract: 抽象的 1.可以用来修饰:类、方法 abstract修饰类:抽象类: > 此类不能实例化 > 抽象类中一定有构造器,便于子类实例化时调用(涉及:子类对象实例化的全过程) > 开发中,都会提供抽象类的子类,让子类对象实例化,完成相关的操作 >抽象的使用前提: 继承性abstract ...
分类:
其他好文 时间:
2020-07-10 13:42:39
阅读次数:
59
原文: https://wiki.mikrotik.com/wiki/Manual:IP/Fasttrack 需要两条命令来执行: /ip firewall filter add chain=forward action=fasttrack-connection connection-state=e ...
分类:
其他好文 时间:
2020-07-10 13:42:19
阅读次数:
173
A.JSR223 是基于 groovy 的语法,所以先了解下常用 JSR223 的方法 1. log:用来记录日志文件,写入到 jmeber.log 文件,使用方法:log.info(“This is log info!”); 2. ctx ( JmeterContext ) 通 过 它 来 访 问 ...
分类:
Web程序 时间:
2020-07-10 13:42:04
阅读次数:
84
1.安装 zlib yarn add zlib 2.创建中间件 app/middleware/gzip.js const isJSON = require("koa-is-json"); const zlib = require("zlib"); module.exports = (options) ...
分类:
其他好文 时间:
2020-07-10 13:41:49
阅读次数:
154
本文背景 今年是我党成立99周年,在七一来临之际我开发了一款党建答题小程序,具体名字为党建答题助手 本文内容 目前该小程序已相当完善,经过几次党建活动的检验,没有已知bug 该小程序可以提供以下功能 (1)用户注册 (2)用户答题 (3)得分排名 (4)活动规则展示 其中用户注册模块可以按照用户的需 ...
分类:
微信 时间:
2020-07-10 13:41:36
阅读次数:
500
1. plot指令的基本调用格式 (1)plot(x) x为向量时,以该元素的下标为横坐标、元素值为纵坐标绘出曲线 x为实数二维数组时,则按列绘制每列元素值相对其下标的曲线,曲线数等于x数组的列数。 x为复数二维数组时,则按列分别以数组的实部和虚部为横、纵坐标绘制多条曲线 (2)plot(x, y) ...
分类:
其他好文 时间:
2020-07-10 13:41:19
阅读次数:
96
1.同步读取和写入 StreamReader objReader = new StreamReader("E://workspace//zzz//read.txt", Encoding.GetEncoding("utf-8")); string sLine = ""; ArrayList LineL ...
在进行python包安装的时候遇到错误(输入conda、pip) zsh: /opt/anaconda3/bin/pip: bad interpreter: /opt/anaconda3/bin/python: no such file or directory 问题主要出现在anacanda的pi ...
分类:
编程语言 时间:
2020-07-10 13:40:46
阅读次数:
75
OBDSTAR Odomaster is a new odometer correction tool. With the latest cluster calibration technology from OBDSTAR, it’s very easy to use, and supports ...
分类:
其他好文 时间:
2020-07-10 13:40:25
阅读次数:
104
Statsmodels 示例 https://www.statsmodels.org/stable/examples/index.html ...
分类:
其他好文 时间:
2020-07-10 13:40:05
阅读次数:
73
PCA:主成分分析-Python实现,X:[2500,784],把X降到50维 1 def pca(X=np.array([]), no_dims=50): 2 """ 3 Runs PCA on the NxD array X in order to reduce its dimensionali ...
分类:
编程语言 时间:
2020-07-10 13:39:47
阅读次数:
113
Centos7.5 编译安装apr-util时报错:xml/apr_xml.c:35:19: fatal error: expat.h: No such file or directory 解决方案:yum install expat-devel 编译pcre 报错 error: Invalid C ...
分类:
Web程序 时间:
2020-07-10 13:39:29
阅读次数:
92
function reduce(arr, callBack ,initVal){ if(!Array.isArray(arr) || !arr.length || typeof callBack != 'function') return []; let hasInitVal = initVal ! ...
分类:
其他好文 时间:
2020-07-10 13:39:11
阅读次数:
68