Slide 1

Slide 1 text

The Science of Success Davy Stevenson @davystevenson Cascadia Ruby 2014

Slide 2

Slide 2 text

The Columbia River Gorge, Home by Paul Kline

Slide 3

Slide 3 text

Astronaut by Alan

Slide 4

Slide 4 text

Williams College by Ethan Kan

Slide 5

Slide 5 text

White, Mt Greylock by kumsval

Slide 6

Slide 6 text

In Search of the Abominable Snowman by Peter Lee

Slide 7

Slide 7 text

Fish Bowl Embroidery by Jenny S

Slide 8

Slide 8 text

light brain by Mario D’Amore

Slide 9

Slide 9 text

Cao Xueqin, Dream of the Red Chamber by Ivan Walsh

Slide 10

Slide 10 text

Modern Art in Prague by BrunoDelzant

Slide 11

Slide 11 text

Greek Philosopher Mosaic by Holly Hayes

Slide 12

Slide 12 text

Hacker by the Preiser Project

Slide 13

Slide 13 text

Glass of Heart by Rahim Packir Saibo

Slide 14

Slide 14 text

100 Planetary Nebulas by Judy Schmidt

Slide 15

Slide 15 text

Professor John Frink, Jr. vs. Professor Hubert J. Farnsworth by JD Hancock

Slide 16

Slide 16 text

Complexity

Slide 17

Slide 17 text

Brockhaus and Efron Encyclopedic Dictionary

Slide 18

Slide 18 text

Complexity O(n) O(log n) O(n log n) O(n2) O(2n) O(n!)

Slide 19

Slide 19 text

Complexity O(log n) - Logarithmic - Sorted Data

Slide 20

Slide 20 text

Complexity O(n) - Linear - Analyze each point

Slide 21

Slide 21 text

Complexity O(n log n) - Loglinear Best Sorting Algorithms

Slide 22

Slide 22 text

Complexity O(n2) - Quadratic Compare pairs of points

Slide 23

Slide 23 text

Complexity O(2n) - Exponential - Try and avoid

Slide 24

Slide 24 text

Complexity O(n!) - Factorial You’re gonna have a bad time

Slide 25

Slide 25 text

Algorithms

Slide 26

Slide 26 text

Silver and Gold - Charles Babbage’s Difference Engine by odditty

Slide 27

Slide 27 text

jar by hillary.hc.chang

Slide 28

Slide 28 text

Convex Hull by fdecomite

Slide 29

Slide 29 text

Stonebalancing in Greece by t.klick

Slide 30

Slide 30 text

Jarvis March

Slide 31

Slide 31 text

Plejaden M45 by Carsten Frenzi

Slide 32

Slide 32 text

Plejaden M45 by Carsten Frenzi

Slide 33

Slide 33 text

Plejaden M45 by Carsten Frenzi

Slide 34

Slide 34 text

Plejaden M45 by Carsten Frenzi

Slide 35

Slide 35 text

Plejaden M45 by Carsten Frenzi

Slide 36

Slide 36 text

Plejaden M45 by Carsten Frenzi

Slide 37

Slide 37 text

Plejaden M45 by Carsten Frenzi

Slide 38

Slide 38 text

Plejaden M45 by Carsten Frenzi

Slide 39

Slide 39 text

Plejaden M45 by Carsten Frenzi

Slide 40

Slide 40 text

Plejaden M45 by Carsten Frenzi

Slide 41

Slide 41 text

Plejaden M45 by Carsten Frenzi

Slide 42

Slide 42 text

Jarvis March • Find one edge: O(n) • Find right-most point: O(n) • Repeat for each point on hull: O(h) • O(n + n * h) => O(n h) • Worst case: O(n2)

Slide 43

Slide 43 text

Monotone Chain

Slide 44

Slide 44 text

Plejaden M45 by Carsten Frenzi

Slide 45

Slide 45 text

1 2 3 4 5 6 7 8 9 Plejaden M45 by Carsten Frenzi

Slide 46

Slide 46 text

1 2 3 4 5 6 7 8 9 Plejaden M45 by Carsten Frenzi

Slide 47

Slide 47 text

4 5 6 7 8 9 Plejaden M45 by Carsten Frenzi

Slide 48

Slide 48 text

5 6 7 8 9 Plejaden M45 by Carsten Frenzi

Slide 49

Slide 49 text

5 6 7 8 9 Plejaden M45 by Carsten Frenzi

