上一页 1 2 3 4 5 6 7 8 9 10 ··· 37 下一页
摘要: 1、获取文件类型 [root@localhost ~]# filename="/root/data/aa.gz" [root@localhost ~]# echo ${filename##*.} gz [root@localhost ~]# filename="/root/data/aa.dat" 阅读全文
posted @ 2022-04-27 15:59 雷雨客 阅读(9) 评论(0) 推荐(0)
摘要: create or replace procedure mytest is i int; t int; temp int; goodsnum varchar(15); begin i := 1; --开始 t := 1000; --总数 temp = i + t; while i < temp lo 阅读全文
posted @ 2022-04-27 15:57 雷雨客 阅读(122) 评论(0) 推荐(0)
摘要: 新建Notepad++.reg,双击运行 Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell\NotePad++] @="Notepad++" "Icon"="D:\\software\\notepad7.6.4x64\\n 阅读全文
posted @ 2022-04-27 15:54 雷雨客 阅读(553) 评论(0) 推荐(0)
摘要: gitignore只能作用于没有被版本管理的文件,如果某些文件已经被纳入了版本管理中,则修改 .gitignore 是无效的。解决方法是先把本地缓存删除,然后再提交。 $ git rm -r --cached . $ git add . $ git commit -m"更新.gitignore" $ 阅读全文
posted @ 2022-04-25 15:43 雷雨客 阅读(460) 评论(0) 推荐(0)
摘要: 1、依次点击File->Settings->plugins,输入JUnitGenerator插件,点击install,安装完重启IDEA 2、找到File->Settings->Other Settings,找到Junit Generator(发现有两个Junit Generator,上面的是全部工 阅读全文
posted @ 2022-04-11 14:44 雷雨客 阅读(3466) 评论(0) 推荐(0)
摘要: 先贴出官网文档地址:http://fex.baidu.com/ueditor/ 前端部分 1、下载源码:https://github.com/fex-team/ueditor#ueditor,我使用的是ueditor-dev-1.4.3 2、解压后用VSCode打开,目录如下: 3、修改uedito 阅读全文
posted @ 2022-03-16 21:25 雷雨客 阅读(2424) 评论(0) 推荐(1)
摘要: 使多个div横着排的两种方法,一种是浮动float,一种是布局display 一、使用float 元素一旦浮动,脱离文档流(不占页面空间,后面未浮动元素会上前补位。 1、代码示例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8 阅读全文
posted @ 2022-01-14 10:40 雷雨客 阅读(2588) 评论(0) 推荐(0)
摘要: 1、两个div在一行排列 <div> <div class="fl">左</div> <div class="fr">右</div> </div> .fl {float: left;} .fr {float: right;} 2、设置版心,margin: 0 auto;上下外边距为0,左右自动,加上 阅读全文
posted @ 2022-01-13 17:12 雷雨客 阅读(84) 评论(0) 推荐(0)
摘要: 1、地址:https://icomoon.io/app/#/select 2、选择并下载 3、解压并copy进工程 下载后的文件为icomoon.zip,解压后如下: 4、使用图标字体 打开demo.html,将需要的图标复制到代码中,如下,粘贴到<i></i>之间 <div>显示图标:<i></ 阅读全文
posted @ 2022-01-12 15:00 雷雨客 阅读(347) 评论(0) 推荐(0)
摘要: GitHub从2021.08.13开始不再支持使用账号、密码的方式推送和拉取代码了,使用Token代替 一、怎样获取Token https://docs.github.com/cn/authentication/keeping-your-account-and-data-secure/creatin 阅读全文
posted @ 2021-12-05 22:41 雷雨客 阅读(311) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 37 下一页