0、docker安装fastdfs 1、搜索镜像 docker search fastdfs 2、拉取合适镜像 选择合适tag:https://hub.docker.com/ docker pull delron/fastdfs 这个镜像包含了fastdfs以及nginx,降低自我安装学习时间 do ...
分类:
其他好文 时间:
2020-01-29 10:59:07
阅读次数:
70
"java从心"正式更名"KEN DO EVERTHING"。Ken(Can) Do Everything,无所不能 Believe youseft then you can do everthing ! 我也是刚踏入python的大门,所以只能给点小建议,而不是指导(暂时只接触了python爬虫) ...
分类:
编程语言 时间:
2020-01-28 21:17:37
阅读次数:
76
Hey Guys I am back to my path of training, I am currently studying at UNSW and i am preparing to do ACM-ICPC in my uni life. I will be recording my tr ...
分类:
其他好文 时间:
2020-01-28 21:06:35
阅读次数:
69
#include<cstdio> #include<cmath> #include<cstring> #include<cstring> #include<iostream> #include<queue> using namespace std; const int N=205; const do ...
分类:
其他好文 时间:
2020-01-27 15:42:59
阅读次数:
49
源程序: #include <iostream> #include <string> using namespace std; int main() { char ch; int sum = 0,count = 0,x; cout<<"请输入整数(按Ctrl+Z退出)"<<endl; do { wh ...
分类:
其他好文 时间:
2020-01-27 15:30:49
阅读次数:
64
//spfa 判断正环 #include<iostream> #include<queue> #include<cstring> using namespace std; const int N=1e4; const int INF=2e9; int h[N],to[N],ne[N],idx; do ...
分类:
其他好文 时间:
2020-01-27 12:31:58
阅读次数:
72
[需要python3.0以上] 首先安装Mysql2docx,如下: pip install Mysql2docx 然后打开pycharm,新建test.py # python from Mysql2docx import Mysql2docx m=Mysql2docx() m.do('127.0. ...
分类:
数据库 时间:
2020-01-26 19:17:02
阅读次数:
157
class MyClass: def __init__(self): pass def func1(self): # do something print('a') #for example self.common_func() def func2(self): # do something sel ...
分类:
编程语言 时间:
2020-01-26 17:41:09
阅读次数:
85
//生成一个某文本中不包含的随机字符串 private static string GetRandomStr(string allStr) { int number; string resStr; do { resStr = string.Empty; Random random = new Ran ...
1、什么是Jquery: (1)JQ图标分析: J:代表JS Query:查询 write less,do more:写更少的代码,做更多的事情(对HTML文档的遍历和操作、事件处理、动画、Ajax变得更加简单) (2)概念: jQuery本质上是一个快速、简洁的JavaScript框架。 2、新建 ...
分类:
Web程序 时间:
2020-01-25 11:44:37
阅读次数:
94