Slide 1

Slide 1 text

Rails Engines as an SOA Middle Ground

Slide 2

Slide 2 text

Before We Begin

Slide 3

Slide 3 text

No content

Slide 4

Slide 4 text

No content

Slide 5

Slide 5 text

I DON’T ALWAYS SAY ALWAYS BUT WHEN I DO I ALMOST NEVER MEAN IT

Slide 6

Slide 6 text

No content

Slide 7

Slide 7 text

No content

Slide 8

Slide 8 text

No content

Slide 9

Slide 9 text

No content

Slide 10

Slide 10 text

Have You Been Here?

Slide 11

Slide 11 text

5 minutes?

Slide 12

Slide 12 text

15 minutes?

Slide 13

Slide 13 text

30 minutes?

Slide 14

Slide 14 text

Longer!?

Slide 15

Slide 15 text

No content

Slide 16

Slide 16 text

WE FEAR CHANGE

Slide 17

Slide 17 text

No content

Slide 18

Slide 18 text

No content

Slide 19

Slide 19 text

No content

Slide 20

Slide 20 text

No content

Slide 21

Slide 21 text

Object-Orientation

Slide 22

Slide 22 text

No content

Slide 23

Slide 23 text

No content

Slide 24

Slide 24 text

No content

Slide 25

Slide 25 text

No content

Slide 26

Slide 26 text

=

Slide 27

Slide 27 text

$ bundle update my_engine

Slide 28

Slide 28 text

gem  'my_engine',        :path  =>  '/path/to/my/engine'

Slide 29

Slide 29 text

Gems

Slide 30

Slide 30 text

"This might make a nice open source project."

Slide 31

Slide 31 text

"If I don't release it to rubygems.org, how do I use it in my projects?"

Slide 32

Slide 32 text

Add it to your GEM_PATH manually

Slide 33

Slide 33 text

$ export GEM_PATH=/path/to/gem;$GEM_PATH

Slide 34

Slide 34 text

Use a private git repo in your Gemfile

Slide 35

Slide 35 text

gem  'my_engine',        :git  =>  '/path/to/my/git/repo'

Slide 36

Slide 36 text

Use a local gem server

Slide 37

Slide 37 text

$ gem server

Slide 38

Slide 38 text

No content

Slide 39

Slide 39 text

$ gem sources --add http://localhost:8808

Slide 40

Slide 40 text

source ‘http://localhost:8808’ # Gemfile

Slide 41

Slide 41 text

Use a 3rd party service

Slide 42

Slide 42 text

No content

Slide 43

Slide 43 text

Railties

Slide 44

Slide 44 text

A Type of Gem

Slide 45

Slide 45 text

class  MyRailtie  <  Rails::Railtie    #  Does  Stuff end

Slide 46

Slide 46 text

require  ‘my_railtie’  if  const_defined?(Rails)

Slide 47

Slide 47 text

Add Middleware

Slide 48

Slide 48 text

Create/Update Configuration Settings

Slide 49

Slide 49 text

Add Generators

Slide 50

Slide 50 text

Run Code at Rails Console Load Time

Slide 51

Slide 51 text

Add Rake Tasks

Slide 52

Slide 52 text

Create Rails Initializers

Slide 53

Slide 53 text

after_initialize app_middleware before_configuration before_eager_load before_initialize generators to_prepare

Slide 54

Slide 54 text

$ rake spec

Slide 55

Slide 55 text

module  RSpec module  Rails class    Railtie  <  ::Rails::Railtie    config.generators.integration_tool  :rspec    config.generators.test_framework      :rspec    rake_tasks  do        load  "rspec/rails/tasks/rspec.rake"    end end end end

Slide 56

Slide 56 text

Engines

Slide 57

Slide 57 text

irb> Rails::Engine.ancestors # => [        [0]  Rails::Engine  <  Rails::Railtie,        [1]  Rails::Railtie  <  Object,        [2]  Rails::Initializable,        [3]  Object  <  BasicObject,        [4]  Kernel,        [5]  BasicObject ]

Slide 58

Slide 58 text

irb> MyRailsApp::Application.ancestors # => [        [0]  MyApp::Application  <  Rails::Application,        [1]  Rails::Application  <  Rails::Engine,        [2]  Rails::Engine  <  Rails::Railtie,        [3]  Rails::Railtie  <  Object,        [4]  Rails::Initializable,        [5]  Object  <  BasicObject,        [6]  Kernel,        [7]  BasicObject ]

