2020年2月27日

摘要: 安装npm install时,长时间停留在fetchMetadata: sill mapToRegistry uri http://registry.npmjs.org/whatwg-fetch处, 此处需要在对应的URL处下载一些文件,只要网络稳定,一般花不了多长时间 但是,最近两次操作都是长时间 阅读全文

posted @ 2020-02-27 00:34 wzhw2015 阅读(757) 评论(0) 推荐(0) 编辑

摘要: 一.简介GitHub是一个面向开源及私有软件项目的托管平台,因为只支持git 作为唯一的版本库格式进行托管,故名gitHub。 GitHub于2008年4月10日正式上线,除了git代码仓库托管及基本的 Web管理界面以外,还提供了订阅、讨论组、文本渲染、在线文件编辑器、协作图谱(报表)、代码片段分 阅读全文

posted @ 2020-02-27 00:29 wzhw2015 阅读(2527) 评论(0) 推荐(0) 编辑


2020年2月26日

摘要: 1.参照项目 Microsoft Internet Controls Microsoft HTML Object 2.sample Sub GetIEItem()Dim objIE As InternetExplorerSet objIE = CreateObject("Internetexplor 阅读全文

posted @ 2020-02-26 22:44 wzhw2015 阅读(553) 评论(0) 推荐(0) 编辑

摘要: Eclipse中->属性->Team->Git->Label Decorations 阅读全文

posted @ 2020-02-26 22:42 wzhw2015 阅读(350) 评论(0) 推荐(0) 编辑

摘要: \sqldeveloper\ide\bin\ide.conf 添加下面的 日语 AddVMOption -Duser.language=jaAddVMOption -Duser.country=JP 英文 AddVMOption -Duser.language=en AddVMOption -Dus 阅读全文

posted @ 2020-02-26 22:41 wzhw2015 阅读(800) 评论(0) 推荐(0) 编辑

摘要: Public Sub FileToFileUpdate(ByVal fileName As String, ByVal strFrm As String, ByVal strTo As String)Dim newFileName As StringnewFileName = fileName & 阅读全文

posted @ 2020-02-26 22:40 wzhw2015 阅读(153) 评论(0) 推荐(0) 编辑

摘要: 1.读入UTF-8文件 Dim value As String Dim vLines As Variant Call ReadCsvUTF_8(vFile.Path, value) vLines = Split(value, vbCrLf) For i = 0 To UBound(vLines) . 阅读全文

posted @ 2020-02-26 22:38 wzhw2015 阅读(2040) 评论(0) 推荐(0) 编辑

摘要: 1.item1升序,item2升序,item3(存在NULL项目,NULL项目排在后面)升序 Collections.sort(list, Comparator.comparing(Bean::getItem1) .thenComparing(Bean::getItem2) .thenCompari 阅读全文

posted @ 2020-02-26 22:36 wzhw2015 阅读(161) 评论(0) 推荐(0) 编辑

摘要: Map<String, List<Bean>> orderMap = list.stream().collect(Collectors.groupingBy(Bean::getItem1, LinkedHashMap::new, Collectors.toCollection(ArrayList:: 阅读全文

posted @ 2020-02-26 22:32 wzhw2015 阅读(364) 评论(0) 推荐(0) 编辑

摘要: 1.新创建一个对象 long startTimeA = System.currentTimeMillis(); StringBuilder sb = null; for (int i = 1; i <= 10000000; i++) { sb = new StringBuilder(); sb.ap 阅读全文

posted @ 2020-02-26 22:30 wzhw2015 阅读(110) 评论(0) 推荐(0) 编辑


Copyright © 2024 wzhw2015
Powered by .NET 8.0 on Kubernetes