Slide 50

Slide 50 text

5 6 7 8 9 Plejaden M45 by Carsten Frenzi

Slide 51

Slide 51 text

6 7 8 9 Plejaden M45 by Carsten Frenzi

Slide 52

Slide 52 text

7 8 9 Plejaden M45 by Carsten Frenzi

Slide 53

Slide 53 text

7 8 9 Plejaden M45 by Carsten Frenzi

Slide 54

Slide 54 text

7 8 9 Plejaden M45 by Carsten Frenzi

Slide 55

Slide 55 text

7 8 9 Plejaden M45 by Carsten Frenzi

Slide 56

Slide 56 text

8 9 Plejaden M45 by Carsten Frenzi

Slide 57

Slide 57 text

9 Plejaden M45 by Carsten Frenzi

Slide 58

Slide 58 text

9 Plejaden M45 by Carsten Frenzi

Slide 59

Slide 59 text

Plejaden M45 by Carsten Frenzi

Slide 60

Slide 60 text

Plejaden M45 by Carsten Frenzi

Slide 61

Slide 61 text

Plejaden M45 by Carsten Frenzi

Slide 62

Slide 62 text

Plejaden M45 by Carsten Frenzi

Slide 63

Slide 63 text

Plejaden M45 by Carsten Frenzi

Slide 64

Slide 64 text

Monotone Chain • Sort points: O(n log n) • Construct lower hull: O(n) • Construct upper hull: O(n) • O(n log n + (n + n)) => O(n log n) • O(n) if already sorted

Slide 65

Slide 65 text

Pushpins in a map over the USA by Marc Levin

Slide 66

Slide 66 text

Benchmark

Slide 67

Slide 67 text

Fast by photophilde

Slide 68

Slide 68 text

require 'benchmark' n = 100_000 size = 10000 array = (0...size).to_a.shuffle ! Benchmark.bm do |x| x.report("#at") { n.times { array.at rand(size)} } x.report("#index") { n.times { array.index rand(size) } } x.report("#index-miss") { n.times { array.index (size + rand(size)) } } end

Slide 69

Slide 69 text

require 'benchmark' n = 100_000 size = 10000 array = (0...size).to_a.shuffle ! Benchmark.bm do |x| x.report("#at") { n.times { array.at rand(size)} } x.report("#index") { n.times { array.index rand(size) } } x.report("#index-miss") { n.times { array.index (size + rand(size)) } } end

Slide 70

Slide 70 text

require 'benchmark' n = 100_000 size = 10000 array = (0...size).to_a.shuffle ! Benchmark.bm do |x| x.report("#at") { n.times { array.at rand(size)} } x.report("#index") { n.times { array.index rand(size) } } x.report("#index-miss") { n.times { array.index (size + rand(size)) } } end

Slide 71

Slide 71 text

require 'benchmark' n = 100_000 size = 10000 array = (0...size).to_a.shuffle ! Benchmark.bm do |x| x.report("#at") { n.times { array.at rand(size)} } x.report("#index") { n.times { array.index rand(size) } } x.report("#index-miss") { n.times { array.index (size + rand(size)) } } end

Slide 72

Slide 72 text

require 'benchmark' n = 100_000 size = 10000 array = (0...size).to_a.shuffle ! Benchmark.bm do |x| x.report("#at") { n.times { array.at rand(size)} } x.report("#index") { n.times { array.index rand(size) } } x.report("#index-miss") { n.times { array.index (size + rand(size)) } } end

Slide 73

Slide 73 text

$ ruby examples/bm.rb user system total real #at 0.020000 0.000000 0.020000 ( 0.023444) #index 2.380000 0.000000 2.380000 ( 2.391208) #index-miss 4.770000 0.000000 4.770000 ( 4.786147)

Slide 74

Slide 74 text

$ ruby examples/bm.rb user system total real #at 0.020000 0.000000 0.020000 ( 0.023444) #index 2.380000 0.000000 2.380000 ( 2.391208) #index-miss 4.770000 0.000000 4.770000 ( 4.786147)

Slide 75

Slide 75 text

require 'benchmark' n = 100_000 size = 10000 array = (0...size).to_a.shuffle ! Benchmark.bm do |x| x.report("#at") { n.times { array.at rand(size)} } x.report("#index") { n.times { array.index rand(size) } } x.report("#index-miss") { n.times { array.index (size + rand(size)) } } end

Slide 76

Slide 76 text

