User onnodb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T21:59:32Z http://stackoverflow.com/feeds/user/1037 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/38239/practices-for-programming-in-a-scientific-environment 40 Practices for programming in a scientific environment? onnodb 2008-09-01T18:16:41Z 2009-11-07T13:25:22Z <h3>Background</h3> <p>Last year, I did an internship in a physics research group at a university. In this group, we mostly used LabVIEW to write programs for controlling our setups, doing data acquisition and analyzing our data. For the first two purposes, that works quite OK, but for data analysis, it's a real pain. On top of that, everyone was mostly self-taught, so code that was written was generally quite a mess (no wonder that every PhD quickly decided to rewrite everything from scratch). Version control was unknown, and impossible to set up because of strict software and network regulations from the IT department.</p> <p>Now, things actually worked out surprisingly OK, but I have been wondering how other <strong>people in the natural sciences do their software development</strong>. Is there anyone around here with experience in that field?</p> <h3>Questions</h3> <p>Some concrete questions:</p> <ul> <li>What languages/environments have you used for developing scientific software, esp. data analysis? What libraries? (E.g., what do you use for plotting?)</li> <li>Was there any training for people without any significant background in programming?</li> <li>Did you have anything like version control, bug tracking?</li> <li>How would you go about trying to create a decent environment for programming, without getting too much in the way of the individual scientists (esp. physicists are stubborn people!)</li> </ul> <p>I realize this is a rather broad question, but I do think it'd be interesting to gather some experiences here. I'll try to summarize things later on and perhaps change this into a wiki-style topic.</p> <h3>Summary of answers thus far</h3> <p>The answers (or my interpretation of them) thus far: (20081011)</p> <ul> <li>Languages/packages that seem to be the most widely used: <ul> <li>LabVIEW</li> <li>Python <ul> <li>with SciPy, NumPy, PyLab etc. (See also <a href="#100103" rel="nofollow">Brandon's reply</a> for downloads and links)</li> </ul></li> <li>C/C++</li> <li>MATLAB</li> </ul></li> <li>Version control is used by nearly all respondents; bug tracking and other processes are much less common.</li> <li>The <a href="#38312" rel="nofollow">Software Carpentry course</a> is a good way to teach programming and development techniques to scientists.</li> <li>How to improve things? <ul> <li>Don't force people to follow strict protocols.</li> <li>Set up an environment yourself, and show the benefits to others. Help them to start working with version control, bug tracking, etc. themselves.</li> <li>Reviewing other people's code can help, but be aware that not everyone may appreciate that.</li> </ul></li> </ul> <p>Onno (a self-taught programmer and stubborn physicist myself.)</p> http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbug 6 How to hunt a Heisenbug onnodb 2009-10-15T18:06:36Z 2009-10-17T14:37:36Z <p>Recently, we received a bug report from one of our users: something on the screen was displayed incorrectly in our software. Somehow, we could not reproduce this in our development environment (Delphi 2007).</p> <p>After some further study, it appears that this bug <em>only</em> manifests itself when "Code optimization" is turned <em>on</em>.</p> <p>Are there any people here with experience in hunting down such a <a href="http://en.wikipedia.org/wiki/Unusual%5Fsoftware%5Fbug#Heisenbug" rel="nofollow">Heisenbug</a>? Any specific constructs or coding bugs that commonly cause such an issue in Delphi software? Any places you would start looking?</p> <p>I'll also just start debugging the whole thing in the usual way, but any tips specific to Optimization-related bugs (*) would be more than welcome!</p> <p>(*) Note: I don't mean to say that the bug is <em>caused</em> by the optimizer; I think it's much more likely some wonky construct in the code is somehow pushed "over the edge" by the optimizer.</p> <h2>Update</h2> <p>It seems the bug boils down to a record being fully initialized with zeros when there's no code optimization, and the same record containing some random data when there <em>is</em> optimization. In this case, the random data seems to cause an enum type to contain invalid data (to my great surprise!).</p> <h2>Solution</h2> <p>The solution turned out to involve an unitialized local record variable somewhere deep in the code. Apparently, without optimization the record <em>was</em> reset (heap?), and with optimization turned <em>on</em>, the record was filled with the usual garbage. Thanks to you all for your contributions --- I learned a lot along the way!</p> http://stackoverflow.com/questions/1259849/delphi-how-to-programmatically-adjust-visual-ordering-of-components-with-align/1259921#1259921 1 Answer by onnodb for Delphi: How to programmatically adjust visual ordering of components with align = alTop onnodb 2009-08-11T12:02:12Z 2009-08-11T12:02:12Z <p>How about trying a top-aligned <code>TGridPanel</code> with one column and <em>n</em> rows instead --- re-ordering top-aligned panels is a bit of a pain, really.</p> <p>(Note: <code>TGridPanel</code> is available in Delphi 2007 and up, if I remember correctly).</p> http://stackoverflow.com/questions/847434/diffing-objects-from-a-relational-database 6 "Diffing" objects from a relational database onnodb 2009-05-11T09:54:19Z 2009-07-22T19:17:51Z <p>Our win32 application assembles objects from the data in a number of tables in a MySQL relational database. Of such an object, multiple revisions are stored in the database.</p> <p>When storing multiple revisions of something, sooner or later you'll ask yourself the question if you can visualize the differences between two revisions :) So my question is: <strong>what would be a good way to "diff" two such database objects?</strong></p> <ul> <li>Would you do the comparison at the database level? (Doesn't sound like a good idea: too low-level, and too sensitive to the schema).</li> <li>Would you compare the objects? <ul> <li>Would you write a function that "manually" compares the properties and fields of two objects?</li> <li>How would you store the diff? In a separate, generic "TDiff" object?</li> <li>Any general recommendations on how to visualize such things in a user interface?</li> </ul></li> </ul> <p>Advice, or stories about your own experiences with this, are very welcome; thanks a bunch!</p> <h3>Extra info on use case (20090515)</h3> <p>In reply to Antony's comment: this specific application is used to schedule training courses, run by teams of teachers. The schedule of a teacher is stored in various tables in the database, and contains info such as "where does she have to go on which day", "who are her colleagues in the team", etc. This information is spread out over multiple tables.</p> <p>Once in a while, we "publish" the schedule, so the teachers can see it on a webpage. Each "publication" is a revision, and we'd like to be able to show the users (and later also the teachers) what's changed between two publications --- if anything.</p> <p>Hope that makes the scenario a bit more tangible :)</p> <h3>Some final remarks</h3> <p>Well, the bounty has come to an end, so I've accepted an answer. If it'd somehow be possible to slice a couple of extra 100's off of my rep and give it to some of the other answers, I would do so without hesitation. All your guys' help has been great, and I am very grateful! ~ Onno 20090519</p> http://stackoverflow.com/questions/1130732/printing-html-with-faithful-css-formatting-from-ie-delphi/1130894#1130894 2 Answer by onnodb for Printing HTML, with faithful CSS formatting, from IE/Delphi? onnodb 2009-07-15T11:37:02Z 2009-07-15T11:37:02Z <p>AFAIK, IE has a setting on its "print settings" dialog that allows the user to choose whether she wants to print background colours or not. You'd have to change that setting, either by letting the user do so herself, or by changing the registry programmatically. Either way, there doesn't seem to be a way to change this setting on a per-document basis.</p> http://stackoverflow.com/questions/1073205/recommend-good-ways-of-extending-css/1074208#1074208 1 Answer by onnodb for Recommend good ways of extending CSS onnodb 2009-07-02T13:01:56Z 2009-07-02T13:01:56Z <p>A <a href="http://www.smashingmagazine.com/2009/06/25/35-css-lifesavers-for-efficient-web-design/" rel="nofollow">recent article in Smashing Magazine</a> mentions the following tools:</p> <p><a href="http://code.google.com/p/dtcss/" rel="nofollow">dtcss</a> (PHP preprocessor for CSS)</p> <pre><code>#define mp margin, padding #define bg background #define fg color #define FONT Verdana, sans-serif html, body { mp: 0; bg: #000; fg: #eee; } body { font: small FONT; } input, textarea { font: 1em FONT; } .fancy { border-top-left: 2px solid #00f; border-bottom-right: 4px dashed #f00; b { color: yellow; } } </code></pre> <p><a href="http://lab.arc90.com/2009/01/json%5Fcss.php" rel="nofollow">JSON CSS</a> (based on jQuery) -- see <a href="#1074157" rel="nofollow">Jonathan's answer</a></p> <p>I don't have any experience with either of these, but I'd be interested in hearing experiences from others :)</p> http://stackoverflow.com/questions/1061715/how-do-i-make-tprogressbar-stop-lagging/1065158#1065158 2 Answer by onnodb for How do I make TProgressBar stop lagging? onnodb 2009-06-30T18:15:07Z 2009-06-30T18:15:07Z <p>I ran into exactly the same problem a while ago. After searching Google for a <em>long</em> time, I found that it is a Vista-specific problem. It seems to boil down to this: Microsoft added fancy animations to the progress bar control in Vista (i.e., the moving 'highlight'). To make updates more smooth, they implemented some sort of 'lagging' in the repaint of the control --- and this basically screws the whole progress bar control. Rather annoying, I'd say, especially since <strong>there doesn't seem to be a decent solution</strong>.</p> <p>See for more details the replies by Arvid Winkelsdorf to <a href="https://forums.codegear.com/thread.jspa?threadID=4112&amp;tstart=375" rel="nofollow">this Embarcadero Discussion Forum post</a>:</p> <blockquote> <p>It's the same for VB, C++ and C# somehow as the problem lies in the Vista drawing of the new animated ProgressBars. To provide a smoother visual feedback drawing is delayed when moving forward. Your application cannot be sure that 100% will be reached at any given time.</p> <p>By setting the position back to a smaller value, the ProgressBar drawing is forced to jump back. No delay in getting to a position smaller than the current. So you'll have nearly 100% immediately. Afterwards set to the maximum and you'll have exactly 100%.</p> <p>[...]</p> <p>There is a similar glitch when using the new Vista ProgressBar Styles like PB Paused or PB Error. If the bar is still moving (MS part) and your app sets the color to paused by SendMessage (like in D2009) the message will be ignored by the ProgressBar.</p> </blockquote> http://stackoverflow.com/questions/750810/most-common-docblock-for-delphi-and-or-freepascal-code/750901#750901 0 Answer by onnodb for Most common docblock for Delphi and/or FreePascal code onnodb 2009-04-15T09:18:43Z 2009-06-10T10:31:49Z <p>On a project I'm currently working on, we're using <a href="http://dephicodetodoc.sourceforge.net/" rel="nofollow">DelphiCodeToDoc</a>, which works reasonably well. Its syntax looks like this:</p> <pre><code>type {* This is an example class } TMyClass = class private protected public {* Does some twiddling with AParam, and returns the result as String @param AParam Input value @return AParam incremented by 2, as String @throws Exception 'Boo' if it's full moon } function MyFunction(AParam: Integer): String; end; </code></pre> http://stackoverflow.com/questions/862146/delphi-gridpanel-does-not-adjust-at-first-resize/863177#863177 4 Answer by onnodb for Delphi - GridPanel does not adjust at first resize onnodb 2009-05-14T12:57:04Z 2009-05-14T12:57:04Z <p>Ah, I've had similar issues as well. It might be related to a resizing problem in the VCL. You might want to try <a href="http://cc.embarcadero.com/Item/25646" rel="nofollow">the fix by Andreas Hausladen</a>. It seems to work for me in most of the cases.</p> http://stackoverflow.com/questions/838546/delphi-canceling-a-tdataset-post-in-an-onbeforepost-event/838551#838551 8 Answer by onnodb for Delphi: Canceling a TDataSet.Post in an OnBeforePost Event onnodb 2009-05-08T07:02:36Z 2009-05-08T07:02:36Z <p>Calling the method <code>Abort</code> (from the unit <code>System</code>, if I recall correctly) raises a silent <code>EAbort</code> exception, which cancels just the current operation. That should work.</p> <p>(Btw: this method of cancelling a databaset operation is also described somewhere deep in the help system as the 'normal' way to achieve this --- that's where I got this technique from originally).</p> http://stackoverflow.com/questions/769329/bypassing-disabling-delphis-reference-counting-for-interfaces 1 Bypassing (disabling) Delphi's reference counting for interfaces onnodb 2009-04-20T17:41:18Z 2009-04-20T20:46:37Z <p>For one particular issue in the architecture of an application I'm working on, interfaces seem to be a nice solution. Specifically, some "business objects" depend on a bunch of settings that are pulled from the database in the actual app. Letting those business objects ask for an interface (through <em>Inversion of Control</em>), and letting a central <code>TDatabaseSettings</code> object implement those interfaces, allows for better isolation, and thus for much easier unit testing.</p> <p>However, in Delphi, interfaces seem to come with an, in this case, unpleasant bonus: reference counting. This means that if I do something like this:</p> <pre><code>type IMySettings = interface function getMySetting: String; end; TDatabaseSettings = class(..., IMySettings) //... end; TMyBusinessObject = class(TInterfacedObject, IMySettings) property Settings: IMySettings read FSettings write FSettings; end; var DatabaseSettings: TDatabaseSettings; // global object (normally placed in a controller somewhere) //Now, in some function... O := TMyBusinessObject.Create; O.Settings := DatabaseSettings; // ... do something with O O.Free; </code></pre> <p>On the last line (<code>O.Free</code>), my global <code>DatabaseSettings</code> object is now also freed, since the last interface reference to it (which was contained in <code>O</code>) is lost!</p> <p>One solution would be to store the 'global' <code>DatabaseSettings</code> object with an interface; another solution would be to override the reference counting mechanism for the <code>TDatabaseSettings</code> class, so I can continue to manage the <code>DatabaseSettings</code> as a normal object (which is much more consistent with the rest of the app).</p> <p><strong>So, in summary, my question is: how do I disable the interface reference counting mechanism for a particular class?</strong></p> <p>I've been able to find some info that suggests overriding the <code>IInterface</code> methods <code>_AddRef</code> and <code>_Release</code> for the class (<code>TDatabaseSettings</code> in the example); has anyone ever done that?</p> <p>Or would you say I shouldn't do this (confusing? just a bad idea?), and find a different solution to the architectural problem?</p> <p>Thanks a lot!</p> http://stackoverflow.com/questions/9185/what-is-the-best-mysql-client-application-for-windows/9205#9205 9 Answer by onnodb for What is the best MySQL Client Application for Windows onnodb 2008-08-12T20:06:18Z 2009-03-31T06:38:30Z <p>I'd recommend you take a look at <a href="http://webyog.com/en/" rel="nofollow">SQLYog</a>. The free version is already rather good, but the paid version also has visual schema editing and comparison features. <strike>The UI has some tiny, but annoying shortcomings, but</strike> (the latest versions have solved those shortcomings completely -- Onno 20090331) overall I've been very pleased with it.</p> http://stackoverflow.com/questions/668054/delphi-adding-items-to-combobox-speed/668097#668097 13 Answer by onnodb for Delphi Adding Items to ComboBox Speed onnodb 2009-03-20T21:35:09Z 2009-03-20T21:35:09Z <p>Sorry if I'm a nuisance, but I doubt a TComboBox with 32,000 items is even remotely ''usable'' --- I'd say there's a reason why it's slow: it was never meant to do this :)</p> <p>Would there be a possibility to filter the data, and only load a subset? To be more concrete, in one particular database application I've been working on, the user can search for a person. We let the user type at least 3 or 4 characters of the name, and only then begin to return results in a listbox. This has greatly increased usability of the search form, also greatly speeding up the whole process.</p> <p>Would you be able to follow a similar approach?</p> <p>Or, on a completely different take, perhaps you could take a look at the <a href="http://www.soft-gems.net/index.php?option=com%5Fcontent&amp;task=view&amp;id=12&amp;Itemid=33" rel="nofollow">VirtualTreeView</a> component --- either for direct use, or for inspiration.</p> http://stackoverflow.com/questions/638870/subversion-merge-access-rights/638915#638915 3 Answer by onnodb for Subversion Merge Access Rights onnodb 2009-03-12T14:39:24Z 2009-03-12T23:43:43Z <p>Can't you make the trunk read-only for those specific people, using Subversion's access control mechanisms?</p> <p>In your <a href="http://svnbook.red-bean.com/en/1.5/svn.serverconfig.pathbasedauthz.html" rel="nofollow"><code>svnaccess</code></a> file:</p> <pre><code>[/MyProject/trunk] me = rw albert = r bernard = r chris = rw </code></pre> <p>would allow you and Chris to make changes (including merges) to the trunk of "MyProject", while only giving read permissions to Albert and Bernard.</p> http://stackoverflow.com/questions/577894/checking-for-the-variant-value-nothing 2 Checking for the Variant value "Nothing" onnodb 2009-02-23T15:02:02Z 2009-02-24T05:05:16Z <p>This is something I ran into last year, and SO seems like a good place to document it :)</p> <p>Q: When automating Excel (/Word/...) from Delphi, how can I check if an Excel function returned the variant <code>Nothing</code> (as it's called in VBA)?</p> http://stackoverflow.com/questions/577894/checking-for-the-variant-value-nothing/577896#577896 3 Answer by onnodb for Checking for the Variant value "Nothing" onnodb 2009-02-23T15:02:16Z 2009-02-23T20:41:52Z <p>Curiously, VBA's <code>Nothing</code> is <em>not</em> the same as <code>Unassigned</code>, <code>Null</code> or <code>Empty</code>, so you can't use, e.g.:</p> <pre><code>// Worksheet is a TExcelWorksheet or OleVariant coupled to an open worksheet MyRange := Worksheet.Range['MyRangeInTheWorksheet', EmptyParam] if (MyRange = Null) then // won't work! MsgBox('The range doesn''t exist!'); </code></pre> <p>Instead, use this function:</p> <pre><code>function VarIsNothing(V: OleVariant): Boolean; begin Result := (TVarData(V).VType = varDispatch) and (TVarData(V).VDispatch = nil); end; // ... if (VarIsNothing(MyRange)) then </code></pre> <p><hr /></p> <p><strong>Update</strong></p> <p>Apparently, the sources of the RTL unit <code>Variants.pas</code> have changed between Delphi 5 and 2007. According to @mghie (see comments), the function <code>VarIsEmpty</code> would have done the job in D5. However, in D2007, this does not seem to be the case anymore, so you'll probably need the above function again.</p> <p>Also, note that VBA's <code>Nothing</code> is probably quite a special case; I don't think one encounters it too often with automation.</p> http://stackoverflow.com/questions/565829/debugging-delphi-application-on-non-development-environment/567290#567290 1 Answer by onnodb for Debugging Delphi Application on Non Development Environment onnodb 2009-02-19T21:37:11Z 2009-02-19T21:37:11Z <p>I'm afraid this is one more of those "I don't have an actual answer" answers, but it <em>might</em> just help...</p> <p>Have you considered adding logging to your application? I've heard great things about <a href="http://www.gurock.com/products/smartinspect/" rel="nofollow">SmartInspect</a>. With it, you can log all sorts of information, including stack traces and "watches" (variables).</p> <p>Another logging product for Delphi is <a href="http://www.eurekalog.com/" rel="nofollow">EurekaLog</a>.</p> http://stackoverflow.com/questions/493164/what-page-image-generating-technology-should-i-use/558402#558402 1 Answer by onnodb for What page-image generating technology should I use? onnodb 2009-02-17T19:35:02Z 2009-02-17T19:35:02Z <p><a href="http://www.princexml.com/overview/" rel="nofollow">PrinceXML</a> is an XHTML/CSS to PDF converter. It seems to have the features you need:</p> <blockquote> <ul> <li>Page headers/footers, page numbering and duplex printing.</li> </ul> </blockquote> <p>I realize you'll probably want more extensive answers than this one (I'm sorry, but I haven't evaluated the product), but nevertheless, I hope it helps!</p> http://stackoverflow.com/questions/553352/command-line-dialog-tool-for-windows/556030#556030 2 Answer by onnodb for Command-line dialog tool for Windows onnodb 2009-02-17T09:04:25Z 2009-02-17T09:04:25Z <p>I remember the E Text Editor using <a href="http://code.google.com/p/wxcocoadialog/" rel="nofollow">wxCocoaDialog</a> for that purpose:</p> <blockquote> <p>wxCocoaDialog is a multi-platform port of the CocoaDialog application for OS X, that allows the use of common GUI controls such as file selectors, text input, progress bars, yes/no confirmations and more with a command-line application. It is ideal for use in shell and Perl scripts (or Ruby, or Python, or... etc).</p> </blockquote> http://stackoverflow.com/questions/545088/programming-under-pressure-how-to-dissipate-the-heat/545153#545153 0 Answer by onnodb for Programming under pressure - How to dissipate the heat onnodb 2009-02-13T08:22:07Z 2009-02-13T08:22:07Z <p>My answer would definitely be <strong>yoga</strong>. I hope you don't mind me quoting <a href="http://stackoverflow.com/questions/203303/how-do-you-beat-rsi/537586#537586">my answer to a question about RSI</a>:</p> <blockquote> <p>Not for everyone, but yoga and/or meditation are a great way to relief stress. Yoga may seem too "granola", or you may not like the "spiritual" aspects of it. In that case, just find yourself a yoga studio that doesn't focus on those aspects! Yoga is what you make of it, and it can be very down-to-earth. In the end, though, it's an absolutely great way to relax your body and mind, and to build up strength and flexibility [...]</p> </blockquote> <p>I discovered yoga about a year ago, and it has helped me tremendously. It enables you to completely let things go once in a while, and after some practice, you'll also be able to take that habit into the rest of your life and work. Yoga classes do take time, that's true (which makes it hard to keep doing them if you feel you too busy :) ), but it certainly pays off.</p> http://stackoverflow.com/questions/203303/how-do-you-beat-rsi/537586#537586 1 Answer by onnodb for How do you beat RSI? onnodb 2009-02-11T16:25:31Z 2009-02-11T16:25:31Z <p>Now there's a tough question, with many answers --- and many <em>long</em> answers. There seems to be a lot of good advice in the other answers, but I hope the following points also help. Note that they're based on my own experiences, so "YMMV" :)</p> <ul> <li>Seeing a doctor is always recommended, though not always <em>that</em> useful, in my own experience.</li> <li>Depending on how comfortable you are with them, some more or less alternative therapies may help: <ul> <li><strong>Physical therapy</strong>, and similar therapies. Relatively mainstream. Make sure your therapist teaches you exercises you can do yourself at home --- just "massages" don't work in the end, and only provide temporary relief.</li> <li>Some people I know have been helped a lot with <strong>acupuncture</strong>. Some acupuncture therapists are even specialized in RSI and related issues, so try to find one like that first.</li> <li>...</li> </ul></li> <li>Stress is often a major cause, combined with long stretches of computer work, of course. You probably <strong>won't be able to heal if you don't change some of your working habits</strong>. Try to relax more often, do more exercise, etc. <ul> <li>Not for everyone, but <strong>yoga</strong> and/or <strong>meditation</strong> are a great way to relief stress. Yoga may seem too "granola", or you may not like the "spiritual" aspects of it. In that case, just find yourself a yoga studio that doesn't focus on those aspects! Yoga is what you make of it, and it can be very down-to-earth. In the end, though, it's an absolutely great way to relax your body <em>and</em> mind, and to build up strength and flexibility <em>without injuring yourself even further</em>. (That last thing is extremely important, as that tends to go wrong if people engage in more competitive sports or fitness. In yoga, you learn to respect your body and its limitations). I've been doing yoga for a year now, and it's the only thing I've tried thus far that has <em>really</em> helped me!</li> <li>Go out for a walk regularly. Very hard to make this a habit, at least for me (oh, the Zone!), but it might actually make you <em>more</em> productive.</li> <li>Have you tried working while <em>standing</em>?</li> </ul></li> <li>There's lots of things one can say about ergonomics, and many other people here have already done so, but I'd like to add this: <ul> <li>Perhaps see an expert, who can actually sit down with you. It's a cliché, but every body is different!</li> <li>What helped for me is a mini keyboard (without the numeric keypad, so you can use your mouse <em>in front of your body</em> --- that's supposed to be extremely important) and the <a href="http://www.handshoemouse.com/" rel="nofollow">Handshoe Mouse</a>.</li> <li>Personally, those timer programs annoy me a lot. A huge lot, that is. But it might just work for you :)</li> </ul></li> </ul> http://stackoverflow.com/questions/534969/where-can-i-find-a-photo-browser-or-carousel-control-for-delphi/535723#535723 6 Answer by onnodb for Where can I find a photo browser or carousel control for Delphi? onnodb 2009-02-11T07:03:54Z 2009-02-11T07:03:54Z <p>It's not free, but <a href="http://www.tmssoftware.com/site/guimotions.asp" rel="nofollow">TMS Software GUI Motions</a> seems to be quite stunning: <img src="http://www.tmssoftware.com/site/img/screens/guim_tn_carousel.png" alt="TMS Software GUI Motions" /></p> http://stackoverflow.com/questions/369538/source-control-for-an-academic-research-group/369684#369684 2 Answer by onnodb for Source Control for an Academic Research Group? onnodb 2008-12-15T21:00:29Z 2009-01-28T13:52:25Z <p>I'd say that Subversion should give you the right balance between usefulness and easiness in an academic environment like the one you're describing. I've been thinking about similar issues (I'm a physics graduate; <a href="http://stackoverflow.com/questions/38239/practices-for-programming-in-a-scientific-environment">I actually posted about something similar before</a>), and my advice at the moment would be:</p> <ul> <li><p>Set up a centralized version control system, preferably SVN. With grads and undergrads appearing and disappearing all the time, I'd say that distributed version control might well lead to revisions that people are working on "locally" disappearing <em>with them</em>. Centralized version control would give you "One True Revision".</p></li> <li><p>Let everyone experiment with a small test repository, so they can get the hang of it. If you search around SO, you will find plenty of questions &amp; answers referring to good tutorials.</p></li> <li><p>Perhaps consider renting a hosted SVN repository, it might save you the hassle of setting up your own on your local network. (Some universities I know have very strict rules for network security, so getting your own server is sometimes a long and complicated bureaucratic process.)</p></li> <li><p>Tell your students: code does not exist until it's checked in! And I guess they will soon enough discover the advantages of VC, once they have to do their first "revert"/"rollback" :)</p></li> <li><p>As for getting students up to speed with Svn: see the <a href="http://www.swc.scipy.org/lec/version.html" rel="nofollow">Software Carpentry Course on Version Control</a> and the "Getting started" chapter in the Subversion book. You may also want to have a more experienced person just sit with a new student once or twice (seems like a waste of time, but pays back double!).</p></li> </ul> <p>Note, though, that I don't have much actual experience with this. So I would be very happy if you could, e.g., post back some time later to tell us about your experiences!</p> http://stackoverflow.com/questions/24252/starting-with-net 4 Starting with .NET onnodb 2008-08-23T14:19:34Z 2009-01-23T20:26:11Z <p>Being a self-taught "amateur" programmer, I do most programming in my spare time, for relatively small projects, or for small study-related utilities. I greatly enjoy it, though, and have learned a great deal over the past couple of years. Through various weblogs and websites, I've become acquainted with version control, bug tracking, unit testing etc.</p> <p>The languages I'm currently working in are mostly Delphi (2007 for Win32), as well as some PHP. I've been very happy with both (actually, I'm using Delphi for a rather large side-project), but the things I've seen of .NET (especially C#) seem very, <em>very</em> interesting. I haven't really had the time to dive into .NET, though; also, it seems like there are some serious financial burdens one needs to overcome before one can get started with it (the whole VS stack is quite an investment for someone who doesn't spend his whole work day programming).</p> <p>So my question boils down to, actually, a couple of related questions:</p> <ul> <li>What strengths of .NET would make a switch to it worthwhile for an amateur programmer like me?</li> <li>What are good resources to get started with .NET/C#, esp. books?</li> <li>How would you build a relatively cheap development stack for .NET?</li> </ul> <p>I realize this is a rather open question, but I haven't really found a good web resource that covers these topics. Also, advice from experienced programmers like you guys around here tends to be invaluable!</p> <p>Thanks a lot!</p> http://stackoverflow.com/questions/87999/voice-recognition-software-for-developers/350542#350542 7 Answer by onnodb for Voice Recognition Software For Developers onnodb 2008-12-08T19:15:28Z 2009-01-20T21:57:52Z <h3>It's out there, and it works...</h3> <p>There are quite a few speech recognition programs out there, of which <a href="http://www.nuance.com/naturallyspeaking/" rel="nofollow">Dragon NaturallySpeaking</a> is, I think, one of the most widely used ones. I've used it myself, and have been impressed with its quality. That being a couple of years ago, I guess things have improved even further by now.</p> <h3>...but it ain't easy...</h3> <p>Even though it works amazingly well, I won't say it's an easy solution. It takes time to train the program, and even then, it'll make mistakes. It's painstakingly slow compared to typing, so I had to keep saying to myself "Don't grab the keyboard, don't grab the keyboard, ..." (after which I'd grab the keyboard anyway). I myself tend to mumble a bit, which didn't make things much better, either ;-). Especially the first weeks can be frustrating. You can even get <a href="http://www.ataword.com/voice.html" rel="nofollow">voice-related problems</a> if you <a href="http://archives.cnn.com/2000/TECH/computing/05/23/voice.saving.tips.idg/" rel="nofollow">strain your voice too much</a>.</p> <h3>...especially for programmers!</h3> <p>All in all, it's certainly a workable solution <strong>for people writing normal text/prose</strong>. As a programmer, you're in a completely different realm, for which there are no real solutions. Things might have changed by now, but I'd be surprised if they have.</p> <p>What's the problem? Most SR software is built to recognize normal language. Programmers write very cryptic stuff, and it's hard, if not impossible, to find software that does the conversion between normal language and code. For example, how would you dictate:</p> <pre><code>if (somevar == 'a') { print('You pressed a!'); } </code></pre> <p>Using the commands in your average SR program, this is a huge pain: "if space left bracket equal sign equal sign apostrophe spell a apostrophe ...". And I'm not even talking about <em>navigating</em> your code. Ever noticed how much you're using the keyboard while programming, and how different that usage is from how a 'normal' user uses the keyboard?</p> <h3>How to make the best of it</h3> <p>Thus far, I've only worked with Dragon NaturallySpeaking (DNS), so I can only speak for that product. There are some interesting add-ons and websites targeted for people like programmers:</p> <ul> <li><a href="http://www.vocola.net" rel="nofollow">Vocola</a> is an unofficial plugin that allows you to easily add your own commands to DNS. I found it essential, basically. You'll also be able to find command sets written by other programmers, for e.g. navigating code. It's based on a software package written in Python, so there are also some more advanced and fancy packages around. Also check out Vocola's <a href="http://vocola.net/VoiceResources.html" rel="nofollow">Resources page</a>. (Warning: when I used it, there were some problems with installing Vocola; check out the newsgroup below for info!)</li> <li><a href="http://speechcomputing.com/" rel="nofollow">SpeechComputing.com</a> is a forum/newsgroup with lots of interesting discussions. A good place to start.</li> </ul> <h3>Closing remarks</h3> <p>It seems that the best solution to this problem is, really:</p> <ul> <li>Find ways around actual coding.</li> <li>Try to recover. I'm somewhat reluctant to recommend this book, but it seems to work amazingly well for people with RSI/carpal tunnel and other chronic pain issues: <a href="http://rads.stackoverflow.com/amzn/click/0446675156" rel="nofollow">J.E. Sarno, Mindbody prescription</a>. I'm working with it right now, and I think it's definitely worth reading.</li> </ul> http://stackoverflow.com/questions/395247/examples-of-usability-disasters/395802#395802 4 Answer by onnodb for Examples of usability disasters? onnodb 2008-12-28T04:07:39Z 2008-12-28T04:07:39Z <p>The <a href="http://homepage.mac.com/bradster/iarchitect/shame.htm" rel="nofollow">"Interface Hall of Shame"</a> is worth mentioning in this context... It's a bit old, but certainly interesting!</p> http://stackoverflow.com/questions/360887/using-version-control-for-home-development/361008#361008 4 Answer by onnodb for Using Version Control for Home Development? onnodb 2008-12-11T21:25:24Z 2008-12-11T21:25:24Z <p>Whenever I start working on a large project, be it a programming project or something completely different like a thesis or a report, I <em>always</em> use version control. I'm considering to get a hosted repository somewhere (shouldn't cost too much), but for now, I usually use the <a href="http://svn1clicksetup.tigris.org/" rel="nofollow">1-click SVN installer</a> to quickly install a local subversion server. It's saved my life so many times now, that I wouldn't want to work without it. It gives you so much freedom!</p> <p>Some more tips:</p> <ul> <li>Try Subversion with, for example, projects that involve Word documents. <a href="http://stackoverflow.com/questions/29810/is-version-control-ie-subversion-applicable-in-document-tracking#29867">Diff works too, if you use TortoiseSVN</a>!</li> <li>Make regular <a href="http://stackoverflow.com/questions/33055/what-is-the-best-way-to-backup-subversion-repositories">backups of your repository</a>, if you're using a local server :)</li> </ul> http://stackoverflow.com/questions/360597/need-i-to-put-overload-or-override-words-after-the-constructor-declaration-in-der/360699#360699 8 Answer by onnodb for Need I to put overload or override words after the constructor declaration in derived class? onnodb 2008-12-11T20:04:23Z 2008-12-11T20:04:23Z <p>As far as I know, there are two separate issues here:</p> <h3>Making sure the child class' constructor calls the base class' constructor</h3> <p>You'll have to <em>explicitly</em> call the base class' constructor:</p> <pre><code>constructor TMinMatrix.Create(Rows, Cols: Byte); begin inherited; //... end; </code></pre> <h3>Making sure the child class' constructor overrides the base class' constructor</h3> <p>You'll <em>also</em> have to make the child class' constructor <code>override</code>, and the base class' constructor <code>virtual</code>, to make sure the compiler sees the relation between the two. If you don't do that, the compiler will probably warn you that TMinMatrix's constructor is "hiding" TMatrix's constructor. So, the correct code would be:</p> <pre><code>type TMatrix = class protected //... public constructor Create(Rows, Cols: Byte); virtual; // &lt;-- Added "virtual" here //... type TMinMatrix = class(TMatrix) private //... public constructor Create(Rows, Cols: Byte); override; // &lt;-- Added "override" here constructor CreateCopy(var that: TMinMatrix); destructor Destroy; override; // &lt;-- Also make the destructor "override"! end; </code></pre> <p>Note that you should also make your destructor <code>override</code>.</p> <h3>Introducing a constructor with different parameters</h3> <p>Note that you can only override a constructor with the same parameter list. If a child class needs a constructor with different parameters, and you want to prevent the base class' constructors from being called directly, you should write:</p> <pre><code>type TMyMatrix = class(TMatrix) //... public constructor Create(Rows, Cols, InitialValue: Byte); reintroduce; virtual; //... end implementation constructor TMyMatrix.Create(Rows, Cols, InitialValue: Byte); begin inherited Create(Rows, Cols); // &lt;-- Explicitly give parameters here //... end; </code></pre> <p>I hope this makes things more clear... Good luck!</p> http://stackoverflow.com/questions/356379/delphi-menu-merging-problem/356870#356870 4 Answer by onnodb for Delphi Menu Merging problem onnodb 2008-12-10T17:25:12Z 2008-12-10T17:25:12Z <p>The menu merge feature in Delphi works a bit differently than what you'd expect: it's non-recursive (unfortunately!). That means that when you call <code>Menu1.Merge</code>, Menu1's "Edit" menu gets <em>replaced</em> by Menu2's.</p> <p>You have two options:</p> <ul> <li>Add "Cut" and "Paste" manually to Menu2.</li> <li>Write your own Merge function.</li> </ul> <p>I had the same problem a while ago (see <a href="http://stackoverflow.com/questions/152405/how-do-i-merge-tmainmenus-that-use-separate-imagelists-and-retain-the-correct-i#153799">this SO question</a>):</p> <blockquote> <p>What I eventually ended up with, is using the <a href="http://jrsoftware.org/tb2k.php" rel="nofollow">Toolbar2000</a> package for all my menus and toolbars. You can then download a very nice piece of code, called <a href="http://flocke.vssd.de/prog/code/pascal/tb2merge/" rel="nofollow">TB2Merge</a>, which does exactly what you want.</p> </blockquote> <p>You could also base any custom-written menu merge code on TB2Merge, I guess...</p> http://stackoverflow.com/questions/264020/fastest-possible-xml-handling-in-delphi-for-very-large-documents/264134#264134 2 Answer by onnodb for Fastest possible XML handling in Delphi for very large documents onnodb 2008-11-05T01:36:58Z 2008-11-05T01:36:58Z <p>You might want to have a look at the <a href="http://www.yunqa.de/delphi/doku.php/products/htmlparser/index" rel="nofollow">DIHtmlParser component from The Delphi Inspiration</a>. It's supposed to be "extremely fast, especially when parsing huge files", and "on modern machines the score goes up to more than 15 MB of HTML data per second". I've had some pretty good experiences with it, although I've never tried it with huge files.</p> http://stackoverflow.com/questions/1853673/writing-a-faster-python-spider/1854545#1854545 Comment by onnodb on Writing a Faster Python Spider onnodb 2009-12-06T06:39:23Z 2009-12-06T06:39:23Z Fixed some of the formatting of your post, hope you don't mind :) Welcome to SO! http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbug Comment by onnodb on How to hunt a Heisenbug onnodb 2009-10-16T14:39:42Z 2009-10-16T14:39:42Z @Andreas: sure, but I'd expect that a &quot;for in&quot;-loop would ignore any bits in the bitmask that are out of range of the enum loop variable. Anyways. The bugs definitely in my code, no question 'bout that :o) http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbug/1574972#1574972 Comment by onnodb on How to hunt a Heisenbug onnodb 2009-10-16T06:23:39Z 2009-10-16T06:23:39Z Very interesting reply, thanks! http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbug/1574529#1574529 Comment by onnodb on How to hunt a Heisenbug onnodb 2009-10-16T06:22:26Z 2009-10-16T06:22:26Z Compilers warnings and hints are always turned on in our project, but yes, that's generally a good advice! http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbug Comment by onnodb on How to hunt a Heisenbug onnodb 2009-10-16T06:20:58Z 2009-10-16T06:20:58Z @Rob: of course you're absolutely right, but I wouldn't have expected a set variable to contain values that are out of range of the constituting enum, and various language constructs happily looping over those out-of-range values :) Anyway, as soon as I've smashed this bug, I'll post more details. http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbug Comment by onnodb on How to hunt a Heisenbug onnodb 2009-10-15T18:48:00Z 2009-10-15T18:48:00Z @Ken: I don't think the specifics of this bug would be very interesting. The cause could be anywhere: in the business logic layer, in the view logic... I think the unitialized memory thing could be it. http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbug/1574131#1574131 Comment by onnodb on How to hunt a Heisenbug onnodb 2009-10-15T18:46:26Z 2009-10-15T18:46:26Z Hm, yeah, I think it's the unitialized memory then (it's a single-threaded app). I'll keep an eye on that while debugging the code. http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbug/1574201#1574201 Comment by onnodb on How to hunt a Heisenbug onnodb 2009-10-15T18:45:33Z 2009-10-15T18:45:33Z None of those issues could be the cause of this bug (I'm pretty sure the code base does any of that funky type-casting; all the customer's systems are 32-bit; it's a single-threaded app), but I have learned a few things from your reply, thanks! http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbug/1574234#1574234 Comment by onnodb on How to hunt a Heisenbug onnodb 2009-10-15T18:41:37Z 2009-10-15T18:41:37Z Good point, I forgot to mention that. Still, I was wondering what types of code could cause such a bug --- it's a big program, any hints as to what the cause could be, are welcome :o) http://stackoverflow.com/questions/1259849/delphi-how-to-programmatically-adjust-visual-ordering-of-components-with-align/1259921#1259921 Comment by onnodb on Delphi: How to programmatically adjust visual ordering of components with align = alTop onnodb 2009-08-12T11:02:16Z 2009-08-12T11:02:16Z Can't you set <code>TGridPanel.ParentBackground</code> to <code>True</code>? I thought <code>TPanel</code> descendants could be transparent this way... http://stackoverflow.com/questions/1225714/php-strreplace/1225723#1225723 Comment by onnodb on PHP str_replace onnodb 2009-08-04T07:39:15Z 2009-08-04T07:39:15Z That pattern is going to change &quot;14,150,233&quot; with $usrID = 23 into &quot;14,150,&quot; --- that's not correct. http://stackoverflow.com/questions/1218639/how-to-add-a-new-button-to-windows-explorer Comment by onnodb on How to add a new button to windows explorer? onnodb 2009-08-02T12:57:11Z 2009-08-02T12:57:11Z Which version of Windows? XP or Vista? http://stackoverflow.com/questions/1180701/whats-the-best-way-to-introduce-decrypting-and-showing-passwords-in-delphi Comment by onnodb on Whats the best way to introduce decrypting and showing passwords in delphi. onnodb 2009-07-25T12:26:59Z 2009-07-25T12:26:59Z +1 for KeePass. It's open source, and works very reliably. http://stackoverflow.com/questions/1159147/delphi-inherit-override-a-constant-array/1159209#1159209 Comment by onnodb on Delphi - Inherit / Override a constant array? onnodb 2009-07-22T06:58:33Z 2009-07-22T06:58:33Z Now <i>that</i> is something <i>extremely</i> useful! If only I'd known that a year earlier ;-) Do you happen to know since which version the Delphi compiler supports this syntax? Thanks a lot for the great answer! http://stackoverflow.com/questions/1130732/printing-html-with-faithful-css-formatting-from-ie-delphi/1130894#1130894 Comment by onnodb on Printing HTML, with faithful CSS formatting, from IE/Delphi? onnodb 2009-07-15T14:04:31Z 2009-07-15T14:04:31Z @Will: Sure, I completely agree with you on that :) Also depends on the app and the client, though.