上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 106 下一页
摘要: 目录结构: app.py # -*- coding: utf-8 -*- # __author: ward # data: 2018/12/21 # @File: app from flask import Flask, request, render_template, send_file, js 阅读全文
posted @ 2018-12-21 20:44 小学弟- 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 解密 加密 阅读全文
posted @ 2018-12-21 18:53 小学弟- 阅读(448) 评论(0) 推荐(0) 编辑
摘要: Websocket原理 一、websocket与http WebSocket是HTML5出的东西(协议),也就是说HTTP协议没有变化,或者说没关系,但HTTP是不支持持久连接的(长连接,循环连接的不算) 首先HTTP有 1.1 和 1.0 之说,也就是所谓的 keep-alive ,把多个HTTP 阅读全文
posted @ 2018-12-21 18:28 小学弟- 阅读(193) 评论(0) 推荐(0) 编辑
摘要: server# @File: ws from flask import Flask, request, render_template from geventwebsocket.handler import WebSocketHandler from geventwebsocket.websocket import WebSocket # 我用来做语法提示 from gevent.pywsg... 阅读全文
posted @ 2018-12-21 18:26 小学弟- 阅读(381) 评论(0) 推荐(0) 编辑
摘要: server # @File: 群聊 from flask import Flask, render_template, request from geventwebsocket.handler import WebSocketHandler from gevent.pywsgi import WSGIServer from geventwebsocket.websocket import... 阅读全文
posted @ 2018-12-21 17:57 小学弟- 阅读(254) 评论(0) 推荐(0) 编辑
摘要: # server- # pip install geventwebsocket# pip install flask from flask import Flask, render_template, request from geventwebsocket.handler import WebSocketHandler from gevent.pywsgi import WSGIServer... 阅读全文
posted @ 2018-12-21 17:24 小学弟- 阅读(538) 评论(0) 推荐(0) 编辑
摘要: 1. Linux-(C/C++)动态链接库生成以及使用(libxxx.so) 2. C++文件如何在linux下生成动态库So,以及如何使用这个动态库 3. c++ 发布动态.so 简记1. 编译生成so库 g++ src.cpp -fPIC -shared -o libxxx.so //使用源文件 阅读全文
posted @ 2018-12-21 11:04 小学弟- 阅读(9623) 评论(0) 推荐(0) 编辑
摘要: import math def is_prime_1(n): if n n: return True if n % i == 0: return False def is_prime_4(n): if n <= 1: return False if n == 2: r... 阅读全文
posted @ 2018-12-20 21:09 小学弟- 阅读(1346) 评论(0) 推荐(0) 编辑
摘要: centos7上使用locate命令 小贴士:在centOS7以上的系统中使用“locate”文件查找命令,发现该命令不可用。 检查了下,原来是centos7默认没有安装该命令,在联网状态运行“yum install mlocate”命令即可安装"locate"命令。 安装完之后运行“locate 阅读全文
posted @ 2018-12-18 20:14 小学弟- 阅读(394) 评论(0) 推荐(0) 编辑
摘要: centos7安装docker 1、查看linux发行版,内核 [root@docker~]# cat /etc/redhat-release #查看版本号 CentOS Linux release 7.1.1503 (Core) [root@docker ~]# uname -r #查看Linux 阅读全文
posted @ 2018-12-18 20:07 小学弟- 阅读(136) 评论(0) 推荐(0) 编辑
上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 106 下一页