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

The Road To Code

binx
August 08, 2013
290

The Road To Code

binx

August 08, 2013
Tweet

Transcript

  1. Math vs. Programming #include<iostream> using std::cout; using std::cin; using std::endl;

    int main() { int num=0,sum=0,maxvalue=0; cout <<"Please enter a positive number: "; cin >> maxvalue; for(num=1;num<=maxvalue;num++) sum=sum+num; cout<<"The sum is ...."<<sum; return 0; } x(x+1) 2
  2. Considerations - How should the site feel? - What information

    do you want to convey? - How will people move through your site? Methods - Sketching out user scenarios - Sketching out different page views
  3. Considerations - Page layout - Colors and type treatment -

    Hierarchy of information Methods - Sketchbook - Illustrator/Photoshop - HTML/CSS
  4. Considerations - Transitions between different data states - Transitions between

    different page views - Confirming user actions Methods - CSS - Javascript