js是单线程脚本语言,开发中了解代码执行顺序就显得格外重要,代码从上往下执行过程中 如果所有都是同步任务,将会造成严重的性能问题。 异步分为宏任务和微任务 宏任务(MacroTask) script全部代码、setTimeout、setInterval、setImmediate(浏览器暂时不支持,只 ...
分类:
其他好文 时间:
2020-07-03 15:13:44
阅读次数:
70
`macro MultiLineComment() { hwnd = GetCurrentWnd() selection = GetWndSel(hwnd) LnFirst = GetWndSelLnFirst(hwnd) //取首行行号 LnLast = GetWndSelLnLast(hwnd) ...
分类:
其他好文 时间:
2020-06-29 18:50:06
阅读次数:
94
hive2启动-hive --service hiveserver2 &-service mysqld start- beeline -u jdbc:hive2://localhost:10000配置依赖-hive-jdbc 对应hive版本: 2.1.1-hive-common 对应hive版本:... ...
分类:
数据库 时间:
2020-06-26 19:57:06
阅读次数:
53
1.F1值优化 https://www.jianshu.com/p/51debab91824 from functools import partial import numpy as np import scipy as sp from sklearn.metrics import f1_scor ...
分类:
系统相关 时间:
2020-06-14 18:25:28
阅读次数:
156
由于实验室需要,今天重新安装了一下VC6,结果在安装VC6LineNumberAddin是出现了一些问题。 安装这个插件的目的是可以在编写代码时候,自动显示行号。。。。。唉,用习惯了VS2010,对自动显示行号早就习以为常了。。。。。 最让人讨厌的就是Unable to register this ...
分类:
其他好文 时间:
2020-06-11 20:03:42
阅读次数:
86
mongodb中如果使用两个$or查询,如下方式是错误的 { $or : [{ "creatorId" : 1888 }, { "workerId" : 1888 }, { "guardianId" : 1888 }] ,$or:[{jobName: "19100901"},{jobAreaName ...
分类:
其他好文 时间:
2020-06-11 16:33:53
阅读次数:
61
我们知道:在浏览器环境中,常见的 macro task 有 setTimeout、MessageChannel、postMessage、setImmediate。而常见的 micro task 有 MutationObsever 和 Promise.then。 Vue中对于 macro task 的 ...
分类:
其他好文 时间:
2020-06-11 13:34:38
阅读次数:
70
step1:搭建confluence插件框架,使用dos命令atlas-create-confluence-plugin创建代码架构。 step2.进入myConfluenceMacro目录,执行dos atlas-run step3:浏览器访问:http://localhost:1990/conf ...
分类:
系统相关 时间:
2020-06-05 12:53:07
阅读次数:
99
新建文件,粘贴以下代码 macro MultiLineComment() { hwnd = GetCurrentWnd() selection = GetWndSel(hwnd) LnFirst = GetWndSelLnFirst(hwnd) //取首行行号 LnLast = GetWndSelL ...
分类:
其他好文 时间:
2020-06-02 19:05:51
阅读次数:
103
文本编辑器的取舍 UltraEdit 身边用它的同事都叫它UE,2009年在山西太原实习那会儿,写的实习周报其中有一篇就是写的学习了使用UE的列块编辑模式及Macro录制功能。 当年用UE的最关键需求如下: Ctrl+F查找的时候,可以“列出包含字符串的行”,并可以进一步的进行剪贴板操作(如下图) ... ...
分类:
其他好文 时间:
2020-06-01 13:59:26
阅读次数:
59