active questions tagged discussion - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T20:01:49Z http://stackoverflow.com/feeds/tag/discussion http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1860796/your-thoughts-on-large-scale-c-software-design 3 Your thoughts on "Large Scale C++ Software Design" mlvljr 2009-12-07T15:44:49Z 2009-12-07T16:32:01Z <p>Reading the <a href="http://rads.stackoverflow.com/amzn/click/0201633620" rel="nofollow">reviews at Amazon</a> and <a href="http://accu.informika.ru/accu/bookreviews/public/reviews/l/l000736.htm" rel="nofollow">ACCU</a> suggests that John Lakos' book, <em>Large-Scale C++ Software Design</em> may be the Rosetta Stone for modularization.</p> <p>At the same time, the book seems to be really rare: not many have ever read it, and no pirate electronic copies are floating around.</p> <p>So, what do you think? </p> http://stackoverflow.com/questions/138367/most-wanted-feature-for-c-4-0 70 Most wanted feature for C# 4.0 ? Romain Verdier 2008-09-26T08:59:18Z 2009-12-07T02:15:42Z <p>Some blogs on the Internet give us several clues of what C# 4.0 would be made of. I would like to know what do you really want to see in C# 4.0.</p> <p>Here are some related articles:</p> <ul> <li><a href="http://msmvps.com/blogs/jon%5Fskeet/archive/tags/C%5F2300%5F%2B4/default.aspx" rel="nofollow">C# 4 tag on Jon Skeet's blog</a></li> <li><a href="http://anastasiosyal.com/archive/2008/07/19/4-features-for-c-4.0.aspx" rel="nofollow">4 features for C# 4</a></li> <li><a href="http://codebetter.com/blogs/jeremy.miller/archive/2007/11/25/what-do-you-want-in-c-vnext.aspx" rel="nofollow">What do you want in C# 4</a></li> <li><a href="http://blogs.msdn.com/charlie/archive/2008/01/25/future-focus.aspx" rel="nofollow">Future Focus - I: Dynamic Lookup</a></li> <li><a href="http://evain.net/blog/articles/2008/07/29/net-4-c-4-and-the-dlr" rel="nofollow">.NET 4, C# 4 and the DLR</a></li> </ul> <p>Channel 9 also hosts a <a href="http://channel9.msdn.com/posts/Charles/C-40-Meet-the-Design-Team/" rel="nofollow">very interesting video</a> where Anders Hejlsberg and the C# 4.0 design team talk about the upcoming version of the language.</p> <p>I'm particularly excited about dynamic lookup and <a href="http://en.wikipedia.org/wiki/Abstract%5Fsyntax%5Ftree" rel="nofollow">AST</a>. I hope we would be able to leverage - at some level - the underlying DLR mechanisms from C#-the-static-language.</p> <p>What about you ?</p> http://stackoverflow.com/questions/1852395/can-c-is-a-pure-object-orinted-language-as-compare-to-java-and-c -3 Can C# is a pure object orinted language as compare to java and c++ [closed] Pradyut Sinha 2009-12-05T14:54:42Z 2009-12-05T15:00:43Z <p>Can C# is a pure object orinted language as compare to java and c++? </p> <p>Please Explain</p> http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable 85 What are things that make a programmer's life miserable? Randell 2009-07-30T08:26:13Z 2009-12-05T13:31:04Z <p>What are things that make a programmer's life miserable?</p> http://stackoverflow.com/questions/432167/common-truisms-that-need-correcting-the-most 21 Common "Truisms" that need correcting the most. Charles Bretana 2009-01-11T02:00:21Z 2009-12-03T19:27:35Z <p>In addition to his "I never met a man I didn't like.", Will Rogers had another great little ditty I've always remembered. It went </p> <p>"It's not what you don't know that'll hurt you, it's what you do know that ain't so."</p> <p>We all know or subscribe to, many IT "truisms" that mostly, have a strong basis in fact, in something in our professional careers, or something we learned from others, lessons learned the hard way by ourselves, or by others who came before us. </p> <p>Unfortuntely, as these truisms spread throughout the community, the details of why they came about, and/or the caveats that affect when they are actually true and when they don't matter, tend to not spread along with them... </p> <p>We all have a tendency to look for, and latch on to, small "rules" or principles that we can use to avoid doing a complete exhaustive analysis for every decision we make. But even though they are correct 90% of the time, when we misapply them in the other 10%, we pay a penalty we might avoid if we also understood the details behind them.</p> <p>For example, when User defined functions were first introduced in SQL Server, within a year or so it became "common knowledge" that this feature had extremely bad performance (because it required a re-compilation for each time it ran), and be avoided. This "trusim" still increases many database developers' aversion to using UDFs, even though Microsoft's introduction of InLine UDFs, which do not suffer from this issue at all, mitigates this issue substantially. In recent years I have run into numerous DBAs who still believe you should "never" use UDFs, because of this.</p> <p>What other common not-so-"trusims" do you know of, that many developers believe in, that are not quite as universally true as is commonly understood, and which the developer community would benefit from being better educated about? </p> <ul> <li>Please include why it was "true" to start off with, and why/when it's not true... </li> </ul> <p>EDIT: Please try to limit responses to issues that are technical, where the "common" application of a "rule or principle" is in fact correct most of the time, or was correct back when it was first elucidated, but when, in the edge cases, or because of not understanding the principle thoroughly, or because technology has changed since it first spread, applying the rule today, without understanding the details behind the rule, can easily backfire or cause the opposite effect from what is intended. </p> http://stackoverflow.com/questions/1607551/soap-or-rest-as-a-client 3 SOAP or REST as a Client MarkPowell 2009-10-22T14:18:04Z 2009-12-03T07:21:51Z <p>I see multiple questions asking which is better, SOAP or REST from the development of the Web Service itself. However, not a lot of discussion of the pros/cons from the client perspective. If you were to write an Application and have a choice between two Web Service APIs that are similar in every way except one is SOAP and the other is REST, which would you choose and why? REST has the added benefit of allowing either XML or JSON, is there any other major difference between the two?</p> http://stackoverflow.com/questions/1717801/does-tdd-really-stop-gold-plating 2 Does TDD really stop gold plating? Archu 2009-11-11T20:20:03Z 2009-12-03T05:22:54Z <p>Questions that I want answers for...</p> <p>1) Propose one or more mechanism, which could be used to extend TDD to estimate the level of <a href="http://en.wikipedia.org/wiki/Gold%5Fplating%5F%28analogy%29" rel="nofollow">gold plating</a> that exists in an arbitrary Java program.</p> <p>2) What estimations would your mechanism provide the quantity the level of gold plating?</p> <p>3) What evidence can you provide (if any) to justify or argue that your proposal is viable extension to TDD, which provides a meaningful quantification.</p> http://stackoverflow.com/questions/1834850/python-powershell-or-other 2 Python, PowerShell, or Other? ecounysis 2009-12-02T18:26:44Z 2009-12-03T00:20:13Z <p>What are the advantages of Python, PowerShell, and other scripting environments? We would like to standardize our scripting and are currently using bat and cmd files as the standard. I think Python would be a better option than these, but am also researching PowerShell and other scripting tools.</p> <p>The scripts would be used to trigger processes such as wget etc to call web services, or other applications/tools that need to run in a specific order with specific parameters.</p> <p>We primarily work with the Windows stack, but there is a good chance we will need to support Unix in the future.</p> <p>Thanks.</p> http://stackoverflow.com/questions/254814/what-do-you-think-of-windev 3 What do you think of WinDev? vIceBerg 2008-10-31T20:17:03Z 2009-12-01T12:30:31Z <p>I have a job opportunity. They use WinDev. I did some research about it and, although it seams pretty prometting, the website claims that it's used by only 100,000 developpers.</p> <p>Have you worked with this language? What's your thoughts?</p> http://stackoverflow.com/questions/228164/on-design-patterns-when-to-use-the-singleton 22 On Design Patterns: When to use the Singleton? Setori 2008-10-23T01:17:02Z 2009-11-30T16:30:54Z <p>The glorified global variable - becomes a gloried global class. Some say breaking Object Oriented Design.</p> <p>Give me scenarios, other than the good old logger where it makes sense to use the singleton.</p> http://stackoverflow.com/questions/1818301/do-we-consider-this-as-a-bug 0 Do we consider this as a bug? Sri Kumar 2009-11-30T07:25:58Z 2009-11-30T07:56:34Z <p>Hello All,</p> <p>There is a table in the page which is pre-populated. The table has a check box to approve/reject each row item and there are buttons (SAVE, CANCEL) in the page to save the changes and to cancel the changes.</p> <p>A BUG saying "if there are no data in the table, then the SAVE and CANCEL button should be hidden" is raised.</p> <p>Is this really a BUG or a SUGGESTION? How should i consider it?</p> <p><strong>EDIT:</strong> No such thing(button hide/disable) is mentioned in the SPEC</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent 26 What "already invented" algorithm did you invent? Guy 2008-08-17T18:46:44Z 2009-11-29T11:00:00Z <p>In my question <a href="http://beta.stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server" rel="nofollow">Insert Update stored proc on SQL Server</a> I explained an efficient way of doing an insert/update - perhaps THE most efficient. It's nothing amazing but it's a small algorithm that I came up with in a mini-Eureka moment. Although I had "invented" it by myself and secretly hoped that I was the first to do so I knew that it had probably been around for years but after posting on a couple of lists and not getting confirmation I had never found anything definitive written up about it.</p> <p>So my questions: What software algorithm did you come up with that you thought that you'd invented? Or better yet, did you invent one?</p> http://stackoverflow.com/questions/1813746/should-i-put-custom-code-inside-microsofts-bcl-fcl-namespaces 2 Should I put custom code inside Microsoft's BCL/FCL namespaces? jdk 2009-11-28T20:48:27Z 2009-11-28T21:33:23Z <p>A .NET programmer is allowed to wrap code inside namespaces and also to use a namespace already defined, even those defined by Microsoft in the Framework or Base Class Library. For example if I were to use System.Windows.Forms to outline this idea:</p> <p>Reference in assembly <em>System.Windows.Forms.dll</em></p> <pre><code>// This is my own C# source code file. using System.Windows.Forms; namespace System.Windows.Forms { // In Microsoft's FCL and now in my file. /* Define my custom classes and such in here. * (I'm kind of playing inside Microsoft's "sandbox" now.) */ } </code></pre> <p>So is this practice okay? What are some good arguments for or against it?</p> <p><strong>Edit</strong>: I'm making this question language agnostic because it applies to any syntax that supports namespaces in .NET.</p> <p><strong>Update</strong>: Because answers ask why: for example, I might want to put custom code into Microsoft's System.Web.UI namespace to add extension methods to the System.Web.UI.Page class to manipulate any Web Form in my ASP.NET project. Arguably I could put those same extensions into a custom namespace and use it instead; however System.Web.UI is already being used in all ASP.NET pages so the extension methods are immediately available to all Web forms without modification -yes, a quick convenience - I don't have to add another C# using to each file. (Anybody have a better example?)</p> http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies 2 What are the best code refactoring strategies ? Pierre-Jean Coudert 2008-09-24T17:26:29Z 2009-11-27T21:12:15Z <p>Thanks for sharing your point of view and previous experiences here.</p> <p>Here are some of the point you can write on:</p> <ul> <li>What must be the main refactoring goals ?</li> <li>How do you scheduled your refactoring tasks ?</li> <li>Do you recommend any specific tool ?</li> <li>Do you plan pre and post refactoring tests ?</li> <li>Do you plan refactoring specific code-reviews ?</li> <li>...</li> </ul> <p>Anyway, feel free to share any thought, tip or best practice you can think about refactoring issues !</p> http://stackoverflow.com/questions/1654762/what-is-an-mvc-framework-and-why-is-it-necessary-useful 4 What is an MVC framework and why is it necessary/useful? Ankur 2009-10-31T15:49:27Z 2009-11-27T10:41:42Z <p>I know that an MVC framework allows you to separate business logic, data base access and presentation, but why do we need a framework to do this. </p> <p>Can't we just keep our classes separated, perhaps using different packages/folders for the model, view and controller classes?</p> http://stackoverflow.com/questions/312419/language-features-you-should-never-use 20 Language features you should never use? Cruachan 2008-11-23T11:41:20Z 2009-11-26T23:08:49Z <p>A recent post about the 'with' statement in Delphi - which in practice I never use because it trades clarity and ease of debugging for superficially 'cleaner' looking code got me thinking; what other language features, in any language, do you think should never be touched? - or at least avoided where at all possible?</p> <p>The classic example of this would be the COBOL ALTER statement, which dynamically rewrites the executing code to change the destination of a GOTO. Use of ALTER was just about a sackable offense in every COBOL shop I ever worked in.</p> <p>My supposition would be that as language design is better understood nowadays there may be fewer of these 'features' coming through - but is that true of the newer more exotic paradigms such as the functional programming languages? </p> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer 72 What development book made the most impact on you as a developer? Chris Canal 2008-09-16T13:48:48Z 2009-11-26T20:24:21Z <p>For me, <a href="http://oreilly.com/catalog/9780596007126/" rel="nofollow">Head First Design Patterns</a> was a book that made Design Patterns click for me. Once I had read it, I found I could return to GoF and take more away from it and it really helped my move on as a developer.</p> <p>What book really made an impact of how you work as a developer?</p> <p>Note: <strong>One book per answer</strong>; upvote any you agree with ;o)</p> http://stackoverflow.com/questions/502492/i-was-recently-asked-for-my-stackoverflow-rep-score-in-a-job-interview-is-that-a 67 I was recently asked for my stackoverflow rep score in a job interview. Is that appropriate? [closed] WOPR 2009-02-02T08:06:01Z 2009-11-25T05:16:50Z <p>I was recently asked for my stack overflow rep score in the context of a job interview. I was first asked what blogs I read, and after mentioning coding horror and stack overflow, was asked for my user id and rep score.</p> <p>Is that a fair question?</p> http://stackoverflow.com/questions/1702128/can-i-use-agile-in-a-non-development-project 1 Can I use Agile in a Non-Development project? Phill Pafford 2009-11-09T16:26:59Z 2009-11-24T11:24:47Z <p>I'm new to Scrum and Agile but wanted to know if I could use this methodology/practice for like a general "Project Management Solution" not just development?</p> <p>Pros/Cons/Suggestions?</p> <p>Any FREE software available to help out with the process? Small user group, about 10</p> <p>Thanks!</p> http://stackoverflow.com/questions/1785038/state-of-ruby-on-rails-community-and-framework 4 State of Ruby on Rails Community and Framework ahsteele 2009-11-23T18:24:34Z 2009-11-24T09:37:08Z <p>As an exercise I have spent the past 2 months learning Ruby on Rails. In learning RoR I relied heavily upon <a href="http://www.pragprog.com/titles/rails3/agile-web-development-with-rails" rel="nofollow">Agile Development with Rails</a>. This book was an invaluable resource. From a learning perspective the <a href="http://37signals.com/" rel="nofollow">37Signals</a> sponsored site <a href="http://rubyonrails.org/documentation" rel="nofollow">Learn All About Ruby on Rails</a> was also a great jumping off point.</p> <p>The issues that I ran into that were not covered by the above resources ended up as <a href="http://stackoverflow.com/search?q=user:61654+%5Bruby-on-rails%5D">my RoR questions on Stack Overflow</a>. In attempting to self help before posting many of those questions I would find little or no documentation. What documentation I did find came in the form of blog posts circa 2006. I have no issues with using blog posts as a resource but am concerned that seemingly little documentation is still being generated by the community.</p> <p>That said it does seem like plenty of RoR development continues. It is actively being taught at <a href="http://www.cmu.edu/silicon-valley/" rel="nofollow">Carnegie Mellon Silicon Valley</a> and company's like <a href="http://www.pivotallabs.com/" rel="nofollow">Pivotal Labs</a> are still huge proponents of the framework. That said, I do find it disconcerting that a post from 2006 listing <a href="http://www.rubyinside.com/6-ruby-and-rails-job-sites-312.html" rel="nofollow">6 job sites for Rails programmers</a> was consolidated in 2009.</p> <p>What I am driving at is:</p> <ul> <li>Has the RoR community begun to dry up?</li> <li>Have people moved onto other frameworks and abandoned RoR?</li> <li>Is the state of the framework such that not a lot of new things are occurring limiting the amount/need for discussion?</li> <li>Am I looking in all the wrong places and jumping to conclusions?</li> </ul> <p>My intention is not to incite a flame war but begin an honest and unbiased dialog to better understand where RoR stands as a framework and the current state of its community.</p> http://stackoverflow.com/questions/393462/defend-zero-based-arrays 42 Defend zero-based arrays DrJokepu 2008-12-26T04:12:05Z 2009-11-23T22:24:33Z <p>A <a href="http://stackoverflow.com/questions/392397/arrays-whats-the-point">question asked here recently</a> reminded me of a debate I had not long ago with a fellow programmer. Basically he argued that zero-based arrays should be replaced by one-based arrays since arrays being zero based is an implementation detail that originates from the way arrays and pointers and computer hardware work, but these sort of stuff should not be reflected in higher level languages.</p> <p>Now I am not really good at debating so I couldn't really offer any good reasons to stick with zero-based arrays other than they sort of feel like more appropriate. I am really interested in the opinions of other developers, so I sort of challenge you to come up with reasons to stick with zero-based arrays!</p> http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer 61 What's Your Motto As A Developer/Programmer? RWendi 2008-09-17T10:09:00Z 2009-11-23T18:27:19Z <p>Title says it all... Mine is "Never stop learning"... :)</p> http://stackoverflow.com/questions/1783754/start-a-software-house-of-my-own-many-doubts 3 Start a software house of my own... many doubts... [closed] gotch4 2009-11-23T15:16:16Z 2009-11-23T15:46:14Z <p>Hello, I'm a young programmer, 29 and I'm quite talented. So far I've been working in many places and companies. Unfortunately it happens that I live in Italy. You may or may not know, but my country doesn't shine for software house industry. 99% of jobs are enterprise software jobs, often uninteresting and with unexisting technological challanges. Unlike most of my collegues, I come from a true passion. I hack a lot in my spare time, I keep very up to date, I read a lot and study new technologies. It is so frustrating to see that no employer is interested and they just want you to do their silly company management software, while I'd be interested in working on other stuff like Linux, Guis, multimedia and graphics. Now, one alternative is to move somewhere far... but I've even thought of starting up something, without moving to, say, London. While I'm pretty confident of my management and developmente skills, my concerns are:</p> <ul> <li>How do I find clients??? I really have no idea where to find costumers. Are there special channels? Or shall I just rely on advertising? I really have no clue about this. </li> <li>What about funding??? I've no much savings... What can I do? Shall I set up a product and try to find somebody to finance me or what?</li> <li>Finally, I live in a rural area, it is not easy to find programmers. My former employer has been looking for a replacement for me for 12 months and is still searching. This is a huge problem, but I'm considering that I may find lots of people willing to work remotely. Do you think this is viable or may be a disaster?</li> </ul> <p>Thank you all in advance for your suggestions</p> http://stackoverflow.com/questions/1779383/to-what-extent-can-optimisation-replace-macros-stack-allocation 0 To what extent can optimisation replace Macros, Stack allocation ... ? mike g 2009-11-22T17:43:13Z 2009-11-22T19:41:29Z <p>There is a lot of discussion about the lack of macros in some languages, and the inefficiencies that can arise. Perhaps the most common example is the guard before a log statement. </p> <p>To what extent can current &amp; future optimisation be relied upon to do the right thing and obviate the need for a macro. In this example and in general?</p> <pre><code>// shorter log.debug("Foo: "+ bar); // faster? if(log.isDebug()){ log.debug("Foo: "+ bar); } // best or unnecessary? LOG_DEBUG("Foo: "+bar) </code></pre> <p>A similar argument exists for stack allocation. For 'normal' programming, does the programmer need to have the option to be explicit about this kind of thing is a more automatic approach the way forward?</p> http://stackoverflow.com/questions/147070/are-we-as-programmers-becoming-too-dependent-on-our-ides 24 Are we as programmers becoming too dependent on our IDEs? Mike Spross 2008-09-29T00:25:27Z 2009-11-22T15:00:37Z <p>For a long time, the only IDE I knew was the VB6 IDE, which is fairly outdated (ca. 1998) and not very feature-rich (unless you purchase third-party add-ons). You can set breakpoints and watches and there are other (now common-place) amenities, such as Intellisense. </p> <p>So, when I saw Eclipse for the first time, I was amazed at how much the IDE could do for you (<code>Generate Getters and Setters</code>, the quick-fix feature, the <code>Refactoring</code> menu, etc.). Same thing when we moved to Visual Studio and I saw all the auto-generated Form Designer code for the first time. </p> <p>These extras are great for productivity and just plain Getting Things Done, but I have to wonder, are we becoming too reliant on IDE's? How many programmers actually understand the rationale for the refactoring suggestions their IDE's give them? Do they need to understand why the IDE is suggesting they make a particular change to the code they just wrote?</p> <p>I just wonder, especially as more and more productivity features get crammed into IDE's, how much thinking future programmers will actually be doing if the IDE starts shielding them from having to actually think things through before they code, instead of using the IDE as a crutch (i.e. "I can write crap code, because the IDE will refactor it for me").</p> <p>Sometimes I find it very liberating to just fire up a text editor and code in that for awhile, to prove to myself that I still actually know the language I'm coding in.</p> <p>What are your thoughts on this? Are super-friendly IDE's jammed-packed with productivity features ultimately harming programmers by hiding too many details of the language and shielding them from making real design decisions?</p> http://stackoverflow.com/questions/1772510/coding-standard 0 Coding Standard [closed] BALA 2009-11-20T18:48:01Z 2009-11-21T18:45:49Z <p>What do you gurus consider to be a very good coding standard in terms of PHP programming? Please advise!</p> http://stackoverflow.com/questions/1012522/discussion-silverlight-4-expectations 1 Discussion: Silverlight 4 expectations Nissim 2009-06-18T13:03:11Z 2009-11-21T03:43:06Z <p>SL 3 is almost here (the official release date is <a href="http://blogs.zdnet.com/microsoft/?p=2912" rel="nofollow">the 10th of July</a>), and most of its new features are already known (mainly UI improvements and wider support in other media formats). I think it's time open a discussion about what are the expecations from SL4.</p> <p>So, what features do you wish will be available in Silverlight 4?</p> <p>My (subjective) list:</p> <ol> <li>Offer an option to run SL apps with elevated privileges (authorized by client, of course)</li> <li>Printing</li> <li>More mouse events (Scrolling)</li> </ol> http://stackoverflow.com/questions/1053/a-little-diversion-into-floating-point-imprecision-part-1 2 A little diversion into floating point (im)precision, part 1 Chris Jester-Young 2008-08-04T06:21:38Z 2009-11-20T20:37:54Z <p>Most mathematicians agree that e ** (πi) + 1 = 0. However, most floating point implementations disagree. How well can we settle this dispute?</p> <p>I'm keen to hear about different languages and implementations, and various methods to make the result as close to zero as possible. Be creative!</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you 341 What real life bad habits has programming given you? [closed] Jacob T. Nielsen 2008-10-02T20:31:11Z 2009-11-20T19:11:03Z <p>Programming has given me a lot of bad habits and it continues to give me more everyday. But I have also gotten some bad habits from the mindset that I have put myself in. There simply are some things that are deeply rooted in my nature, though some of them I wish I could get rid of.</p> <p>A few:</p> <ul> <li>Looking for polymorphism, inheritance and patterns in all of God's creations.</li> <li>Explaining the size of something in pixels and colors in hex code.</li> <li>Using code related abstract terms in everyday conversations. </li> </ul> <p>How have you been damaged? </p> http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist 34 Delphi 2010 Beta: What's on your wishlist? plainth 2009-03-20T06:07:11Z 2009-11-20T12:56:41Z <p>Soon Delphi 2010 "Weaver" will enter in beta. (See <a href="http://www.embarcadero.com/products/beta%5Fprograms.php" rel="nofollow">http://www.embarcadero.com/products/beta_programs.php</a>)</p> <p>Which would be your most wanted features for the next release of Delphi?</p> <p>Mine (from top of the head):</p> <ul> <li>tooling for synchronizing the representations of DB schema (aka. DB metadata) in code and in database </li> <li>language enhancements: <ul> <li>CASE on non-ordinal types</li> <li>lazy evaluation</li> <li>mixins</li> <li>AOP (aspect oriented programming)</li> </ul></li> <li>VCL enhancements: <ul> <li>DB enhancements (TDataSet, TClientDataSet - faster, more feature rich)</li> <li>OPF/ORM on native side</li> <li>(more) containers, classes (using generics)</li> </ul></li> <li>IDE enhancements: <ul> <li>Runtime Object Inspector using the already registered editors to allow WYSWYG debugging of the objects/classes (and generally a better debugger)</li> <li>Code management tools</li> <li>Refactoring assistants</li> <li>Find unused code (ok, here we need support from linker)</li> </ul></li> <li>64-bit compiler</li> </ul> <p>...and many many more :-)</p> <p>Yours?</p> <p>UPDATE: There are some sneak previews at <a href="http://wings-of-wind.com" rel="nofollow">http://wings-of-wind.com</a> See for yourself.</p>