Slide 59

Slide 59 text

No content

Slide 60

Slide 60 text

No content

Slide 61

Slide 61 text

No content

Slide 62

Slide 62 text

Images CSS Javascript Models Controllers Observers Mailers Migrations

Slide 63

Slide 63 text

Rails.application.routes.draw  do    mount  MyEngine::Engine  =>  "/my_engine" end

Slide 64

Slide 64 text

http://yourapp/admin

Slide 65

Slide 65 text

Now What?

Slide 66

Slide 66 text

................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................

Slide 67

Slide 67 text

Gem Extraction

Slide 68

Slide 68 text

No content

Slide 69

Slide 69 text

You're formatting them You're converting them to latitude/longitude You're validating them You're verifying them against an external API

Slide 70

Slide 70 text

class  Event    include  ActiveModel::Model    define_attribute_methods    :venue_name,            :venue_street,                                                        :venue_city,            :venue_state,                                                        :venue_zip_code,    :venue_country    validates                                  :venue_name,                                                        :presence  =>  true    validates                                  :venue_city,                                                        :presence  =>  {                                                            :if  =>  :venue_partially_set?  }    #  Lots  more  lines  of  validations...    def  address_in_one_line_format;                #  Code  here;  end    def  address_in_multiline_text_format;    #  Code  here;  end    def  address_in_html_format;                        #  Code  here;  end end

Slide 71

Slide 71 text

class  User    include  ActiveModel::Model    define_attribute_methods    :business_address_name,            :business_address_street,                                                        :business_address_city,            :business_address_state,                                                        :business_address_zip_code,    :business_address_country    validates                                  :business_address_name,                                                        :presence  =>  true    validates                                  :business_address_city,                                                        :presence  =>  {                                                            :if  =>  :business_address_partially_set?  }    #  Lots  more  lines  of  validations...    def  address_in_one_line_format;                #  Code  here;  end    def  address_in_multiline_text_format;    #  Code  here;  end    def  address_in_html_format;                        #  Code  here;  end end

Slide 72

Slide 72 text

No content

Slide 73

Slide 73 text

class  Event    include  ActiveModel::Model    define_attribute_methods    :venue_name,            :venue_street,                                                        :venue_city,            :venue_state,                                                        :venue_zip_code,    :venue_country    validates                                  :venue_name,                                                        :presence  =>  true    validates                                  :venue_city,                                                        :presence  =>  {                                                            :if  =>  :venue_partially_set?  }    #  Lots  more  lines  of  validations...    def  address_in_one_line_format;                #  Code  here;  end    def  address_in_multiline_text_format;    #  Code  here;  end    def  address_in_html_format;                        #  Code  here;  end end

Slide 74

Slide 74 text

class  Event    include  Pinpoint::Composable    pinpoint  :venue end

Slide 75

Slide 75 text

event  =  Event.new(some_sweet_attributes_including_an_address) event.venue.to_s(:one_line) #  =>  'Kwik-­‐E-­‐Mart,  123  Apu  Lane,  Springfield,  NW  12345,  United  States' event.venue.to_s(:multi_line) #  =>  'Kwik-­‐E-­‐Mart #          123  Apu  Lane #          Springfield,  NW  12345 #          United  States' event.venue.to_s(:html) #  =>  '
#               #                  Kwik-­‐E-­‐Mart #               #               #                  123  Apu  Lane #               #               #                  Springfield #                  NW #                  12345 #               #               #                  United  States #               #          
'

Slide 76

Slide 76 text

No content

Slide 77

Slide 77 text

event.venue.to_s(:one_line,  :country  =>  :uk)

Slide 78

Slide 78 text

No content

Slide 79

Slide 79 text

event.venue.to_s(:json)

Slide 80

Slide 80 text

................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ...................................

Slide 81

Slide 81 text

Engine Extraction

Slide 82

Slide 82 text

What services does my application provide to its users?

Slide 83

Slide 83 text

What would I pay someone else to do?

Slide 84

Slide 84 text

What services are others creating businesses around?

Slide 85

Slide 85 text

No content

Slide 86

Slide 86 text

No content

Slide 87

Slide 87 text

No content

Slide 88

Slide 88 text

