This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
| <title>Insert title here</title> | |
| </head> | |
| <body> | |
| <input type="text" id="taskName" value="" /> | |
| <script type="text/javascript" src="js/jquery-1.4.2.js"></script> | |
| <script type="text/javascript"> | |
| var pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ------------------------------------------------ | |
| ---------------------2013.05.23 V3.0.0---------- | |
| -----1、主要包括:建库脚本和创建超级用户-------- | |
| ------------------------------------------------ | |
| CREATE TABLE [dbo].[shiro_users]( | |
| [user_id] varchar(36) NOT NULL, | |
| [name] varchar(250) NULL, | |
| [dyid] varchar(250) NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import "DYOBDeviceDesc.h" | |
| @interface DYOBDeviceDesc (Services) | |
| +(void) descOfDeviceId: (NSString *) deviceId success:( void (^) (NSArray *obDeviceDescs) ) success; | |
| @end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifdef DEBUG | |
| # define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__); | |
| #else | |
| # define DLog(...) | |
| #endif | |
| // ALog always displays output regardless of the DEBUG setting | |
| #define ALog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8" ?> | |
| <project name="biandan3" default="compile"> | |
| <description>The biandan3 project ant script tools</description> | |
| <property environment="env"/> | |
| <property name="basedir" value="." /> | |
| <property name="src.java" value="${basedir}/src/java" /> | |
| <property name="src.groovy" value="${basedir}/src/groovy" /> | |
| <property name="src.res" value="${basedir}/src/resource" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NSIndexPath *indexSelected = [NSIndexPath indexPathForRow:index inSection:0]; | |
| [self tableView: self.taskTable willSelectRowAtIndexPath:indexSelected]; | |
| [self.taskTable selectRowAtIndexPath:indexSelected | |
| animated:YES | |
| scrollPosition:UITableViewScrollPositionMiddle]; | |
| [self tableView: self.taskTable didSelectRowAtIndexPath:indexSelected]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #table | |
| self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"bg_window_landscape.png"]] | |
| #Cell | |
| UIView *backgrdView = [[UIView alloc] initWithFrame:cell.frame]; | |
| backgrdView.backgroundColor = [UIColor whiteColor]; | |
| cell.backgroundView = backgrdView; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8" ?> | |
| <project name="uploadfile" default="compile" basedir="."> | |
| <property name="src.dir" value="src/java" /> | |
| <property name="test.dir" value="src/test" /> | |
| <property name="res.dir" value="src/resources" /> | |
| <property name="bin.dir" value="bin" /> | |
| <property name="lib.dir" value="libs" /> | |
| <property name="doc.dir" value="doc" /> | |
| <property name="classes.dir" value="${bin.dir}/classes" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javac MainClass.java -cp "path/lib/*" | |
| java -cp "path/lib/*" package.MainClass |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @ECHO OFF | |
| git config --global user.name "lvjian" | |
| git config --global user.email "[email protected]" | |
| echo 配置别名 | |
| git config --global alias.co "checkout" | |
| git config --global alias.st "status" | |
| git config --global alias.ci "commit" | |
| echo 配置默认编辑器 |