会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
天行健风行云
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
下一页
2017年12月11日
nginx_rtmp
摘要: rtmp { server { listen 1935; chunk_size 4096; max_connections 100; #音视频流上传和播放地址都是 rtmp://你的IP/live/streamName #streamName自己是自定义的。 application li...
阅读全文
posted @ 2017-12-11 12:52 天行健风行云
阅读(200)
评论(0)
推荐(0)
2017年12月9日
初识机器学习
摘要:
阅读全文
posted @ 2017-12-09 17:35 天行健风行云
阅读(148)
评论(0)
推荐(0)
2017年12月4日
nginx
摘要: #user nobody; user nginx nginx; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid
阅读全文
posted @ 2017-12-04 17:32 天行健风行云
阅读(255)
评论(0)
推荐(0)
2017年11月27日
pip
摘要: linux下安装pip
阅读全文
posted @ 2017-11-27 15:50 天行健风行云
阅读(113)
评论(0)
推荐(0)
python语音提示
摘要: #coding:utf8 import win32com.client speaker = win32com.client.Dispatch("SAPI.SpVoice") while True: message=input("请输入内容:") speaker.Speak(message)
阅读全文
posted @ 2017-11-27 13:12 天行健风行云
阅读(427)
评论(0)
推荐(0)
2017年11月23日
apache traffic server安装
摘要: 1 wget http://mirrors.hust.edu.cn/apache/trafficserver/trafficserver-7.1.1.tar.bz2 2 tar -jxvf trafficserver-7.1.1.tar.bz2 3 ./configure --prefix=/usr
阅读全文
posted @ 2017-11-23 09:27 天行健风行云
阅读(1056)
评论(0)
推荐(0)
2017年11月21日
lua基础(2)
摘要: 错误处理: local function add(a,b) assert(type(a) == "number", "a 不是一个数字") assert(type(b) == "number", "b 不是一个数字") return a+b end add(10) #如果正确执行,不做任何操作,否则
阅读全文
posted @ 2017-11-21 15:16 天行健风行云
阅读(170)
评论(0)
推荐(0)
2017年11月15日
基础
摘要: nil 相当于python的null boolean 布尔值 number 表示双精度类型的实浮点数 string 字符串由一对双引号或单引号来表示 使用#str返回字符串长度 function 由 C 或 Lua 编写的函数 thread 表示执行的独立线路,用于执行协同程序 table Lua
阅读全文
posted @ 2017-11-15 11:55 天行健风行云
阅读(127)
评论(0)
推荐(0)
2017年10月27日
memcache和redis区别
摘要: 这两年 Redis火得可以,Redis也常常被当作 Memcached的挑战者被提到桌面上来。关于Redis与Memcached的比较更是比比皆是。然而,Redis真的在功能、性能以及内存使用效率上都超越了Memcached吗? 没有必要过于关注性能,因为二者的性能都已经足够高了。由于Redis只使
阅读全文
posted @ 2017-10-27 20:23 天行健风行云
阅读(125)
评论(0)
推荐(0)
2017年10月26日
Python操作redis
摘要: redis是一个key-value存储系统。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted set --有序集合)和hash(哈希类型)。这些数据类型都支持push/pop、add/remove及取交
阅读全文
posted @ 2017-10-26 16:21 天行健风行云
阅读(149)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
下一页
公告