|
3
|
|
|
Delphi is still the best development tool around for Windows. It's better than anything Visual Studio has to offer, but it's not better enough for people who have learned programming on the C family to feel an incentive to switch.
You want to make Delphi stand out? Fix the obvious annoyances in Delphi and just let it shine. There are two separate sets of features that need fixed: IDE annoyances and language annoyances. First, the post-D7 IDE is a horror to work with. Delphi made its reputation by being better than Visual Studio. Why, why did Borland decide to consciously imitate an inferior product?
- The D7 helpfiles were wonderful. I'd be hard-pressed to imagine a better documentation system for a programming environment. What in the WORLD has happened to it? Microsoft's document reader is just plain awful, and the help for the last two versions weren't even complete! Bring old-school help back please!
- Slow, slow, slow! There's just no excuse for Delphi being as slow as it is. D2009's a lot better than the last few have been, but there's still room for improvement.
- The dev team needs to remember that an IDE is a text editor, and a text editor never blocks. As long as there isn't a dialog box open, there's no reason why you should ever be unable to edit your code. That means that if CodeInsight needs to sit around and spin my HD (for up to 5 minutes, in some cases) to display some popup or tooltip, it should do it in a background thread. Same goes for whatever it's doing the first time I hit F1 in a session. Until it's done and that help options dialog box actually appears, I should be able to write more code.
- Someone already mentioned making all the random squigglies go away. If it will compile, it shouldn't be marked in the code as an error, period. Again, D2009 is a lot better at that, but it's still got a ways to go, especially with being unable to find units listed under uses. (And generics tend to screw it up too.)
- Class completion (CTRL-SHIFT-C) has some annoying corner cases relating to properties that need to be fixed. Check out what happens if you press that while you have a write-only property in your class, or a property whose read or write declaration refers to a protected member of a parent class. The first one produces code that won't compile. The second is subtler and more dangerous: its result compiles, but can break working code.
- It's just too expensive. It's a great program, but it's not worth nearly as much as they're charging. Turbo Delphi was a great idea. Update it to a 2009 version and they'd make a lot of people very happy.
- I can has multiplatform support plz? Being able to write code on Windows and cross-compile it to Mac and Linux (or to write the code and compile on other platforms) is a feature I'd willingly pay extra for. Lazarus is nice, but it's just missing too many critical features, and its debugger is a mess.
- EDIT: Just found another annoyance that ought to be fixed. If you leave Delphi open overnight when Windows changes between DST and standard time, (for example, if your computer is "asleep" at the time and you turn it back on again after,) it "alerts" you that a whole bunch of your files have been changed and asks you to reload them. Repeatedly. That needs to get fixed.
The language needs a bit of work too. Object Pascal is a wonderful language, and I'd pick it over VB or one of C's misbegotten descendants any day, but it's got a few rough edges that need to be polished.
- Properties are wonderful. Why are we stuck with an implementation that's only halfway complete? Give me one good reason why you should ever be unable to pass a read/write property to a var parameter. If they both refer to the same data member, it's simple. If not, retrieve the read value and make a copy of it, pass the copy, get the result, and send it to the appropriate write.
- Likewise, array properties need to be fixed. Why should they require get/set methods instead of direct access? If I wanted to work with mandatory get/set methods to access the private members of my objects, I'd code in C++. I use Delphi to get away from that sort of syntactic diarrhea.
- Bring some of the syntactic sugar introduced in Oxygene/Prism over to native Delphi. Some of it's dependent on a managed code framework, but stuff like the colon operator and double comparison ("if 5 < x < 12") are just automagical compiler tricks, and I'd love to have access to them without all the overhead the CLR imposes. Also, if they could find some way to bring parallel FOR loops and Futures in without the CLR, I'd be ever-so-grateful.
Delphi's already the best there is. But fix the above things, and it would be so far ahead of the pack that people would consider it worth switching, instead of where it's currently at, struggling to maintain an ever-shrinking lead.
|
|
|
|
2
|
|
edited Nov 3 '08 at 16:48
|
Delphi is still the best development tool around for Windows. It's better than anything Visual Studio has to offer, but it's not better enough for people who have learned programming on the C family to feel an incentive to switch.
You want to make Delphi stand out? Fix the obvious annoyances in Delphi and just let it shine. There are two separate sets of features that need fixed: IDE annoyances and language annoyances. First, the post-D7 IDE is a horror to work with. Delphi made its reputation by being better than Visual Studio. Why, why did Borland decide to consciously imitate an inferior product?
- The D7 helpfiles were wonderful. I'd be hard-pressed to imagine a better documentation system for a programming environment. What in the WORLD has happened to it? Microsoft's document reader is just plain awful, and the help for the last two versions weren't even complete! Bring old-school help back please!
- Slow, slow, slow! There's just no excuse for Delphi being as slow as it is. D2009's a lot better than the last few have been, but there's still room for improvement.
- The dev team needs to remember that an IDE is a text editor, and a text editor never blocks. As long as there isn't a dialog box open, there's no reason why you should ever be unable to edit your code. That means that if CodeInsight needs to sit around and spin my HD (for up to 5 minutes, in some cases) to display some popup or tooltip, it should do it in a background thread. Same goes for whatever it's doing the first time I hit F1 in a session. Until it's done and that help options dialog box actually appears, I should be able to write more code.
- Someone already mentioned making all the random squigglies go away. If it will compile, it shouldn't be marked in the code as an error, period. Again, D2009 is a lot better at that, but it's still got a ways to go, especially with being unable to find units listed under uses.
- Class completion (CTRL-SHIFT-C) has some annoying corner cases relating to properties that need to be fixed. Check out what happens if you press that while you have a write-only property in your class, or a property whose read or write declaration refers to a protected member of a parent class. The first one produces code that won't compile. The second is subtler and more dangerous: its result compiles, but can break working code.
- It's just too expensive. It's a great program, but it's not worth nearly as much as they're charging. Turbo Delphi was a great idea. Update it to a 2009 version and they'd make a lot of people very happy.
- I can has multiplatform support plz? Being able to write code on Windows and cross-compile it to Mac and Linux (or to write the code and compile on other platforms) is a feature I'd willingly pay extra for. Lazarus is nice, but it's just missing too many critical features, and its debugger is a mess.
- EDIT: Just found another annoyance that ought to be fixed. If you leave Delphi open overnight when Windows changes between DST and standard time, (for example, if your computer is "asleep" at the time and you turn it back on again after,) it "alerts" you that a whole bunch of your files have been changed and asks you to reload them. Repeatedly. That needs to get fixed.
The language needs a bit of work too. Object Pascal is a wonderful language, and I'd pick it over VB or one of C's misbegotten descendants any day, but it's got a few rough edges that need to be polished.
- Properties are wonderful. Why are we stuck with an implementation that's only halfway complete? Give me one good reason why you should ever be unable to pass a read/write property to a var parameter. If they both refer to the same data member, it's simple. If not, retrieve the read value and make a copy of it, pass the copy, get the result, and send it to the appropriate write.
- Likewise, array properties need to be fixed. Why should they require get/set methods instead of direct access? If I wanted to work with mandatory get/set methods to access the private members of my objects, I'd code in C++. I use Delphi to get away from that sort of syntactic diarrhea.
- Bring some of the syntactic sugar introduced in Oxygene/Prism over to native Delphi. Some of it's dependent on a managed code framework, but stuff like the colon operator and double comparison ("if 5 < x < 12") are just automagical compiler tricks, and I'd love to have access to them without all the overhead the CLR imposes. Also, if they could find some way to bring parallel FOR loops and Futures in without the CLR, I'd be ever-so-grateful.
Delphi's already the best there is. But fix the above things, and it would be so far ahead of the pack that people would consider it worth switching, instead of where it's currently at, struggling to maintain an ever-shrinking lead.
|
|
|
|
1
|
|
answered Oct 30 '08 at 22:10
|
Delphi is still the best development tool around for Windows. It's better than anything Visual Studio has to offer, but it's not better enough for people who have learned programming on the C family to feel an incentive to switch.
You want to make Delphi stand out? Fix the obvious annoyances in Delphi and just let it shine. There are two separate sets of features that need fixed: IDE annoyances and language annoyances. First, the post-D7 IDE is a horror to work with. Delphi made its reputation by being better than Visual Studio. Why, why did Borland decide to consciously imitate an inferior product?
- The D7 helpfiles were wonderful. I'd be hard-pressed to imagine a better documentation system for a programming environment. What in the WORLD has happened to it? Microsoft's document reader is just plain awful, and the help for the last two versions weren't even complete! Bring old-school help back please!
- Slow, slow, slow! There's just no excuse for Delphi being as slow as it is. D2009's a lot better than the last few have been, but there's still room for improvement.
- The dev team needs to remember that an IDE is a text editor, and a text editor never blocks. As long as there isn't a dialog box open, there's no reason why you should ever be unable to edit your code. That means that if CodeInsight needs to sit around and spin my HD (for up to 5 minutes, in some cases) to display some popup or tooltip, it should do it in a background thread. Same goes for whatever it's doing the first time I hit F1 in a session. Until it's done and that help options dialog box actually appears, I should be able to write more code.
- Someone already mentioned making all the random squigglies go away. If it will compile, it shouldn't be marked in the code as an error, period. Again, D2009 is a lot better at that, but it's still got a ways to go, especially with being unable to find units listed under uses.
- Class completion (CTRL-SHIFT-C) has some annoying corner cases relating to properties that need to be fixed. Check out what happens if you press that while you have a write-only property in your class, or a property whose read or write declaration refers to a protected member of a parent class. The first one produces code that won't compile. The second is subtler and more dangerous: its result compiles, but can break working code.
- It's just too expensive. It's a great program, but it's not worth nearly as much as they're charging. Turbo Delphi was a great idea. Update it to a 2009 version and they'd make a lot of people very happy.
- I can has multiplatform support plz? Being able to write code on Windows and cross-compile it to Mac and Linux (or to write the code and compile on other platforms) is a feature I'd willingly pay extra for. Lazarus is nice, but it's just missing too many critical features, and its debugger is a mess.
The language needs a bit of work too. Object Pascal is a wonderful language, and I'd pick it over VB or one of C's misbegotten descendants any day, but it's got a few rough edges that need to be polished.
- Properties are wonderful. Why are we stuck with an implementation that's only halfway complete? Give me one good reason why you should ever be unable to pass a read/write property to a var parameter. If they both refer to the same data member, it's simple. If not, retrieve the read value and make a copy of it, pass the copy, get the result, and send it to the appropriate write.
- Likewise, array properties need to be fixed. Why should they require get/set methods instead of direct access? If I wanted to work with mandatory get/set methods to access the private members of my objects, I'd code in C++. I use Delphi to get away from that sort of syntactic diarrhea.
- Bring some of the syntactic sugar introduced in Oxygene/Prism over to native Delphi. Some of it's dependent on a managed code framework, but stuff like the colon operator and double comparison ("if 5 < x < 12") are just automagical compiler tricks, and I'd love to have access to them without all the overhead the CLR imposes. Also, if they could find some way to bring parallel FOR loops and Futures in without the CLR, I'd be ever-so-grateful.
Delphi's already the best there is. But fix the above things, and it would be so far ahead of the pack that people would consider it worth switching, instead of where it's currently at, struggling to maintain an ever-shrinking lead.
|
|
|
| |
|
Post Made Community Wiki by Community♦
|
occurred Oct 30 '08 at 22:10
|
|
|
|
|