:thumbsdown: :thumbsdown: :thumbsdown: All Web apps suck. X| Including this one.
erikroyall wrote:
why couldn't making software be any easier and faster?
For the most part, that tends to make things worse. The best I can say is that, although there tend to be more bugs, they tend to be easier to find and fix. In my opinion, the best balance is in using C.
erikroyall wrote:
INTERPRETING applications using a database to store information
That sounds like a rule-based system. I have had to work within one of those (for batch processing, not interactive), it did what it was supposed to do and worked fairly well, but it was slooooww and ungainly. Additionally, a whole set of tools was required to maintain the apps and there was no way to validate the logic of the apps. And in the end each rule had to be implemented in a regular programming language anyway so there was little to be gained. The goal was to have a small group of senior developers writing the rules and junior (or off-shore) developers assembling them into apps. I left after a year of that. Which brings to mind -- could you write your OS within the OS? You can write a C compiler in C; you can write a whole OS in C. One can write a Universal Turing Machine. Could you write your interpreter in your new interpreted language? I fear not. Not to say that's a show-stopper, but something to consider. But go ahead and do it, it sounds interesting, and as has been said, you'll probably learn quite a bit.