If I have bunch of events and a bunch of probabilities, how likely is it those events happen based on the probabilities? If it is very likely then we ...
分类:
其他好文 时间:
2020-06-13 17:35:40
阅读次数:
66
方法一: cookie是字典格式 import requests cookies_value = {'name1': 'value1', 'name2': 'value2'} response = requests.post(url=url, data=data, cookies=cookies_v ...
分类:
其他好文 时间:
2020-06-13 10:29:24
阅读次数:
421
asy --help Asymptote version 2.49 [(C) 2004 Andy Hammerlindl, John C. Bowman, Tom Prince] http://asymptote.sourceforge.net/ Usage: asy [options] [file ...
分类:
其他好文 时间:
2020-06-12 14:52:48
阅读次数:
83
WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requiremen ...
分类:
其他好文 时间:
2020-06-12 12:31:44
阅读次数:
99
因为本身就是忠实的 Overwatch 玩家,所以天然的对其应用的 ECS 架构有所兴趣。再加上最近在 Unity Connect 上看见一篇使用 Unity DOTS 实现的一个爆炸 Demo,所以就决定了这个分享的内容。 一、What 什么是 DOTS DOTS(Data-Oriented Te ...
分类:
编程语言 时间:
2020-06-11 20:03:15
阅读次数:
162
总共分为两块:db连接基础方法+业务调用方使用1、db连接基础方法public class DemoForWrite { static String URL = "jdbc:mysql://127.0.0.1:3306/user"; static String USER_NAME = "root"; ...
分类:
数据库 时间:
2020-06-10 20:56:04
阅读次数:
68
requests #!/usr/bin/env python3 # -*- coding: utf-8 -*- import requests import re url = "" hd = {"User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x6 ...
分类:
编程语言 时间:
2020-06-10 11:21:25
阅读次数:
116
1. 先安装homebrew 2. 安装Nginx,终端下执行: $ brew install nginx 安装过程中会自己安装依赖: 3. 启动nginx服务 $ nginx 成功后,使用浏览器打开http://localhost:8080 。 4. nginx文件目录 nginx安装文件目录 / ...
分类:
系统相关 时间:
2020-06-09 20:39:20
阅读次数:
86
<el-upload :disabled="upLoading" :limit="12" action :http-request="uploadHttp" :show-file-list="false" accept=".png, .jpg, .jpeg"> <div> <i v-if="!upL ...
分类:
Web程序 时间:
2020-06-09 16:42:45
阅读次数:
82