上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 21 下一页
摘要: shell-dsr/updateVersionFlow.sh #!/usr/bin/bash # get current pwd pwd=$PWD # sync mock json for mc # . ./syncMockJson.sh declare -A versionDic versionD 阅读全文
posted @ 2023-02-14 16:06 箫笛 阅读(9) 评论(0) 推荐(0) 编辑
摘要: ~/.vim/my_configs.vim " Usefull setting set thesaurus+=~/js-functions.txt set thesaurus+=~/js-lodash.txt " Useful mappings " vnoremap <leader>. gv:wri 阅读全文
posted @ 2023-02-14 11:36 箫笛 阅读(21) 评论(0) 推荐(0) 编辑
摘要: ~/.bashrc # change cursor alias cl='echo -ne "\e[6 q"' alias cb='echo -ne "\e[2 q"' # set bash command line as vi mode # set -o vi # set CDPATH enviro 阅读全文
posted @ 2023-02-14 11:05 箫笛 阅读(30) 评论(0) 推荐(0) 编辑
摘要: Start run project when run script start-work.sh #!/usr/bin/bash # start work . ~/utils.sh # jump to work directory uiProject=/c/project/path/ if [ -d 阅读全文
posted @ 2023-02-13 15:30 箫笛 阅读(8) 评论(0) 推荐(0) 编辑
摘要: ** use grep command to find selected words ** `vim-grep/` - `plugin/` `grep.vim` ``` function! s:GrepOperator(type) let l:saved_unnamed_register = @@ 阅读全文
posted @ 2023-02-08 20:15 箫笛 阅读(18) 评论(0) 推荐(0) 编辑
摘要: # test.vim test.vim is to test vimscript, and as an sample for developing the vundle plugin. 开发并安装一个本地 vundle 插件 第一步:按照 vundle 插件要求的目录结构,创建插件的目录结构 vim 阅读全文
posted @ 2023-02-08 20:05 箫笛 阅读(113) 评论(0) 推荐(0) 编辑
摘要: ###1. Intro This plugin can help you quikly convert the nls copy to nls key, such as "this is a nls", can convert to below keys list as you wanto. "F_ 阅读全文
posted @ 2023-02-08 20:01 箫笛 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1. Introduction This is a simple tool for convert a long english sentence format to a nls key. 2. Install $ ./install.sh Open the git bash under the t 阅读全文
posted @ 2023-02-08 19:24 箫笛 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1. Chrome 扩展的结构组成 Chrome扩展的文件结构 - extension-smaple/ - manifest.json - service-worker.js - scripts/ - content-script.js - popup/ - popup.css - popup.js 阅读全文
posted @ 2023-01-30 19:15 箫笛 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 1. 引擎的类型 传统型NFA POSIX NFA DFA (不支持忽略优先量词,捕获组和回朔) Javascript测试代码: 首先测试是否是传统型NFA /** 如果匹配结果是nfa则为传统型NFA **/ const reg = /nfa|nfa not/; const matches = r 阅读全文
posted @ 2022-12-05 17:24 箫笛 阅读(48) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 21 下一页