Archive

Archive for December, 2015

Linux nc出现protocol not available错误

December 29th, 2015 1 comment

最近折腾linux nc(netcat)命令时执行 nc -l 1567 监听命令遇到protocol not available,琢磨了很久终于找到了一个可行的解决办法:

Read more…

Categories: 零敲碎打 Tags: , , , ,

[Ruby] 更换GEM的source镜像

December 8th, 2015 No comments

升级MAC OS到10.11,开发环境也要调整,CocoaPods需要重新安装一下,由于GFW的原因,访问托管在amazon S3上的rubygems.org资源不能正常访问,需要调整一下GEM的source镜像

1.首先确认一下当前source镜像地址

 
gem sources -l

服务器为 https://rubygems.org/

*** CURRENT SOURCES ***

 https://rubygems.org/

Read more…

Categories: 零敲碎打 Tags: , , , ,

eclipse新建maven工程pom文件报错解决

December 8th, 2015 No comments

最近在使用elcipse新建了一个Maven工程,pom.xml文件报了个错误:web.xml is missing and <failOnMissingWebXml> is set to true

仔细探索了一下,原因是工程没有生成web.xml文件,这个跟JDK和Ecipse版本较新有关系,默认是Dynamic Web Module 3.0生成工程机制。

一般情况下,会选择copy一份 web.xml,然后修改成自己工程的。其实还有如下更简单的方法:

Read more…

[iOS]Xcode7.0关闭Bitcode编译

December 8th, 2015 No comments

今天在iOS上编译原来开发的代码,出现了以下错误

xxxx.o does not contain bitcode. You must rebuild it with bitcode enabled (Xcodesetting ENABLE_BITCODE)

百度后知道Xcode7.0以后会默认开启Bitcode模式,很多旧的静态库由于编译问题,无法支持Bitcode,需要重新编译才能使用。

如果不想重新编译,只需要关闭Bitcode就可以了

具体按以下操作:
在Targets -> Build Settings -> Build Options 下
将Enable Bitcode 设置为NO即可
Read more…

Categories: 零敲碎打 Tags: ,