知识点简单总结——斯特林数、斯特林反演 斯特林数 第一类斯特林数: \(n\) 元置换分解为 \(k\) 个独立轮换的方案数,即: \[ \begin{bmatrix} n \\ k \end{bmatrix} = ( n - 1 ) \begin{bmatrix} n - 1 \\ k \end{ ...
分类:
其他好文 时间:
2020-07-30 18:16:32
阅读次数:
94
asp.net core Webapi是有多种上传文件的方法的 另外swagger ui也可以选择文件来上传文件 下面直接上code 1:WebApi后端代码 1 using System; 2 using System.Collections.Generic; 3 using System.Lin ...
最近发现在开发环境下出现问题 将HTML页面复制到android/app/src/main/assets文件夹 source = Platform.OS 'ios' ? require('../Static.bundle/**html') : { uri: 'file:///android_asse ...
分类:
移动开发 时间:
2020-07-29 17:35:10
阅读次数:
141
server { listen 8085; server_name 127.0.0.1; charset utf-8; root html/dist; location / { try_files $uri $uri/ /index.html; index index.html; } locatio ...
分类:
其他好文 时间:
2020-07-29 15:25:29
阅读次数:
55
安装: 直接在命令行pip3 install py2neo 官网下载(解压后放到python下的scripts中,在py2neo目录下cmd,输入python setup.py install 链接 auth=(用户名,密码) from py2neo import Graph,Node,Relati ...
分类:
数据库 时间:
2020-07-29 12:41:46
阅读次数:
96
config 配置 1 # -*- coding = utf-8 -*- 2 # @Time : 2020/7/28 17:51 3 # @Author : 贾伟文 4 # @File : config.py 5 # @Software : PyCharm 6 7 DB_URI = 'mysql:/ ...
分类:
其他好文 时间:
2020-07-29 10:28:10
阅读次数:
67
一段很有趣的代码如下: HttpUrl url = new HttpUrl.Builder() .scheme("http") .host(host) .port(port) .encodedPath(uri) .build(); 这种链式调用,可以使我们的代码看起来更加简洁易懂,这段代码最终是通过 ...
分类:
其他好文 时间:
2020-07-28 22:27:10
阅读次数:
69
28-Jul-2020 11:44:56.960 严重 [http-nio-8080-exec-1] org.apache.catalina.core.StandardWrapperValve.invoke 在路径为的上下文中,Servlet[jsp]的Servlet.service()引发了具有根 ...
分类:
编程语言 时间:
2020-07-28 14:45:05
阅读次数:
609
键空间通知(Keyspace Notification)是一个从Redis 2.8.0版本开始可用的功能。 1、简介: 键空间通知基于订阅Pub/Sub(发布/订阅),当库中的key发生改变时,能够对你感兴趣的事件进行通知。 可能接收到的事件示例,如下所示: 所有影响到一个给定键的命令。 所有接收到 ...
分类:
其他好文 时间:
2020-07-28 13:58:08
阅读次数:
106
主要目前很简单就是移除nginx request 中的query_string,因为rewrite 阶段处理的是uri ,不包含query_string,但是rewrite 会包含 query_string ,我们可以通过args 变量重写,当然也可以基于openresty 的 ngx.req.se ...
分类:
其他好文 时间:
2020-07-28 00:31:29
阅读次数:
227