分类 技术 下的文章

IntelliJ IDEA License Server 更新

使用说明详见:http://blog.lanyus.com/archives/174.html

更新说明:
1、添加-p参数,用于指定监听的端口

2、添加-u参数,用于指定用户名

3、添加-prolongationPeriod参数,具体干嘛的我也不知道

下载地址:

http://download.csdn.net/detail/lanyu19950216/9467411
https://drive.google.com/file/d/0Bx7wGDIg2K-7MlA3RndvanJKaTQ/view?usp=sharing
http://pan.baidu.com/s/1i3YAuqT 密码: e7c7

使用go语言进行android ndk开发

1、安装Go

a. 下载地址为:https://golang.org/dl/
b. 这里下载到的版本为go1.5.2.windows-amd64.zip
c. 然后将压缩包里面的go文件夹解压到D盘根目录
d. 配置环境变量GOROOT和GOPATH
e. GOROOT值为D:/go
f. 新建文件夹D:/GOPATH
g. 设置环境变量GOPATH值为D:/GOPATH
h. 在PATH环境变量中增加 ;%GOROOT%/bin;%GOPATH%/bin

- 阅读剩余部分 -

XRebel使用教程

XRebel 是不间断运行在 web 应用的交互式分析器,当发现问题会在浏览器中显示警告信息。XRebel 会实时监测应用代码的性能指标和可能会发生的问题。

XRebel官方简明教程在这里 http://zeroturnaround.com/software/xrebel/quick-start/

官方下载地址在这里 https://zeroturnaround.com/software/xrebel/download/#!/have-license

下面开始讲解如何在idea 15中使用XRebel:

- 阅读剩余部分 -

Android 4.0以上系统中使用volley进行网络通讯

1、安装

1)、Git clone the repository by typing the following at the command line:

git clone https://android.googlesource.com/platform/frameworks/volley

2)、Import the downloaded source into your app project as an Android library project or make a .jar file.
如果使用Android Studio,也可以在build.gradle dependencies中添加
compile 'com.mcxiaoke.volley:library:1.0.19'



- 阅读剩余部分 -