require 'benchmark/ips' ! size = 10000 array = (0...size).to_a.shuffle ! Benchmark.ips do |x| x.report("#at") { array.at rand(size) } x.report("#index") { array.index rand(size) } x.report("#index-miss") { array.index (size + rand(size)) } x.compare! end

Slide 77

Slide 77 text

require 'benchmark/ips' ! size = 10000 array = (0...size).to_a.shuffle ! Benchmark.ips do |x| x.report("#at") { array.at rand(size) } x.report("#index") { array.index rand(size) } x.report("#index-miss") { array.index (size + rand(size)) } x.compare! end

Slide 78

Slide 78 text

$ ruby examples/ips.rb ! ! ! Calculating ------------------------------------- #at 79155 i/100ms #index 4039 i/100ms #index-miss 2055 i/100ms ------------------------------------------------- #at 3165995.2 (±10.7%) i/s - 15593535 in 5.006746s #index 41873.8 (±6.3%) i/s - 210028 in 5.040799s #index-miss 20592.7 (±7.5%) i/s - 102750 in 5.022168s ! Comparison: #at: 3165995.2 i/s #index: 41873.8 i/s - 75.61x slower #index-miss: 20592.7 i/s - 153.74x slower

Slide 79

Slide 79 text

$ ruby examples/ips.rb ! ! ! Calculating ------------------------------------- #at 79155 i/100ms #index 4039 i/100ms #index-miss 2055 i/100ms ------------------------------------------------- #at 3165995.2 (±10.7%) i/s - 15593535 in 5.006746s #index 41873.8 (±6.3%) i/s - 210028 in 5.040799s #index-miss 20592.7 (±7.5%) i/s - 102750 in 5.022168s ! Comparison: #at: 3165995.2 i/s #index: 41873.8 i/s - 75.61x slower #index-miss: 20592.7 i/s - 153.74x slower

Slide 80

Slide 80 text

$ ruby examples/ips.rb ! ! ! Calculating ------------------------------------- #at 79155 i/100ms #index 4039 i/100ms #index-miss 2055 i/100ms ------------------------------------------------- #at 3165995.2 (±10.7%) i/s - 15593535 in 5.006746s #index 41873.8 (±6.3%) i/s - 210028 in 5.040799s #index-miss 20592.7 (±7.5%) i/s - 102750 in 5.022168s ! Comparison: #at: 3165995.2 i/s #index: 41873.8 i/s - 75.61x slower #index-miss: 20592.7 i/s - 153.74x slower

Slide 81

Slide 81 text

$ ruby examples/ips.rb ! ! ! Calculating ------------------------------------- #at 79155 i/100ms #index 4039 i/100ms #index-miss 2055 i/100ms ------------------------------------------------- #at 3165995.2 (±10.7%) i/s - 15593535 in 5.006746s #index 41873.8 (±6.3%) i/s - 210028 in 5.040799s #index-miss 20592.7 (±7.5%) i/s - 102750 in 5.022168s ! Comparison: #at: 3165995.2 i/s #index: 41873.8 i/s - 75.61x slower #index-miss: 20592.7 i/s - 153.74x slower

Slide 82

Slide 82 text

$ ruby examples/ips.rb ! ! ! Calculating ------------------------------------- #at 79155 i/100ms #index 4039 i/100ms #index-miss 2055 i/100ms ------------------------------------------------- #at 3165995.2 (±10.7%) i/s - 15593535 in 5.006746s #index 41873.8 (±6.3%) i/s - 210028 in 5.040799s #index-miss 20592.7 (±7.5%) i/s - 102750 in 5.022168s ! Comparison: #at: 3165995.2 i/s #index: 41873.8 i/s - 75.61x slower #index-miss: 20592.7 i/s - 153.74x slower

Slide 83

Slide 83 text

$ ruby examples/ips.rb ! ! ! Calculating ------------------------------------- #at 79155 i/100ms #index 4039 i/100ms #index-miss 2055 i/100ms ------------------------------------------------- #at 3165995.2 (±10.7%) i/s - 15593535 in 5.006746s #index 41873.8 (±6.3%) i/s - 210028 in 5.040799s #index-miss 20592.7 (±7.5%) i/s - 102750 in 5.022168s ! Comparison: #at: 3165995.2 i/s #index: 41873.8 i/s - 75.61x slower #index-miss: 20592.7 i/s - 153.74x slower

Slide 84

Slide 84 text

