Slide 1

Slide 1 text

Noobs  on  JSON a  PHP  developer’s  journey  to  the  front   end Wednesday, 24 July 13

Slide 2

Slide 2 text

Hello,  my  name  is  Ben  Greenaway • @blgreenaway • www.bgreenaway.com • facebook.com/bgreenawayDevelopment Wednesday, 24 July 13

Slide 3

Slide 3 text

And  I  am  a  PHP  developer Hello,  my  name  is  Ben  Greenaway • @blgreenaway • www.bgreenaway.com • facebook.com/bgreenawayDevelopment Wednesday, 24 July 13

Slide 4

Slide 4 text

But  one  day,   they  wanted  to  look  at  my  data ! • ! • !! Wednesday, 24 July 13

Slide 5

Slide 5 text

&  I  became  very  afraid.... But  one  day,   they  wanted  to  look  at  my  data ! • ! • !! Wednesday, 24 July 13

Slide 6

Slide 6 text

d3.js  gave  me  a  means  to  display  it   (beyond  the  confines  of  phpMyAdmin) Wednesday, 24 July 13

Slide 7

Slide 7 text

d3.js  gave  me  a  means  to  display  it   (beyond  the  confines  of  phpMyAdmin) (once  I’d  newly  re-­‐learned  my  data  mangling  techniques) Wednesday, 24 July 13

Slide 8

Slide 8 text

My  familiar  aggregate  funcQons  were   contained  within  MySQL  &  PHP Wednesday, 24 July 13

Slide 9

Slide 9 text

This  maVered  because  equivalent   facts  were  not  equivalently   syntaxed  by  JavaScript My  familiar  aggregate  funcQons  were   contained  within  MySQL  &  PHP Wednesday, 24 July 13

Slide 10

Slide 10 text

This  maVered  because  equivalent   facts  were  not  equivalently   syntaxed  by  JavaScript My  familiar  aggregate  funcQons  were   contained  within  MySQL  &  PHP AND  now  my  data  was  now   remote  data! Wednesday, 24 July 13

Slide 11

Slide 11 text

d3’s  JSON  hurdles remoteness  ::  JSON  as  a  string  of  data  for   moving  data  between  client  and  host. Wednesday, 24 July 13

Slide 12

Slide 12 text

d3’s  JSON  hurdles JSON  evaluates  to  a  JavaScript  Object eval - parse - http://jsonviewer.stack.hu Wednesday, 24 July 13

Slide 13

Slide 13 text

d3’s  JSON  hurdles type  ::  eval and parse the string once you have it The string must be wrapped in parenthesis. Wednesday, 24 July 13

Slide 14

Slide 14 text

d3’s  JSON  hurdles type  ::  eval and parse the string once you have it The string must be wrapped in parenthesis.  http://jsonviewer.stack.hu Wednesday, 24 July 13

Slide 15

Slide 15 text

d3’s  JSON  hurdles inspecQon  ::   alert(JSON.stringify(jsonResponse)); Wednesday, 24 July 13

Slide 16

Slide 16 text

d3’s  JSON  hurdles inspecQon  ::   accessing  properQes Wednesday, 24 July 13

Slide 17

Slide 17 text

d3’s  JSON  hurdles wriQng  JSON  summary  ::   JSON  is  a  string  which  evaluates  to  an  object   you  write  it  like  a  string, concatenate  it  like  a  string, evaluate  it  like  a  piece  of  code  in  order  to  use  it! (do  this  safely  with  an  in-­‐browser  Parse  funcQon  to  keep  your  day  job) (browser-­‐naQve  Parse  funcQons  are  also  in  fact  faster  than  JavaScript’s  eval) Wednesday, 24 July 13

Slide 18

Slide 18 text

d3’s  JSON  hurdles reading  JSON  summary  ::   you  don’t  read  JSON,  you  access  objects  evaluated  from  it   Wednesday, 24 July 13

Slide 19

Slide 19 text

d3.js  gave  me  a  means  to  display  it   but  required  me  to  understand   JSON  (and  other  things) Wednesday, 24 July 13

Slide 20

Slide 20 text

d3.js  gave  me  a  means  to  display  it   but  required  me  to  understand   JSON  (and  other  things) PresenQng  this  talk  at  d3.js  London  taught  me  a  few  more!   (updates  to  include  use  of  Map  soon) Wednesday, 24 July 13

Slide 21

Slide 21 text

My  first  d3.js  project... • Measurey  Web  Stuff  -­‐  performance  graphs  for  DNS Wednesday, 24 July 13

Slide 22

Slide 22 text

My  first  d3.js  project... • Measurey  Web  Stuff  -­‐  performance  graphs  for  DNS Wednesday, 24 July 13

Slide 23

Slide 23 text

• code.hazzens.com/d3tut/lesson_1.html • jsonviewer.stack.hu • mikeheavers.com/main/code-­‐item/svg_path_animaQons_with_d3 Hope  you  enjoyed  my  talk • @blgreenaway • www.bgreenaway.com • hVp://speakerdeck.com/blgreenaway tools  in  demo Wednesday, 24 July 13