欢迎关注我的推特
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 71 下一页
摘要: 功能 IM消息系统 一对一 高清音视频实时通信,可无缝切换P2P传输,节省服务器带宽 一对多互动直播 多对多在线会议 手机实时录屏传输 高度定制化 网络检测,动态码率与动态帧率,抗网络抖动,微信级效果 自适应智能回音消除 为物联网而生 性价比全网最高, 成本全网最低! 支持区块链集成! 兼容webr 阅读全文
posted @ 2018-02-07 11:56 服务号AwesomeAITools 阅读(3330) 评论(5) 推荐(0)
摘要: JSON转换库为 encoding/json 把对象转换为JSON的方法(函数)为 json.Marshal(),其函数原型如下 func Marshal(v interface{}) ([]byte, error) 也就是说,这个函数接收任意类型的数据 v,并转换为字节数组类型,返回值就是我们想要 阅读全文
posted @ 2018-02-07 11:53 服务号AwesomeAITools 阅读(850) 评论(0) 推荐(0)
摘要: https://github.com/danharper/hmac-examples 94 func generateSign(data, key []byte) string { 95 mac := hmac.New(sha1.New, key) 96 mac.Write(data) 97 exp 阅读全文
posted @ 2018-02-07 11:52 服务号AwesomeAITools 阅读(725) 评论(0) 推荐(0)
摘要: Download and install it: $ go get github.com/gin-gonic/gin Import it in your code: import "github.com/gin-gonic/gin" (Optional) Import net/http. This 阅读全文
posted @ 2018-02-07 11:50 服务号AwesomeAITools 阅读(336) 评论(0) 推荐(0)
摘要: https://blog.usejournal.com/top-6-web-frameworks-for-go-as-of-2017-23270e059c4b https://www.zhihu.com/question/27370112 之前学golang的时候,看到国人写的beego框架,我就通 阅读全文
posted @ 2018-02-07 11:47 服务号AwesomeAITools 阅读(502) 评论(0) 推荐(0)
摘要: get download and install packages and dependencies install = compile and install packages and dependencies run compile and run Go program build compil 阅读全文
posted @ 2018-02-05 19:37 服务号AwesomeAITools 阅读(201) 评论(0) 推荐(0)
摘要: The library offers support for the Real-time Transport Protocol (RTP), The library uses the JThread library to automatically poll 轮询 for incoming data 阅读全文
posted @ 2018-02-05 11:08 服务号AwesomeAITools 阅读(242) 评论(0) 推荐(0)
摘要: https://github.com/koajs/koa https://github.com/demopark/koa-docs-Zh-CN ctx.response.type = 'json'; app.use()用来加载中间件 app.use(ctx => { ctx.body = 'Hell 阅读全文
posted @ 2018-02-02 14:07 服务号AwesomeAITools 阅读(433) 评论(0) 推荐(0)
摘要: 作用是让临时文件和中间文件都不提交到代码库中 工程相关的.gitignore 放在根目录 常用 的有: Android.gitignore C++.gitignore C.gitignore CMake.gitignore CodeIgniter.gitignore Laravel.gitignor 阅读全文
posted @ 2018-02-02 10:23 服务号AwesomeAITools 阅读(1252) 评论(0) 推荐(0)
摘要: JavaScript的函数不但是“头等公民”,而且可以像变量一样使用,具有非常强大的抽象能力。 定义函数的方式如下: function abs(x) { if (x >= 0) { return x; } else { return -x; } } 如果没有return语句,函数执行完毕后也会返回结 阅读全文
posted @ 2018-02-02 09:40 服务号AwesomeAITools 阅读(220) 评论(0) 推荐(0)
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 71 下一页