When placing an order for tickets, we provide them with a shopping cart that they can use to store their purchase choices and then give them a way to pay for them. Assuming that everything was successful, we send out an email for the receipt and the tickets to the user.

Slide 89

Slide 89 text

When placing an order for tickets, we provide them with a shopping cart that they can use to store their purchase choices and then give them a way to pay for them. Assuming that everything was successful, we send out an email for the receipt and the tickets to the user.

Slide 90

Slide 90 text

When placing an order for tickets, we provide them with a shopping cart that they can use to store their purchase choices and then give them a way to pay for them. Assuming that everything was successful, we send out an email for the receipt and the tickets to the user.

Slide 91

Slide 91 text

When placing an order for tickets, we provide them with a shopping cart that they can use to store their purchase choices and then give them a way to pay for them. Assuming that everything was successful, we send out an email for the receipt and the tickets to the user.

Slide 92

Slide 92 text

When placing an order for tickets, we provide them with a shopping cart that they can use to store their purchase choices and then give them a way to pay for them. Assuming that everything was successful, we send out an email for the receipt and the tickets to the user.

Slide 93

Slide 93 text

When placing an order for tickets, we provide them with a shopping cart that they can use to store their purchase choices and then give them a way to pay for them. Assuming that everything was successful, we send out an email for the receipt and the tickets to the user.

Slide 94

Slide 94 text

$ rails plugin new ticketing --mountable

Slide 95

Slide 95 text

create README.rdoc create Rakefile create ticketing.gemspec create MIT-LICENSE create .gitignore create Gemfile create app create app/controllers/ticketing/application_controller.rb create app/helpers/ticketing/application_helper.rb create app/views/layouts/ticketing/application.html.erb create app/assets/images/ticketing create app/assets/images/ticketing/.gitkeep create config/routes.rb create lib/ticketing.rb create lib/tasks/ticketing_tasks.rake create lib/ticketing/version.rb create lib/ticketing/engine.rb create app/assets/stylesheets/ticketing/application.css create app/assets/javascripts/ticketing/application.js create script create script/rails create test/test_helper.rb create test/ticketing_test.rb append Rakefile create test/integration/navigation_test.rb vendor_app test/dummy

Slide 96

Slide 96 text

create README.rdoc create Rakefile create ticketing.gemspec create MIT-LICENSE create .gitignore create Gemfile create app create app/controllers/ticketing/application_controller.rb create app/helpers/ticketing/application_helper.rb create app/views/layouts/ticketing/application.html.erb create app/assets/images/ticketing create app/assets/images/ticketing/.gitkeep create config/routes.rb create lib/ticketing.rb create lib/tasks/ticketing_tasks.rake create lib/ticketing/version.rb create lib/ticketing/engine.rb create app/assets/stylesheets/ticketing/application.css create app/assets/javascripts/ticketing/application.js create script create script/rails create test/test_helper.rb create test/ticketing_test.rb append Rakefile create test/integration/navigation_test.rb vendor_app test/dummy

Slide 97

Slide 97 text

create README.rdoc create Rakefile create ticketing.gemspec create MIT-LICENSE create .gitignore create Gemfile create app create app/controllers/ticketing/application_controller.rb create app/helpers/ticketing/application_helper.rb create app/views/layouts/ticketing/application.html.erb create app/assets/images/ticketing create app/assets/images/ticketing/.gitkeep create config/routes.rb create lib/ticketing.rb create lib/tasks/ticketing_tasks.rake create lib/ticketing/version.rb create lib/ticketing/engine.rb create app/assets/stylesheets/ticketing/application.css create app/assets/javascripts/ticketing/application.js create script create script/rails create test/test_helper.rb create test/ticketing_test.rb append Rakefile create test/integration/navigation_test.rb vendor_app test/dummy

Slide 98

Slide 98 text

create README.rdoc create Rakefile create ticketing.gemspec create MIT-LICENSE create .gitignore create Gemfile create app create app/controllers/ticketing/application_controller.rb create app/helpers/ticketing/application_helper.rb create app/views/layouts/ticketing/application.html.erb create app/assets/images/ticketing create app/assets/images/ticketing/.gitkeep create config/routes.rb create lib/ticketing.rb create lib/tasks/ticketing_tasks.rake create lib/ticketing/version.rb create lib/ticketing/engine.rb create app/assets/stylesheets/ticketing/application.css create app/assets/javascripts/ticketing/application.js create script create script/rails create test/test_helper.rb create test/ticketing_test.rb append Rakefile create test/integration/navigation_test.rb vendor_app test/dummy

