#BL

Java获取系统环境变量(System Environment Variable)和系统属性(System Properties)以及启动参数的方法

系统环境变量(SystemEnvironmentVariable):在Linux下使用export$ENV=123指定的值。获取的方式如下:Map<String,String>map=System.getenv();Set<Map.Entry<String,String>>entri...

Sublime Text 3显示文本编码

在Settings上加入"show_encoding":true进入这个选项:【Preferences】->【Settings】搞定之后,在右下角可以看见文本编码 ...

Ubuntu 16.04下操作iptables的技巧(解决Failed to start iptables.service: Unit iptables.service not found.或者/etc/init.d/iptables: 没有那个文件或目录)

/etc/init.d/iptables网上的解法应该都是基于CentOS6去实践,而在CentOS7中又被firewalld给取代,所以操作上的写法基本会改变,但是底层iptables则不会改变,iptables默认加载在内存,管理网络规则,而至于在实现网络传输时,由系统决定,比如网络服务重启等操作就是系统决定的,所...

Ubuntu 16.04中iptables的工具简介(iptables/iptables-restore/iptables-xml/iptables-apply/iptables-save)

Ubuntu16.04中安装的iptables版本为1.6.0,官方参考:http://www.linuxfromscratch.org/blfs/view/cvs/postlfs/iptables.html,对于一些更详细的用法可以使用maniptables进行参考。iptables用于建立,维护和检查Linux内核...

iptables中增加/删除/查询/修改的基本操作

虽然在Ubuntu使用了UFW来简化iptables的操作,但是UFW只针对防火墙方面,转发方面没有涉及,所以要弄懂其中的原理,还是必须回归到iptables中。CentOS也是如此。下面是针对iptables的基本操作,无论CentOS还是Ubuntu都是一致的。前提:先熟悉iptables的基本命令参数:http:...

Eclipse错误出现:Unable to install breakpoint in... (未能解决)

Unabletoinstallbreakpointin... EclipseUnabletoinstallbreakpointin 的问题还是没解决1、重装eclipse无效2、到Window->Preferences->Java->Compiler下面,把Addlinenumbe...

iptables实现IP地址重定向(转发)

iptables不单只防火墙这么简单,NAT转发这些都很强大。但是市面上iptables的教程基本都是围绕着CentOS6来展开的,而对于CentOS7和Ubuntu又不一样的写法,尤其是Ubuntu居然加了一个ufw做为封装,目的是为了简化iptables,个人感觉比较乱,封装了太多导致上层看不到更多的原理!而Cen...

SVN提交时报错:Commit blocked by pre-commit hook (exit code 1) with no output.

可能的原因:提交代码的SVN命令中,Comment长度短了。参考:http://tortoisesvn.net/docs/nightly/TortoiseSVN_en/tsvn-howto-minlogmsgsize.html解决方法:在提交的命令行的Comment中多加些字符,再提交。比如,将:svncommit-m...

Ubuntu 16.04 GNOME下解决Sublime Text3中文输入(ibus)(转)

解决方法:1、进入SublimeText3插件管理文件夹cd~/.config/sublime-text-3/Packages2、获取InputHelper插件gitclonehttps://github.com/xgenvn/InputHelper.git3、如果发现在SublimeText3中无法使用Ctrl+Sh...

poj 1390 Blocks

TimeLimit:5000MSMemoryLimit:65536KTotalSubmissions:6528Accepted:2697DescriptionSomeofyoumayhaveplayedagamecalled'Blocks'.Therearenblocksinarow,eachboxhasacolor....
代码星球 ·2020-07-09

POJ1681 Painter's Problem

总时间限制: 5000ms 内存限制: 65536kB描述Thereisasquarewallwhichismadeofn*nsmallsquarebricks.Somebricksarewhitewhilesomebricksareyellow.Bobisapainterandhewan...
代码星球 ·2020-07-09

Unable to find element on closed window (WARNING: The server did not provide any stacktrace information)

当你的seleniumWebDriver启动IE11报这个错时:Unabletofindelementonclosedwindow(WARNING:Theserverdidnotprovideanystacktraceinformation),通过Google解决了:RequiredConfiguration:ForI...
代码星球 ·2020-07-09

npm publish gives “unscoped packages cannot be private”

解决方法:npmpublish--accesspublic详细参考此处...

mobx动态添加observable

mobx使用extendObservable来动态添加observable属性。extendObservable(target,properties,decorators?,options?)例如:varPerson=function(firstName,lastName){//在一个新实例上初始化observable...
代码星球 ·2020-06-29

table表头固定问题

table表头固定问题原生的table表头在表格滚动时候无法固定,可以使用以下的方法进行模拟1.双table法表头和表体各用一个table,这样会产生表格列对不齐的问题,可以使用colgroup和col来对齐,或者直接设置th,td的宽度2.单table修改样式方法设置表格体为display:block,表格head和...
代码星球 ·2020-06-29
首页上一页...256257258259260...下一页尾页