tags:

views:

51

answers:

2

Hello my name is Sandeep, and I am doing my graduate project. The project is to build a framework for design problems. I am new to this I don't have much knowledge about frameworks, and also I'm weak in programming.

Please some one provide necessary information regarding this.

Where can I get the basic information regarding frameworks? How to build a framework? What are the Framework Specs ?

Is there any resources/tools to build a framework ?

Thank You

A: 
  • MVC one of most common used models to build a framework
  • Framework some paper-work about what is framework

Try to use one, (php: Symfony, Yii, CodeIgniter, Ruby: RubyOnRails etc...) That can be a good start for You

canni
Uhm... a polish wikipedia article XD corrected
klez
:D wrong link pasted, thanks :)
canni
A: 

Building a new framework should really be avoided unless there is no existing framework that suits your needs. Frameworks are very easy to start, but take a lot of work and use before they are really robust. These are the steps I would take:

  1. Look for another framework that does what you want or as close as possible.
  2. Use it for some smaller problem typical of what you want to solve so you can get a feel for it. Does it do everything you want? What are the shortcomings.
  3. After working with one or more frameworks, you should get a sense of how the framework could be different.
  4. With any luck, the framework you like best is open source. You can either modify it directly, or use the code as a guide to building yours.

The project is to build a framework for design problems.

Out of curiosity, what exactly do you mean by "design problems".

Russell Leggett