├── push.lua └── README.md /push.lua: -------------------------------------------------------------------------------- 1 | print(os.execute('git add .')) 2 | print(os.execute('git commit -m "更新文档"')) 3 | print(os.execute('git push origin master')) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
7 | 8 | 每天坚持学习和分享直到我停止呼吸,大家来一起陪我共同见证吧。 9 | 10 | # 笔记 11 | 12 | - [Vue学习笔记](https://github.com/Wscats/vue-tutorial) 13 | 14 | - [Node学习笔记](https://github.com/Wscats/node-tutorial) 15 | 16 | - [React学习笔记](https://github.com/Wscats/react-tutorial) 17 | 18 | - [Angular学习笔记](https://github.com/Wscats/angular-tutorial) 19 | 20 | 21 | - [RequireJS学习笔记](https://github.com/Wscats/requirejs-demo) 22 | 23 | - [Webpack学习笔记](https://github.com/Wscats/webpack) 24 | 25 | - [Gulp学习笔记](https://github.com/Wscats/glup/blob/master/README.md) 26 | 27 | - [Python学习笔记](https://github.com/Wscats/python-tutorial) 28 | 29 | - [Egret引擎学习笔记](https://github.com/Wscats/egret) 30 | 31 | - [流处理,TCP和UDP,WebRTC和Blob学习笔记](https://github.com/Wscats/media-tutorial) 32 | 33 | 34 | 另外,模块化或者打包可以看我的 [RequireJS](https://github.com/Wscats/requirejs-demo),[Webpack](https://github.com/Wscats/webpack) 和 [Gulp](https://github.com/Wscats/glup/blob/master/README.md) 的笔记,后端我学习了 PHP 和 Node 之外,还花了点时间学习 [Python](https://github.com/Wscats/python-tutorial),游戏方面研究了点 [Egret引擎](https://github.com/Wscats/egret)。 35 | 36 | # 文章 37 | 38 | - [📝《切图仔面试宝典》](https://github.com/Wscats/CV) 39 | 40 | - [🎹用键盘8个键演奏一首蒲公英的约定送给自己或月亮代表我的心送给她](https://github.com/Wscats/piano) 41 | 42 | - [📊从零开始使用华为鸿蒙OpenHarmony开发游戏和表格渲染引擎](https://github.com/Wscats/openharmony-sheet) 43 | 44 | - [前端程序员经常忽视的一个JavaScript面试题](https://github.com/Wscats/articles/issues/85) 45 | 46 | - [我如何用前端技术得到XXOO网站的VIP](https://github.com/Wscats/articles/issues/62) 47 | 48 | - [我如何用最简单的前端技术揭示那些灰色产业背后的原理](https://github.com/Wscats/articles/issues/90) 49 | 50 | - [腾讯Omi框架和Omil使用文档](https://github.com/Wscats/omi-docs) 51 | 52 | - [iPhone X的适配方案](https://github.com/Wscats/iPhone-X) 53 | 54 | - [try catch引发的性能优化深度思考](https://github.com/Wscats/CV/issues/33) 55 | 56 | - [基于Vue3.0 Composition Api快速构建实战项目](https://github.com/Wscats/vue-cli) 57 | 58 | - [关于Vue,React,Preact和Omi等框架源码的解读](https://github.com/Wscats/virtual-dom) 59 | 60 | - [CSS的各种布局](https://github.com/Wscats/layout-demo) 61 | 62 | - [深入浅出Jest框架的实现原理](https://github.com/Wscats/jest-tutorial) 63 | 64 | - [从零开始实现一个依赖注入框架](https://github.com/Wscats/dependency-injection/blob/master/README.CN.md) 65 | 66 | - [大型前端项目如何实现UI可配置化](https://github.com/Wscats/CV/issues/36) 67 | 68 | - [腾讯文档给VSCode贡献的400多行核心代码都干了什么](https://github.com/Wscats/CV/issues/37) 69 | 70 | - [在腾讯这一年,坚守初心持续单纯 | 2021年终总结](https://github.com/Wscats/CV/issues/38) 71 | 72 | - [GitHub Actions自动发布Npm包和网站](https://github.com/Wscats/github-actions-tutorial) 73 | 74 | 这里只收录了我最近写的一些文章,更多详情可以看我的 [掘金](https://juejin.im/user/584c7f44ac502e0069275cd7),[思否](https://segmentfault.com/u/wscats) 和 [CSDN](https://blog.csdn.net/qq_27080247) 的归档文章。 75 | 76 | # 案例 77 | 78 | - [大型前端项目要怎么跟踪用户行为和分析函数调用链追踪方案](https://github.com/Wscats/performance-decorator) 79 | 80 | - [微信小游戏跳一跳辅助](https://github.com/Wscats/wechat-jump-game) 81 | 82 | - [编写React和Omi单文件组件的VSC语法高亮插件](https://github.com/Wscats/omi-snippets) 83 | 84 | - [6000万数据包和300万数据包在50M内存使用环境中求交集](https://github.com/Wscats/intersect) 85 | 86 | - [大厂面试题分享:如何让(a===1&&a===2&&a===3)的值为true?](https://github.com/Wscats/CV/issues/28) 87 | 88 | - [NodeJS实现《你画我猜》小游戏](https://github.com/Wscats/socket.io) 89 | 90 | - [使用PHP的CodeIgnitier框架编写新闻客户端](https://github.com/Wscats/cms) 91 | 92 | - [极大提高国人开发效率超实用的VSCode插件](https://juejin.cn/post/6901454172411920392) 93 | 94 | # 面试 95 | 96 | - [超硬核Web前端学霸笔记,学完就去找工作!](https://segmentfault.com/a/1190000040478093) 97 | 98 | - [36个工作中常用的JavaScript函数片段](https://github.com/Wscats/CV/issues/32) 99 | 100 | - [给自己点时间再记记这200条Git命令](https://github.com/Wscats/CV/issues/31) 101 | 102 | - [55个提高你CSS开发效率的必备片段](https://github.com/Wscats/CV/issues/29) 103 | 104 | - [66道前端算法面试题附思路分析助你查漏补缺](https://segmentfault.com/a/1190000040797373) 105 | 106 | - [华为鸿蒙HarmonyOS开发资料全面汇总](https://github.com/Wscats/awesome-harmony) 107 | 108 | - [174道JavaScript面试题,助你查漏补缺](https://segmentfault.com/a/1190000040444611) 109 | 110 | - [104道CSS面试题,助你查漏补缺](https://segmentfault.com/a/1190000040247622) 111 | 112 | - [12道MySQL常见的面试题](https://segmentfault.com/a/1190000022636122) 113 | 114 | - [一些常见必备的MySQL知识](https://segmentfault.com/a/1190000022468956) 115 | 116 | - [14道关于计算机网络的面试题,助你查漏补缺](https://segmentfault.com/a/1190000022350860) 117 | 118 | - [前端面试必备之十大经典排序算法](https://segmentfault.com/a/1190000010413296) 119 | 120 | - [30个极大提高开发效率的超级实用VSCode插件](https://github.com/Wscats/CV/issues/34) 121 | 122 | - [JavaScript小奥秘之如何提高扩展运算符的性能](https://segmentfault.com/a/1190000020309746) 123 | 124 | # 交流 125 | 126 | 如果文章和笔记能带您一丝帮助或者启发,请不要吝啬你的 Star 和 Fork,文章会同步持续更新,你的肯定是我前进的最大动力😁 127 | 128 | 129 | 130 | --------------------------------------------------------------------------------