User Mattias Andersson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T09:46:54Z http://stackoverflow.com/feeds/user/32841 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/745179/how-to-make-reviewer-interested-in-high-quality-code-review/745255#745255 10 Answer by Mattias Andersson for How to make reviewer interested in high quality code review? Mattias Andersson 2009-04-13T20:25:49Z 2009-04-13T20:42:47Z <p><strong>Accountability encourages quality. The reviewer's stamp of "reviewed" approval should be a statement that the reviewer would have checked that code in, himself.</strong></p> <p>Consider this scenario: A bad late-cycle bug is found and tracked back to its original checkin. Instead of only asking the <em>author</em> why it happened, ask both the author <em>and the reviewer</em>. Both the author and the reviewer should learn from the mistake.</p> <p>If a reviewer who lets crummy code pass as "reviewed" is held accountable for the poor workmanship (of the review), then the reviews will improve: either the person doing the reviews will start doing better reviews, or the next person filling that position will. I don't mean to sound harsh, but people need to actually do their jobs. (This of course assumes that reviewing code is a part of the job, not just a friendly favour.)</p> http://stackoverflow.com/questions/368913/whats-a-good-way-to-serialize-delphi-object-tree-to-xml-using-rtti-and-not-cust 5 What's a good way to serialize Delphi object tree to XML--using RTTI and not custom code? Mattias Andersson 2008-12-15T16:29:22Z 2008-12-16T19:42:05Z <p>What's a good way to serialize a Delphi object tree to XML--using RTTI and not custom code?</p> <p>I would have loved to find that this feature is already built into Delphi, but it doesn't seem to be.</p> <p>I've found a few components (posted, below) that seem like they might perform this function. Have you used any of them or some other offering? Have you built your own? Am I missing something obvious, in Delphi?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/368913/whats-a-good-way-to-serialize-delphi-object-tree-to-xml-using-rtti-and-not-cust/368934#368934 3 Answer by Mattias Andersson for What's a good way to serialize Delphi object tree to XML--using RTTI and not custom code? Mattias Andersson 2008-12-15T16:33:31Z 2008-12-15T16:33:31Z <p><strong>Simdesign's NativeXml</strong></p> <p><em>Link:</em> <a href="http://www.simdesign.nl/xml.html" rel="nofollow">http://www.simdesign.nl/xml.html</a></p> <p><em>Licence:</em> € 29,95</p> <p><em>Quote:</em> A native Delphi XML parser and writer. Unique feature: Store, read and create any TPersistent object to/from XML directly (see Example5). This is done by iterating through all of the objects' published properties by use of RTTI (runtime type information). This feature is only available for D5 and up.</p> http://stackoverflow.com/questions/368913/whats-a-good-way-to-serialize-delphi-object-tree-to-xml-using-rtti-and-not-cust/368931#368931 3 Answer by Mattias Andersson for What's a good way to serialize Delphi object tree to XML--using RTTI and not custom code? Mattias Andersson 2008-12-15T16:32:29Z 2008-12-15T16:32:29Z <p><strong>DragonSoft's XML Class Serializer</strong></p> <p><em>Link:</em> <a href="http://www.dragonsoft.us/delphi_vcl.php" rel="nofollow">http://www.dragonsoft.us/delphi_vcl.php</a></p> <p><em>Licence:</em> Licensed under the Mozilla Public Licence ("MPL") version 1.1</p> <p><em>Quote:</em> Allows to serialize/deserialize VCL Objects/Components via XML. Store/restore state of the object (published properties). Special classes support - TStrings, TCollection, TPicture. Full process control.</p> http://stackoverflow.com/questions/368913/whats-a-good-way-to-serialize-delphi-object-tree-to-xml-using-rtti-and-not-cust/368923#368923 3 Answer by Mattias Andersson for What's a good way to serialize Delphi object tree to XML--using RTTI and not custom code? Mattias Andersson 2008-12-15T16:31:13Z 2008-12-15T16:31:13Z <p><strong>JVCL's TJvTranslator.ComponentToXML</strong></p> <p><em>Link:</em> <a href="http://sourceforge.net/project/showfiles.php?group_id=45786&amp;package_id=42327" rel="nofollow">http://sourceforge.net/project/showfiles.php?group_id=45786&amp;package_id=42327</a></p> <p><em>Licence:</em> Licensed under the Mozilla Public Licence ("MPL") version 1.1</p> <p><em>Observation:</em> Seems to do recursive serialization, but the fact that it is clearly intended for "Translation" gives me pause.</p> http://stackoverflow.com/questions/262892/what-delphi-coding-standards-documents-do-you-follow 4 What Delphi coding standards document(s) do you follow? Mattias Andersson 2008-11-04T18:44:56Z 2008-11-20T19:18:26Z <p><strong>What Delphi coding standards document(s) do you follow?</strong></p> <p>Our company is looking at putting some better coding standards in place, to improve our code’s readability, reviewability, and maintainability. We’ve come across CodeGear’s “Object Pascal Style Guide”, but it hasn’t been touched in quite a while and I imagine a number of people have made some local improvements or additions. I’ve come across some published variations and other documents, which I will list, below.</p> <p>NB: I do <em>not</em> want to start a style war. I just want to know what standards you follow, and why.</p> <p>Thanks.</p> <p><hr /> <strong>UPDATE:</strong> Well, the "JCL Delphi Language Style Guide" seems to be the clear winner! Thanks!</p> http://stackoverflow.com/questions/259673/what-is-the-best-way-to-share-delphi-source-files-among-projects 11 What is the best way to share Delphi source files among projects? Mattias Andersson 2008-11-03T19:37:49Z 2008-11-20T18:58:45Z <p><strong>What is the best way to share Delphi source files among projects?</strong></p> <p><em>Clarification: We want to use a single source file in multiple Delphi projects. We've been using our SCM tool to put the same file into multiple folders, but this is not a super-elegant experience and we are also considering migrating to a tool that doesn't support this.</em></p> <p>As I’ve been investigating this question, I’ve considered a few different approaches, but I’d like to know what you’re doing and how you find your approach.</p> <p><strong>Important Scenarios:</strong></p> <ul> <li>Code-time <ul> <li>Adding a new sharing dependency should require explicit declaration, so that sharing is managed.</li> <li>Adding a new sharing dependency should still be relatively simple; it should not require a complicated process. <ul> <li>One file which lists all of the project’s “imported” files (from externally) would be nice.</li> </ul></li> </ul></li> <li>Compile-time <ul> <li>All projects should always build with the one current version (current as of the source sync state plus local edits). <ul> <li>(Maintaining different versions in different locations should use file branching, which is not the topic, here.)</li> </ul></li> <li>Whether each project should be able to affect the shared file’s compilation with different compiler settings (including flags) is arguable. <ul> <li>It’s arguably easier to maintain (i.e. long-term) source code that is always built consistently.</li> <li>It’s arguably easier to make maintenance fixes (i.e. short-term) if the scope of said changes can easily be restricted to one project.</li> </ul></li> </ul></li> <li>Debug-time <ul> <li>The correct version of the source should automatically open, when stepping into a routine or setting a breakpoint.</li> <li>Editing the displayed source should affect the next build. <ul> <li>We do not want to debug against a temporary copy of the source: we'd probably lose code, in the confusion.</li> </ul></li> </ul></li> </ul> <p><strong>Considerations:</strong></p> <ul> <li>Near-Term: <ul> <li>What approach will be simplest to put in place?</li> </ul></li> <li>Long-Term: <ul> <li>What approach will be simplest to use and maintain?</li> </ul></li> </ul> <p>Thanks, in advance, for your feedback!</p> <p>Mattias</p> <p><hr/> <strong>--- UPDATE ---</strong></p> <p>Thanks for your feedback, via answers, comments, and votes!</p> <p>I've started down the path of putting shared files into one "producer" project and importing a list of compiled files into each "consumer" project. The projects are being linked together with MSBuild. Once things are more nailed-down, I'll edit this question and the "Library Project" answer, to share what I've learned.</p> <p>Stay tuned! (But don't hold your breath; you'll asphyxiate within minutes! :P )</p> http://stackoverflow.com/questions/290559/how-do-i-stop-start-a-scheduled-task-on-a-remote-computer-programatically/290613#290613 0 Answer by Mattias Andersson for How do I stop/start a scheduled task on a remote computer programatically Mattias Andersson 2008-11-14T16:18:46Z 2008-11-14T16:18:46Z <pre> C:\>at /? The AT command schedules commands and programs to run on a computer at a specified time and date. The Schedule service must be running to use the AT command. AT [\\computername] [ [id] [/DELETE] | /DELETE [/YES]] AT [\\computername] time [/INTERACTIVE] [ /EVERY:date[,...] | /NEXT:date[,...]] "command" \\computername Specifies a remote computer. Commands are scheduled on the local computer if this parameter is omitted. id Is an identification number assigned to a scheduled command. /delete Cancels a scheduled command. If id is omitted, all the scheduled commands on the computer are canceled. /yes Used with cancel all jobs command when no further confirmation is desired. time Specifies the time when command is to run. /interactive Allows the job to interact with the desktop of the user who is logged on at the time the job runs. /every:date[,...] Runs the command on each specified day(s) of the week or month. If date is omitted, the current day of the month is assumed. /next:date[,...] Runs the specified command on the next occurrence of the day (for example, next Thursday). If date is omitted, the current day of the month is assumed. "command" Is the Windows NT command, or batch program to be run. </pre> http://stackoverflow.com/questions/268990/engineer-accountability-and-code-review-processes/270370#270370 2 Answer by Mattias Andersson for Engineer accountability and code review processes Mattias Andersson 2008-11-06T21:31:41Z 2008-11-06T21:31:41Z <p><strong>If you want to ensure that every changelist gets reviewed, <em>before</em> checkin,</strong> then you could have your source control tool reject unreviewed checkins. For example, a trigger could reject checkins without "CodeReview: " in the checkin comment. Although people could still lie, they could also be held accountable.</p> <p><strong>If you want to ensure that every changelist gets reviewed, <em>after</em> checkin,</strong> then you could see if Code Collaborator will play nicely with your source control system and automatically make a review task after each checkin (push or pull; whatever works). After that, use whatever "polite annoyance" features Code Collaborator has, to make sure reviews actually get <em>done</em>.</p> <p><strong>If you want people to review <em>only some</em> checkins, not <em>all</em> checkins,</strong> then good luck with that.</p> http://stackoverflow.com/questions/264042/is-it-better-to-master-a-few-programming-languages-than-to-learn-many/264214#264214 16 Answer by Mattias Andersson for Is it better to master a few programming languages than to learn many? Mattias Andersson 2008-11-05T02:44:59Z 2008-11-05T02:44:59Z <p>To answer your question, "It depends on the languages."</p> <p><strong>I think there is <em>a little</em> value in learning different languages with variations in <em>syntax</em>.</strong></p> <p><strong>I think there is <em>a lot</em> of value in learning different languages with variations in <em>paradigm</em>.</strong></p> <p>In my opinion, learning languages that teach you new ways of thinking about design and implementation will make you a much better programmer--even in <em>other</em> languages. The additional perspectives will help you find and use the best approach, even if it's not native to the language you're using.</p> <p>Some example paradigms:</p> <ul> <li>Event-Driven (such as VB or Delphi)</li> <li>Imperative (such as C or Basic)</li> <li>Declarative (such as Prolog or Haskell)</li> <li>Functional (ideally "pure", such as Haskell)</li> <li>Object-Oriented (such as Java or C++)</li> <li>Low-Level (such x86 Assembler)</li> <li>Relational-Database-Oriented (such as SQL)</li> <li>Data-Transformation-Oriented (such as XSLT)</li> </ul> <p>The list goes on. The wikipedia page on <a href="http://en.wikipedia.org/wiki/Programming_paradigm" rel="nofollow">programming paradigms</a> is an interesting place to dig into more possibilities. (The <a href="http://en.wikipedia.org/wiki/Categorical_list_of_programming_languages#Procedural_languages" rel="nofollow">programming languages by category</a> page may also be interesting.)</p> <p>However, if you just want to jump right into <em>one</em> new language, I recommend Lisp! :-) Lisp has so many interesting things to offer, I think every developer should know it.</p> <p>Enjoy!</p> http://stackoverflow.com/questions/263419/getting-started-with-xml-and-delphi/263522#263522 5 Answer by Mattias Andersson for Getting started with XML and Delphi Mattias Andersson 2008-11-04T21:33:18Z 2008-11-04T21:33:18Z <p>Here are a couple of tutorials:</p> <ul> <li><a href="http://delphi.about.com/od/windowsshellapi/a/xml_delphi.htm" rel="nofollow">Creating, Parsing and Manipulating XML Documents with Delphi</a></li> <li><a href="http://homepages.borland.com/ccalvert/TechPapers/Delphi/XMLSimple/XMLSimple.html" rel="nofollow">Basic XML Parsing in Delphi</a></li> </ul> <p>Additionally, you may want to look into the <a href="http://delphi.wikia.com/wiki/Category:XMLIntf_Unit" rel="nofollow">XMLIntf unit</a> (although this linked Delphi Wikia page is very light on content).</p> http://stackoverflow.com/questions/262892/what-delphi-coding-standards-documents-do-you-follow/262917#262917 0 Answer by Mattias Andersson for What Delphi coding standards document(s) do you follow? Mattias Andersson 2008-11-04T18:49:26Z 2008-11-04T18:49:26Z <p><strong>About.com’s “Delphi Identifier Naming Conventions”</strong></p> <p><a href="http://delphi.about.com/od/standards/l/bldnc.htm" rel="nofollow">http://delphi.about.com/od/standards/l/bldnc.htm</a></p> http://stackoverflow.com/questions/262892/what-delphi-coding-standards-documents-do-you-follow/262914#262914 0 Answer by Mattias Andersson for What Delphi coding standards document(s) do you follow? Mattias Andersson 2008-11-04T18:49:00Z 2008-11-04T18:49:00Z <p><strong>CodeGear’s “Hungarian peanut butter”, for naming identifiers</strong></p> <p><a href="http://dn.codegear.com/article/27983" rel="nofollow">http://dn.codegear.com/article/27983</a></p> http://stackoverflow.com/questions/262892/what-delphi-coding-standards-documents-do-you-follow/262910#262910 0 Answer by Mattias Andersson for What Delphi coding standards document(s) do you follow? Mattias Andersson 2008-11-04T18:48:19Z 2008-11-04T18:48:19Z <p><strong>Econos – Coding Standard Document</strong></p> <p>(Subtitled “Delphi 4 Developer's Guide Coding Standards Document”.)</p> <p><a href="http://www.econos.de/delphi/cs.html" rel="nofollow">http://www.econos.de/delphi/cs.html</a></p> http://stackoverflow.com/questions/262892/what-delphi-coding-standards-documents-do-you-follow/262906#262906 0 Answer by Mattias Andersson for What Delphi coding standards document(s) do you follow? Mattias Andersson 2008-11-04T18:47:48Z 2008-11-04T18:47:48Z <p><strong>JVCL-extended version of CodeGear’s “Object Pascal Style Guide”</strong></p> <p>(This looks just like the JCL version, to me.)</p> <p><a href="http://homepages.codegear.com/jedi/jvcl/StyleGuide.htm" rel="nofollow">http://homepages.codegear.com/jedi/jvcl/StyleGuide.htm</a></p> http://stackoverflow.com/questions/262892/what-delphi-coding-standards-documents-do-you-follow/262903#262903 6 Answer by Mattias Andersson for What Delphi coding standards document(s) do you follow? Mattias Andersson 2008-11-04T18:47:05Z 2008-11-04T18:47:05Z <p><strong>JCL Delphi Language Style Guide</strong></p> <p>(An extension of CodeGear’s “Object Pascal Style Guide”)</p> <p><a href="http://homepages.borland.com/jedi/jcl/documents/styleguide.html" rel="nofollow">http://homepages.borland.com/jedi/jcl/documents/styleguide.html</a></p> http://stackoverflow.com/questions/262892/what-delphi-coding-standards-documents-do-you-follow/262894#262894 1 Answer by Mattias Andersson for What Delphi coding standards document(s) do you follow? Mattias Andersson 2008-11-04T18:45:15Z 2008-11-04T18:45:15Z <p><strong>CodeGear’s “Object Pascal Style Guide”</strong></p> <p><a href="http://dn.codegear.com/article/10280" rel="nofollow">http://dn.codegear.com/article/10280</a></p> http://stackoverflow.com/questions/259673/what-is-the-best-way-to-share-delphi-source-files-among-projects/259684#259684 7 Answer by Mattias Andersson for What is the best way to share Delphi source files among projects? Mattias Andersson 2008-11-03T19:39:03Z 2008-11-03T22:55:05Z <p><strong>Use Source Control System's File Sharing Feature</strong></p> <ul> <li>Pro: Fast and easy to set up, if the SCM system supports it.</li> <li>Pro/Con: Each consumer project can independently affect compile-time.</li> <li>Con: There is no official location, in the local working copy of sources. <ul> <li>This can lead to confusion.</li> </ul></li> <li>Con: Source changes are not reflected in other locations until checkin and re-retrieve. <ul> <li>To properly verify other projects, before checkin, is possible but a royal pain in the butt.</li> </ul></li> <li>Con: Not all SCM systems support shared files. <ul> <li>Subversion’s closest feature is folder-level svn:externals.</li> </ul></li> </ul> <p>(Edit: Retitled this to avoid confusion. <em>Of course</em>, everyone should <em>use</em> Source Control! :-) )</p> http://stackoverflow.com/questions/259673/what-is-the-best-way-to-share-delphi-source-files-among-projects/259699#259699 3 Answer by Mattias Andersson for What is the best way to share Delphi source files among projects? Mattias Andersson 2008-11-03T19:42:58Z 2008-11-03T19:42:58Z <p><strong>Use a Library Project</strong></p> <ul> <li>Pro: Only ever one copy of each file to potentially edit.</li> <li>Pro: Only one compile, for each source file. <ul> <li>Less time to compile.</li> <li>Consistent compilation among dependent projects.</li> <li>Natural incremental builds.</li> </ul></li> <li>Pro: Debugger naturally links to proper source. <ul> <li>TODO: Confirm.</li> </ul></li> <li>Pro/Con: Consumer projects can not independently affect compile-time.</li> <li>Con: May be difficult to manage sharing at a file-by-file level. <ul> <li>TODO: Investigate.</li> </ul></li> <li>Con: Could take significant effort to set up. <ul> <li>Setup of MSBuild projects.</li> <li>Required project settings must be centralized and these changes must be verified.</li> </ul></li> </ul> http://stackoverflow.com/questions/259673/what-is-the-best-way-to-share-delphi-source-files-among-projects/259693#259693 0 Answer by Mattias Andersson for What is the best way to share Delphi source files among projects? Mattias Andersson 2008-11-03T19:41:36Z 2008-11-03T19:41:36Z <p><strong>Copy-Compile-Delete</strong></p> <ul> <li>Pro: Only one official copy of each file, to edit.</li> <li>Pro: Debugger will not link to the temporary copy, since it has been deleted by debug-time. <ul> <li>TODO: Verify that the debugger will find the original source, if we put it in the “Browsing Path”.</li> </ul></li> <li>Pro: File sharing can be managed file-by-file.</li> <li>Pro/Con: Each consumer project can independently affect compile-time.</li> <li>Con: May take some work to set up the MSBuild projects.</li> <li>Con: May be difficult/impossible to incrementally build shared files. <ul> <li>May involve rewriting some of Delphi’s MSBuild rules.</li> </ul></li> </ul> http://stackoverflow.com/questions/259673/what-is-the-best-way-to-share-delphi-source-files-among-projects/259689#259689 0 Answer by Mattias Andersson for What is the best way to share Delphi source files among projects? Mattias Andersson 2008-11-03T19:40:30Z 2008-11-03T19:40:30Z <p><strong>Copy-on-compile</strong></p> <ul> <li>Pro: File sharing can be managed file-by-file.</li> <li>Pro/Con: Each consumer project can independently affect compile-time.</li> <li>Con: Debugger will link to the temporary copy, not the official version. <ul> <li>TODO: See whether there is some way to change this.</li> </ul></li> <li>Con: May take some work to set up the MSBuild projects.</li> <li>Con: May be difficult to incrementally build shared files. <ul> <li>May involve rewriting some of Delphi’s MSBuild rules.</li> </ul></li> </ul> http://stackoverflow.com/questions/625708/where-to-put-comments-in-an-if-then-else-construct/625729#625729 Comment by Mattias Andersson on Where to put comments in an IF THEN ELSE construct Mattias Andersson 2009-04-17T01:23:06Z 2009-04-17T01:23:06Z @pzycoman: You know that this is a discussion about <i>style</i> and not content, right? You also know that comments really <i>can</i> improve readability, right? http://stackoverflow.com/questions/745179/how-to-make-reviewer-interested-in-high-quality-code-review/745255#745255 Comment by Mattias Andersson on How to make reviewer interested in high quality code review? Mattias Andersson 2009-04-14T18:02:28Z 2009-04-14T18:02:28Z @Dunk: I'm sorry to hear that you (and apparently Neil) have had some bad experiences with code reviews; my experiences have been rather the opposite, even when the author was a very senior developer. http://stackoverflow.com/questions/745179/how-to-make-reviewer-interested-in-high-quality-code-review/745199#745199 Comment by Mattias Andersson on How to make reviewer interested in high quality code review? Mattias Andersson 2009-04-14T15:10:57Z 2009-04-14T15:10:57Z To give a specific example, though: I think one reviewer could well be enough for an early-cycle change to some mid-importance feature authored and reviewed by competent developers. Note that I'm not talking about a Fagan-style review process; I'm talking about a less-formal one. http://stackoverflow.com/questions/745179/how-to-make-reviewer-interested-in-high-quality-code-review/745199#745199 Comment by Mattias Andersson on How to make reviewer interested in high quality code review? Mattias Andersson 2009-04-14T15:06:48Z 2009-04-14T15:06:48Z Software development situations can vary from &quot;throwaway script&quot; to &quot;nuclear reactor control system&quot; (and the like), so the level of verification required will similarly vary: the former needs no code review, at all, and the latter had better be rigorously reviewed by several very sharp devs. http://stackoverflow.com/questions/745179/how-to-make-reviewer-interested-in-high-quality-code-review/745255#745255 Comment by Mattias Andersson on How to make reviewer interested in high quality code review? Mattias Andersson 2009-04-13T23:31:01Z 2009-04-13T23:31:01Z @All: I get the feeling that the key disagreement is our POVs on what it means to do a code review. I tried to clarify that I'm talking about situations where reviewing code is a fundamental part of the job. http://stackoverflow.com/questions/745179/how-to-make-reviewer-interested-in-high-quality-code-review/745255#745255 Comment by Mattias Andersson on How to make reviewer interested in high quality code review? Mattias Andersson 2009-04-13T23:27:15Z 2009-04-13T23:27:15Z @devinb: I agree that growth and quality are two important goals of code reviews, and each one helps both me and the company for which I work. http://stackoverflow.com/questions/745179/how-to-make-reviewer-interested-in-high-quality-code-review/745255#745255 Comment by Mattias Andersson on How to make reviewer interested in high quality code review? Mattias Andersson 2009-04-13T23:22:15Z 2009-04-13T23:22:15Z @Dunk: If I were embarrassed to check it in, I'd be embarrassed to put my name on it as the reviewer. I realize that people can have different styles that fall within whatever guidelines exist, but I think having some agreement on what &quot;quality&quot; means is a pretty important prerequisite for reviews. http://stackoverflow.com/questions/745179/how-to-make-reviewer-interested-in-high-quality-code-review/745255#745255 Comment by Mattias Andersson on How to make reviewer interested in high quality code review? Mattias Andersson 2009-04-13T23:15:04Z 2009-04-13T23:15:04Z @Neil: I'm not suggesting &quot;a culture of blame&quot;; I'm suggesting that people should take pride in and responsibility for the work they do. Since reviewing code is one aspect of my job, I do it conscientiously. If it's not done properly, what's the point of the review? Checking some box, somewhere? http://stackoverflow.com/questions/745179/how-to-make-reviewer-interested-in-high-quality-code-review/745199#745199 Comment by Mattias Andersson on How to make reviewer interested in high quality code review? Mattias Andersson 2009-04-13T20:52:20Z 2009-04-13T20:52:20Z I agree that the code author should be involved in the review, whenever possible, and I also agree that the results of a review need to be actionable. However, I think having a single reviewer can be entirely reasonable, for some situations. http://stackoverflow.com/questions/368913/whats-a-good-way-to-serialize-delphi-object-tree-to-xml-using-rtti-and-not-cust/370799#370799 Comment by Mattias Andersson on What's a good way to serialize Delphi object tree to XML--using RTTI and not custom code? Mattias Andersson 2008-12-16T15:10:52Z 2008-12-16T15:10:52Z Interesting alternative! Thanks for the suggestion. http://stackoverflow.com/questions/368913/whats-a-good-way-to-serialize-delphi-object-tree-to-xml-using-rtti-and-not-cust/368972#368972 Comment by Mattias Andersson on What's a good way to serialize Delphi object tree to XML--using RTTI and not custom code? Mattias Andersson 2008-12-16T00:14:57Z 2008-12-16T00:14:57Z This works very nicely! Thanks! http://stackoverflow.com/questions/160930/how-do-i-check-if-an-integer-is-even-or-odd/160958#160958 Comment by Mattias Andersson on How do I check if an integer is even or odd? Mattias Andersson 2008-11-27T16:52:57Z 2008-11-27T16:52:57Z Instead of invoking abs(), just compare != 0. http://stackoverflow.com/questions/323697/regular-expression-to-match-a-string-1-characters-that-does-not-end-in-ext/323756#323756 Comment by Mattias Andersson on Regular expression to match a string (1+ characters) that does NOT end in .ext Mattias Andersson 2008-11-27T15:47:46Z 2008-11-27T15:47:46Z +1 for good info. Tiny nit pick: the question title notes &quot;1+ characters&quot; and I believe your first two regexes would match empty strings. http://stackoverflow.com/questions/314639/need-a-regex-to-exclude-certain-strings/314650#314650 Comment by Mattias Andersson on Need a regex to exclude certain strings Mattias Andersson 2008-11-24T19:16:49Z 2008-11-24T19:16:49Z Your &quot;multiple character classes&quot; (&quot;somefile([^1][^6]|.|.{3,})\.txt&quot;) and &quot;maximum portability&quot; (&quot;somefile([^1][^6]|.|....*)\.txt&quot;) regexes are very wrong. Try matching strings like &quot;somefile19.txt&quot;, &quot;somefile46.txt&quot;, and &quot;somefile1654.txt&quot;. http://stackoverflow.com/questions/303511/cruisecontrol-net-how-to-checkin-code-during-the-build/303665#303665 Comment by Mattias Andersson on CruiseControl.net -- How to checkin code during the build Mattias Andersson 2008-11-19T22:52:05Z 2008-11-19T22:52:05Z Convenient link: <a href="http://confluence.public.thoughtworks.org/display/CCNET/Filtered+Source+Control+Block" rel="nofollow">confluence.public.thoughtworks.org/display/CCNET/&hellip;</a> .