Slide 99

Slide 99 text

$ git push origin master

Slide 100

Slide 100 text

gem  'ticketing',        :git  =>  'git://path/to/my/git/repo.git'

Slide 101

Slide 101 text

................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ...................................

Slide 102

Slide 102 text

Lorem Ipsum Dolor Event Amet Consectetur Adipiscing Elit Vestibulum Lobortis DiscountCode Quis Est Gravida Posuere Aliquam Sit Amet Justo Leo In Facilisis Mi TicketType Diam Rutrum Vel Malesuada Ticket Dignissim

Slide 103

Slide 103 text

Lorem Ipsum Dolor Event Amet Consectetur Adipiscing Elit Vestibulum Lobortis DiscountCode Quis Est Gravida Posuere Aliquam Sit Amet Justo Leo In Facilisis Mi TicketType Diam Rutrum Vel Malesuada Ticket Dignissim

Slide 104

Slide 104 text

Lorem Ipsum Dolor Event Amet Consectetur Adipiscing Elit Vestibulum Lobortis DiscountCode Quis Est Gravida Posuere Aliquam Sit Amet Justo Leo In Facilisis Mi TicketType Diam Rutrum Vel Malesuada Ticket Dignissim

Slide 105

Slide 105 text

Lorem Ipsum Dolor Event Amet Consectetur Adipiscing Elit Vestibulum Lobortis DiscountCode Quis Est Gravida Posuere Aliquam Sit Amet Justo Leo In Facilisis Mi TicketType Diam Rutrum Vel Malesuada Ticket Dignissim

Slide 106

Slide 106 text

Lorem Ipsum Dolor Event Amet Consectetur Adipiscing Elit Vestibulum Lobortis DiscountCode Quis Est Gravida Posuere Aliquam Sit Amet Justo Leo In Facilisis Mi TicketType Diam Rutrum Vel Malesuada Ticket Dignissim

Slide 107

Slide 107 text

main/app/models/event.rb main/app/models/discount_code.rb main/app/models/ticket_type.rb main/app/models/ticket.rb ticketing/app/models/event.rb ticketing/app/models/discount_code.rb ticketing/app/models/ticket_type.rb ticketing/app/models/ticket.rb

Slide 108

Slide 108 text

................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ...................................

Slide 109

Slide 109 text

main/spec/models/event_spec.rb main/spec/models/discount_code_spec.rb main/spec/models/ticket_type_spec.rb main/spec/models/ticket_spec.rb ticketing/spec/models/event_spec.rb ticketing/spec/models/discount_code_spec.rb ticketing/spec/models/ticket_type_spec.rb ticketing/spec/models/ticket_spec.rb

Slide 110

Slide 110 text

................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................

Slide 111

Slide 111 text

Muddied Boundaries

Slide 112

Slide 112 text

User

Slide 113

Slide 113 text

Ticketing Main Invoicing User

Slide 114

Slide 114 text

it  ‘can  determine  its  account  balance’  do    #  Spec  here end

Slide 115

Slide 115 text

Ticketing Main Invoicing User

Slide 116

Slide 116 text

................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................

Slide 117

Slide 117 text

................................................ ................................................ ................................................ ................................................

Slide 118

Slide 118 text

Ticketing Main Invoicing User Invoice

Slide 119

Slide 119 text

email encrypted_password password_salt reset_password_token remember_token remember_created_at sign_in_count current_sign_in_at last_sign_in_at current_sign_in_ip last_sign_in_ip confirmation_token confirmed_at confirmation_sent_at created_at updated_at billing_first_name billing_last_name authentication_token public_email address_street_and_premises address_city address_state_or_province address_postal_code phone_number billing_address_street_and_premises billing_address_city billing_address_state_or_province billing_address_postal_code billing_phone_number name logo description address_name billing_address_name

Slide 120

Slide 120 text

Ticketing Main Invoicing User Invoice

Slide 121

Slide 121 text

Ticketing Main Invoicing Invoice Account EventOrganizer User

Slide 122

Slide 122 text

Ticketing Main Invoicing Invoice Event Organizer Account User

Slide 123

Slide 123 text

................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................ ................................................

Slide 124

Slide 124 text

Invoicing Ticketing Main Invoice Event Organizer Account User

