- 浏览: 471959 次
- 性别:
- 来自: 深圳
最新评论
-
zjxkeven:
放在自己工程上不报错,已放在服务器上就报错
java获得CPU使用率,系统内存,虚拟机内存等情况 -
wang1990cool:
能运行?我报错啊、
java获得CPU使用率,系统内存,虚拟机内存等情况 -
yue_ch:
yue_ch 写道getTotalPhysicalMemory ...
java获得CPU使用率,系统内存,虚拟机内存等情况 -
yue_ch:
getTotalPhysicalMemorySize()get ...
java获得CPU使用率,系统内存,虚拟机内存等情况 -
kjmmlzq19851226:
private RealSubject realSubject ...
代理模式,静态代理与动态代理
文章列表
转载自:http://www.cnblogs.com/2050/p/3877280.html
移动前端开发之viewport的深入理解
在移动设备上进行网页的重构或开发,首先得搞明白的就是移动设备上的viewport了,只有明白了viewport的概念以及弄清楚了跟viewport有关的 ...
shell sync
#!/bin/bash
sshpass -p 'test888' rsync -avzP -e 'ssh' /data/test/server/ms/uploadFiles/file/ root@192.168.1.30:/data/test/web/generate
if [ "$?" = '0' ];then
echo "RSYNC 192.168.1.30 server /data/test/web/generate ...OK"
else
dates=`date +%Y-%m-%d: ...
function change(num){
var str = num.toString().replace(/(\d)(\d{3})(?=(?:(\d{3}))*(?!\d))/g, function($0, $1 , $2 , $3) {
console.log('$0 = ' + $0);
console.log('$1 = ' + $1);
console.log('$2 = ' + $2);
console.log('$3 = ' + $3);
if($3){
return $1 + "," + $2 +" ...
安卓按钮底部
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/loading" android:layout_width="fill_parent" android:layout_height="f ...
scope:
scope.$parent指向scope的父作用域;
scope.$$childHead指向scope的第一个子作用域;
scope.$$childTail指向scope的最后一个子作用域;
scope.$$nextSibling指向scope的下一个相邻作用域;
scope.$$prevSibling指向scope的上一个相邻作用域;
directives scope:
默认 (scope: false) - directive使用原有作用域,所以也不存在原型继承,这种方式很简单,但也很容易出问题——除非该directive与html不存在数据绑 ...
cg
https://en.wikibooks.org/wiki/Cg_Programming/Unity/Transparent_Textures
unity
http://docs.unity3d.com/Manual/SL-SetTexture.html
unity ios login
// quick login
public void QuickLogin()
{
Debug.Log ("--------------- quick login -------------");
Facade.Instance.SendNotification(LoginNotes.SHOW_CONNECT_GAMECENTER);
Social.localUser.Authenticate (_HandleAuthenticated);
}
private voi ...
时区时间戳前端转换
// 使用方法 $.formatDate("MM/dd/yyyy") 求当前时间an MM/dd/yyyy
// 举例
/**
* @date类型为 Date()
*
* @return <string>
*/
$.formatDate = function(pattern, date)
{
// 如果不设置,默认为当前时间
if (!date) date = new Date();
if (typeof (date) === "string") ...
转载自:http://blog.csdn.net/LIQIANGEASTSUN/article/details/44959227
Unity之Shader过滤掉不带Alpha通道贴图的背景颜色 - 四
分类: Unity之Shader2015-04-09 14:00 177人阅读 评论(0) 收藏 举报
http://docs.unity3d.com/Manual/ExecutionOrder.html
Script Lifecycle Flowchart
The following diagram summarises the ordering and repetition of event functions during a script’s lifetime.
手动设置竖屏:修改currentDevice orientation需要在setStatusBarOrientation前
bool IsIOS8 = NO;
float version = [[[UIDevice currentDevice] systemVersion] floatValue];
if (version >= 8.0)
{
IsIOS8 = YES;
}
...
#import <CommonCrypto/CommonDigest.h>
-(void) UploadToKingjoyServer{
//测试地址,在项目中去掉,在stopRecord中传入的
self.uploadPath = @"http://xxxxx";
self.playerID = @"100010010002";
NSMutableString *urlString = [[NSMutableString alloc]init ];
...
以下几点是我在开发中发现整理的
1.对于系统头文件,如<openssl/rsa.h>,文件存放路径和Header Search Path要一起对应:
如:Path配置在$(PROJECT_DIR)/Kingjoy,则存放路径需要Finder中对应此目录,不能放在文件跟目录
2.Framework Search Path也一样,配置需要与Finder中的路径一致,而非直接放跟目录(配置跟目录也行)
3.libssl.a ,这个静态类库,在alipay的sdk中存在,另外还需要引入SystemConfiguration.framework的类库
4. ...
运行alipay支付,结果一直报这个错,最终,在stackoverflow中找到了答案,alipay_lib需要以lib项目引入,而不是把jar引入。都怪没好好看文档。。。
NoClassDeffoundError:com.alipay.android.app.sdk.R$String 错误
Referring library project .. gives NoClassDeffoundError for R files
http://stackoverflow.com/questions/11407190/referring-library-project ...