cameron barrie
play

Cameron Barrie Client Principal at Bilue cameron@bilue.com.au - PowerPoint PPT Presentation

Cameron Barrie Client Principal at Bilue cameron@bilue.com.au @whalec Mobile at Warp Speed If youre not disrupting , youre likely being disrupted A quick survey Worst upgrade ever!!!!! Now I cant even log in, most useless app out of


  1. Cameron Barrie Client Principal at Bilue cameron@bilue.com.au @whalec

  2. Mobile at Warp Speed

  3. If you’re not disrupting , you’re likely being disrupted

  4. A quick survey

  5. Worst upgrade ever!!!!! Now I can’t even log in, most useless app out of all the banks, really angry about this can’t even transfer money let alone opening the app. FIX IMMEDIATELY – JJ&LJ2013

  6. Tried to move fast

  7. We don’t read the reviews anymore, the only people who leave reviews are the people who complain. –Anon friend

  8. I have spent the last week trying to get up to the bank to order a new card. I looked on the app and it wasn’t there, updated today and wow, how convenient I am now able to order another card through the app. You guys sure make my life easier. Very pleased with this new update… – Serenity-1105

  9. Can move fast

  10. How do we get there?

  11. Some Prerequisites • Can you make decisions quickly? • Are you using source control(I know right)? • Are you doing Test Driven Development? • Does the business understand the risk/reward? • Do you have genuine buy in from the business?

  12. Why is it a challenge?

  13. It’s not the web

  14. Can’t just refresh

  15. Walled Garden

  16. 5 day release cycle

  17. 1-2 days for expedited

  18. No update guarantees

  19. Forced updates are bad

  20. On going support

  21. Business Logic

  22. The Challenge - (void)setupDefaults - (void)viewWillAppear:(BOOL)animated { { [super viewWillAppear:animated]; self.collectionViewDataSource.cellFactory = [WOWCollectionViewProductCellFactory class]; self.barAnimatingScrollViewDelegate.animatableHeaderBar = (UIView <WOWAnimatableBar> self.collectionViewDelegate.cellFactory = *)self.navigationController.navigationBar; [WOWCollectionViewProductCellFactory class]; } self.collectionViewLayoutArrangement = - (void)fetchData [WOWProductsViewController layoutArrangementForUserInterfaceIdiom: { [UIDevice currentDevice].userInterfaceIdiom]; [self showLoadingIndicator]; self.collectionViewLayoutDelegate.layoutSpacingClass = [self.productsDataStore fetchDataWithRequestURL:nil errorHandler:^(NSError *error) { [self dataStore:self.productsDataStore didReceiveError:error]; [WOWCollectionViewAutoSpacingLayoutDelegate }]; sizeClassForUserInterfaceIdiom:[UIDevice } currentDevice].userInterfaceIdiom]; self.collectionViewLayoutDelegate.cellSizeClass = - (void)showLoadingIndicator { [WOWProductsViewController self.collectionView.hidden = YES; sizeClassForLayoutArrangement:self.collectionViewLayoutArrangement] self.loadingIndicatorView.hidden = NO; ; } } }

  23. Social - (void)setupDefaults - (void)viewWillAppear:(BOOL)animated { { [super viewWillAppear:animated]; self.collectionViewDataSource.cellFactory = [WOWCollectionViewProductCellFactory class]; self.barAnimatingScrollViewDelegate.animatableHeaderBar = (UIView <WOWAnimatableBar> self.collectionViewDelegate.cellFactory = *)self.navigationController.navigationBar; [WOWCollectionViewProductCellFactory class]; } self.collectionViewLayoutArrangement = - (void)fetchData [WOWProductsViewController layoutArrangementForUserInterfaceIdiom: { [UIDevice currentDevice].userInterfaceIdiom]; [self showLoadingIndicator]; self.collectionViewLayoutDelegate.layoutSpacingClass = [self.productsDataStore fetchDataWithRequestURL:nil errorHandler:^(NSError *error) { [self dataStore:self.productsDataStore didReceiveError:error]; [WOWCollectionViewAutoSpacingLayoutDelegate }]; sizeClassForUserInterfaceIdiom:[UIDevice } currentDevice].userInterfaceIdiom]; self.collectionViewLayoutDelegate.cellSizeClass = - (void)showLoadingIndicator { [WOWProductsViewController self.collectionView.hidden = YES; sizeClassForLayoutArrangement:self.collectionViewLayoutArrangement] self.loadingIndicatorView.hidden = NO; ; } } }

  24. Recipe for disaster

  25. Remove Business Logic

  26. Remove Business Logic /post.json { title: "Stop killing unicorns", user_id: 67 }

  27. Remove Business Logic BILPost.m @implementation BILPost - (instancetype)initWithDictionary:(NSDictionary *)dictionary { self = [self init]; if (self) { self.title = dictionary[@"title"]; NSString *urlString = [NSString stringWithFormat:@"%@users/%@.json", kAPIBaseURL, dictionary[@"user_id"]]; self.userURL = [NSURL URLWithString:urlString]; } return self; }

  28. Remove Business Logic BILPost.m @implementation BILPost - (instancetype)initWithDictionary:(NSDictionary *)dictionary { self = [self init]; if (self) { self.title = dictionary[@"title"]; NSString *urlString = [NSString stringWithFormat:@"%@users/%@.json", kAPIBaseURL, dictionary[@"user_id"]]; self.userURL = [NSURL URLWithString:urlString]; } return self; }

  29. Craft APIs /post.json { title: "Stop killing unicorns", user_id: 67 }

  30. Craft APIs /post.json { title: "Stop killing unicorns", user_id: 67 }

  31. Use hypermedia /post.json { title: "Stop killing unicorns", user: “http://service.com/api/v2/users/1.json” }

  32. Use hypermedia /post.json { title: "Stop killing unicorns", user: “http://service.com/api/v2/users/1.json” }

  33. Remove Business Logic BILPost.m @implementation BILPost - (instancetype)initWithDictionary:(NSDictionary *)dictionary { self = [self init]; if (self) { self.title = dictionary[@"title"]; NSString *urlString = [NSString stringWithFormat:@"%@users/%@.json", kAPIBaseURL, dictionary[@"user_id"]]; self.userURL = [NSURL URLWithString:urlString]; } return self; }

  34. Remove Business Logic BILPost.m @implementation BILPost - (instancetype)initWithDictionary:(NSDictionary *)dictionary { self = [self init]; if (self) { self.title = dictionary[@"title"]; self.userURL = [NSURL URLWithString:dictionary[@"user"]]; } return self; }

  35. Use hypermedia /post.json { title: "Stop killing unicorns", user: “http://service.com/api/v2/users/1.json” }

  36. Update anytime /post.json { title: "Stop killing unicorns", user: “https://api.v2.users.service.com/cbarrie” }

  37. Version your APIs

  38. Version APIs v2/post.json { title: "Stop killing unicorns", user: “https://api.v2.users.service.com/cbarrie” }

  39. Version APIs v3/post.json { title: "Stop killing unicorns", user: { name: “Ron Burgundy”, image: “http://cdn.com/someimage.png”, href: “https://user.api.service.com/v3/1” } }

  40. Version APIs v2/post.json { title: "Stop killing unicorns", user: “https://api.v2.users.service.com/cbarrie”, userSummary: { name: “Brick Tamland”, image: “http://cdn.com/someimage.png” } }

  41. Social - (void)setupDefaults - (void)viewWillAppear:(BOOL)animated { { [super viewWillAppear:animated]; self.collectionViewDataSource.cellFactory = [WOWCollectionViewProductCellFactory class]; self.barAnimatingScrollViewDelegate.animatableHeaderBar = (UIView <WOWAnimatableBar> self.collectionViewDelegate.cellFactory = *)self.navigationController.navigationBar; [WOWCollectionViewProductCellFactory class]; } self.collectionViewLayoutArrangement = - (void)fetchData [WOWProductsViewController layoutArrangementForUserInterfaceIdiom: { [UIDevice currentDevice].userInterfaceIdiom]; [self showLoadingIndicator]; self.collectionViewLayoutDelegate.layoutSpacingClass = [self.productsDataStore fetchDataWithRequestURL:nil errorHandler:^(NSError *error) { [self dataStore:self.productsDataStore didReceiveError:error]; [WOWCollectionViewAutoSpacingLayoutDelegate }]; sizeClassForUserInterfaceIdiom:[UIDevice } currentDevice].userInterfaceIdiom]; self.collectionViewLayoutDelegate.cellSizeClass = - (void)showLoadingIndicator { [WOWProductsViewController self.collectionView.hidden = YES; sizeClassForLayoutArrangement:self.collectionViewLayoutArrangement] self.loadingIndicatorView.hidden = NO; ; } } }

  42. Social - - (void)viewWillAp (void)setup pear: (BOOL)animated Defaults { { [super viewWillAppear:a self.collec nimated]; tionViewDat aSource.cel self.barAnimatin lFactory = gScrollViewDeleg [WOWCollect ate.animatableHe aderBar = ionViewProd (UIView uctCellFact <WOWAnimatableBa ory class]; r> *)self.navigatio nController.navi self.collec gationBar; tionViewDel } egate.cellF actory = - (void)fetchData [WOWCollect {

  43. Be ready to ship

  44. Feature flags

  45. Feature flags BILGlobalToolbar.m #ifndef SEARCH_INPUT self.searchInputView.hidden = YES; #endif User.xcconfig SEARCH_FEATURES = SEARCH_TOOLBAR SEARCH_INPUT USER_TOGGLES = $(SEARCH_FEATURES)

  46. Feature flags Debug.xcconfig #include "Shared.xcconfig" #include "Features.xcconfig" #include "User.xcconfig" DEBUG_TOGGLES = DEBUG=1 GCC_PREPROCESSOR_DEFINITIONS = $(inherited) $(DEBUG_TOGGLES) $(FEATURE_TOGGLES) $(USER_TOGGLES)

  47. Iterative development

  48. Development pipeline

  49. Continuous Integration

  50. Continuous Delivery

  51. Continuous Deployment

  52. Robust processes

  53. Speedy collaboration

  54. Code previews

  55. Pull requests

  56. Social code reviews

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend