Skip to content

Commit da98f08

Browse files
committed
update
1 parent 6dfa7c7 commit da98f08

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

EditorAndIDE学习之路.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@
8585
* xmlspy: <https://www.altova.com/xmlspy.html>
8686
* Bluefish: <http://bluefish.openoffice.nl/index.html>
8787
* codelite: <http://www.codelite.org/>
88-
* kite: <https://kite.com/>
8988
* kdevelop:<https://www.kdevelop.org/>
9089
* xcode: <https://developer.apple.com/xcode/>
9190
* QtCreator: <https://www.qt.io/qt-features-libraries-apis-tools-and-ide/#ide>

Excel学习之路.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Excel学习之路
2+
3+
## 书籍
4+
5+
* Excel 2019 Bible[EXCEL2019宝典(第10版)]: Michael Alexander,Dick Kusleika,Previously by John Walkenbach: 主力学习
6+
* Excel 2016 Power Programming with VBA[Excel 2016高级VBA编程宝典(第8版)]: Michael Alexander,Dick Kusleika: 主力学习
7+
* Excel 2016应用大全: 主力学习
8+
* Excel 2007 VBA办公范例应用: 内容老旧,阅读人数少,不适合学习
9+
* Excel 2010实用技巧集锦: 内容老旧,阅读人数少,不适合学习
10+
* Excel VBA实战技巧精粹: 评价不错
11+
* Excel 2010 VBA编程与实践: 已经有了《Excel 2013 VBA编程与实践》,但是后者找不到对应的电子版。前者评价还不错
12+
* Excel VBA程序开发自学宝典(第3版): 已经有了,但是后者找不到对应的电子版。前者评价还不错
13+
14+
## 函数
15+
16+
• All functions (alphabetical): <https://support.microsoft.com/en-us/office/excel-functions-alphabetical-b3944572-255d-4efb-bb96-c6d90033e188>
17+
• IFS function: <https://support.microsoft.com/en-us/office/ifs-function-36329a26-37b2-467c-972b-4a39bd951d45>
18+
• SWITCH function: <https://support.microsoft.com/en-us/office/switch-function-47ab33c0-28ce-4530-8a45-d532ec4aa25e>
19+
20+
## 小知识点
21+
22+
### 改变日期格式
23+
24+
```shell
25+
# 'Fri Mar 18 22:49:05 2022 +0800'->'20220318 22:49:05'
26+
# =MID(C1, 21,4)&TEXT(MONTH(MID(C1,5,3)&"-1"), "00")&MID(C1,9,2)&" "&MID(C1,12,8)
27+
# 如果有点时间格式不稳定,如'Fri Mar 8 22:49:05 2022 +0800',则先分列再处理
28+
```

J2EE学习之路.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,7 @@ Eclipse中`Update Project`,选择`Force Update of Snapshots/Releases`
568568
* 解决Maven报Plugin execution not covered by lifecycle configuration: <http://blog.csdn.net/xxd851116/article/details/25197373>
569569
* Maven编译jar出现:无法确定 T 的类型参数的异常的原因和处理方案: <http://www.cnblogs.com/peida/p/4218210.html>
570570
* Hosting a Maven repository on github: <https://stackoverflow.com/questions/14013644/hosting-a-maven-repository-on-github/14013645>
571+
* Working with the Apache Maven registry: <https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry>
571572
* 如何发布Maven依赖到中央仓库: <https://www.cnblogs.com/jiangxinnju/p/9903517.html>
572573
* Maven添加本地依赖: <http://blog.csdn.net/xwl617756974/article/details/7832882>
573574
* Maven常用插件: <http://iffiffj.iteye.com/blog/1661936>

0 commit comments

Comments
 (0)