Thursday, July 5, 2012

Google App Engine : 1 : Install

Google App Engine has some really poor documentation, but I'm going to try to put a step by step guide together here for those interested in doing this on a Windows based machine.

  1. Uninstall any JRE's you have on your computer.
    • To do this, simply go to
      Start --> Control Panel --> Programs and Features
      and scroll down to any Java Runtime Environments you see and uninstall them.
    • This will give you a nice fresh start.
  2. Download and install the java SDK which includes the correct JRE's.
  3. Download and install Eclipse
  4. Install Google Plugin for Eclipse
  5. Do the example project
Thanks,
GT

Thursday, September 29, 2011

MVC - 3 : The Execution


The Execution
We've already covered some of the nuances in the Concepts section above, but there are many more. Let's briefly take a look at three, data propagation, identity maintenance, and multi-model mvc.

Wednesday, September 28, 2011

MVC - 2 : The Concepts

The Concepts
The Idea behind MVC is to break apart any program into it's distinct parts the data (M:Model), the algorithms that work on the data (C:Controller) and what you see (V:View). The Concepts are the way that these three ideas are created.

Tuesday, September 27, 2011

MVC - 1 : The Idea

Otherwise known as Model View Controller. This is a very simple idea made from complex concepts that are executed with nuanced application.