No content

Slide 85

Slide 85 text

Benchmark BigO

Slide 86

Slide 86 text

Benchmark Big O • github.com/davy/benchmark-bigo • Provides Big O notation benchmarking for Ruby

Slide 87

Slide 87 text

require 'benchmark/ips' ! size = 10000 array = (0...size).to_a.shuffle ! Benchmark.ips do |x| x.report("#at") { array.at rand(size) } x.report("#index") { array.index rand(size) } x.report("#index-miss") { array.index (size + rand(size)) } x.compare! end

Slide 88

Slide 88 text

require 'benchmark/bigo' ! Benchmark.bigo do |x| x.generate :array x.linear 2000 ! x.report("#at") {|array, size| array.at rand(size) } x.report("#index") {|array, size| array.index rand(size) } x.report("#index-miss") {|array, size| array.index (size + rand(size)) } x.chart! 'array.html' end

Slide 89

Slide 89 text

require 'benchmark/bigo' ! Benchmark.bigo do |x| x.generate :array x.linear 2000 ! x.report("#at") {|array, size| array.at rand(size) } x.report("#index") {|array, size| array.index rand(size) } x.report("#index-miss") {|array, size| array.index (size + rand(size)) } x.chart! 'array.html' end

Slide 90

Slide 90 text

require 'benchmark/bigo' ! Benchmark.bigo do |x| x.generate :array x.exponential ! x.report("#at") {|array, size| array.at rand(size) } x.report("#index") {|array, size| array.index rand(size) } x.report("#index-miss") {|array, size| array.index (size + rand(size)) } x.chart! 'array.html' end

Slide 91

Slide 91 text

require 'benchmark/bigo' ! Benchmark.bigo do |x| x.generate :array x.exponential ! x.report("#at") {|array, size| array.at rand(size) } x.report("#index") {|array, size| array.index rand(size) } x.report("#index-miss") {|array, size| array.index (size + rand(size)) } x.chart! 'array.html' end

Slide 92

Slide 92 text

require 'benchmark/bigo' ! Benchmark.bigo do |x| x.generate :array x.exponential ! x.report("#at") {|array, size| array.at rand(size) } x.report("#index") {|array, size| array.index rand(size) } x.report("#index-miss") {|array, size| array.index (size + rand(size)) } x.chart! 'array.html' end

Slide 93

Slide 93 text

$ ruby examples/bigo-exp.rb ! Calculating ------------------------------------- #at 1 68448 i/100ms #at 10 63310 i/100ms #at 100 67388 i/100ms #at 1000 65912 i/100ms #at 10000 65518 i/100ms #index 1 66714 i/100ms #index 10 63736 i/100ms #index 100 50055 i/100ms #index 1000 18838 i/100ms #index 10000 3752 i/100ms #index-miss 1 61960 i/100ms #index-miss 10 58333 i/100ms #index-miss 100 45989 i/100ms #index-miss 1000 14698 i/100ms #index-miss 10000 1898 i/100ms ------------------------------------------------- #at 1 2084640.3 (±9.5%) i/s - 10335648 in 5.029076s #at 10 2006228.2 (±8.3%) i/s - 9939670 in 5.003949s #at 100 1871633.1 (±18.1%) i/s - 8962604 in 5.025712s #at 1000 2055675.6 (±8.7%) i/s - 10216360 in 5.029822s #at 10000 2000566.4 (±8.6%) i/s - 9893218 in 4.999732s #index 1 1992529.4 (±8.2%) i/s - 9940386 in 5.035758s #index 10 1810344.6 (±8.3%) i/s - 8986776 in 5.012351s #index 100 1304666.0 (±9.2%) i/s - 6457095 in 5.010804s #index 1000 347986.2 (±6.0%) i/s - 1733096 in 5.002854s #index 10000 40728.2 (±10.7%) i/s - 202608 in 5.059052s #index-miss 1 1984727.2 (±9.4%) i/s - 9851640 in 5.028868s #index-miss 10 1762957.2 (±7.6%) i/s - 8749950 in 5.004258s #index-miss 100 986260.8 (±10.2%) i/s - 4874834 in 5.010465s #index-miss 1000 187159.1 (±7.9%) i/s - 940672 in 5.063904s #index-miss 10000 19330.9 (±12.8%) i/s - 94900 in 5.001322s

Slide 94

Slide 94 text

No content

Slide 95

Slide 95 text

