"Fat and docile, big and dumb, they look so stupid, they aren't muchfun..."- Cows with Guns by Dana LyonsThe cows want to prove to the public that the ...
分类:
其他好文 时间:
2020-01-29 15:55:06
阅读次数:
107
#include<cstdio> #include<cstdlib> #include<cstring> #include<algorithm> using namespace std; struct node { int w, s; int index; //储存标号 } mouse[1005]; ...
分类:
其他好文 时间:
2020-01-28 17:24:42
阅读次数:
90
煎鱼大佬的教程 app.ini #debug or release RUN_MODE = debug [app] PAGE_SIZE = 10 JWT_SECRET = 23347$040412 [server] HTTP_PORT = 8000 READ_TIMEOUT = 60 WRITE_TI ...
分类:
其他好文 时间:
2020-01-27 17:04:24
阅读次数:
113
std::vector<int> tree[maxn]; int fa[maxn]; void dfs(int u,int father) { int len = tree[u].size(); for (int i = 0;i < len;i++) { int v = tree[u][i]; if ...
分类:
其他好文 时间:
2020-01-22 14:26:30
阅读次数:
46
pip3 install virtualenv pip3 install virtualenvwrapper # 1、创建目录用来存放虚拟环境 mkdir $HOME/.virtualenvs # 2、打开~/.bashrc文件,并添加如下: export WORKON_HOME=$HOME/.vi ...
分类:
其他好文 时间:
2020-01-21 00:21:44
阅读次数:
74
官网 http://www.imsdn.cn/ 通过U盘安装系统 可以下载专用的U盘安装工具,但会自动安装其他插件,造成系统不纯净,使用本方法,可以安装纯净的Windows系统。 一、环境准备 1台安装Window 7或更高版本系统的电脑,U盘,下载的ISO镜像,WinRAR软件。 二、操作步骤 1 ...
分类:
其他好文 时间:
2020-01-18 13:02:56
阅读次数:
221
1. 简介 OWL2 Web本体语言(OWL)是一种语义Web语言,它被设计用来表示关于实体、实体间关系的丰富和复杂知识。 OWL是一个以计算逻辑为基础的语言,用OWL表示的知识可以通过计算机程序进行推理(演绎推理),从而验证知识一致性,或者使隐性知识显性化。 OWL文档,也被称为本体,能够在万维网 ...
分类:
其他好文 时间:
2020-01-18 00:54:07
阅读次数:
660
在执行python3 manage.py migrate时报错:操作错误,某库未给某用户授权 django.db.utils.OperationalError: (1044, "Access denied for user 'xxx'@'localhost' to database 'xxx'") ...
分类:
数据库 时间:
2020-01-17 23:17:58
阅读次数:
109
一次大改版,提交了很多代码,但再次提交提交不了,也拉不下来仓库的代码 提示error bad signature fatal: index file corrupt 在项目有.git这同级打开Git Bash Here 输入 $ rm -f .git/index 出现 ssss@DESKTOP-ss ...
分类:
其他好文 时间:
2020-01-17 21:22:31
阅读次数:
92
下面代码报空指针 with `__all_dim__` as ( select * from ( select from_unixtime(unix_timestamp(`__bts__`) -1,'yyyy-MM-dd HH:mm:ss') as `__bts__` from ( select c ...
分类:
数据库 时间:
2020-01-16 14:12:34
阅读次数:
226