随笔分类 -  工具

摘要:前言 我是一个重度流程图工具依赖者,从接到产品需求规划整个产品研发流程的架构,到后端模块的代码架构,我习惯于用流程图工具来提升工作效率。 当然,它们也的确起到了至关重要的作用,让我清楚的知道每个环节不用再为思考做什么?怎么做?而浪费太多时间。 提起流程图工具,大多数同学会首先想到的是 Microso 阅读全文
posted @ 2021-06-09 10:32 kakaisgood 阅读(5541) 评论(0) 推荐(0) 编辑
摘要:https://archive.apache.org/dist/maven/maven-3/3.6.1/binaries/ 阅读全文
posted @ 2021-05-21 11:53 kakaisgood 阅读(19) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/fanghl/p/11400412.html mysqld --initializemysqld -installnet start mysql 命令启动服务器。关闭服务器用net stop mysqlmysql -u root -p 在powersh 阅读全文
posted @ 2021-05-18 12:08 kakaisgood 阅读(2329) 评论(0) 推荐(0) 编辑
摘要:https://www.shuxuele.com/binary-decimal-hexadecimal-converter.html 阅读全文
posted @ 2021-05-04 14:57 kakaisgood 阅读(190) 评论(0) 推荐(0) 编辑
摘要:VSCode has an built-in function to lowercase, uppercase and titlecase selected text. Select the text to transform. Use Ctrl + L to selected the whole 阅读全文
posted @ 2021-02-10 15:03 kakaisgood 阅读(48) 评论(0) 推荐(0) 编辑
摘要:作者:秦阳链接:https://www.zhihu.com/question/378783232/answer/1150278993来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 01:硕鼠 —— 个人最喜欢的视频下载工具 适用群体:想在网上下载视频的你 推荐指数:★ 阅读全文
posted @ 2020-04-19 21:23 kakaisgood 阅读(173) 评论(0) 推荐(0) 编辑
摘要:For CamelCase / WikiCase : SEARCH = (?-is)([a-zA-Z])([a-zA-Z]+)|(\b|_)[a-zA-Z](\b|_)|[^a-zA-Z\r\n]+ and REPLACE = \u\1\L\2 BEFORE Hi guys : o’nEil, an 阅读全文
posted @ 2020-02-18 21:23 kakaisgood 阅读(152) 评论(0) 推荐(0) 编辑
摘要:Index Data Search&InvestigateAdd KnowledgeMonitor&AlertReport&Analyze--3 basic componentsIndexer Search HeadForwarder-- ./splunk start./splunk stop./s 阅读全文
posted @ 2020-01-20 14:23 kakaisgood 阅读(641) 评论(0) 推荐(0) 编辑
摘要:https://www.jetbrains.com/help/idea/comparing-files-and-folders.html Compare folders Select the folders you want to compare in the Project tool window 阅读全文
posted @ 2020-01-10 12:58 kakaisgood 阅读(166) 评论(0) 推荐(0) 编辑
摘要:ext: (ppt) 阅读全文
posted @ 2019-11-19 12:04 kakaisgood 阅读(174) 评论(0) 推荐(0) 编辑
摘要:点击Tools--Export User Objects 这种方式可以导出当前用户拥有的所有对象,包括表、视图、触发器、同义词等等,对于表,只能导出表结构(建表语句),不能导出数据, 选中要导出的对象,设置好导出的路径和各个参数后,点击Export就OK 阅读全文
posted @ 2019-07-11 16:26 kakaisgood 阅读(1092) 评论(0) 推荐(0) 编辑
摘要:step1 to sort and remove space. Since Notepad++ Version 6 you can use this regex in the search and replace dialogue: and replace with nothing. This le 阅读全文
posted @ 2019-05-31 17:05 kakaisgood 阅读(219) 评论(0) 推荐(0) 编辑
摘要:Oracle SQL Developer 设置自动提示(完成设置) 阅读全文
posted @ 2019-04-26 11:13 kakaisgood 阅读(3026) 评论(1) 推荐(0) 编辑
摘要:windows下的点一下回车,效果是:回车换行,就是\r\n unix系统下的回车一下就是一个\n 阅读全文
posted @ 2019-03-11 12:25 kakaisgood 阅读(413) 评论(0) 推荐(0) 编辑
摘要:Press Ctrl+H (Replace) Select Extended from SearchMode Put \r\n\r\n in Find What Put \r\n in ReplaceWith Click on Replace All 阅读全文
posted @ 2019-03-04 17:50 kakaisgood 阅读(205) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/clwydjgs/p/9390488.html 一、视图查看 Ctrl+F12 查看file,method结构图、类继承机构图 (不知道方法结构,Ctrl+F12一下,方法,参数,返回值,一清二楚的展现出来) Ctrl+shift+Alt+U 查看ma 阅读全文
posted @ 2018-08-30 11:33 kakaisgood 阅读(146) 评论(0) 推荐(0) 编辑
摘要:used iconv (Ubuntu GLIBC 2.23) 阅读全文
posted @ 2018-04-26 12:47 kakaisgood 阅读(252) 评论(0) 推荐(0) 编辑
摘要:Compare, sort, and delete duplicate lines in Notepad ++ Organize Lines: Since version 6.5.2 the app has a native functionality to draw lines Simply go 阅读全文
posted @ 2018-04-09 15:29 kakaisgood 阅读(215) 评论(0) 推荐(0) 编辑
摘要:Find What: ^(.*\r?\n)\1+ Replace with: (Nothing, leave empty) Check Regular Expression in the lower left Click Replace All 阅读全文
posted @ 2018-04-09 15:09 kakaisgood 阅读(333) 评论(0) 推荐(0) 编辑
摘要:作者:zecy链接:https://www.zhihu.com/question/37708379/answer/73181634来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 对于长文本还用鼠标操作挺有毅力的。既然在 vim 中都用正则表达式了,为什么不直接在 no 阅读全文
posted @ 2018-03-16 15:59 kakaisgood 阅读(1027) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示