Upgrade to Pro — share decks privately, control downloads, hide ads and more …

CrowdCoding

 CrowdCoding

CodersCrowd is a platform for collaborative code editing and review

Radhouane Aniba

June 03, 2014
Tweet

More Decks by Radhouane Aniba

Other Decks in Programming

Transcript

  1. CODE TEST DEPLOY MAINTAIN CODE TEST DEPLOY MAINTAIN from here

    to here There can be a lot of problems
  2. CODE TEST DEPLOY MAINTAIN CODE TEST DEPLOY MAINTAIN from here

    to here There can be a lot of problems dependencies Portability Environment (python 2.7 for god’s sake) Reproducibility Readability
  3. CODE TEST DEPLOY MAINTAIN CODE TEST DEPLOY MAINTAIN In a

    box … solution : ship the dev environment with the code
  4. CODE TEST DEPLOY MAINTAIN CODE TEST DEPLOY MAINTAIN In a

    box … solution : ship the dev environment with the code No VM pleaaase !
  5. CODE TEST DEPLOY MAINTAIN CODE TEST DEPLOY MAINTAIN .io an

    open source project to pack, ship and run any application as a lightweight container
  6. CODE TEST DEPLOY MAINTAIN CODE TEST DEPLOY MAINTAIN an open

    source project to pack, ship and run any application as a lightweight container
  7. CODE TEST DEPLOY MAINTAIN CODE TEST DEPLOY MAINTAIN an open

    source project to pack, ship and run any application as a lightweight container looks like Git docker pull <image-name> docker images docker run <image-name> <command> docker commit <image-id> docker push <image-id> docker ps docker logs docker diff <image1> <image2>
  8. Description Please help ! I can’t get my code working,

    I am desperate, I thought I did good but it is not working damn it !
  9. Description Please help ! I can’t get my code working,

    I am desperate, I thought I did good but it is not working damn it ! Your function is not returning an array
  10. Description Please help ! I can’t get my code working,

    I am desperate, I thought I did good but it is not working damn it ! Your function is not returning an array You forgot to close bracket on line 224
  11. Description Please help ! I can’t get my code working,

    I am desperate, I thought I did good but it is not working damn it ! Your function is not returning an array You forgot to close bracket on line 224
  12. Description Please help ! I can’t get my code working,

    I am desperate, I thought I did good but it is not working damn it ! Your function is not returning an array You forgot to close bracket on line 224 This how I would do it …
  13. Description Please help ! I can’t get my code working,

    I am desperate, I thought I did good but it is not working damn it ! Your function is not returning an array You forgot to close bracket on line 224 This how I would do it … don’t write functions like that man !
  14. Description Please help ! I can’t get my code working,

    I am desperate, I thought I did good but it is not working damn it ! Your function is not returning an array don’t write functions like that man ! You forgot to close bracket on line 224 This how I would do it … Different implementations, same problem