From 83a7c91bdff336b9441e3f025f494de09993e1cd Mon Sep 17 00:00:00 2001 From: pengshiyu <1940607002@qq.com> Date: Fri, 31 Dec 2021 10:03:42 +0800 Subject: [PATCH] fix --- _sidebar.md | 14 ++++++++++++++ doc/c.md | 1 + doc/csharp.md | 1 + doc/html.md | 7 ++++++- doc/java.md | 4 +++- doc/javascript.md | 20 ++++++++++++-------- doc/mysql.md | 1 + doc/neo4j.md | 5 +++++ doc/python.md | 11 ++++++++++- doc/redis.md | 5 +++++ doc/ruby.md | 1 + doc/visual-basic.md | 1 + 12 files changed, 60 insertions(+), 11 deletions(-) create mode 100644 doc/c.md create mode 100644 doc/csharp.md create mode 100644 doc/mysql.md create mode 100644 doc/neo4j.md create mode 100644 doc/redis.md create mode 100644 doc/ruby.md create mode 100644 doc/visual-basic.md diff --git a/_sidebar.md b/_sidebar.md index 52c9761..dd34011 100644 --- a/_sidebar.md +++ b/_sidebar.md @@ -1,10 +1,24 @@ - 前端 + - [Html](doc/html.md) - [Javascript](doc/javascript.md) - [Css](doc/css.md) - [Canvas](doc/canvas.md) + - 后端 + - [Python](doc/python.md) - [Java](doc/java.md) - [PHP](doc/php.md) + - [C#](doc/csharp.md) + - [Visual Basic](doc/visual-basic.md) + - [C 语言](doc/c.md) + - [Ruby](doc/ruby.md) + +- 数据库 + + - [MySQL](doc/mysql.md) + - [Neo4j](doc/neo4j.md) + - [Redis](doc/redis.md) + - [其他](doc/index.md) diff --git a/doc/c.md b/doc/c.md new file mode 100644 index 0000000..4b8b8d4 --- /dev/null +++ b/doc/c.md @@ -0,0 +1 @@ +# C 语言 diff --git a/doc/csharp.md b/doc/csharp.md new file mode 100644 index 0000000..d03b881 --- /dev/null +++ b/doc/csharp.md @@ -0,0 +1 @@ +# C# \ No newline at end of file diff --git a/doc/html.md b/doc/html.md index 89f5fb6..deaacbc 100644 --- a/doc/html.md +++ b/doc/html.md @@ -6,4 +6,9 @@ [w3school](https://www.w3school.com.cn/) -[我要自学网-WEB前端开发视频教程](http://www.51zxw.net/list.aspx?cid=393) \ No newline at end of file +[我要自学网-WEB前端开发视频教程](http://www.51zxw.net/list.aspx?cid=393) + +## 工具 + +[Emmet](https://emmet.io/): the essential toolkit for web-developers +- [前端开发必备!Emmet使用手册](https://www.w3cplus.com/tools/emmet-cheat-sheet.html) \ No newline at end of file diff --git a/doc/java.md b/doc/java.md index 245e7c5..b1e7610 100644 --- a/doc/java.md +++ b/doc/java.md @@ -14,4 +14,6 @@ [JavaFX的几个新特性,让Swing彻底过时](https://zhuanlan.zhihu.com/p/28540820) -[JavaFX Material Design Library](https://github.com/sshahine/JFoenix) \ No newline at end of file +[JavaFX Material Design Library](https://github.com/sshahine/JFoenix) + +[maven+IDEA+JavaFX+JFoenix](https://www.jianshu.com/p/a01a0e027f09) \ No newline at end of file diff --git a/doc/javascript.md b/doc/javascript.md index 82235d0..d64faac 100644 --- a/doc/javascript.md +++ b/doc/javascript.md @@ -16,11 +16,8 @@ [ECMAScript 6 入门 Promise 对象](https://es6.ruanyifeng.com/#docs/promise) - - [https://www.ecma-international.org/](https://www.ecma-international.org/) - ## 第三方库 [vue.js](https://cn.vuejs.org/v2/guide/) @@ -37,15 +34,22 @@ [xijs](http://h5.dooring.cn/xijs/): 一款面向复杂业务场景的 javascript 工具库 [jQuery](https://jquery.com/) + - [jQuery 教程](https://www.w3school.com.cn/jquery/index.asp): 极大地简化了 JavaScript 编程 -- [Jquery EasyUI](https://www.jeasyui.net/): 帮助web开发者更轻松的打造出功能丰富并且美观的UI界面 -- [bxslider](https://bxslider.com/): Add a slider to any webpage. --[jQuery插件库](https://www.jq22.com/): 收集最全最新最好的jQuery插件 -- [jQuery jsonp跨域请求](https://www.cnblogs.com/chiangchou/p/jsonp.html) -[jquery和vue对比](https://www.cnblogs.com/MR-YY/p/6898464.html) +- [Jquery EasyUI](https://www.jeasyui.net/): 帮助 web 开发者更轻松的打造出功能丰富并且美观的 UI 界面 +- [bxslider](https://bxslider.com/): Add a slider to any webpage. -[jQuery 插件库](https://www.jq22.com/): 收集最全最新最好的 jQuery 插件 +- [jQuery jsonp 跨域请求](https://www.cnblogs.com/chiangchou/p/jsonp.html) +- [jquery 和 vue 对比](https://www.cnblogs.com/MR-YY/p/6898464.html) +- [jQuery 之家 ](http://www.htmleaf.com/): 免费提供各种前端开发所需要的 JQUERY、HTML5、CSS3 等优质插件素材 [Apache ECharts](https://echarts.apache.org/zh/index.html): 一个基于 JavaScript 的开源可视化图表库 +- [ECharts 示例](https://echarts.apache.org/examples/zh/index.html) + +[UIkit](https://getuikit.com/): A lightweight and modular front-end framework for developing fast and powerful web interfaces. + ## Node.js https://npm.devtool.tech/ + +[ionic 教程](https://www.runoob.com/ionic/ionic-tutorial.html): 一个强大的 HTML5 应用程序开发框架(HTML5 Hybrid Mobile App Framework ) diff --git a/doc/mysql.md b/doc/mysql.md new file mode 100644 index 0000000..907beb3 --- /dev/null +++ b/doc/mysql.md @@ -0,0 +1 @@ +# MySQL diff --git a/doc/neo4j.md b/doc/neo4j.md new file mode 100644 index 0000000..2f316a1 --- /dev/null +++ b/doc/neo4j.md @@ -0,0 +1,5 @@ +# Neo4j + +[neo4j](https://neo4j.com/): The Graph DataBase + +[关于neo4j查询多深度关系节点](https://blog.csdn.net/u013946356/article/details/81739079) \ No newline at end of file diff --git a/doc/python.md b/doc/python.md index d3bc6de..aa7f977 100644 --- a/doc/python.md +++ b/doc/python.md @@ -19,6 +19,7 @@ [用 Python 做自然语言处理必知的八个工具](https://mp.weixin.qq.com/s/UUgXV20ojMnd77aMQgiFPw) [推荐系统 RecommenderSystems](https://github.com/apachecn/RecommenderSystems): 推荐系统基本知识,相关算法以及实现 + ## 第三方库 [NumPy 中文](https://www.numpy.org.cn/) | [NumPys](http://www.numpy.org/) @@ -53,4 +54,12 @@ Celery [virtualenvwrapper](https://virtualenvwrapper.readthedocs.io/) -[supervisord](http://www.supervisord.org/index.html) \ No newline at end of file +[supervisord](http://www.supervisord.org/index.html) + +## 爬虫 + +[云立方](https://www.yunlifang.cn/): 动态 VPS + +[快代理](https://www.kuaidaili.com/free/intr/) + +[六六代理](http://www.66ip.cn/) \ No newline at end of file diff --git a/doc/redis.md b/doc/redis.md new file mode 100644 index 0000000..d8091b7 --- /dev/null +++ b/doc/redis.md @@ -0,0 +1,5 @@ +# Redis + +[Redis](https://redis.io/): an open source (BSD licensed), in-memory data structure store, used as a database, cache, and message broker + +[RDM.dev](https://rdm.dev/): Cross-platform open source GUI for Redis diff --git a/doc/ruby.md b/doc/ruby.md new file mode 100644 index 0000000..99ea45d --- /dev/null +++ b/doc/ruby.md @@ -0,0 +1 @@ +# Ruby diff --git a/doc/visual-basic.md b/doc/visual-basic.md new file mode 100644 index 0000000..3544191 --- /dev/null +++ b/doc/visual-basic.md @@ -0,0 +1 @@ +# Visual Basic -- GitLab