Slide 125

Slide 125 text

email encrypted_password password_salt reset_password_token remember_token remember_created_at sign_in_count current_sign_in_at last_sign_in_at current_sign_in_ip last_sign_in_ip confirmation_token confirmed_at confirmation_sent_at created_at updated_at billing_first_name billing_last_name authentication_token public_email address_street_and_premises address_city address_state_or_province address_postal_code phone_number billing_address_street_and_premises billing_address_city billing_address_state_or_province billing_address_postal_code billing_phone_number name logo description address_name billing_address_name

Slide 126

Slide 126 text

Creating the Interface

Slide 127

Slide 127 text

No content

Slide 128

Slide 128 text

class  TicketsController  <  ApplicationController    #  Removed  code    def  create        event              =  Event.find(params[:event_id])        ticket_type  =  TicketType.find(params[:ticket_type_id])        params[:quantity].to_i.times  do            #  Create  the  Ticket            #  Apply  Discount  Codes            #  Send  Emails        end        redirect_to  some_other_path    end    #  Removed  code end

Slide 129

Slide 129 text

class  TicketsController  <  ApplicationController    #  Removed  code    def  create        event              =  Event.find(params[:event_id])        ticket_type  =  TicketType.find(params[:ticket_type_id])        params[:quantity].to_i.times  do            #  Create  the  Ticket            #  Apply  Discount  Codes            #  Send  Emails        end        redirect_to  some_other_path    end    #  Removed  code end

Slide 130

Slide 130 text

class  TicketsController  <  ApplicationController    #  Removed  code    def  create        event              =  Event.find(params[:event_id])        ticket_type  =  TicketType.find(params[:ticket_type_id])        params[:quantity].to_i.times  do            #  Create  the  Ticket            #  Apply  Discount  Codes            #  Send  Emails        end        redirect_to  some_other_path    end    #  Removed  code end

Slide 131

Slide 131 text

class  TicketsController  <  ApplicationController    #  Removed  code    def  create        event              =  Event.find(params[:event_id])        ticket_type  =  TicketType.find(params[:ticket_type_id])        params[:quantity].to_i.times  do            #  Create  the  Ticket            #  Apply  Discount  Codes            #  Send  Emails        end        redirect_to  some_other_path    end    #  Removed  code end

Slide 132

Slide 132 text

class  TicketsController  <  ApplicationController    #  Removed  code    def  create        event              =  Event.find(params[:event_id])        ticket_type  =  TicketType.find(params[:ticket_type_id])        params[:quantity].to_i.times  do            #  Create  the  Ticket            #  Apply  Discount  Codes            #  Send  Emails        end        redirect_to  some_other_path    end    #  Removed  code end

Slide 133

Slide 133 text

class  TicketsController  <  ApplicationController    #  Removed  code    def  create        event              =  Event.find(params[:event_id])        ticket_type  =  TicketType.find(params[:ticket_type_id])        params[:quantity].to_i.times  do            #  Create  the  Ticket            #  Apply  Discount  Codes            #  Send  Emails        end        redirect_to  some_other_path    end    #  Removed  code end

Slide 134

Slide 134 text

class  TicketsController  <  ApplicationController    #  Removed  code    def  create        BoxOffice.register_tickets(  type:                              params[:ticket_type_id]                                                                quantity:                      params[:quantity],                                                                send_notifications:  true)        redirect_to  some_other_path    end    #  Removed  code end

Slide 135

Slide 135 text

class  TicketsController  <  ApplicationController    #  Removed  code    def  create        BoxOffice.register_tickets(  type:                              params[:ticket_type_id]                                                                quantity:                      params[:quantity],                                                                send_notifications:  true)        redirect_to  some_other_path    end    #  Removed  code end

Slide 136

Slide 136 text

class  TicketsController  <  ApplicationController    #  Removed  code    def  create        BoxOffice.register_tickets(  type:                              params[:ticket_type_id]                                                                quantity:                      params[:quantity],                                                                send_notifications:  true)        redirect_to  some_other_path    end    #  Removed  code end

Slide 137

Slide 137 text

Progress Check

Slide 138

Slide 138 text

Engines Gems Total Test Time: ~ 2.5 minutes Average Per-Gem Test Time: ~ 4 seconds

Slide 139

Slide 139 text

No content

Slide 140

Slide 140 text

No content

Slide 141