Map of Node coverage with Convex Hulls by Dario Villanueva

Slide 96

Slide 96 text

Terraformer

Slide 97

Slide 97 text

Terraformer Ruby • github.com/esripdx/terraformer-ruby • A geometric toolkit for dealing with geometry, geography, formats • Can calculate Convex Hull

Slide 98

Slide 98 text

Jarvis Tortoise by Alexander Montuschi

Slide 99

Slide 99 text

Run, bunny, run! by shadow planet Monotone

Slide 100

Slide 100 text

No content

Slide 101

Slide 101 text

No content

Slide 102

Slide 102 text

module Terraformer::Benchmark # portland LON = -122.6764 LAT = 45.5165 ! # calculate convex hull with given implementation def self.convex_hull obj, impl Terraformer::ConvexHull.impl = impl obj.convex_hull end end ! class Float def perm self + rand(-100..100) / 10000.0 end end

Slide 103

Slide 103 text

module Terraformer::Benchmark # portland LON = -122.6764 LAT = 45.5165 ! # calculate convex hull with given implementation def self.convex_hull obj, impl Terraformer::ConvexHull.impl = impl obj.convex_hull end end ! class Float def perm self + rand(-100..100) / 10000.0 end end

Slide 104

Slide 104 text

module Terraformer::Benchmark # portland LON = -122.6764 LAT = 45.5165 ! # calculate convex hull with given implementation def self.convex_hull obj, impl Terraformer::ConvexHull.impl = impl obj.convex_hull end end ! class Float def perm self + rand(-100..100) / 10000.0 end end

Slide 105

Slide 105 text

module Terraformer::Benchmark ! # generates a Line String representing a random walk def self.random_walk size walk = [[LON, LAT]] # start in pdx ! size.times do walk << walk.last.map{|i| i.perm } end ! # create line string from the random walk ls = Terraformer::LineString.new(walk) ! # convert to feature ls.to_feature end end

Slide 106

Slide 106 text

module Terraformer::Benchmark ! # generates a Line String representing a random walk def self.random_walk size walk = [[LON, LAT]] # start in pdx ! size.times do walk << walk.last.map{|i| i.perm } end ! # create line string from the random walk ls = Terraformer::LineString.new(walk) ! # convert to feature ls.to_feature end end

Slide 107

Slide 107 text

No content

Slide 108

Slide 108 text

Benchmark.bigo do |x| x.generator {|size| Terraformer::Benchmark.random_walk size } ! x.time = 20 # sample each point for 20 seconds x.linear 200 x.increments = 5 # 200..1000 ! x.report("#rand-jarvis") {|f, _| Terraformer::Benchmark.convex_hull f, :jarvis_march } ! x.report("#rand-monotone") {|f, _| Terraformer::Benchmark.convex_hull f, :monotone} ! x.chart! 'data/chart_random_walk.html' x.compare! end

Slide 109

Slide 109 text

Benchmark.bigo do |x| x.generator {|size| Terraformer::Benchmark.random_walk size } ! x.time = 20 # sample each point for 20 seconds x.linear 200 x.increments = 5 # 200..1000 ! x.report("#rand-jarvis") {|f, _| Terraformer::Benchmark.convex_hull f, :jarvis_march } ! x.report("#rand-monotone") {|f, _| Terraformer::Benchmark.convex_hull f, :monotone} ! x.chart! 'data/chart_random_walk.html' x.compare! end

Slide 110

Slide 110 text

Benchmark.bigo do |x| x.generator {|size| Terraformer::Benchmark.random_walk size } ! x.time = 20 # sample each point for 20 seconds x.linear 200 x.increments = 5 # 200..1000 ! x.report("#rand-jarvis") {|f, _| Terraformer::Benchmark.convex_hull f, :jarvis_march } ! x.report("#rand-monotone") {|f, _| Terraformer::Benchmark.convex_hull f, :monotone} ! x.chart! 'data/chart_random_walk.html' x.compare! end

Slide 111

Slide 111 text

No content

Slide 112

Slide 112 text

No content

Slide 113

Slide 113 text

No content

Slide 114

Slide 114 text

Water Balloon by Amyn Kassam

Slide 115

Slide 115 text

Water Balloon by Amyn Kassam

Slide 116

Slide 116 text

module Terraformer::Benchmark ! # generates a circle feature with size points def self.circle size ! # minimum size is three size = 3 if size < 3 ! # expand the diameter as size increases diam = [100, size].max ! # generate circle c = Terraformer::Circle.new([LON, LAT], diam, size) ! # convert to feature c.to_feature end end

