作为从事编程或者测试工作的人来说,尤其是有强迫症的,看着非常痛苦,我们来看看怎么去掉 在 Settings-> Editor-> General-> Appearance 下, 取消 Show right margin 即可.
Nginx开启SSI
ssi on; # 开启SSI支持 ssi_silent_errors on; # 默认为off,设置为on则在处理SSI文件出错时不输出错误信息 # ssi_types text/html; # 需要支持的shtml 默认是 text/html 用法 <!--# include file="/te...
Idea URL path inlay去掉
settings----> editor---->inlay Hints---->java---->URL path inlay 去掉Show hints
Redis封装
/* * Copyright 2016-2021 Pnoker. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. *...
Tomcat虚拟目录配置
server.xml-host节点 <Context path="/website_path" docBase="F:\virtualDIR" debug="0" reloadble="true"/> 重启
mac在根目录下面创建文件夹
编辑/etc/synthetic.conf文件,在里面加入关联的目录和地址。 www /Users/username/www vim /etc/synthetic.conf 中间的空是tab,不是空格,空格不好使。esc :wq 保存退出,重启。 亲测好使
jquery – swal弹框的嵌套弹框(确认弹框)
使用场景: 使用swal进行确认,是否执行某件事之后,点击确定之后,弹出成功或者失败的弹框 关键设置 closeOnConfirm:false swal({ title: '确定要删除【'+name+'】模板吗?...
Json Schema 校验json,java代码示例
<!-- json schema 转换 fge --> <dependency> <groupId>com.github.fge</groupId> <artifactId>json-schema-validator</artifactId> <version>2.2.6</version> </depend...
该项目不在c:\用户\桌面中,无法删除
删除文件时提示,该项目不在c:\用户\桌面中。请确认该项目的位置,然后重试。 解决办法: 新建一个txt文件,把下边的代码粘贴过去 DEL /F /A /Q \\?\% RD /S /Q \\?\%1 保存之后把名字改成:Dele...
常用正则表达式大全
一、校验数字的表达式 1. 数字:^[0-9]*$ 2. n位的数字:^\d{n}$ 3. 至少n位的数字:^\d{n,}$ 4. m-n位的数字:^\d{m,n}$ 5. 零和非零开头的数字:^(0|[1-9][0-9]*)$ 6. 非零开头的最多带两位...