Slide 141 text

semver.org

Slide 142

Slide 142 text

Step 3: Profit

Slide 143

Slide 143 text

No content

Slide 144

Slide 144 text

No content

Slide 145

Slide 145 text

No content

Slide 146

Slide 146 text

Main Ticketing Invoicing User Ticketing Ticketing Load Balancer

Slide 147

Slide 147 text

Conclusion

Slide 148

Slide 148 text

No content

Slide 149

Slide 149 text

Image Credits https://secure.flickr.com/photos/lwr/168150955/in/photostream/ http://alleverestnepal.files.wordpress.com/2011/07/everest-summit-view.jpg http://www.engineeringwellness.com/wp-content/uploads/2013/02/bigstock-Child-Listening-19669727.jpg http://www.parentspartner.com/wp-content/uploads/2011/05/angry-girl.jpg http://www.buriedwithchildren.com/wp-content/uploads/2010/02/DSCN3428.jpg http://fc08.deviantart.net/fs70/f/2012/038/2/d/1980__s___cartoon_a_gasim___by_timswit-d4p0eta.jpg http://www.pachd.com/free-images/household-images/20-dollar-bill-01.jpg http://cdn.madamenoire.com/wp-content/uploads/2011/10/Creepy-Guy.jpg http://images.wikia.com/lionking/images/c/c2/Simba_amazed.jpeg http://www.o5demo.com/userfiles/Aerial%20view4.jpg http://www.propstore.com/img/products/182/Waynes%20World_Garth%20Glasses.jpg https://kodequirks.files.wordpress.com/2010/05/fail.png?w=640 http://www.hotforsecurity.com/wp-content/uploads/2013/01/ruby-on-rails-steams-critical-security-patch.jpg http://iphonewallpapers-hd.com/walls/travel_for_kids_mac_train_wallpapers_rail_trip-other.jpg https://images-na.ssl-images-amazon.com/images/G/01/dvd/lionsgate/Thomas2_lg.jpg http://www.vacationrentalmarketingblog.com/wp-content/uploads/2012/06/12969446611855980761do-not-symbol.jpg http://www.mostphotos.com/preview/389643/3d-ruby-gem-isolated.jpg http://thumbs.imagekind.com/member/3730ab28-65ec-4744-a89a-a36f0f6282bb/uploadedartwork/650X650/9c4774b8-b41a-4896-bef7-0c65ec7c9825.jpg http://www2.2space.net/images/upl_news/111017/386382/full/%26%23039%3Bsesame-street%26%23039%3B-back-online-after-porn-hacking.jpg https://www.library.qut.edu.au/blog/wp-content/uploads/2011/10/UN_flags_access_copy1.jpg http://www.hobbeslives.com/wp-content/uploads/2013/02/jigsaw-puzzle-2.jpg https://emilyrudisill.files.wordpress.com/2011/06/dsc04539.jpg https://lh3.ggpht.com/_WJjc0N1hIH4/S9ohkRZnDBI/AAAAAAAAK6M/0L-nWy8qsTs/s1600/old+ticket+stub.JPG http://theinsuranceblogger.co.uk/wp-content/uploads/2011/03/black-box.jpg http://raedevelopment.com/wp-content/uploads/2012/09/team-hands1.jpg https://krivstudiosblog.files.wordpress.com/2008/08/stephanie_michelle05.jpg http://zachandjody.com/blog/wp-content/uploads/2010/08/Kid-Stuffing-Face.jpg http://img1.etsystatic.com/005/1/6446101/il_fullxfull.383264621_3lm4.jpg http://www.whatsupyasieve.com/wp-content/uploads/2012/09/sad-panda.jpg http://remixacupuncture.com/wp-content/uploads/2013/05/ren-and-stimpy-1-745973.jpg https://lh3.ggpht.com/-uor9A9sz6xU/UZD4hwwnoEI/AAAAAAAAAnI/sXgYd4u946o/s1600/evildead2bdcap2_original.jpg https://lh3.ggpht.com/-L6z1kIIhPkc/T8wFQ_BdIDI/AAAAAAAABxU/42mDrQkAeqo/s1600/1%2Ba%2Ba%2Ba%2Btl%2Batirando.jpg http://michaelpiggott.files.wordpress.com/2012/12/thunder-buddies.jpg

Slide 150

Slide 150 text

Thanks! Jeff Felchner @jfelchner