Slide 117

Slide 117 text

module Terraformer::Benchmark ! # generates a circle feature with size points def self.circle size ! # minimum size is three size = 3 if size < 3 ! # expand the diameter as size increases diam = [100, size].max ! # generate circle c = Terraformer::Circle.new([LON, LAT], diam, size) ! # convert to feature c.to_feature end end

Slide 118

Slide 118 text

No content

Slide 119

Slide 119 text

Benchmark.bigo do |x| x.generator {|size| Terraformer::Benchmark.circle size } ! x.time = 20 # sample each point for 20 seconds x.linear 200 x.increments = 5 # 200..1000 ! x.report("#circ-jarvis") {|f, _| Terraformer::Benchmark.convex_hull f, :jarvis_march } ! x.report("#circ-monotone") {|f, _| Terraformer::Benchmark.convex_hull f, :monotone} ! x.chart! 'data/chart_circle.html' x.compare! end

Slide 120

Slide 120 text

No content

Slide 121

Slide 121 text

No content

Slide 122

Slide 122 text

No content

Slide 123

Slide 123 text

No content

Slide 124

Slide 124 text

No content

Slide 125

Slide 125 text

Benchmark Terraformer • github.com/davy/benchmark-terraformer • Helper code • Benchmark code • Map Viewer • Example charts, geojson & raw data • Array benchmark code

Slide 126

Slide 126 text

My grandfather's microscope by Juan Eduardo Donoso

Slide 127

Slide 127 text

Peer Review!

Slide 128

Slide 128 text

Line Fitting

Slide 129

Slide 129 text

Prettier Graphs

Slide 130

Slide 130 text

Verify Math

Slide 131

Slide 131 text

No content

Slide 132

Slide 132 text

Science Driven Development

Slide 133

Slide 133 text

QUESTION

Slide 134

Slide 134 text

why is ____________ slow?

Slide 135

Slide 135 text

why is ____________ broken?

Slide 136

Slide 136 text

is ____________ a success?

Slide 137

Slide 137 text

HYPOTHESIS

Slide 138

Slide 138 text

it is slow because ___________

Slide 139

Slide 139 text

it is broken because ___________

Slide 140

Slide 140 text

it is successful because ___________

Slide 141

Slide 141 text

PREDICTION

Slide 142

Slide 142 text

if __________ is why it is slow then ____________

Slide 143

Slide 143 text

if __________ is why it is broken then ____________

Slide 144

Slide 144 text

if __________ is true then it is a success

Slide 145

Slide 145 text

TESTING

Slide 146

Slide 146 text

test the speed of ____________

Slide 147

Slide 147 text

test the logic of ____________

Slide 148

Slide 148 text

test if ____________ is true

Slide 149

Slide 149 text

ANALYSIS

Slide 150

Slide 150 text

what does the data say?

Slide 151

Slide 151 text

Fix

Slide 152

Slide 152 text

Sleeping Cat by Terence Lee

Slide 153

Slide 153 text

Scientist Minifig by Maia Weinstock

Slide 154

Slide 154 text

Thanks! Questions? Davy Stevenson @davystevenson Cascadia Ruby 2014

Slide 155

Slide 155 text

Resources Benchmark IPS - github.com/evanphx/benchmark-ips Benchmark BigO - github.com/davy/benchmark-bigo Terraformer.rb - github.com/esripdx/terraformer-ruby ! Benchmark Terraformer Results- github.com/davy/ benchmark-terraformer ! Maps by Leaflet - github.com/Leaflet/Leaflet extended with Esri Leaflet - github.com/Esri/esri-leaflet and Leaflet Ajax - github.com/calvinmetcalf/leaflet-ajax

Slide 156

Slide 156 text

Attributions From the Noun Project: ! “Erlenmeyer Flask” by Emily van den Heever “Stopwatch” by Irit Barzily “Diamond” by Ryan Beck “Question” by Brennan Novak “Check Mark” by Brennan Novak “Arrow” by José Campos

Slide 157

Slide 157 text

Attributions Backgrounds: Clouds by Joshua Rappeneker First Stars by Paul Chaloner grassy by cometwendy Drops on Bright Orange Flower by A Guy Taking Pictures Lightning by Stuart Williams Beach Palm Trees by Grand Velas Riviera Maya ! !