Top Banner
Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured products and companies–including Apple, Google, Microsoft, RIM, Balsamiq Studios, TestFlight App, Xamarin, Sencha, Heroku, Amazon, and HipByte–belong to their respective owners and are used in this presentation under nominative use (fair use) only in the context of describing the company or product in compliance with international trademark laws.
25

Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured

May 21, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured

Agility in the Cloud EraLasse Koskela

World Internet Developer Summit 2013Hong Kong Science Park, Hong Kong

The marks and logos of featured products and companies–including Apple, Google, Microsoft, RIM, Balsamiq Studios, TestFlight App, Xamarin, Sencha, Heroku, Amazon, and HipByte–belong to their respective owners and are used in this presentation under nominative use (fair use) only in the context of describing the company or product in compliance with international trademark laws.

Page 3: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured
Page 4: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured
Page 5: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured
Page 6: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured
Page 7: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured
Page 8: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured

Where does the time go?

Page 9: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured
Page 10: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured

✓ Figuring out the design (problem + solution)✓ Building the application✓ Testing the app on a bunch of devices✓ Deploying the app

Main time hogs?

Page 11: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured

✓ Figuring out the design (problem + solution)✓ Building the application✓ Testing the app on a bunch of devices✓ Deploying the app

Main time hogs?

Page 12: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured
Page 13: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured
Page 14: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured
Page 15: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured

✓ Figuring out the design (problem + solution)✓ Building the application✓ Testing the app on a bunch of devices✓ Deploying the app

Main time hogs?

Page 16: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured
Page 17: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured

(demo)

Page 18: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured

✓ Figuring out the design (problem + solution)✓ Building the application✓ Testing the app on a bunch of devices✓ Deploying the app

Main time hogs?

Page 19: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured

// MyPlace.h@interface MyPlace : NSObject

@property (strong) NSString *name;@property (strong) CLLocation *location;

- (CLLocationDistance) distanceFrom:(CLLocation *)anotherPlace;

@end

// MyPlace.m@implementation MyPlace

@synthesize name;@synthesize location;

- (CLLocationDistance) distanceFrom:(CLLocation *)anotherPlace{ return [self.location distanceFromLocation: anotherPlace.location];}

@end

Page 20: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured
Page 21: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured

class MyPlace

attr_accessor :name, :location

def distanceFrom(anotherPlace) return self.location.distanceFromLocation(anotherPlace.location) end

end

Page 22: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured

(demo)

Page 23: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured

✓ Engineering✓ Solution design✓ Problem design

Page 24: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured
Page 25: Agility in the Cloud Era - isoc.hk · Agility in the Cloud Era Lasse Koskela World Internet Developer Summit 2013 Hong Kong Science Park, Hong Kong The marks and logos of featured

@[email protected]/en

Thank you.