摘要:
http://www.codeproject.com/Articles/715550/SQL-Server-Replication 阅读全文
摘要:
Iterative(迭代) and Waterfall(瀑布) ProcessesOne of the biggest debates about process is that between waterfall and iterative styles.The essential difference between the two is how you break up a project into smaller chunks.If you have a project that you think will take a year, few people are comfortabl 阅读全文
摘要:
NSString (Immutable)NSMutableString (rarely used)NSNumberNSValueNSData (bits)NSDateNSArray (Immutable)- once you create the array, you cannot add or remove objectseg:NSArray *primaryColors = [NSArray arayWithObjects:@"red", @"yellow", @"blue", nil];NSMutableArrayNSDicti 阅读全文
摘要:
1. setAlertViewStyle:UIAlertViewStyleSecureTextInputUIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Password" message:@"Please enter your password:" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Ok", nil]; [alertView setAlertViewS 阅读全文
摘要:
http://www.codeproject.com/Articles/492397/State-Management-in-ASP-NET-Introduction 阅读全文
摘要:
Application Delegate(应用程序委托)Application Name: SingleViewSingleViewAppDelegate.h#import @interface SingleViewAppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;@property (strong, nonatomic) SingleViewViewController *viewController;@endSingleViewAppDelegate.m#import "Singl.. 阅读全文
摘要:
OutletActionViewController.h#import @interface OutletActionViewController : UIViewController{ IBOutlet UITextField *txtName;}// expose the outlet as a property@property (nonatomic, retain) UITextField *txtName;// declare the action- (IBAction) btnClicked: (id) sender;@endOutletActionViewControlle... 阅读全文
摘要:
1. 如何估算我们这个sprint能做多少个故事点1) 本能反应2) 生产率计算估算生产率/实际生产率看看团队的历史,看看他们在过去几个sprint里的生产率是多少然后假定在下一个sprint里生产率差不多This is also called yesterday's weatherSprint's Focus Factor [Actual Velocity][Focus Factor] = --------------------- [Available Man-Days] eg:last sprint's focus factor: 18 story points4 阅读全文
摘要:
产品backlog是scrum的核心,也是一切的起源。从根本上说,它就是一个需求/故事/特性组成的列表,按照重要性的级别排序。我们叫它story, 或者backlog(条目). BacklogIDNameImportanceIni EstHow to demoNotes1XXX105xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx2XXX1008xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx产品负责人必须参加sprint plan meeting产品负责人... 阅读全文
摘要:
backlogtracking progressInitial StageNext StageEnd 阅读全文