-
利用python ipset来设置linux防火墙黑白名单的方法
方便从数据库获取设置的黑白名单,用python来实现动态增加或者删除ip列表的方法。python 脚本实现
Date: 2019-10-22 View: 1520
-
Java中比较两个SET是否相同
java api中,好像没有发现比较两个set 的内容是否一样的方法,只能自己写一个来实现了,其实也比较简单,比较记录数是否一样,然后看内容是否一致, 测试的方法如下
Date: 2016-11-14 View: 1520
-
Django 中 如何使用 settings.py 中的常量
在用django 框架开发 python web 程序的时候 , 在模板页面经常会用到 settings.py 中设置的常量,比如MEDIA_URL, 我尝试过在模板页面用类似如下的方式代码片段, 请查看文章详情 ...但是,是没有效果的,后来只好采用了RequestContext 的方法,起始就是在 render_to_response 的时候,将settings.py 中常量,再次添加到一个 context 中去实现,这样在页面就能用另外一个名字去访问了,感觉很别扭,个人觉得肯定还有更简单的方法,只是没找到而已。下面是实现方法
Date: 2013-10-20 View: 1520
-
美化html fieldset legent(CSS 样式附源码下载)
在制作网页的时候,常常会将某一部分内容分组. 而分组的内容经常会放在 html fieldset 标签之中。但 这个不加修饰的 fieldset 真是丑陋不堪,就连我这种对美工要求不高,也没什么艺术细胞的人都看不过去了。所以得将这个 fieldset 用CSS 修饰一番。让它好看点,不至于丢人现眼。好吧,开工。针对fieldset 的特性,会发现,主要对fieldset legend 定义样式就可以了。界面好看不好看,都是这两个决定的。下面是定义的 fieldset 的 CSS 样式,可以拿去修改,适合自己的风格。
Date: 2012-09-24 View: 1520
-
Java Display all ZoneId and its UTC offset
A Java 8 example to display all the ZoneId and its OffSet hours and minutes.
Date: 2019-08-17 View: 1520
-
Spring file upload and connection reset issue
A Spring servlet initializer to configure the file upload limit, 5mb per file and 10mb per request.
Date: 2019-08-11 View: 1520
-
Spring Boot Configure maxSwallowSize in embedded Tomcat
In Spring Boot, you can’t configure the embedded Tomcat maxSwallowSize via the common application properties, there is no option like server.tomcat.*.maxSwallowSize
Date: 2019-08-11 View: 1520
-
Git How to remove files from staging (Changes to be committed)
In Git, we can use git reset HEAD -- 'files/folders/patterns' to remove files or folders from the staging area (Changes to be committed).
Date: 2019-08-11 View: 1520
-
Git How to undo the last commit?
In Git, we can use git reset --soft HEAD~1 to undo the last commit in local. (The committed files haven’t pushed to the remote git server)
Date: 2019-08-11 View: 1520