Knight.zhou yangboz

-
SMARTKIT.AI
- Beijing
- Sign in to view email
- http://smartkit.ai
View App42API_call_snippet
@try{ | |
//App42 service API call here. | |
}@catch (App42BadParameterException *ex) { | |
NSLog(@"BadParameterException found,status code:%d",ex.appErrorCode); | |
}@catch (App42SecurityException *ex) { | |
NSLog(@"SecurityException found!"); | |
}@catch (App42Exception *ex) { | |
NSLog(@"App42 Exception found:%@",ex.description); | |
//NSAlert here. | |
} |
View FLEX4.6.0_Air3.8_build_swc.xml
<?xml version="1.0" encoding="utf-8"?> | |
<!-- This build file provdes a close approximation of the build process | |
and build settings inside Flash Builder, but it is not an exact copy. | |
Please customize this file as necessary. --> | |
<!-- Generated from project settings as of 3/18/14 6:45 PM --> | |
<project name="XXXXLib1.0" default="build" basedir="."> | |
<property name="FLEX_HOME" value="C:\Software\FLEX\sdks\4.6.0_Air3.8"/> | |
<property name="SDK_VERSION" value="4.6.0"/> |
View Obj-C_Singleton.m
// | |
// Common Objective-C Singleton Class.m | |
// iOS | |
// | |
// Created by yangboz on 03-25-14. | |
// Copyright (c) 2013年 GODPAPER. All rights reserved. | |
// | |
#import "App42_API_Utils.h" |
View free-transform-manager.as
package | |
{ | |
import com.ryan.geom.FreeTransformManager; | |
import flash.display.Bitmap; | |
import flash.display.Sprite; | |
import flash.events.Event; | |
public class Main extends Sprite | |
{ |
View 8vELHLAE#.json
[ [ 21.596119999999999, | |
112.0187, | |
"YUEJIANGCHENG90609", | |
2, | |
78, | |
26, | |
"CN", | |
412477316, | |
15, | |
23, |
View iOS view life circle code snippet
@implementation | |
- (void)setup { | |
// Non-UI initialization goes here. It will only ever be called once. | |
} | |
- (id)initWithNibName:(NSString *)nibName bundle:(NSString *)bundle { | |
if ((self = [super initWithNibName:nibName bundle:bundle])) { | |
[self setup]; | |
} |
View pylint.xml
<!-- | |
@ref: http://chrigl.de/blogentries/integration-of-pylint-into-jenkins | |
@ref: http://redsolo.blogspot.com/2007/11/hudson-embraces-python.html | |
@more: http://bitten.edgewall.org/wiki/Documentation/commands.html | |
--> | |
<project default="all" basedir="../"> | |
<!-- | |
Define an environment variable pointing to PyLint folder or change this | |
--> | |
<property environment="env"/> |
View linux_find_folder_name_before_timestamp
CHBIN-M-Q0AA@[~/Projects] | |
$> find ./dingding_bonus -type d -print | sed -n -e '/[0-9]\{8,8\}$/p' | sed -n -e 's/\(.*\)\/\([0-9]\{8,8\}\)$/\1\/\2##\2/gp;' | awk -F '##' '{if(int($2) < cmpVl)print $1}' cmpVl="20150910" | |
./dingding_bonus/20150902 | |
./dingding_bonus/20150903 | |
./dingding_bonus/20150904 | |
./dingding_bonus/20150905 | |
./dingding_bonus/20150906 | |
./dingding_bonus/20150907 | |
./dingding_bonus/20150908 | |
./dingding_bonus/20150909 |
View Flare3dP2pExample
package | |
{ | |
//-------------------------------------------------------------------------- | |
// | |
// Imports | |
// | |
//-------------------------------------------------------------------------- | |
import flash.display.Sprite; | |
import flash.events.Event; | |
import flash.events.MouseEvent; |
View java_checkstytle.xml
<?xml version="1.0"?> | |
<project name="XXX Application Build with check style" default="run" basedir="../"> | |
<description> | |
Ant build sample for running | |
- checkstyle, | |
</description> | |
<!-- Change the paths to your individual installation directories --> | |
<property name="checkstyle.home.dir" location="${basedir}/tools/checkstyle/"/> |
OlderNewer