User Dror Helper - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T02:27:31Z http://stackoverflow.com/feeds/user/11361 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1926019/python-programming-general-questions/1926100#1926100 2 Answer by Dror Helper for Python programming general questions Dror Helper 2009-12-18T03:31:15Z 2009-12-18T03:31:15Z <p>Like every other programming language In order to learn Python you need to write a program with it.<br> Find a pet project and use python to code it. I also recommend Dive into python" (like anyone else that answered your question).</p> <p>A few months ago I've decided to learn IronPython (.NET implementation of python), I'vve started by reading "Dive into python" and a few tutorials and then I've started coding a simple board game using IronPython (you can <a href="http://blogs.microsoft.co.il/blogs/dhelper/archive/2009/05/01/beginning-ironpython-development-part-1-where-to-start.aspx" rel="nofollow">read about it in my blog</a>).</p> <p>In order to learn a new programming language you need to use it and then you'll know how and where to use it.</p> http://stackoverflow.com/questions/1902633/infrastructure-required-for-tdd/1902795#1902795 5 Answer by Dror Helper for Infrastructure required for TDD? Dror Helper 2009-12-14T18:55:59Z 2009-12-14T19:05:14Z <p>Take a look at a webinar I did a few weeks ago - <a href="http://www.typemock.com/general-unit-testing-page/2009/11/11/how-to-start-unit-testing-successfully.html" rel="nofollow">How To Start Unit Testing Successfully</a>. In that webinar I've talked about tools and unit testing best practices and it was aimed at developers just like you who want to introduce unit testing in their organization.</p> <p>First order of business you want to put a CI (Continuous Integration) process in place and for that you'll need three tools:</p> <ol> <li>Source control</li> <li>Build server</li> <li>Build client/script</li> </ol> <p>I hope you already have some form of source control in place so let's talk about the other two.</p> <p><strong>Build Server</strong> - checks the source control and when it changes (or some other condition met) runs a build script on some client (or same machine) there are several build server available I recommend JetBrain's <a href="http://www.jetbrains.com/teamcity/" rel="nofollow">TeamCity</a> it's easy to install and use (great web interface) and is free for up to 20 developers (that's you).</p> <p><strong>Build Script</strong> - on your build client you want to run a build script that would build your solution and run your unit tests. TeamCity has some basic build &amp; test capabilities but for more advanced options (build installer, documentation etc.) you'll need some script runner at work we use <a href="http://www.finalbuilder.com/" rel="nofollow">FinalBuilder</a> - it's not free but has very good editor. If you're looking for a free alternative have a look at <a href="http://ant.apache.org/" rel="nofollow">ANT</a> or <a href="http://nant.sourceforge.net/" rel="nofollow">NANT</a> - but be prepared to edit a lot of XML.</p> <p><strong>Other tools</strong> - Because an important part of successful unit testing is how easy it is to write and run tests on the developer's machines I suggest you check if there are better IDE's or external tools that would help the developers write &amp; run their unit tests.</p> http://stackoverflow.com/questions/1880543/how-to-sort-an-array-which-is-mostly-sorted/1880558#1880558 16 Answer by Dror Helper for how to sort an array which is mostly sorted Dror Helper 2009-12-10T12:08:44Z 2009-12-10T12:08:44Z <p>The following <a href="http://www.sorting-algorithms.com/" rel="nofollow">site</a> has a comparison between common sorting algorithms - it seems that insertion sort wins when the collection is nearly sorted.</p> http://stackoverflow.com/questions/1879034/what-is-the-zen-of-c/1879053#1879053 12 Answer by Dror Helper for What is The Zen of C++ Dror Helper 2009-12-10T06:36:28Z 2009-12-10T09:59:54Z <ul> <li>Compile time errors are better than run time errors</li> <li>Specific Functions are better than Operator overloading</li> <li>Reference are more preferable than pointers</li> <li>Try to avoid the <code>void*</code></li> <li>Function overloading is better than using default values</li> <li><code>static_cast</code> is better then <code>dynamic_cast</code></li> <li>Don't use casting to fix bad design decisions</li> <li>Single inheritance is better than multiple inheritance</li> <li>One class per file is important</li> <li>The object that called <code>new</code> should be the one that frees that memory</li> </ul> http://stackoverflow.com/questions/1872261/while-loop-example/1872296#1872296 0 Answer by Dror Helper for While loop example Dror Helper 2009-12-09T07:55:19Z 2009-12-09T07:55:19Z <p>I think the program tries to find the biggest prime factors of y. If y is a prime factor it prints this as well.</p> http://stackoverflow.com/questions/1867482/c-getting-value-of-parms-using-reflection/1867576#1867576 2 Answer by Dror Helper for C# getting value of parms using reflection Dror Helper 2009-12-08T15:07:48Z 2009-12-08T15:07:48Z <p>You cannot get the value of the method's parameters using reflection. Because reflection returns the metadata information. If you'd like to get the value of a specific field or property you need to use an instance as well (like you already know). </p> <p>There are several ways to get a parameter's value using the inner plumbing of the .NET framework - namely profiler API and debugger API. </p> <p>You can use AOP for what you're trying to do, there is a Codeplex project called <a href="http://cthru.codeplex.com/" rel="nofollow">CThru</a> that might help you - using CThru you can intercept the method when it's being called and get the parameters it was called with.</p> http://stackoverflow.com/questions/1865726/is-there-a-better-way-to-block-a-c-timer-when-interacting-with-the-user/1865817#1865817 3 Answer by Dror Helper for Is there a better way to block a C# timer when interacting with the user? Dror Helper 2009-12-08T09:36:36Z 2009-12-08T10:30:15Z <p>First System.Forms.Timer does not run the action in a different thread - it just posts a message to the form's message loop and the form handle the timer event when it's free. </p> <p>So if you user is in the middle of an action - the timer will "wait" until the action is over;</p> <p>To explicitly make the timer "start/stop" I prefer using a boolean value that is checked at the beginning of the method the timer runs.</p> <p>You can use an helper class to reduce the "coding overhead" on your methods:</p> <pre><code>public class TimerEnableFlag { public bool IsTimerEnabled{get; set;} } public class TimerEnabler : IDisposable { private TimerEnableFlag flag; public TimerEnabler(TimerEnableFlag flag) { this.flag = flag; flag.IsTimerEnabled = true; } public void Dispose() { flag.IsTimerEnabled = false; } } </code></pre> <p>Now all you need to do is have a "global variable" that holds the timer enable flag that you check when you enter the method run by the timer and when you wanto to disable the timer just add the following code:</p> <pre><code>using(var enabler = new TimerEnabler(m_flag)) { //... } </code></pre> http://stackoverflow.com/questions/1805981/database-free-nunit-tests/1865496#1865496 1 Answer by Dror Helper for Database free NUnit tests Dror Helper 2009-12-08T08:26:12Z 2009-12-08T08:26:12Z <p>You can test the business layer (and some of the presentation layer) using Mock objects. </p> <p>Use Mocks/Fakes so that instead of calling the database from the DAL a fake class will be called instead and return a predefined value. </p> <p><strong>In order to test the DAL you will need actual database</strong>. You can use a unit testing framework to run simple CRUD on the database. Create a simple test database as well as a restore point and use the unit testing framework's setup &amp; teardown to make sure your database is in the expected state.</p> http://stackoverflow.com/questions/1865241/c-how-to-tdd-a-file-downloader/1865271#1865271 0 Answer by Dror Helper for C#: How to TDD a file downloader Dror Helper 2009-12-08T07:34:30Z 2009-12-08T07:34:30Z <p>Of course you can start by writing tests :). </p> <ul> <li>With each new component/feature you develop ask yourself what this feature suppose to do and see if you can check some end result.</li> <li>Use Mocks - to fake out external dependencies (i.e. save file to disk using StreamWriter).</li> <li>When all things fail you can always write integration tests - for example check that when you call the class that downloads a file from a specific place the file is saved to disk.</li> </ul> http://stackoverflow.com/questions/1861338/unit-test-helper-methods/1861364#1861364 1 Answer by Dror Helper for Unit test helper methods? Dror Helper 2009-12-07T17:06:00Z 2009-12-07T17:06:00Z <p>If you want to test <em>Helper</em> methods you can change them from private but you might consider this.</p> <p>You should not unit test private details of your implementation mainly because it might change due to refactoring and "break" your test. </p> http://stackoverflow.com/questions/1798552/staying-relevant-as-a-programmer/1854855#1854855 1 Answer by Dror Helper for Staying Relevant As a Programmer Dror Helper 2009-12-06T09:20:13Z 2009-12-06T09:20:13Z <p>I think of staying relevant as two different goals:</p> <ol> <li>Stay updated on changes in your line of work</li> <li><strong>Make</strong> potential employers aware of your expertise</li> </ol> <p>Staying updated is the simpler part - read blogs, go to workshops and learn whatever you think is important for you to remain relevant. Being interested in what your doing is a big part of it, if you like your job and you like programming you will learn new things just because you enjoy it. </p> <p>Advertising yourself is a big part of staying relevant. Think of a role model in your industry - what did he do that differentiate him from the rest? Open a blog, speak at conventions, and networking is part of it.</p> <p>In today's world being good is just not enough in the long run you need to be able to answer - what makes you better then the other developers that have the same certificate and experience as yourself.</p> http://stackoverflow.com/questions/1854632/save-a-listview-into-settings-settings/1854686#1854686 1 Answer by Dror Helper for Save a ListView into Settings.settings? Dror Helper 2009-12-06T07:51:33Z 2009-12-06T09:12:47Z <ol> <li>Bind the listview to some data structure.</li> <li>Serialize is using xmlseriualizer - then you can save the result into the Settings.</li> </ol> <p>Restoring is done using deserialize.</p> <pre><code>StringWriter output = new StringWriter(new StringBuilder()); XmlSerializer s = new XmlSerializer(this.GetType()); s.Serialize(output,this); var result = output.ToString() </code></pre> http://stackoverflow.com/questions/1854638/free-icons-sets-for-common-file-types/1854690#1854690 0 Answer by Dror Helper for Free icons sets for common file types Dror Helper 2009-12-06T07:53:09Z 2009-12-06T07:53:09Z <p><a href="http://www.junauza.com/2008/08/10-really-cool-icon-sets-for.html" rel="nofollow">10 "Really Cool" Icon Sets for Ubuntu/GNOME Desktop</a> - don't be fooled by the name - you can use them in windows as well.</p> http://stackoverflow.com/questions/114165/how-to-implement-wix-installer-upgrade 13 How to implement WiX installer upgrade? Dror Helper 2008-09-22T10:34:12Z 2009-12-04T00:02:06Z <p>At work we use WIX for building installation packages. We want that installation of product X it would uninstall previous version of that product on that machine. I've read several places on the iternet about major upgrade but couldn't get it to work. Can anyone please specify the exact steps that I need to take to add uninstall previous version feature to WIX?</p> http://stackoverflow.com/questions/114165/how-to-implement-wix-installer-upgrade/114736#114736 12 Answer by Dror Helper for How to implement WiX installer upgrade? Dror Helper 2008-09-22T13:03:32Z 2009-12-04T00:02:06Z <p>Finally I found a solution - I'm posting it here for other people who might have the same problem (all 5 of you):</p> <ul> <li>Change the product ID to *</li> <li><p>Under product add The following:</p> <pre><code>&lt;Property Id="PREVIOUSVERSIONSINSTALLED" Secure="yes" /&gt; &lt;Upgrade Id="01918121-E286-4A36-AB78-6D7EBCE2C638"&gt; &lt;UpgradeVersion Minimum="1.0.0.0" Maximum="99.0.0.0" Property="PREVIOUSVERSIONSINSTALLED" IncludeMinimum="yes" IncludeMaximum="no" /&gt; &lt;/Upgrade&gt; </code></pre></li> <li><p>Under InstallExecuteSequence add:</p> <pre><code>&lt;RemoveExistingProducts Before="InstallInitialize" /&gt; </code></pre></li> </ul> <p>From now on whenever I install the product it removed previous installed versions.</p> http://stackoverflow.com/questions/423595/how-to-get-started-with-maemo-software-development 10 How to get started with Maemo software development Dror Helper 2009-01-08T08:39:03Z 2009-12-01T14:58:48Z <p>A few months ego I purchased Nokia N800 device and since then I'm itching to write some code for it. I know that some of the application I'm running are written in Python and that there is a Mono port for the Maemo platform as well.</p> <p>Basically what I'm asking is:</p> <ul> <li>Is there a recommended development language for Maemo platform? </li> <li>What development tools exist? </li> <li>I can use Windows or Linux as my primery development machine - which recommended? why?</li> </ul> http://stackoverflow.com/questions/1820630/how-to-get-parameter-value-from-stacktrace 1 How to get parameter value from StackTrace Dror Helper 2009-11-30T15:51:05Z 2009-11-30T16:13:21Z <p>From within a method call I need to "jump" three layers up the stack and retrieve the type and value of the parameters passed to that method. Getting the parameter type is easy but I couldn't find a way to get the value passed to a certain method on the stack.</p> <pre><code>var st = new StackTrace(); var frames = st.GetFrames(); var methodParameters = frame[2].GetMethod().GetParameters; // get each parameter value </code></pre> <p>Note: using <code>StackTrace</code>is not mandatory.</p> <p>Is there a wayto find a value of a parameter passed to a method during runtime?</p> http://stackoverflow.com/questions/1329075/test-discovery-tool-for-net/1361079#1361079 0 Answer by Dror Helper for Test discovery tool for .NET Dror Helper 2009-09-01T07:41:17Z 2009-11-30T10:39:11Z <p>Visual Studio integrated test framework does exactly that when running from the IDE. If you need a command line tool that does exactly the same functionality (finds all the tests in a specific directory/solution) I guess you have to write something.</p> <p>Because MSTest command line needs at least the assembly to be specified. I suggest you write a short script that iterates all the assemblies and find if they have tests in them and then run each assembly using MSTest.exe</p> <p><strong>Update:</strong> I've just published a new CodePlex project called <a href="http://sharpnose.codeplex.com/" rel="nofollow">#Nose</a> that does exactly what you need. Currently it only supports NUnit but I plan on adding VSTest as well.</p> http://stackoverflow.com/questions/1818654/array-of-function-pointers-in-c/1818685#1818685 3 Answer by Dror Helper for Array of function pointers in C# Dror Helper 2009-11-30T09:12:35Z 2009-11-30T09:41:33Z <p>Store the methods as <code>Delegate</code> inside a List or Array and use <code>DynamicInvoke</code> to call them - note that you will need to pass the correct number (and type) of variables.</p> <pre><code>var delegates = new List&lt;Delegate&gt;(); delegates.Add((Action&lt;int, float, object[]&gt;)Foo); //... delegates[0].DynamicInvoke(new[] {0, 1.2, new object()}); </code></pre> <p>This solution is best suited when you want to pass default (read: zero/null) to the methods - then you can use reflection to create the default values. </p> <p>Another useful case is if you want to call a specific method signature (i.e. a method that receives a single int) then you can go to the desired index and check (using reflection) if the delegate can be called with that argument. </p> <p>Otherwise you need to have some knowledge of the method you're calling because each method has different argument type and number.</p> http://stackoverflow.com/questions/1818595/how-do-i-identify-improvement-areas-for-software-development-in-my-team/1818672#1818672 1 Answer by Dror Helper for How do i identify improvement areas for software development in my team? Dror Helper 2009-11-30T09:08:21Z 2009-11-30T09:08:21Z <p>In order to decide what to improve you have to take into account the current status (obviously). Try to find "pain points" - the things that cause grief to the developer's while doing their job:</p> <ul> <li>Do they have proper tools?</li> <li>Are they fully aware of the current development goals?</li> <li>Do they have an optimal development environment?</li> <li>Are you using Agile/TDD/Pair programming?</li> </ul> <p>I've choose the points above because they can be fixed easily in two weeks. You've been working in this company for enough time to come up with several points of improvement, also talk to the other developers to find out what they think could improve their work. </p> <p>Whatever you decide remember that your goal is to improve the development process for the dev team but also for the end customer - think on how you can provide high quality software in less time (within budget).</p> http://stackoverflow.com/questions/1815245/tdd-with-unclear-requirements/1815267#1815267 1 Answer by Dror Helper for TDD with unclear requirements Dror Helper 2009-11-29T11:16:35Z 2009-11-29T11:16:35Z <p>Using TDD could actually make you write code faster - not being able to write a test for a specific scenario could mean that there is an issue in the requirements.<br> When you TDD you should find these problematic places faster instead of after writing 80% of your code. </p> <p>There are a few things you can do to make your tests more resistant to change:</p> <ol> <li><p>You should try to reuse code inside your tests in a form of factory methods that creates your test objects along with verify methods that checks the test result. This way if some major behavior change occurs in your code you have less code to change in your test.</p></li> <li><p>Use IoC container instead of passing arguments to your main classes - again if the method signature changes you do not need to change all of your tests.</p></li> <li><p>Make your unit tests short and Isolated - each test should check only one aspect of your code and use Mocking/Isolation framework to make the test independent of external objects.</p></li> <li><p>Test and write code for only the required feature (YAGNI). Try to ask yourself what value my customer will receive from the code I'm writing. Don't create overcomplicated architecture instead create the needed functionality piece by piece while refactoring your code as you go.</p></li> </ol> http://stackoverflow.com/questions/1815094/why-are-there-no-content-management-systems-written-in-c/1815100#1815100 2 Answer by Dror Helper for Why are there no Content Management Systems written in C++? Dror Helper 2009-11-29T09:37:14Z 2009-11-29T11:00:42Z <p>I think the main reason is because the bottleneck is not the processor but the internet connection I don't think that making a CMS faster is a good time spent. And using C++ will be harder then using a managed language mainly due to the lack of GC.</p> http://stackoverflow.com/questions/1708103/how-to-impress-developers-with-ironpython-python 7 How to impress developers with IronPython/Python Dror Helper 2009-11-10T13:49:53Z 2009-11-27T12:23:00Z <p>I need an IronPython\Python example that would show C#/VB.NET developers how awesome this language really is. </p> <p>I'm looking for an <strong>easy to understand</strong> code snippet or application I can use to demo Python's capabilities.</p> <p>Any thoughts?</p> http://stackoverflow.com/questions/1802206/advice-on-starting-to-mentor-coworkers/1802229#1802229 2 Answer by Dror Helper for Advice on starting to mentor coworkers Dror Helper 2009-11-26T08:14:49Z 2009-11-26T08:14:49Z <p>Before starting you should have a session explaining the new methodology (i.e. SCRUM, TDD etc.) afterwards try to get everybody on board by suggesting that you try the new methodology for a defined period (one week, one month or whatever).<br> During that period you need to make yourself available for "mentoring" because your co-workers will need to ask you a lot of questions. </p> <p>I know it's not always possible but being in the same room (or at least floor) would help greatly because you'll be able to see how well the new methodology is assimilated.</p> <p>You can use code reviews as a teaching tool (if possible), review your peers code before committed back to the source control. This would work especially with TDD/BDD because you get to review review their test code as well as the production code.</p> <p>Finally a teaching session is always an option if the 1on1 approach is not possible.</p> http://stackoverflow.com/questions/1715822/unit-test-for-thread-safe-ness/1715870#1715870 8 Answer by Dror Helper for Unit test for thread safe-ness? Dror Helper 2009-11-11T15:21:13Z 2009-11-25T08:19:29Z <p>There are two products that can help you there:</p> <ul> <li><a href="http://research.microsoft.com/en-us/projects/chess/" rel="nofollow">Microsoft Chess</a></li> <li><a href="http://learn.typemock.com/typemock-racer/" rel="nofollow">Typemock Racer</a></li> </ul> <p>Both check for deadlocks in your code (via unit test) and I think Chess checks for race conditions as well. </p> <p>Using both tools is easy - you write a simple unit test and the run your code several times and check if deadlocks/race conditions is possible in your code.</p> <p>Edit: Google has released a tool that checks for race condition in runtime (not during tests) that called <a href="http://code.google.com/p/data-race-test/wiki/ThreadSanitizer" rel="nofollow">thread-race-test</a>.<br> it won't find all of the race conditions because it only analyse the current run and not all of the possible scenarios like the tool above but it might help you find the race condition once it happens.</p> http://stackoverflow.com/questions/1781734/run-net-application-as-administrator 0 Run .NET application as administrator Dror Helper 2009-11-23T08:13:46Z 2009-11-23T09:54:05Z <p>Since Vista &amp; windows 7 came out some of my .NET application has started throwing security exceptions.</p> <p>I've noticed that some applications (i.e. my antivirus, control panel) have a small shield and when I run these applications administrator privileges are automatically requested from me by windows. </p> <p>I know that as a user I can set the application to run as administrator but that's not good enough because if the application will run without privileges it would crash on my users machines. </p> <p>Is there a way to tell windows (programmatically) I want the application to run with administrative privileges? </p> http://stackoverflow.com/questions/1771518/ensuring-certain-private-functions-can-only-be-called-from-a-locked-state/1771598#1771598 0 Answer by Dror Helper for Ensuring certain private functions can only be called from a locked state Dror Helper 2009-11-20T16:21:27Z 2009-11-20T16:21:27Z <p>You can use '#Define' to create a similar effect:</p> <pre><code>#define CheckIfLocked(func, criticalSection) \ // here you can enter the critical section func \ // exit critical section </code></pre> http://stackoverflow.com/questions/174892/what-is-the-most-spectacular-way-to-shoot-yourself-in-the-foot-with-c/178244#178244 2 Answer by Dror Helper for What is the most spectacular way to shoot yourself in the foot with C++? Dror Helper 2008-10-07T12:38:25Z 2009-11-19T11:24:13Z <p>Using default values for fuction <code>void Func(int i = 0, bool x = false){...}</code> which is only declared in the header file.</p> <p>Then trying to track the place where you get false from the 2nd parameter.</p> http://stackoverflow.com/questions/1761042/c-how-to-convert-an-image-into-an-8-bit-color-image/1762029#1762029 1 Answer by Dror Helper for C# - How to convert an Image into an 8-bit color Image? Dror Helper 2009-11-19T09:34:47Z 2009-11-19T09:34:47Z <p>Although I'm not sure how to do it with plain vanilla C# you can use the <a href="http://freeimage.sourceforge.net/" rel="nofollow">FreeImage Project</a> libraries to convert images formats:</p> <blockquote> <p>FreeImage is an Open Source library project for developers who would like to support popular graphics image formats like PNG, BMP, JPEG, TIFF and others as needed by today's multimedia applications. FreeImage is easy to use, fast, multithreading safe, compatible with all 32-bit versions of Windows, and cross-platform (works both with Linux and Mac OS X).</p> </blockquote> <p>It's written in C++ but has good .NET wrappers you can use.</p> http://stackoverflow.com/questions/1738564/is-it-wise-to-use-branching-with-one-man-git-project/1738609#1738609 0 Answer by Dror Helper for Is it wise to use branching with one-man git project? Dror Helper 2009-11-15T19:53:53Z 2009-11-15T19:53:53Z <p>It makes sense as long as it helps you.<br> I use SVN for my personal projects and sometimes when I want to research a new feature or throw away a lot of code I like to branch off my main branch. </p> <p>That way I can work on the new functionality for a long period of time (read: more than one commit) if I fail I can always go back to the main branch and if I succeed I can merge the whole branch or just the changes that make sense.</p> http://stackoverflow.com/questions/1902633/infrastructure-required-for-tdd/1902795#1902795 Comment by Dror Helper on Infrastructure required for TDD? Dror Helper 2009-12-16T05:14:09Z 2009-12-16T05:14:09Z I do run the build script on my local machine but usually VS is enough for building and testing my project http://stackoverflow.com/questions/1879034/what-is-the-zen-of-c/1879053#1879053 Comment by Dror Helper on What is The Zen of C++ Dror Helper 2009-12-10T10:01:12Z 2009-12-10T10:01:12Z Oh - I get it, I wrote const_cast instead of static_cast. Sorry my bad ... http://stackoverflow.com/questions/1879034/what-is-the-zen-of-c/1879053#1879053 Comment by Dror Helper on What is The Zen of C++ Dror Helper 2009-12-10T09:16:13Z 2009-12-10T09:16:13Z Fine - the masses has spoken - I'll remove the const_cast bit http://stackoverflow.com/questions/1879034/what-is-the-zen-of-c/1879053#1879053 Comment by Dror Helper on What is The Zen of C++ Dror Helper 2009-12-10T08:31:18Z 2009-12-10T08:31:18Z Ok - I understand that the const_cast bullet is a bit problematic but it does have the advantage of causing compilation errors while dynamic cast throws exception at runtime http://stackoverflow.com/questions/1879034/what-is-the-zen-of-c/1879053#1879053 Comment by Dror Helper on What is The Zen of C++ Dror Helper 2009-12-10T06:38:50Z 2009-12-10T06:38:50Z Most of what I wrote above is not always correct - these are simple pointers http://stackoverflow.com/questions/1865726/is-there-a-better-way-to-block-a-c-timer-when-interacting-with-the-user/1865817#1865817 Comment by Dror Helper on Is there a better way to block a C# timer when interacting with the user? Dror Helper 2009-12-08T10:30:34Z 2009-12-08T10:30:34Z #jk - just fixed it, thanks http://stackoverflow.com/questions/1865241/c-how-to-tdd-a-file-downloader/1865271#1865271 Comment by Dror Helper on C#: How to TDD a file downloader Dror Helper 2009-12-08T08:08:22Z 2009-12-08T08:08:22Z Yes - that's one way to test around that problem, you can also check the end result - that a file was actually saved. http://stackoverflow.com/questions/1854632/save-a-listview-into-settings-settings/1854686#1854686 Comment by Dror Helper on Save a ListView into Settings.settings? Dror Helper 2009-12-06T09:11:39Z 2009-12-06T09:11:39Z No - you can save the xml to a string instead - see above http://stackoverflow.com/questions/1854632/save-a-listview-into-settings-settings/1854686#1854686 Comment by Dror Helper on Save a ListView into Settings.settings? Dror Helper 2009-12-06T08:24:22Z 2009-12-06T08:24:22Z <a href="http://www.dotnetjohn.com/articles.aspx?articleid=173" rel="nofollow">dotnetjohn.com/articles.aspx?articleid=173/&hellip;</a> http://stackoverflow.com/questions/515199/what-free-web-development-ides-do-people-use/515450#515450 Comment by Dror Helper on What (free) web development IDEs do people use? Dror Helper 2009-12-06T06:09:34Z 2009-12-06T06:09:34Z #Norsredna - Unfortunately SharpDevelop does not have (at the moment) JavaScript support - hopefully they'll add some in future versions http://stackoverflow.com/questions/1820630/how-to-get-parameter-value-from-stacktrace Comment by Dror Helper on How to get parameter value from StackTrace Dror Helper 2009-11-30T16:32:25Z 2009-11-30T16:32:25Z I could be asking for the impossible - It seems that it's not possible to get the called method's values from the stacktrace. http://stackoverflow.com/questions/1818654/array-of-function-pointers-in-c/1818692#1818692 Comment by Dror Helper on Array of function pointers in C# Dror Helper 2009-11-30T09:43:31Z 2009-11-30T09:43:31Z How this answers the question above? http://stackoverflow.com/questions/1818654/array-of-function-pointers-in-c/1818685#1818685 Comment by Dror Helper on Array of function pointers in C# Dror Helper 2009-11-30T09:33:09Z 2009-11-30T09:33:09Z True - but we can write code using reflection that would not be dependent on the method name. It depends on what you're trying to accomplish here. http://stackoverflow.com/questions/1818654/array-of-function-pointers-in-c/1818682#1818682 Comment by Dror Helper on Array of function pointers in C# Dror Helper 2009-11-30T09:16:31Z 2009-11-30T09:16:31Z You do not need to cast the delegate before invoking it - just use DynamicInvoke http://stackoverflow.com/questions/1815094/why-are-there-no-content-management-systems-written-in-c/1815100#1815100 Comment by Dror Helper on Why are there no Content Management Systems written in C++? Dror Helper 2009-11-29T11:01:48Z 2009-11-29T11:01:48Z I use C++ I think it's a great language with many merits but there are better tools for the job or writing a CMS