Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Self Coding VS Code Generators
Krak
New
I am curious as to what your opinions are. When creating an app what do you think is best, self coding it all, or using a generator to get the code you need (something like POG)?
I can see how self coding might be better, you know exactly what is there and where it is at and what it is doing (or at least whats its suppose to do), and it cuts down on unnecessary/bloat code. But then again using generated code, or a library downloaded from somewhere cuts coding time dramatically, and usually you get code that works pretty much straight out of "the box", with little or no errors.
Which would you use and why?
I can see how self coding might be better, you know exactly what is there and where it is at and what it is doing (or at least whats its suppose to do), and it cuts down on unnecessary/bloat code. But then again using generated code, or a library downloaded from somewhere cuts coding time dramatically, and usually you get code that works pretty much straight out of "the box", with little or no errors.
Which would you use and why?
0
This discussion has been closed.
Comments
Developed a tracking system in record time and I used PEAR libraries to display data in a table, but when a request came in to do something that should have been simple, (ordering by multiple columns) the library required a different method of binding to data--one that required completely rewriting an interface to the database with an abstraction layer instead of raw SQL.
The queries were very complex (13-16 lines of SQL joining 6-8 tables for the main data display), so natrually I didin't want to rewrite them. It was much easier just to modify the original query.
I don't regret using the library, it saved very much time that would have been spent on solving a boring problem, and they let me focus on the more interesting problems in the project.