Blogoforum - blog+forum on code http://blogoforum.com/tag/code Talk about code how to write update code in a software http://blogoforum.com/tag/code+software+update/how-to-write-update-code-in-a-software-15501.html I am writing a software. The basic part is complete. Now i want to include a part which will help the users to update the software time to time.I want implement the process of updating patches from the software server as it is done in case to high level architectural softwares. please give me some site information. Wed, 30 Jan 2008 05:17:55 GMT http://blogoforum.com/tag/code+software+update/how-to-write-update-code-in-a-software-15501.html RE: RE: Code Generation? http://blogoforum.com/tag/code+development+dkrukovsky+generation+programming/re-re-code-generation-489.html hmm my explanation is not very clear so I posted more info with some example on Artima: http://www.artima.com/forums/flat.jsp?forum=106&thread=152273#197859 See it rephrazed. You have DataMapper code which does the job. Now some data (sql scheme) has changed and you rewrite DataMapper code to do the job according to the new scheme. You start to think about writing a generator which will take sql scheme and generate DataMapper according to sql scheme changes. Now instead of writing generator you can think about writing code which will take sql scheme, handle its changes and do the job! Should be easier alot. I will not touch ROR since I know little about it. Denis Krukovsky. - 1 reply Tue, 19 Sep 2006 13:10:59 GMT http://blogoforum.com/tag/code+development+dkrukovsky+generation+programming/re-re-code-generation-489.html RE: Code Generation? http://blogoforum.com/tag/code+development+dkrukovsky+generation+link+programming/re-code-generation-450.html I think you might be missing the point of code generation. You don't write a code generator to get a job done... you write it to get a job done MANY TIMES. If you are able to write code that does something and does it well, why not write a generator that can reproduce that code (and even with customizable situation specific variations) again for you the next time you encounter a similar problem? Rail's generators are there to save you from having to reinvent the wheel every time you want to work on a project. Web projects have fundamentally simliar basic frameworks. Why spend time and effort rebuilding that framework every time you need to pop out a website? Spend your time and effort on the stuff that makes the website unique or innovative instead. - 2 replies Sun, 17 Sep 2006 09:36:16 GMT http://blogoforum.com/tag/code+development+dkrukovsky+generation+link+programming/re-code-generation-450.html Code Generation? http://blogoforum.com/tag/code+development+dkrukovsky+generation+link+programming/code-generation-417.html Bill Venners ( http://www.artima.com/weblogs/index.jsp?blogger=bv ) wrote "Code Generation: The Real Lesson of Rails" : http://www.artima.com/weblogs/viewpost.jsp?thread=152273 I haven't dig deep into Rails. Maybe code generation might be useful somewhere. But in general case, here is a simple statement for you to discuss. If you can write code which takes some data and generates another code which then does the job. Then you should be absolutely able to write code which takes data and does the job. Why take extra code generation step? Do you have examples which break this statement? Denis Krukovsky. - 1 reply Fri, 17 Mar 2006 10:47:31 GMT http://blogoforum.com/tag/code+development+dkrukovsky+generation+link+programming/code-generation-417.html