Thread overview | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
July 04, 2003 D User Poll | ||||
---|---|---|---|---|
| ||||
1) What's your name? 2) What's your programming experience? 3) What's your D knowledge? Beginner Intermediate Advanced 4) What programming language are you most familiar with? 5) What's your main operating system? 6) Which type of application you want to develop in D? 7) Top Three Wishes for D? |
July 04, 2003 Re: D User Poll | ||||
---|---|---|---|---|
| ||||
Posted in reply to Andrew Edwards | > 1) What's your name? Andrew Edwards > 2) What's your programming experience? 0-1 years > 3) What's your D knowledge? Beginner > 4) What programming language are you most familiar with? D > 5) What's your main operating system? Windows XP > 6) Which type of application you want to develop in D? Realtime Military Databases Maintenance Management Systems (military) Platform independent Operating System (distant dream) > 7) Top Three Wishes for D? Complete Documentation Programming Tutorials |
July 04, 2003 Re: D User Poll | ||||
---|---|---|---|---|
| ||||
Posted in reply to Andrew Edwards | > > 7) Top Three Wishes for D?
>
> Complete Documentation
> Programming Tutorials
>
and Success
|
July 04, 2003 Re: D User Poll | ||||
---|---|---|---|---|
| ||||
Posted in reply to Andrew Edwards | Andrew Edwards wrote: > > 1) What's your name? Helmut Leitner > 2) What's your programming experience? 28 years, 20 years C > 3) What's your D knowledge? Beginner > 4) What programming language are you most familiar with? C(Pascal,Fortran), Basic, Perl, Java > 5) What's your main operating system? 80% Windows 20% Linux > 6) Which type of application you want to develop in D? client based GUI / database applications server based CGI > 7) Top Three Wishes for D? an abstract object interface an abstract array interface a good garbage collector -- Helmut Leitner leitner@hls.via.at Graz, Austria www.hls-software.com |
July 04, 2003 Re: D User Poll | ||||
---|---|---|---|---|
| ||||
Posted in reply to Andrew Edwards | Andrew Edwards wrote: > 1) What's your name? Simon J Mackenzie (alias SMack) > > 2) What's your programming experience? Way, way out of date. Recently some C. Last seriously coded in '94. > > 3) What's your D knowledge? > >>>>>> Beginner > > Intermediate > > Advanced > > 4) What programming language are you most familiar with? C/C++ > > 5) What's your main operating system? Linux +98% / Windows 2%- (havn't been game to ditch windows yet) > > 6) Which type of application you want to develop in D? D Application/Class set to intergrate LCDProc, Lirc with Ogg Vorbis playback for a portable music player on mini-itx motherboard system running Linux. > > 7) Top Three Wishes for D? > > D intergration of KDevelop Improved/updated documentation DOSX Support |
July 04, 2003 Re: D User Poll | ||||
---|---|---|---|---|
| ||||
Posted in reply to Andrew Edwards | "Andrew Edwards" <edwardsac@spamfreeusa.com> escribió en el mensaje news:be3pk6$22d6$1@digitaldaemon.com... | 1) What's your name? | Carlos Santander | 2) What's your programming experience? | about 10 years | 3) What's your D knowledge? | | Beginner | | | 4) What programming language are you most familiar with? | Basic, Delphi, C/C++, Java, D | 5) What's your main operating system? | Windows, sometimes Linux | 6) Which type of application you want to develop in D? | Not sure about that... haven't thought too much about it | 7) Top Three Wishes for D? | More acceptance A real and complete IDE More compilers (that'd mean competition, which is always good...) ————————————————————————— Carlos Santander --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.495 / Virus Database: 294 - Release Date: 2003-06-30 |
July 04, 2003 Re: D User Poll | ||||
---|---|---|---|---|
| ||||
Posted in reply to Carlos Santander B. | Carlos Santander B. wrote:
> | 7) Top Three Wishes for D?
> |
> More acceptance
> A real and complete IDE
> More compilers (that'd mean competition, which is always good...)
One integrated into GCC would be nice.
Stephan
|
July 04, 2003 Re: D User Poll | ||||
---|---|---|---|---|
| ||||
Posted in reply to Andrew Edwards | Andrew Edwards wrote:
> 7) Top Three Wishes for D?
- A cleaned-up syntax that has no baggage or special cases. No support for double-syntaxes (C-style function pointers and arrays). Struct constructors and destructors (with clearer rules than C++), and consequently the removal of the RTTI hack. Support for struct inheritance. No special case handling of constructors; removing the "super ()" special case which should be "super.this ()"; their inheritance should be the same as any other method; and "new Object;" should not be valid. Bracketing with special methods should be consistent; either you need parentheses "~this ()" or you don't "unittest". None of this half-and-half.
- A useable template syntax that is integrated into the language as full-blown genericism, rather than appearing, like C++, to be attached on top of it. In particular, it must be better suited for generic arguments to methods than either C++ or D are.
- A modern and platform-isomorphic link and installation system that has no difference between static and shared binaries (either in writing, in compiling, or in using them), doesn't penalise casual computer users, and uses a single shared library format if possible, without affecting integration with C.
|
July 04, 2003 Re: D User Poll | ||||
---|---|---|---|---|
| ||||
Posted in reply to Andrew Edwards | "Andrew Edwards" <edwardsac@spamfreeusa.com> wrote in news:be3pk6$22d6$1 @digitaldaemon.com: > 1) What's your name? Patrick Down > 2) What's your programming experience? 23 Years 4 Teenage Apple II hacker* 6 University CS BS/MS student 13 Professional programmer *Back in the days when hacker wasn't a negative term. > 3) What's your D knowledge? Intermediate > 4) What programming language are you most familiar with? C++,Python > 5) What's your main operating system? Windows > 6) Which type of application you want to develop in D? I don't really have a definite agenda. Lots of projects started few finished. > 7) Top Three Wishes for D? 1. Continued expansion of it's generics capability 2. Interator/Generator support 3. A good garbage collector And of course wide spread acceptance |
July 04, 2003 Re: D User Poll | ||||
---|---|---|---|---|
| ||||
Posted in reply to Burton Radons | > 3) What's your D knowledge? Beginner > 7) Top Three Wishes for D? - fixing "bool is bit" - fixing "string is array" - fixing the property namespace "fun": struct C { // int size; } void main(char[][] arg) { C c; c.size = 99; printf ("%d", c.size); } Cheers, Sz. |
Copyright © 1999-2021 by the D Language Foundation