Your country has an infinite number of lakes. Initially, all the lakes are empty, but when it rains over the nth lake, the nth lake becomes full of wa ...
分类:
其他好文 时间:
2020-06-22 15:46:01
阅读次数:
58
In a deck of cards, every card has a unique integer. You can order the deck in any order you want. Initially, all the cards start face down (unreveale ...
分类:
其他好文 时间:
2020-06-22 13:13:01
阅读次数:
57
在connection.url中做如下设置,databaseName是你自己的数据库名 <property name="connection.url">jdbc:mysql:///databaseName?useUnicode=true&characterEncoding=UTF-8</pr ...
分类:
Web程序 时间:
2020-06-22 01:33:23
阅读次数:
70
WebSocket可以被视作 HTTP 协议为了支持长连接的一个补丁。 keep-alive connection HTTP是一个请求<->响应模式的典型范例,即客户端向服务器发送一个请求信息,服务器来响应这个信息。在老的HTTP版本中,每个请求都将被创建一个新的客户端->服务器的连接,在这个连接上 ...
分类:
Web程序 时间:
2020-06-21 19:36:23
阅读次数:
79
题目:You Are the One 网址:http://acm.hdu.edu.cn/showproblem.php?pid=4283 Problem Description The TV shows such as You Are the One has been very popular. I ...
分类:
其他好文 时间:
2020-06-20 23:47:01
阅读次数:
57
centos 7 在虚拟机中出现 这个错误 导致进入不了系统。 经过一中午的百度测试了各种方法都不行。 导致出错的原因,应该是在安装各种软件时触动了 Gnome 桌面底层依赖的包。 最后找到了解决办法: 出现如上图界面后 然后ctrl+alt+F2 进入命令模式,然后输入root 账号和密码。 ro ...
分类:
其他好文 时间:
2020-06-20 14:28:31
阅读次数:
211
has been blocked by CORS policy: Request header field x-csrf-token is not allowed by Access-Control-Allow-Headers in preflight response. 因为main.js有“se ...
分类:
其他好文 时间:
2020-06-20 13:56:53
阅读次数:
45
一开始在windows下运行没有问题,但是在linux下运行却报如下错误: ? AttributeError: module 'unittest' has no attribute 'TestRunner', 在网上找了好多资料看了一下都提示存在与unittest模块同名的.py文件 但是我查了一点 ...
分类:
系统相关 时间:
2020-06-20 10:43:27
阅读次数:
68
严重: create connection SQLException, url: jdbc:mysql://localhost:3306/db2?&useSSL=false&serverTimezone=UTC, errorCode 0, state 08001 java.sql.S ...
分类:
数据库 时间:
2020-06-20 01:27:35
阅读次数:
124
代码: #coding=utf-8 import requests import json url='http://127.0.0.1:4444/wd/hub/session' data = json.dumps({ 'desiredCapabilities':{ 'browserName':'Mi ...