User David Schmitt - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T07:24:32Z http://stackoverflow.com/feeds/user/4918 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1808961/synchronization-on-the-local-variables/1818315#1818315 0 Answer by David Schmitt for Synchronization on the local variables David Schmitt 2009-11-30T07:29:32Z 2009-11-30T07:29:32Z <p>In the .NET world objects sometimes carry their lock object as property.</p> <pre><code>synchronized (foo.getSyncRoot()) { if (foo.needsProcessing()) { foo.process(); // foo's state may be changed here } } </code></pre> <p>This allows the object to give out a different lock object, depending on its implementation (e.g. delegating the monitor to a underlying database connection or something).</p> http://stackoverflow.com/questions/1808994/oracle-c-linux-and-more-weird-stuff/1809029#1809029 1 Answer by David Schmitt for Oracle C++ linux and more weird stuff David Schmitt 2009-11-27T14:15:50Z 2009-11-30T07:23:29Z <p>If you do not have ARM versions of the Oracle library, you're totally out of luck there and would need to get one (perhaps there is a free driver?) or implement the wire protocol manually.</p> http://stackoverflow.com/questions/1808961/synchronization-on-the-local-variables/1808984#1808984 0 Answer by David Schmitt for Synchronization on the local variables David Schmitt 2009-11-27T14:07:21Z 2009-11-27T14:07:21Z <p>Refactor the loop-body into a separate method taking <code>foo</code> as parameter.</p> http://stackoverflow.com/questions/1762320/is-it-ok-for-different-implementing-classes-to-throw-different-exception-types/1762367#1762367 0 Answer by David Schmitt for Is it ok for different implementing classes to throw different exception types? David Schmitt 2009-11-19T10:37:05Z 2009-11-19T10:37:05Z <p>Implementing classes should only throw the exceptions specified in the interface. If the interface doesn't provide for any possibility to report the error, either the interface is badly designed or the implementors should suck it up, because the interface user <em>really</em> doesn't care.</p> http://stackoverflow.com/questions/1755786/random-access-of-multiple-files-and-file-caching/1755866#1755866 0 Answer by David Schmitt for Random access of multiple files and file caching David Schmitt 2009-11-18T13:11:59Z 2009-11-18T13:11:59Z <p>When your working set (the amount of data read by all your processes) exceeds your available RAM, your throughput will tend towards the I/O capacity of your underlying disk.</p> <p>From your description of the workload, seek times will be more of a problem than data transfer rates.</p> <p>When your working set size stays below the amount of RAM you have, the OS will keep all data cached and won't need to go to the disk after having its caches filled.</p> http://stackoverflow.com/questions/1755800/why-am-i-getting-a-redirect-loop/1755817#1755817 3 Answer by David Schmitt for Why am I getting a redirect loop? David Schmitt 2009-11-18T13:03:04Z 2009-11-18T13:03:04Z <p>See the <a href="http://httpd.apache.org/docs/2.2/mod/mod%5Falias.html#redirect" rel="nofollow">Redirect directive's documentation</a>: </p> <blockquote> <p>Then any request beginning with URL-Path will return a redirect request to the client at the location of the target URL. Additional path information beyond the matched URL-Path will be appended to the target URL.</p> </blockquote> <p>Use a <code>RedirectMatch</code> instead:</p> <pre><code>RedirectMatch 301 ^/$ http://example.com/stuff </code></pre> http://stackoverflow.com/questions/681446/writing-c-source-code-to-files/1667848#1667848 1 Answer by David Schmitt for Writing c# source code to files David Schmitt 2009-11-03T14:56:28Z 2009-11-03T15:05:18Z <p><code>System.IO.File.ReadAllText(fn)</code> tries to guess the encoding of the input file. This can go horribly wrong.</p> <p>Visual Studio 2008 creates files by default in UTF-8. Similarly you should try to use UTF-8 where ever possible, by specifying <code>Encoding.UTF8Encoding</code> when writing the files to disk.</p> http://stackoverflow.com/questions/1661549/need-some-help-sorting-out-a-major-abstract-pattern-headache-within-my-dal/1661577#1661577 1 Answer by David Schmitt for Need some help sorting out a major abstract pattern headache within my DAL David Schmitt 2009-11-02T14:21:18Z 2009-11-03T15:02:31Z <p>The "proper" place for such a lookup method would be a <a href="http://martinfowler.com/eaaCatalog/repository.html" rel="nofollow">Repository</a> class. There you can collect all such query functions away from your domain objects.</p> <p>Here's a small example:</p> <pre><code>public static class Repository { public static List&lt;CustomerEntity&gt; GetCustomersByUserPermission( PositionProvider&lt;CustomerEntity&gt; source, Guid userId) { // query source and return results } } </code></pre> <p>Add all your "special" queries to this class.</p> http://stackoverflow.com/questions/138715/programming-with-add-adhd/139303#139303 88 Answer by David Schmitt for Programming with ADD/ADHD David Schmitt 2008-09-26T12:54:50Z 2009-10-27T21:41:04Z <p>I've had similar problems as you do. The two main strategies that have helped me are </p> <ul> <li><p><strong>Only one project at any time:</strong> I've suffered from following more projects than I can count on my fingers, each "clamouring" for attention. Now I've radically cut down on projects either by finishing them "once and for all" or by simply dropping them altogether. Earlier this year I've founded a company and now I'm down to three projects: Health, Family and Company.</p></li> <li><p><strong>Separation of concerns:</strong> When doing everything on one desk, the risk is high to "drift" from one thing to another. I've removed all procrastination stuff from my work PC and use my Laptop only for "play" and other private internet usage (mails, <a href="http://www.userfriendly.org/" rel="nofollow">userfriendly</a>, <a href="http://slashdot.org" rel="nofollow">slashdot</a>). The PC is on my desk, the Laptop in the Living Room. This keeps a healthy distance between Company and private stuff.</p></li> </ul> <p>Of course these two things are quite general stuff. Some of the smaller, but also helpful things:</p> <ul> <li><strong>No Lurking on IRC/other chat channels.</strong> Either I need or give support/community in the project I'm working on or I'm not in that channel.</li> <li><strong>Close The Mailer.</strong> Checking mails because the project just compiles is just stupid, since waiting for a compile is just enough time to see whether or not there is mail. If there wasn't any mail, I've interrupted my flow for nothing and if there <em>was</em> mail, I'd either have to interrupt my flow even more to handle it or punt it anyways. So now, I'm checking my mails three times a day and have reduced my interruption count significantly.</li> <li><strong>Exercise.</strong> Often while programming I feel the urge to jump up and run around in my room. Especially when sitting before the tougher design decisions. Going biking every other day has significantly improved my ability to concentrate on stuff as well as the added benefit of improving overall stamina and well being.</li> <li><strong>Spent Time Bookkeeping.</strong> I've got a simple spreadsheet where I enter my Company time and some private stuff. I keep it to 15 minute chunks, which makes data entry much easier and any smaller units just cause more overhead. If I'm not doing something I can "bill" on the Company and it's between 8:00 and 18:00 I know I'm doing something wrong.<br /> Also, at the end of the week I get a nice report how I spent my time. One <strong>big caveat</strong> here though. When I started this after finishing university it was a hard blow for me how little time I was spending "productively." It took me quite a while to recognize, that I need to record everything I don't do for Family. Specifically: <ol> <li>I need to record times spent exercising as productive. See above.</li> <li>I need to record times lost due to external factors: I'm travelling a lot lately and when I've only recorded 25 hours of work in a week, I suck. But if I add the two days I spent on the road that week, I see that I did more than 40 hours. Suddenly "I suck" changes into "the external-factors-that-cause-my-travels suck," which is a much healthier thing to say.</li> </ol></li> <li><strong>Eat and Sleep Regularly.</strong> Stand up at 07:00, Breakfast, Lunch at 12:00, Dinner at 18:00, Sleep from between 22:00 and 23:00. </li> <li><strong>Appreciate the Small Successes.</strong> Even if I'm not yet there, today is better than yesterday and tomorrow will be better than today.</li> <li><strong>Adjust you Environment.</strong> That's quite a broad topic. As a home worker, I got myself a nice new desk and chair which I now use exclusively for work.<br /> Also I really like listening to music, but vocals -- especially in my mother tongue -- distract me incredibly. I've tried instrumental music, which worked for a while until the trance beats got to my nerves. Now I'm going for the complete silence. It might be different for you, but there's only one way to find out for real: experiment and watch yourself while working. </li> <li><p><strong>Become Accountable. Get a Conscience.</strong> I founded my Company together with an old friend, whom I deeply respect. By his presence and by knowing that our success is now is interlocked, I feel compelled to give my best.</p></li> <li><p>And finally <strong>Constant Vigilance!</strong> Distractions tend to creep up from every nook and cranny of your life (stackoverflow anybody? ;). Keeping them at bay and managing them will stay a constant struggle. Having said this, I have to close my stackoverflow tabs and get back to programming!</p></li> </ul> <p><hr /></p> <p><strong>PS:</strong> I've talked with someone from my family who is working with ADHD kids. She told me that ADHD is a kind of catch-all/fallback diagnostic (see <a href="http://en.wikipedia.org/wiki/Attention-deficit%5Fhyperactivity%5Fdisorder#Diagnosis" rel="nofollow">the ADHD Wikipedia entry for corrobation</a>: DSM-IV V.) and is hard to diagnose "scientifically" since the patient has to be monitored in different settings over a longer period of time AND other causes for the symptoms have to be excluded. Practically ADHD is handled as "the condition helped by the prescribed medicines", since there currently are no globally accepted non-<a href="http://en.wikipedia.org/wiki/Psychiatric%5Fassessment" rel="nofollow">psychiatric assesment</a> test procedures and not enough knowledge about the underlying biochemical functions. Again, quoting <a href="http://en.wikipedia.org/wiki/Attention-deficit%5Fhyperactivity%5Fdisorder%5Fmanagement" rel="nofollow">Wikipedia</a>: "There are several effective and clinically proven options to treat people with ADHD. Combined medical management and <a href="http://en.wikipedia.org/wiki/Behavior%5Ftherapy" rel="nofollow">behavioral treatment</a> is the most effective ADHD management strategy, followed by medication alone, and then behavioral treatment." </p> <p>From what I gathered from the discussion with her, the problem is that doctors often choose (cheap, symptom-oriented) medication over (expensive, cause-oriented) therapy with little regard to the long-term effects on the patient.</p> http://stackoverflow.com/questions/190344/wpf-blurry-fonts-problem-solutions/190521#190521 30 Answer by David Schmitt for WPF Blurry fonts problem - Solutions David Schmitt 2008-10-10T08:31:38Z 2009-10-27T07:56:40Z <h3>Technical background</h3> <p>There is a in-depth article about WPF Text rendering from one of the WPF Text Program Managers on windowsclient.net: <a href="http://windowsclient.net/wpf/white-papers/wpftextclarity.aspx" rel="nofollow">Text Clarity in WPF</a>.</p> <p>The problem boils down to WPF needing a linearly scaling font-renderer for smooth animations. Pure ClearType on the other hand takes quite a bit of freedom with the font to push vertical stems into the next pixel. </p> <p>The difference is obvious if one compares the classic "cascade" pattern. WinForms on the lower left side, WPF on the top right side:</p> <p><img src="http://club.black.co.at/david/pics/Fontcascade.png" width="640"/></p> <p>While I'm no fan of WPF's font rendering idiosyncrasies either, I can imagine the clamor if the animations would jump like they do in the Winforms cascade. </p> <h3>Playing with the registry</h3> <p>Of special interest to me was the link to the MSDN article "<a href="http://msdn.microsoft.com/en-us/library/aa970267.aspx" rel="nofollow">ClearType Registry Settings</a>", which explains the possible user-side adjustments in the registry:</p> <ul> <li>ClearType level: amount of subpixel hinting</li> <li>Gamma level</li> <li>Pixel structure: how the color stripes in a display-pixel are arranged</li> <li>Text contrast level: adjusts the width of glyph stems to make the font heavier</li> </ul> <p>Playing around with these settings didn't really improve the underlying problem, but can help by reducing the color bleeding effect for sensitive users.</p> <h3>Another approach</h3> <p>The best advice the Text Clarity article gave was increasing the font size and changing the font. Calibri works for me better than the standard Segoe UI. Due to its popularity as web font, I tried Verdana too, but it has a nasty jump in weight between 14pt and 15pt which is very visible when animating the font size.</p> <h3>WPF 4.0</h3> <p>WPF 4 will have improved support for influencing the rendering of fonts. There is <a href="http://blogs.msdn.com/text/archive/2009/08/24/wpf-4-0-text-stack-improvements.aspx" rel="nofollow">an article on the WPF Text Blog</a> explaining the changes. Most prominently, there are now (at least) three different kinds of text rendering:</p> <p><img src="http://blogs.msdn.com/blogfiles/text/WindowsLiveWriter/WPF4.0TextStackImprovements%5F12DE7/CT%20vs%20Grayscale%20vs%20Aliased%5F4.png" alt="text rendering comparison" /></p> <p><sub>&lt;grumble>That should be enough rope for every designer.&lt;/grumble></sub></p> http://stackoverflow.com/questions/887255/why-do-property-setters-and-getters-clash-with-getx-and-setx-methods/887277#887277 5 Answer by David Schmitt for Why do property setters and getters clash with get_X and set_X methods? David Schmitt 2009-05-20T10:52:11Z 2009-10-26T10:38:43Z <p>The <a href="http://msdn.microsoft.com/en-us/library/12a7a7h3.aspx" rel="nofollow">Common Language Specification</a> (CLS) requires the use of get_ and set_ methods in the IL (decorated with special bits) when implementing Properties. This is necessary so that different compilers (C#, managed C++, VB.NET, J#, IronPython, etc.) create interoperable bytecodes.</p> <p>Thus underscores <strong>are</strong> not "legal" characters in the broader sense. They are not CLS-compliant and therefore should not be used in non-private interfaces.</p> <p>Also, see this article about <a href="http://msdn.microsoft.com/en-us/library/bhc3fa7f.aspx" rel="nofollow">writing CLS-compliant code</a> on the MSDN.</p> http://stackoverflow.com/questions/451140/the-diff-between-openssl-2-and-openssl-3/451203#451203 3 Answer by David Schmitt for The diff between openssl-2 and openssl-3 David Schmitt 2009-01-16T17:05:15Z 2009-10-19T06:57:03Z <p>Find the current <a href="http://openssl.org/" rel="nofollow">OpenSSL</a> version on the <a href="http://openssl.org/" rel="nofollow">OpenSSL webpage</a> (0.9.8k as of 25-Mar-2009 and 1.0.0, third beta as of 15-Jul-2009). OpenSSL is a implementation of the <a href="http://en.wikipedia.org/wiki/Transport%5FLayer%5FSecurity" rel="nofollow">TLS</a> cryptographic protocol suite (amongst other things).</p> http://stackoverflow.com/questions/303116/system-windows-threading-dispatcher-and-winforms 2 System.Windows.Threading.Dispatcher and WinForms? David Schmitt 2008-11-19T19:49:47Z 2009-10-14T23:15:06Z <p>Does a <a href="http://msdn.microsoft.com/en-us/library/system.windows.threading.dispatcher.aspx" rel="nofollow"><code>System.Windows.Threading.Dispatcher</code></a> work on the UI-thread of a <code>WinForms</code> application?</p> <p>If yes, why? It is coming from WindowsBase.dll which seems to be a <code>WPF</code> component.</p> <p>If not, how can I invoke work units back onto the UI-thread? I've found <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.begininvoke.aspx" rel="nofollow"><code>Control.BeginInvoke()</code></a>, but it seems clumsy to create a control only to reference the originating thread.</p> http://stackoverflow.com/questions/1361480/avoid-mvvm-data-binding-for-small-windows/1536045#1536045 2 Answer by David Schmitt for Avoid MVVM/data binding for small windows? David Schmitt 2009-10-08T06:58:01Z 2009-10-08T06:58:01Z <p>I'm all for MVVM, but the window you're describing can be implemented once and then filled as needed when you want to open one. So the ViewModel might look like this:</p> <pre><code>public SmallDialogTask { string Title { get; set; } string Text { get; set; } string AcceptButtonLabel { get; set; } string RejectButtonLabel { get; set; } Command AcceptCommand { get; } Command RejectCommand { get; } } </code></pre> <p>Implement this once and use inheritance to configure the various instances where you need it. As you can see from my example, this allows you to encode much more semantics into your class.</p> <p>See also <a href="http://en.wikipedia.org/wiki/Don%27t%5Frepeat%5Fyourself" rel="nofollow">DRY</a>, <a href="http://stackoverflow.com/questions/295751/how-does-the-presentation-viewmodel-for-a-task-or-dialog-look-like">my question about MVVM dialogs</a> and -- just for reference -- <a href="http://dasz.at/index.php/2008/11/doing-gui-architecture-the-right-way/" rel="nofollow">my blog post about MVVM</a>.</p> http://stackoverflow.com/questions/1520952/ascchr254-returns-116-in-net-1-1-when-language-is-hungarian/1521049#1521049 2 Answer by David Schmitt for Asc(Chr(254)) returns 116 in .Net 1.1 when language is Hungarian. David Schmitt 2009-10-05T16:23:44Z 2009-10-06T10:15:30Z <p><code>Chr(254)</code> interprets the argument in a system dependent way, by looking at the <code>System.Globalization.CultureInfo.CurrentCulture.TextInfo.ANSICodePage</code> property. See the <a href="http://msdn.microsoft.com/en-us/library/613dxh46.aspx" rel="nofollow">MSDN article about <code>Chr</code></a>. You can check whether that value is what you expect. "hu-US" (the hungarian locale as used in the US) might do something strange there.</p> <p>As a side-note, <code>Asc()</code> has no promise about the used codepage in <a href="http://msdn.microsoft.com/en-us/library/zew1e4wc.aspx" rel="nofollow">its current documentation</a> (it was there until 3.0).</p> <p>Generally I would stick to the unicode variants (ending on -W) if at all possible or use the <a href="http://msdn.microsoft.com/en-us/library/system.text.encoding.aspx" rel="nofollow">Encoding</a> class to explicitly specify the conversions.</p> http://stackoverflow.com/questions/460831/linq-to-sql-return-from-function-as-iqueryablet/460883#460883 4 Answer by David Schmitt for Linq To Sql return from function as IQueryable<T> David Schmitt 2009-01-20T11:22:09Z 2009-10-02T15:22:16Z <p>This line is syntactically incorrect:</p> <pre><code>return ticketDetails.AsQueryable()&lt;myObject&gt;; </code></pre> <p>and should read </p> <pre><code>return ticketDetails.AsQueryable&lt;myObject&gt;(); </code></pre> <p>Also, you're creating anonymous objects with the <code>select new {</code>, but you want to create <code>myObject</code> instances. A correct implementation would look like this:</p> <pre><code>public IQueryable&lt;myObject&gt; getTicketInformation(int ticketID) { return from tickets in _context.tickets join file in _context.file_objects on tickets.ticket_id equals file.source_id where tickets.ticket_id == ticketID select new myObject() { ticket_id = tickets.ticket_id, title = tickets.title, care_of_email = tickets.care_of_email, filename = file.filename }; } </code></pre> <p>The <code>new SomeClass() { Property = value, ...</code> syntax creates a <code>SomeClass</code> instance and sets the properties to the given values. Alternatively you could implement a constructor on the <code>myObject</code> class and call it in the linq statement with <code>select new myObject(...)</code>.</p> http://stackoverflow.com/questions/503549/wpf-linq-data-layer-design-question/503649#503649 1 Answer by David Schmitt for WPF/LINQ data layer design question David Schmitt 2009-02-02T15:44:03Z 2009-09-30T13:40:51Z <p>Welcome in the Linq world!</p> <p>You want to return an <code>IQueryable&lt;Contact&gt;</code>:</p> <pre><code>public class StoreDB { public Contact GetContact(int id) {...} // change to this: public IQueryable&lt;Contact&gt; GetContacts() {...} } </code></pre> <p>Now you can say this without wasting cycles or bandwidth:</p> <pre><code>IQueryable&lt;Contact&gt; SerachByFirstName(StoreDB store, string searchParam, int limit) { return store.GetContacts() .Where(c =&gt; c.FirstName == searchParam) .Take(limit); } </code></pre> <p>In fact, this still won't dispatch a query to the database unless you start enumarting over the IQueryable. That is, you still can add more <code>Where()</code> or <code>OrderBy()</code> or what ever and they will be merged and sent to the source together when the query is finally evaluated.</p> <p><hr /></p> <p>Of course this doesn't help you to bind to the UI. But that is a hard problem. You either have to expose the underlying EntitySet to WPF or use a <a href="http://dasz.at/index.php/2008/11/doing-gui-architecture-the-right-way/" rel="nofollow">MVVM</a> (or similar) architecture to separate data access and UI.</p> http://stackoverflow.com/questions/452385/what-java-orm-do-you-prefer-and-why/452408#452408 1 Answer by David Schmitt for What Java ORM do you prefer, and why? David Schmitt 2009-01-16T23:28:03Z 2009-09-27T11:16:22Z <p><a href="http://www.simpleorm.org/" rel="nofollow">SimpleORM</a>, because it is straight-forward and no-magic. It defines all meta data structures in Java code and is very flexible.</p> <blockquote> <p>SimpleORM provides similar functionality to Hibernate by mapping data in a relational database to Java objects in memory. Queries can be specified in terms of Java objects, object identity is aligned with database keys, relationships between objects are maintained and modified objects are automatically flushed to the database with optimistic locks.</p> <p>But unlike Hibernate, SimpleORM uses a very simple object structure and architecture that avoids the need for complex parsing, byte code processing etc. SimpleORM is small and transparent, packaged in two jars of just 79K and 52K in size, with only one small and optional dependency (Slf4j). (Hibernate is over 2400K plus about 2000K of dependent Jars.) This makes SimpleORM easy to understand and so greatly reduces technical risk.</p> </blockquote> http://stackoverflow.com/questions/540520/when-is-it-acceptable-to-break-cls-compliance 1 When is it acceptable to break CLS compliance? David Schmitt 2009-02-12T08:45:54Z 2009-09-24T21:29:29Z <p>I was wondering which edge cases exist that could make <a href="http://www.devarticles.com/c/a/C-Sharp/Making-Your-Code-CLS-Compliant/" rel="nofollow">Common Language Specification compliance</a> acceptable. Even when not intending to be accessed from other languages, I think that the tenets asserted by the <a href="http://msdn.microsoft.com/en-us/library/system.clscompliantattribute.aspx" rel="nofollow"><code>CLSCompliantAttribute</code></a> are good best practices.</p> <p>Do you have encountered / know of cases where <a href="http://en.wikipedia.org/wiki/You_Ain%27t_Gonna_Need_It" rel="nofollow">YAGNI</a> outweighs the best practices?</p> http://stackoverflow.com/questions/1470225/difference-between-environment-exit-and-simple-return-2-from-main/1470246#1470246 1 Answer by David Schmitt for Difference between Environment.Exit and simple return 2 from Main David Schmitt 2009-09-24T07:32:42Z 2009-09-24T07:32:42Z <p><code>Environment.Exit(2)</code> can be used everywhere. <code>return 2</code> only within the <code>Main()</code> function.</p> http://stackoverflow.com/questions/536539/how-to-call-msbuild-from-c 5 How to call MSBuild from C# David Schmitt 2009-02-11T12:21:14Z 2009-08-29T09:25:44Z <p>Is there a better way to call MSBuild from C#/.NET than shelling out to the msbuild.exe? If yes, how?</p> http://stackoverflow.com/questions/714421/what-is-an-easy-way-to-do-a-sorted-diff-between-two-files/714483#714483 7 Answer by David Schmitt for What is an easy way to do a sorted diff between two files? David Schmitt 2009-04-03T15:34:06Z 2009-08-29T09:23:38Z <p>This redirection syntax is bash specific. Thus it won't work in tcsh. </p> <p>You can call bash and specify the command directly:</p> <pre><code>bash -c 'diff &lt;(sort text2) &lt;(sort text1)' </code></pre> http://stackoverflow.com/questions/1327330/should-i-cache-the-return-value-of-a-getter-if-it-is-just-a-simple-delegate/1327361#1327361 3 Answer by David Schmitt for Should I cache the return value of a getter if it is just a simple delegate? David Schmitt 2009-08-25T10:24:18Z 2009-08-25T10:24:18Z <p>The JIT should be able to inline all trivial getters at run-time. So this is not really a concern.</p> <p>Regarding the coding style, I would prefer the direct call -- unless it makes the line where it occurs too long -- when you need the value only once.</p> http://stackoverflow.com/questions/1205506/calculating-a-round-order-of-magnitude/1205564#1205564 0 Answer by David Schmitt for Calculating a round order of magnitude David Schmitt 2009-07-30T09:46:44Z 2009-07-30T09:46:44Z <p>Convert the number into a string and use the strings length. This is certainly not faster, but will be very accurate. You can then go on and use the string directly to build the result by slicing it appropriately.</p> http://stackoverflow.com/questions/1198378/ssh-command-execution-doesnt-consider-bashrc-bashlogin-ssh-rc/1198450#1198450 2 Answer by David Schmitt for ssh command execution doesn't consider .bashrc | .bash_login | .ssh/rc? David Schmitt 2009-07-29T06:57:29Z 2009-07-29T06:57:29Z <p>ssh doesn't use the shell execute commands. You will have to have a binary called <code>ll</code> to achieve your goal.</p> http://stackoverflow.com/questions/1198417/generate-list-of-methods-of-a-class-with-method-types/1198425#1198425 1 Answer by David Schmitt for Generate List of methods of a class with method types David Schmitt 2009-07-29T06:51:24Z 2009-07-29T06:51:24Z <p>You can get at these lists very easily with reflection. e.g. with <a href="http://msdn.microsoft.com/en-us/library/td205ybf.aspx" rel="nofollow"><code>Type.GetMethods()</code></a></p> http://stackoverflow.com/questions/1198351/how-can-i-capture-the-output-of-remote-commands-then-issue-more-remote-commands/1198415#1198415 0 Answer by David Schmitt for How can I capture the output of remote commands then issue more remote commands? David Schmitt 2009-07-29T06:48:14Z 2009-07-29T06:48:14Z <p>Use <a href="http://reductivelabs.com/trac/puppet/wiki/" rel="nofollow">puppet</a>.</p> <p>If you really insist on doing it manually, use <code>getent passwd debug</code> to check whether the user exists:</p> <pre><code>if [ $(getent passwd debug | wc -l ) = 0 ]; then adduser debug fi </code></pre> http://stackoverflow.com/questions/1198376/c-shorten-code-nullable-object-return-property-or-string-empty/1198391#1198391 1 Answer by David Schmitt for C#: Shorten Code (Nullable Object, Return Property or String.Empty) David Schmitt 2009-07-29T06:43:25Z 2009-07-29T06:43:25Z <p>Use the <code>?:</code> operator:</p> <pre><code>MyObject theObject = ObjectCollection.GrabAnObject(); return (theObject == null) ? String.Empty : theObject.myProperty; </code></pre> http://stackoverflow.com/questions/1192191/how-do-i-add-multiple-commits-in-svn-into-one-post-commit-hook/1192244#1192244 3 Answer by David Schmitt for How do I add multiple commits in SVN into one Post-Commit HOOK ? David Schmitt 2009-07-28T06:35:39Z 2009-07-28T18:10:34Z <p>First you have to decide <em>when</em> you actually want to send the email:</p> <ol> <li>Every tenth commit?</li> <li>At midnight?</li> <li>When tagging?</li> </ol> <p>Then you should be able to easily implement a scheme working as you need it:</p> <ol> <li>in the post-commit hook: only send an email when <code>revision number % 10 == 0</code></li> <li>create a cron job</li> <li>in the post-commit hook: detect when creating a tag</li> </ol> <p>You can use <code>svn log</code> and <code>svn diff</code> with the <code>-r FROM:TO</code> option to gather the needed information by date or revision numbers. See <a href="http://svnbook.red-bean.com/en/1.5/svn.tour.revs.specifiers.html" rel="nofollow">the svnbook</a> for more infos.</p> http://stackoverflow.com/questions/1175991/how-can-you-determine-whether-a-form-has-been-closed-by-the-user-or-by-your-code/1176003#1176003 2 Answer by David Schmitt for How can you determine whether a form has been closed by the user or by your code? David Schmitt 2009-07-24T06:20:47Z 2009-07-24T06:20:47Z <p>Just add a special "<code>ReallyClose()</code>" method that does your cleanup and is called when you really want to close the form.</p> http://stackoverflow.com/questions/1755800/why-am-i-getting-a-redirect-loop/1755817#1755817 Comment by David Schmitt on Why am I getting a redirect loop? David Schmitt 2009-11-18T13:25:42Z 2009-11-18T13:25:42Z Use &quot;wget -S&quot; to debug this. Browsers might cache the redirect. http://stackoverflow.com/questions/359290/how-to-get-the-fxcop-custom-dictionary-to-work/726358#726358 Comment by David Schmitt on How to get the FxCop custom dictionary to work? David Schmitt 2009-11-16T12:34:59Z 2009-11-16T12:34:59Z No, FxCop searches the project folder's parent directories. So putting the custom dictionary into the solution folder, shares the entries with all projects. http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags Comment by David Schmitt on RegEx match open tags except XHTML self-contained tags David Schmitt 2009-11-14T10:37:39Z 2009-11-14T10:37:39Z If your input set is small/homogeneous enough that you don't need a parser, then you can just try it out and check manually whether the regexp hack matches what you want it to match. If you <i>can't</i> then you should rethink your need for a parser... http://stackoverflow.com/questions/1158394/alttab-in-vista-activates-main-window-instead-of-previously-active-child-window Comment by David Schmitt on ALT+TAB in Vista activates main window instead of previously active child window David Schmitt 2009-11-09T09:32:13Z 2009-11-09T09:32:13Z Take a look at the WMs coming through. Perhaps you can recognize the difference in Aero? http://stackoverflow.com/questions/523531/fast-transcendent-trigonometric-functions-for-java/523542#523542 Comment by David Schmitt on Fast transcendent / trigonometric functions for Java David Schmitt 2009-11-03T14:41:35Z 2009-11-03T14:41:35Z hstoerr: the bug cited by Bruce ONeel has details why bigger arguments lead to longer calculation times. Basically, Intel's sin/cos implementation sucks golfballs through gardenhoses for arguments outside of [-pi/4,pi/4] and the JVM has to manually map the argument into this range. http://stackoverflow.com/questions/523531/fast-transcendent-trigonometric-functions-for-java/523701#523701 Comment by David Schmitt on Fast transcendent / trigonometric functions for Java David Schmitt 2009-11-03T14:38:10Z 2009-11-03T14:38:10Z Especially liked the &quot;Neither the almabench code nor the code submitted in this bug actually examine the results to verify they are sensible.&quot; comment in the closing message. http://stackoverflow.com/questions/1661526/shorten-nested-namespace-names/1661539#1661539 Comment by David Schmitt on Shorten nested namespace names David Schmitt 2009-11-02T14:24:38Z 2009-11-02T14:24:38Z @bighil: you don't alias the namespace in the header, but in the includer, who knows that the alias is (locally) unique http://stackoverflow.com/questions/536018/anyone-familiar-with-the-zedgraph-charting-library-for-net/984398#984398 Comment by David Schmitt on Anyone familiar with the ZedGraph charting library for .NET David Schmitt 2009-10-29T09:27:10Z 2009-10-29T09:27:10Z MS Chart may only be used in conjunction with a valid Windows license. For some products, clients or people this is a complete no-go. http://stackoverflow.com/questions/480743/inotifypropertychanged-problem/480822#480822 Comment by David Schmitt on INotifyPropertyChanged problem David Schmitt 2009-10-08T07:13:33Z 2009-10-08T07:13:33Z Please keep clarifications to the comments or edit your post. That helps keeping the content readable. http://stackoverflow.com/questions/480743/inotifypropertychanged-problem/480853#480853 Comment by David Schmitt on INotifyPropertyChanged problem David Schmitt 2009-10-08T07:12:58Z 2009-10-08T07:12:58Z Please keep clarification questions to the comments. That helps keeping the content readable. http://stackoverflow.com/questions/480743/inotifypropertychanged-problem/480770#480770 Comment by David Schmitt on INotifyPropertyChanged problem David Schmitt 2009-10-08T07:12:13Z 2009-10-08T07:12:13Z Please keep clarification questions to the comments. That helps keeping the content readable. http://stackoverflow.com/questions/1533067/what-is-the-best-way-to-gunzip-files-with-perl Comment by David Schmitt on What is the best way to gunzip files with Perl? David Schmitt 2009-10-07T17:45:16Z 2009-10-07T17:45:16Z @Paul: like IO::Uncompress::Gunzip ? http://stackoverflow.com/questions/1520952/ascchr254-returns-116-in-net-1-1-when-language-is-hungarian/1521054#1521054 Comment by David Schmitt on Asc(Chr(254)) returns 116 in .Net 1.1 when language is Hungarian. David Schmitt 2009-10-06T10:17:35Z 2009-10-06T10:17:35Z Sounds probable. We'll really only know by looking at 'hu-US'' Codepage. http://stackoverflow.com/questions/1520952/ascchr254-returns-116-in-net-1-1-when-language-is-hungarian/1521033#1521033 Comment by David Schmitt on Asc(Chr(254)) returns 116 in .Net 1.1 when language is Hungarian. David Schmitt 2009-10-05T16:25:30Z 2009-10-05T16:25:30Z Interestingly, the assertion vanishes on the Asc() page when you move to the 3.5 Framework. The mind boggles. http://stackoverflow.com/questions/1470225/difference-between-environment-exit-and-simple-return-2-from-main/1470259#1470259 Comment by David Schmitt on Difference between Environment.Exit and simple return 2 from Main David Schmitt 2009-09-24T11:18:22Z 2009-09-24T11:18:22Z See <a href="http://stackoverflow.com/questions/713805/net-finalizers-and-exit0" rel="nofollow" title="net finalizers and exit0">stackoverflow.com/questions/713805/&hellip;</a> for details about finalization at end of process.