├── .gitignore ├── LICENSE ├── README.md ├── package.json └── ppts ├── Hybrid App下监控与极限优化-Qcon.pdf ├── 全栈之下,优化之上.pdf ├── 大前端优化之路-StuQ.pdf ├── 夯实移动Web优化基础知识-StuQ.pdf ├── 移动Web优化之道-StuQ.pdf ├── 移动娱乐直播下监控与极限优化-ModernWeb.pdf └── 移动直播技术的极限优化与高效研发-开源中国.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | # Build and Release Folders 2 | bin/ 3 | bin-debug/ 4 | bin-release/ 5 | node_modules 6 | 7 | # Other files and folders 8 | .settings/ 9 | .DS_Store 10 | 11 | # Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` 12 | # should NOT be excluded as they contain compiler settings and other important 13 | # information for Eclipse / Flash Builder. 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 河伯 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | 刘恒兵(河伯),腾讯前端技术专家,IVWEB负责人,Qcon、StuQ讲师、腾讯云布道师。现腾讯互动视频业务前端TeamLeader,互动视频、NOW直播Web负责人,负责互动视频前端整体架构设计和开发。多年Web & H5移动开发经验,对移动监控和优化有深入研究,同时推动组件生态,致力于打造高复用、高效率的全栈开发体系。 4 | 5 | # PPTS 6 | 7 | 1. [Hybrid App下监控与极限优化](ppts/Hybrid%20App%E4%B8%8B%E7%9B%91%E6%8E%A7%E4%B8%8E%E6%9E%81%E9%99%90%E4%BC%98%E5%8C%96-Qcon.pdf) For [Qcon](http://2015.qconshanghai.com/speakers/201931) By [河伯](https://github.com/herbertliu) 8 | 2. [移动Web优化之道](ppts/移动Web优化之道-StuQ.pdf) For [StuQ](http://www.stuq.org/course/lecturers) By [河伯](https://github.com/herbertliu) 9 | 3. [大前端优化之路](ppts/大前端优化之路-StuQ.pdf) For [StuQ](http://www.stuq.org/course/lecturers) By [河伯](https://github.com/herbertliu) 10 | 4. [夯实移动Web优化基础知识](ppts/夯实移动Web优化基础知识-StuQ.pdf) For [StuQ](http://www.stuq.org/course/lecturers) By [河伯](https://github.com/herbertliu) 11 | 5. [移動娛樂直播下監控與極限優化](ppts/移动娱乐直播下监控与极限优化-ModernWeb.pdf) For [台湾Modern Web大会](http://modernweb.tw/speaker.html#s1036) By [河伯](https://github.com/herbertliu) 12 | 6. [移动直播技术的极限优化与高效研发](ppts/移动直播技术的极限优化与高效研发-开源中国.pdf) For [开源中国] By [河伯](https://github.com/herbertliu) 13 | 7. [全栈之下,优化之上](ppts/全栈之下,优化之上.pdf) For [StuQ](http://www.stuq.org/course/lecturers) By [河伯](https://github.com/herbertliu) 14 | 15 | 16 | 17 | 18 | 诚邀大家一起贡献,欢迎 [Fork](https://github.com/herbertliu/sharing/fork) & [Pull Request](https://github.com/herbertliu/sharing/pulls) & [Issue](https://github.com/herbertliu/sharing/issues) 19 | 20 | ## Contributors 21 | 22 | + [herbertliu](https://github.com/herbertliu) 23 | 24 | 25 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sharing", 3 | "version": "0.1.0", 4 | "node_version": "*", 5 | "description": "ppt by herbertliu", 6 | "author": "herbertliu (https://github.com/herbertliu)", 7 | "contributors": [ 8 | ], 9 | "license": "MIT", 10 | "repository": { 11 | }, 12 | "devDependencies": { 13 | "commitizen": "^2.3.0", 14 | "validate-commit-msg": "^2.11.1", 15 | "conventional-changelog-cli": "^1.2.0", 16 | "husky": "^0.13.1" 17 | }, 18 | "scripts": { 19 | "commitmsg": "validate-commit-msg", 20 | "commit": "git-cz ", 21 | "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0" 22 | } 23 | } -------------------------------------------------------------------------------- /ppts/Hybrid App下监控与极限优化-Qcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertliu/sharing/176eef9e725014d9dd59bbc4ad06448cd263bd23/ppts/Hybrid App下监控与极限优化-Qcon.pdf -------------------------------------------------------------------------------- /ppts/全栈之下,优化之上.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertliu/sharing/176eef9e725014d9dd59bbc4ad06448cd263bd23/ppts/全栈之下,优化之上.pdf -------------------------------------------------------------------------------- /ppts/大前端优化之路-StuQ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertliu/sharing/176eef9e725014d9dd59bbc4ad06448cd263bd23/ppts/大前端优化之路-StuQ.pdf -------------------------------------------------------------------------------- /ppts/夯实移动Web优化基础知识-StuQ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertliu/sharing/176eef9e725014d9dd59bbc4ad06448cd263bd23/ppts/夯实移动Web优化基础知识-StuQ.pdf -------------------------------------------------------------------------------- /ppts/移动Web优化之道-StuQ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertliu/sharing/176eef9e725014d9dd59bbc4ad06448cd263bd23/ppts/移动Web优化之道-StuQ.pdf -------------------------------------------------------------------------------- /ppts/移动娱乐直播下监控与极限优化-ModernWeb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertliu/sharing/176eef9e725014d9dd59bbc4ad06448cd263bd23/ppts/移动娱乐直播下监控与极限优化-ModernWeb.pdf -------------------------------------------------------------------------------- /ppts/移动直播技术的极限优化与高效研发-开源中国.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertliu/sharing/176eef9e725014d9dd59bbc4ad06448cd263bd23/ppts/移动直播技术的极限优化与高效研发-开源中国.pdf --------------------------------------------------------------------------------