User Hershi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T14:23:05Z http://stackoverflow.com/feeds/user/1596 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/36831/how-do-you-parse-an-ip-address-string-in-c 1 How do you parse an IP address string in C#? Hershi 2008-08-31T12:35:30Z 2009-11-25T06:08:00Z <p>I'm writing C# code that uses the windows IP Helper API. One of the functions I'm trying to call is "GetBestInterface" that takes a 'uint' representation of an IP. What I need is to parse a textual representation of the IP to create the 'uint' representation.</p> <p>I've found some examples via Google, like <a href="http://www.justin-cook.com/wp/2006/11/28/convert-an-ip-address-to-ip-number-with-php-asp-c-and-vbnet/" rel="nofollow">this one or <a href="http://www.codeguru.com/csharp/.net/net_general/internet/article.php/c10651" rel="nofollow">this one</a>, but I'm pretty sure there should be a standard way to achieve this with .NET. Only problem is, I can't find this standard way. IPAddress.Parse seems to be in the right direction, but it doesn't supply any way of getting a 'uint' representation...</p> <p>There is also a way of doing this using IP Helper, using the ParseNetworkString</a>, but again, I'd rather use .NET - I believe the less I rely on pInvoke the better.</p> <p>So, anyone knows of a standard way to do this in .NET?</p> http://stackoverflow.com/questions/416468/weird-behaviour-when-mixing-loading-of-assemblies-using-assembly-loadfrom-and-ass 2 Weird behaviour when mixing loading of assemblies using Assembly.LoadFrom and Assembly.Load Hershi 2009-01-06T13:17:28Z 2009-11-09T03:48:23Z <p>Weird behavior when mixing loading of assemblies using Assembly.LoadFrom and Assembly.Load</p> <p>I have encountered a weird behavior when loading assemblies with Assembly.LoadFrom and later on with Assembly.Load.<br /> I am loading an assembly using Assembly.LoadFrom, where the assembly is located in a folder which is not the execution folder. </p> <p>Later on in my test code when I try to load once again this assembly with Assembly.Load, the load fails with a System.IO.FileNotFoundException (“Could not load file or assembly…”) despite the fact that the assembly is already loaded. The load fails both with the strong name and the non-strong name (the original reason for loading once again this assembly is a usage of a BinaryFormatter).</p> <p>However, in case the assembly is located in the execution folder the later load succeeds in both cases, with the strong name and the non-strong name. In this case you can see that two identical assemblies are loaded from two different locations.</p> <p>A simple code sample that recreates this problem –</p> <p>Assembly assembly1 = Assembly.LoadFrom(@"C:\a.dll");</p> <p>// Loading with a strong-name fails Assembly assembly2 = Assembly.Load(@"a, Version=1.0.0.0, Culture=neutral, PublicKeyToken=14986c3f172d1c2c");</p> <p>// Also loading with a non-strong fails Assembly assembly3 = Assembly.Load(@"a");</p> <ol> <li>Any explanation why the CLR ignores the already loaded assembly?</li> <li>Any idea how can I alleviate this problem?</li> </ol> <p>Thanks.</p> http://stackoverflow.com/questions/811354/what-is-the-difference-between-a-property-and-an-instance-variable/811380#811380 12 Answer by Hershi for What is the difference between a property and an instance variable? Hershi 2009-05-01T13:38:31Z 2009-05-01T16:54:51Z <p>Iain, this is basically a terminology question and is, despite the "language-agnostic" tag associated with this question, very language/environment related.</p> <p>For design discussions sake, property and instance variable can be used interchangeably, since the idea is that a property is a data item describing an object.</p> <p>When talking about a specific language these two can be different. For example, in C# a property is actually a function that returns an object, while an instance variable is a non-static member variable of a class.</p> http://stackoverflow.com/questions/13578/determining-how-long-the-user-is-logged-on-to-windows 4 Determining how long the user is logged on to Windows Hershi 2008-08-17T10:22:25Z 2009-02-12T21:25:49Z <p>Hi all, The need arose, in our product, to determine how long the current user has been logged on to Windows (specifically, Vista). It seems there is no straight forward API function for this and I couldn't find anything relevant with WMI (although I'm no expert with WMI, so I might have missed something).</p> <p>Any ideas?</p> http://stackoverflow.com/questions/416468/weird-behaviour-when-mixing-loading-of-assemblies-using-assembly-loadfrom-and-ass/416656#416656 4 Answer by Hershi for Weird behaviour when mixing loading of assemblies using Assembly.LoadFrom and Assembly.Load Hershi 2009-01-06T14:06:09Z 2009-01-08T14:33:12Z <p>@Kent Boogart: That appears to be the correct explanation. For a full explanation, Suzanne Cook has this blog post which elaborates a little more than the original one you posted: <a href="http://blogs.msdn.com/suzcook/archive/2003/05/29/57143.aspx" rel="nofollow">http://blogs.msdn.com/suzcook/archive/2003/05/29/57143.aspx</a> </p> <p>Following is code leveraging AppDomain.AssemblyResolve -</p> <pre><code> // register to listen to all assembly resolving attempts: AppDomain currentDomain = AppDomain.CurrentDomain; currentDomain.AssemblyResolve += new ResolveEventHandler(MyResolveEventHandler); // Check whether the desired assembly is already loaded private static Assembly MyResolveEventHandler(object sender, ResolveEventArgs args) { Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies(); foreach (Assembly assembly in assemblies) { AssemblyName assemblyName = assembly.GetName(); string desiredAssmebly = args.Name; if (assemblyName.FullName == desiredAssmebly) { return assembly; } } // Failed to find the desired assembly return null; } </code></pre> http://stackoverflow.com/questions/417187/net-which-exception-to-throw-when-a-required-configuration-setting-is-missing/417237#417237 0 Answer by Hershi for .NET: Which Exception to Throw When a Required Configuration Setting is Missing? Hershi 2009-01-06T16:36:06Z 2009-01-06T16:36:06Z <p>My general rule would be:</p> <ol> <li><p>If the case of the missing configuration is not very common and I believe I would never want to handle this case differently than other exceptions, I just use the basic "Exception" class with an appropriate message:</p> <p>throw new Exception("my message here")</p></li> <li><p>If I do want, or think there's a high probability I would want to handle this case in a different manner than most other exceptions, I would roll my own type as people have already suggested here.</p></li> </ol> http://stackoverflow.com/questions/255951/re-implementing-an-interface-that-another-interface-already-inherits/255958#255958 7 Answer by Hershi for Re-implementing an interface that another interface already inherits Hershi 2008-11-01T18:57:45Z 2008-11-01T18:57:45Z <p>I believe this is just a matter of style. It is specifically important when looking at framework/library classes - in your example, for instance, it highlights the idea that this class can be treated as either an ICollection or an IList, without the developer having to know that IList is actually an ICollection.</p> <p>It has no functional ramifications. Specifically, this code would compile whether or not class 'C' implements 'A' explicitly:</p> <pre><code>namespace DotNetInterfaceTest { class Program { static void Main(string[] args) { A c = new C(); } } interface A { void foo(); } interface B : A { void bar(); } class C : B { public void bar() {} public void foo() {} } } </code></pre> http://stackoverflow.com/questions/195460/unit-testing-a-module-that-checks-internet-connectivity 2 Unit testing a module that checks internet connectivity Hershi 2008-10-12T12:54:35Z 2008-10-12T13:42:24Z <p>I have a C# module responsible for acquiring the list of network adapters that are "connected to the internet" on a windows Vista machine. The module uses the "<a href="http://msdn.microsoft.com/en-us/library/aa370803(VS.85).aspx" rel="nofollow">Network List Manager API</a>" (or NLM API) to iterate over all network connections and returns all those for which the IsConnectedToInternet value is true.</p> <p>I received some suggestions for the implementation of this module in this <a href="http://stackoverflow.com/questions/38864/how-do-you-find-out-which-nic-is-connected-to-the-internet">SO question</a></p> <p>To test this module I've decided to write a helper that returns the list of internet connected interfaces based on another logic, so it would be a sort of a "reality check" for the original module's logic. Note that for the test helper I am willing to use detection methods that might be considered bad practice for production code (e.g. relying on some internet resource like "Google" to be available - in case it shuts down, blocked by our internal firewall etc. it's relatively easy to fix the test as opposed to a deployed product base).</p> <p>The alternative detection method I chose was to try to connect to "www.google.com:80" with a TcpClient. My problem: When I have more than one connected adapter (e.g. both wireless and LAN) the detection method fails for one of them with the error "A connect request was made on an already-connected socket".</p> <p>My question is three fold:</p> <ol> <li><p>How would you go about testing such a module in general? Do you support the idea of doing the same thing in a different way and comparing the results or is it an overkill and I should rely on the system's API? My main problem here, is that it's very hard to pre-configure the system so that I'll know what the expected results are in advance.</p></li> <li><p>What alternative logic would you suggest? One thing that was suggested in the aforementioned question was looking at the routing table - what about considering each adapter that has a routing entry with a destination of 0.0.0.0 as "connected to the internet"? Other suggestions?</p></li> <li><p>Do you understand why I get the "already-connected" error with the current test logic?</p></li> </ol> http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/132059#132059 0 Answer by Hershi for What is the one programming skill you have always wanted to master but haven't had time? Hershi 2008-09-25T08:06:15Z 2008-09-25T08:06:15Z <p>Software reverse engineering, which means (for me):</p> <ol> <li>Better understanding of assembly</li> <li>Using IDA</li> <li>Enhanced debugging skills</li> </ol> <p>This is very useful even when you don't really need to reverse engineer anything in your work, because it hones your debugging skills and furthers your understanding of program behavior, debugging, compilation, etc. to a very high level.</p> <p>Plus, it's a fun challenge</p> http://stackoverflow.com/questions/60478/self-testing-systems/60752#60752 3 Answer by Hershi for Self Testing Systems. Hershi 2008-09-13T18:21:40Z 2008-09-21T10:56:32Z <p>I believe this idea to be an interesting theoretical debate, but not very practical for the following reasons:</p> <ol> <li>To make sure the new version of the code works well, you need to have superb automatic tests, which is a goal that is very hard to achieve and one that many companies fail to develop. You can only go on with implementing the system after such automatic tests are in place.</li> <li>The whole point of this system is performance tuning, that is - a specific version of the code is replaced by a version that supersedes it in performance. For most applications today, performance is of minor importance. Meaning, the overall performance of most applications is adequate - just think about it, you probably rarely find yourself complaining that "this application is excruciatingly slow", instead you usually find yourself complaining on the lack of specific feature, stability issues, UI issues etc. Even when you do complain about slowness, it's usually an overall slowness of your system and not just a specific applications (there are exceptions, of course).</li> <li>For applications or modules where performance is a big issue, the way to improve them is usually to identify the bottlenecks, write a new version and test is independently of the system first, using some kind of benchmarking. Benchmarking the new version of the entire application might also be necessary of course, but in general I think this process would only take place a very small number of times (following the 20%-80% rule). Doing this process "manually" in these cases is probably easier and more cost-effective than the described system.</li> <li>What happens when you add features, fix non-performance related bugs etc.? You don't get any benefit from the system.</li> <li>Running the two versions in conjunction to compare their performance has far more problems than you might think - not only you might have race conditions, but if the input is not an appropriate benchmark, you might get the wrong result (e.g. if you get loads of small data packets and that is in 90% of the time the input is large data packets). Furthermore, it might just be impossible (for example, if the actual code changes the data, you can't run them in conjunction).</li> </ol> <p>The only "environment" where this sounds useful and actually "a must" is a "genetic" system that generates new versions of the code by itself, but that's a whole different story and not really widely applicable...</p> http://stackoverflow.com/questions/38864/how-do-you-find-out-which-nic-is-connected-to-the-internet 1 How do you find out which NIC is connected to the internet? Hershi 2008-09-02T05:16:23Z 2008-09-17T12:36:27Z <p>Consider the following setup: A windows PC with a LAN interface and a WiFi interface (the standard for any new laptop). Each of the interfaces might be connected or disconnected from a network. I need a way to determine which one of the adapters is the one connected to the internet - specifically, in case they are both connected to different networks, one with connection to the internet and one without.</p> <p>My current solution involves using IPHelper's "GetBestInterface" function and supplying it with the IP address "0.0.0.0".</p> <p>Do you have any other solutions you might suggest to this problem?</p> <p>Following some of the answers, let me elaborate:</p> <ul> <li>I need this because I have a product that has to choose which adapter to bind to. I have no way of controlling the setup of the network or the host where the product will run and so I need a solution that is as robust as possible, with as few assumptions as possible.</li> <li>I need to do this in code, since this is part of a product.</li> </ul> <p>@Chris Upchurch: This makes me dependent on google.com being up (usually not a problem) and on any personal firewall that might be installed to allow pinging.</p> <p>@Till: Like Steve Moon said, relying on the adapter's address is kind of risky because you make a lot of assumptions on the internal network setup.</p> <p>@Steve Moon: Looking at the routing table sounds like a good idea, but instead of applying the routing logic myself, I am trying to use "GetBestInterface" as described above. I believe what it should do is exactly what you outlined in your answer, but I am not really sure. The reason I'm reluctant to implement my own "routing logic" is that there's a better chance that I'll get it wrong than if I use a library/API written and tested by more "hard-core" network people.</p> http://stackoverflow.com/questions/58278/design-by-coding-its-wrong-but-easier-to-visualize/58652#58652 4 Answer by Hershi for Design by coding, its wrong but easier to visualize Hershi 2008-09-12T10:45:48Z 2008-09-12T11:51:54Z <p>I agree with most of what people said here, but I think a more elaborate description is needed:</p> <p>@public static: Your statement is spot on regarding the problems of designing up-ahead... Even if you're one of those amazingly smart people - the creme de la creme of geniuses - you can't design a whole system up front. You might think you can, but you're fooling yourself. The source of this problem is that, like they say, "God is in the details". The idea of nailing an appropriate design up front is pure hubris. But... That doesn't mean we shouldn't put anytime into designing up-front.</p> <p>Lets see what's our purpose in "designing" a system is anyway:</p> <p>First of all, we need a framework to think in. Have you ever tried to start a new project? The hardest part is writing the first line. Why? Because you have a writer's block - you have no idea where you're getting at. For example, lets say you want to write a computer game, lets call it "NotSoFarShout", which will be the next super-cool first-person-shooter that will conquer the world and make you rich for all eternity. Let's design by coding...</p> <p>We'll start with our program's "main" function:</p> <pre><code>void main(){ // Um, what the h*** should I put in "main"?! } </code></pre> <p>So maybe designing by coding wasn't the right decision. Let's try a different way:</p> <p>We are planning to write a first-person-shooter. What is a first person shooter anyway? OK, roughly speaking, it's a 3-D world where there's a player character, NPCs (Non-player-characters, like bad people, good people, monsters, gerbils etc), objects (trees, buildings, cars). The world is viewed from the player character's point of view. The player character can obtain all sorts of objects like weapons, ammo, health-packs etc. There are a gazillion other things that describe a first person shooter, but lets move on for a moment.</p> <p>I know a first person shooter takes a long time to develop - definitely more than a week or two. How would I even begin? I start little, and incrementally write and design the system. So I choose a small, attainable, short-term goal that I can grasp conceptually and actually think on how I will implement - for example, I'll start with the visualization of a 3-D world. I know there are a few good 3-D engines out there, I'll do a little research, pick one, and make it show my world, which is currently made out of a single sphere floating in a void. This is something that shouldn't take more than a week or two.</p> <p>OK, done. Didn't take me two weeks - it took me three instead, but now I have something to build on. Next thing I might decide I want to build a single scene - static for now, nothing moves, no AI, no special meaning objects, people etc. Now comes the design part... As I start to think about depicting a scene, different aspects of the 3-D world would come into my mind:</p> <ul> <li>My scene depicts two people standing in the desert, one of them is completely sun-burnt, the other is wearing a suit and a hat and holding a gun in his hand.</li> <li>Question 1: How do I describe the content of the scene? The 3-D engine needs a specific representation in order to render the scene. Is it intuitive and easy to work with? If I want to change the scene and move the gun to the other hand of the character, how hard is it? What if I want to move it to the other character? What if I want to add a third person - how hard is it? What if I want to add 100 people in random locations in the scene, each of them randomly possessing a gun and/or a hat?</li> <li>Question 2: What if I want the skin color of the character to change over time? For example, one of the characters is sun-burnt. If the other one stays in this desert scene long enough, I want her to gradually get sun-burnt as well?</li> <li>Question 3: The sun is shining in the scene, but I want that to change over time - let's say each minute is real time is equivalent to 1 hour in the game, so I want the sun to move over the sky and for the scene to gradually turn into night, with or without a moon. Maybe I want the moon to go through its phases as days and nights go by. How would I represent that?</li> </ul> <p>The idea of this lengthy example is to outline these issues with design:</p> <ol> <li><p>There are multiple levels of design. At the beginning of writing a product/subsystem/very-large-module you can usually only perform very High-level design. That is, you can define basic large entities like in our example: 3-D engine, storage, Networking, etc. This is important so you can choose where you want to start, where you think the biggest risks will be and suchlike. Note that later on in the process, that initial high level design will not only be broken into smaller, finer details, but most chances are you'll find it has flaws and it will change to accommodate the needs of the product. </p></li> <li><p>Once you've chosen a manageable piece you want to work on, you might have to create a detailed design of that piece. This is where designing by coding usually comes into play. You know you want to render a 3-D world, but you have no idea of what it takes. So you write a prototype to render a single 3-D scene. Then you create a single static scene. Then you look at what you have and think - "OK, what next? What do I need to make this useful for a FPS game? I'll need to render a lot of different scenes. OK, it took a lot of "describe" the current scene in code, how could I make it easier to make variations on the current scene? To create a whole new scene? How would I store scene descriptions? Graphic files? Sound files?...". This is the manifestation of what someone here said before (quoting the XP way of programming) - you write <strong>what you have to</strong> instead of writing a generic and complex framework up front, but once you have to write the same code again with some variation (rendering a second scene, making variations on the current scene etc.), that's when you generalize and enhance the framework. </p></li> <li><p>Don't be afraid to write throw-away prototypes that will highlight the different aspects you need to consider in your design. That way you have a concrete implementation on which to base your thinking.</p></li> <li><p>Again, quoting some one here - don't freeze your design! It's just plain stupid - if you realize you made a mistake in your design, refactor to change it. Just make sure not to make the mistake of throwing away everything and starting from scratch. Making incremental changes through refactoring usually works much better.</p></li> </ol> <p>Last but most important - I'm not presenting anything special or revolutionary here - all these ideas have been outlined by other people in the industry, much smarter and more experienced than me. I recommend you read a little about "Extreme programming", Scrum and other agile methodologies, as well as general books on the subject like "The pragmatic programmer", "Code Complete", "Refactoring", the "Gang Of Four" book (a.k.a. "Design Patterns: Elements of Reusable Object-Oriented Software")...</p> <p>Hope all this text was helpful :)</p> http://stackoverflow.com/questions/56642/loader-lock-error/56653#56653 4 Answer by Hershi for Loader lock error Hershi 2008-09-11T14:18:36Z 2008-09-11T14:18:36Z <p>The general idea of loader lock: The system runs the code in DllMain inside a lock (as in - synchronization lock). Therefore, running non-trivial code inside DllMain is "asking for a deadlock", as described <a href="http://blogs.msdn.com/oldnewthing/archive/2004/01/28/63880.aspx" rel="nofollow">here</a>.</p> <p>The question is, why are you trying to run code inside DllMain? Is it crucial that this code run inside the context of DllMain or can you spawn a new thread and run the code in it, and not wait for the code to finish execution inside DllMain?</p> <p>I believe that the problem with manged code specifically, is that running managed code might involves loading the CLR and suchlike and there's no knowing what could happen there that would result in a deadlock... I would not heed the advice of "disable this warning" if I were you because most chances are you'll find your applications hangs unexpectedly under some scenarios.</p> http://stackoverflow.com/questions/47612/how-to-do-c-style-destructors-in-c/47665#47665 4 Answer by Hershi for How to do C++ style destructors in C#? Hershi 2008-09-06T17:03:13Z 2008-09-06T17:10:56Z <p>Where I work we use the following guidelines:</p> <ul> <li>Each IDisposable class <strong>must</strong> have a finalizer</li> <li>Whenever using an IDisposable object, it must be used inside a "using" block. The only exception is if the object is a member of another class, in which case the containing class must be IDisposable and must call the member's 'Dispose' method in its own implementation of 'Dispose'. This means 'Dispose' should never be called by the developer except for inside another 'Dispose' method, eliminating the bug described in the question.</li> <li>The code in each Finalizer must begin with a warning/error log notifying us that the finalizer has been called. This way you have an extremely good chance of spotting such bugs as described above before releasing the code, plus it might be a hint for bugs occuring in your system.</li> </ul> <p>To make our lives easier, we also have a SafeDispose method in our infrastructure, which calls the the Dispose method of its argument within a try-catch block (with error logging), just in case (although Dispose methods are not supposed to throw exceptions).</p> <p>See also: <a href="http://blogs.msdn.com/clyon/archive/2004/09/23/233464.aspx" rel="nofollow">Chris Lyon</a>'s suggestions regarding IDisposable</p> <p>Edit: @<a href="#47617" rel="nofollow">Quarrelsome</a>: One thing you ought to do is call GC.SuppressFinalize inside 'Dispose', so that if the object was disposed, it wouldn't be "re-disposed".</p> <p>It is also usually advisable to hold a flag indicating whether the object has already been disposed or not. The follwoing pattern is usually pretty good:</p> <pre><code>class MyDisposable: IDisposable { public void Dispose() { lock(this) { if (disposed) { return; } disposed = true; } GC.SuppressFinalize(this); // Do actual disposing here ... } private bool disposed = false; } </code></pre> <p>Of course, locking is not always necessary, but if you're not sure if your class would be used in a multi-threaded environment or not, it is advisable to keep it.</p> http://stackoverflow.com/questions/38864/how-do-you-find-out-which-nic-is-connected-to-the-internet/45932#45932 1 Answer by Hershi for How do you find out which NIC is connected to the internet? Hershi 2008-09-05T14:34:22Z 2008-09-05T14:34:22Z <p>Apparently, in Vista there are new interfaces that enable querying for internet connectivity and more. Take a look at the <a href="http://msdn.microsoft.com/en-us/library/aa370799(VS.85).aspx" rel="nofollow">NLM Interfaces</a> and specifically at <a href="http://msdn.microsoft.com/en-us/library/aa370751(VS.85).aspx" rel="nofollow">INetworkConnection</a> - you can specifically query if the network connection has internet connectivity using the GetConnectivity method.</p> <p>See also: <a href="http://msdn.microsoft.com/en-us/library/ms697388.aspx" rel="nofollow">Network Awareness on Windows Vista</a> Unfortunately, this is only available on Vista, so for XP I'd have to keep my original heuristic.</p> http://stackoverflow.com/questions/39914/how-do-i-set-windows-to-perform-auto-login/39930#39930 0 Answer by Hershi for How do I set windows to perform auto login? Hershi 2008-09-02T16:19:12Z 2008-09-03T05:56:18Z <p>@Thomas Owens: Actually, it's more of a "sharing common knowledge" issue, intended to make SO as the place to search for things you don't know, as well as "things you know but always forget and find yourself searching google for 15 minutes to find it again".</p> <p>I believe this is relevant for developers because it is often used in testing environments or might even be relevant for some products (e.g. if auto-logon affects my product then I would like to be able to detect it). Furthermore, I believe being familiar with as many features of the systems you work on as you can is a good thing.</p> http://stackoverflow.com/questions/39914/how-do-i-set-windows-to-perform-auto-login 0 How do I set windows to perform auto login? Hershi 2008-09-02T16:15:10Z 2008-09-03T05:56:18Z <p>Windows has a feature that allows an administrator to perform auto-logon whenever it is started. How can this feature be activated?</p> http://stackoverflow.com/questions/39914/how-do-i-set-windows-to-perform-auto-login/41224#41224 2 Answer by Hershi for How do I set windows to perform auto login? Hershi 2008-09-03T05:52:56Z 2008-09-03T05:52:56Z <p>Based on the advice, moved the answer to the answers section:</p> <p>There are tools out there that give you a GUI for setting this easily, but you can also do it relatively easily by editing the registry.</p> <p>Under the following registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon</p> <p>Add the following values:</p> <ul> <li>DefaultDomainName String &lt; domain-name ></li> <li>DefaultUserName String &lt; username ></li> <li>DefaultPassword String &lt; password ></li> <li>AutoAdminLogon String 1</li> </ul> <p>Important: Using auto-logon is insecure and should, in general, never be used for standard computer configurations. The problem is not only that your computer is accessible to anyone with physical access to it, but also that the password is saved in plain-text in a well known location in your registry. This is usually used for test environments or for special setups. This is even more important to notice if you intend to perform auto-logon as an administrator.</p> http://stackoverflow.com/questions/38784/visual-studio-equivalent-to-delphi-bookmarks/38855#38855 1 Answer by Hershi for Visual Studio equivalent to Delphi bookmarks Hershi 2008-09-02T05:07:17Z 2008-09-02T05:07:17Z <p>I find this one also very useful: Ctrl K + Ctrk L - Clear alll bookmarks</p> http://stackoverflow.com/questions/2658/version-control-getting-started/36095#36095 0 Answer by Hershi for Version Control. Getting started... Hershi 2008-08-30T16:30:14Z 2008-08-30T16:30:14Z <p>One major tip to ease the setup of an SVN server right now is to use a Virtual Appliance. That is, a virtual machine that has subversion pre-installed and (mostly) pre-configured on it - pretty much a plug &amp; play thing. You can try <a href="http://www.vmware.com/appliances/directory/519" rel="nofollow">here</a>, <a href="http://www.ytechie.com/svn-vm" rel="nofollow">here</a> and <a href="http://www.garghouti.co.uk/vmTrac/" rel="nofollow">here</a>, or just try searching Google on "subversion virtual appliance".</p> http://stackoverflow.com/questions/35973/add-preddefined-data-for-typedef-enums-in-c/36075#36075 2 Answer by Hershi for add preddefined data for typedef enums in c Hershi 2008-08-30T16:12:23Z 2008-08-30T16:12:23Z <p>@dmckee: I think the suggested solution is good, but for simple data (e.g. if only the name is needed) it could be augmented with auto-generated code. While there are lots of ways to auto-generate code, for something as simple as this I believe you could write a simple XSLT that takes in an XML representation of the enum and outputs the code file.</p> <p>The XML would be of the form:</p> <pre><code>&lt;EnumsDefinition&gt; &lt;Enum name="DogType"&gt; &lt;Value name="Vizsla" value="0" /&gt; &lt;Value name="Terrier" value="3" /&gt; &lt;Value name="YellowLab" value="10" /&gt; &lt;/Enum&gt; &lt;/EnumsDefinition&gt; </code></pre> <p>and the resulting code would be something similar to what dmckee suggested in his solution.</p> <p>For information of how to write such an XSLT try <a href="http://www.w3schools.com/xsl/" rel="nofollow">here</a> or just search it up in google and find a tutorial that fits. Writing XSLT is not much fun IMO, but it's not that bad either, at least for relatively simple tasks such as these.</p> http://stackoverflow.com/questions/35874/how-do-you-enforce-or-maintain-the-quality-of-the-bug-reports-in-your-bug-tracker/35886#35886 2 Answer by Hershi for How do you enforce or maintain the quality of the bug reports in your bug tracker? Hershi 2008-08-30T11:11:38Z 2008-08-30T11:11:38Z <p>I agree with Jon Limjap - your QA personnel must be competent enough to post appropriate bug reports, given the right basic training and guidelines. Nevertheless, there are ways to enforce and encourage better bug reporting:</p> <ul> <li>Most bug tracking software have a way of marking some fields of the bug report as mandatory, so that the reporter has to actually choose the appropriate value in order to successfully create the bug</li> <li>There is usually a possibility to include a basic template for the bug report, something in the lines of</li> </ul> <blockquote> <p>Scenario:</p> <p>Expected Results:</p> <p>Actual Results:</p> <p>Remarks:</p> </blockquote> <ul> <li>You can (and should) provide a bug-reporting tool that will be run on the problematic machine, gather the relevant information and pack it into an archive file (and maybe place it on the desktop). You then instruct your staff to run it whenever they encounter a bug they wish to report and attach the archive to the bug. This tool should be easy to use (just running an executable) so that they would attach the diagnostics information to any bug without having to think if it is relevant or not. This tool is usually also very useful with customers.</li> <li>Last but not least - "education, education, education". People learn the best from experience - just make sure that whenever someone opens a bug without the proper information included, the person handling the bug would go and talk to the one who opened the bug, and explain what is missing and why it is important.</li> </ul> <p>These are practices we have been using quite successfully in my current workplace and I believe them to be quite universal to fit to most working environments.</p> http://stackoverflow.com/questions/34506/simulating-a-virtual-static-member-of-a-class-in-c/34591#34591 1 Answer by Hershi for Simulating a virtual static member of a class in c++? Hershi 2008-08-29T16:14:57Z 2008-08-30T09:07:29Z <p>It seems like the answer is in the question - the method you suggested seems to be the right direction to go, except that if you have a big number of those shared members you might want to gather them into a struct or class and past that as the argument to the constructor of the base class.</p> <p>If you insist on having the "shared" members implemented as static members of the derived class, you might be able to auto-generate the code of the derived classes. XSLT is a great tool for auto-generating simple classes.</p> <p>In general, the example doesn't show a need for "virtual static" members, because for purposes like these you don't actually need inheritance - instead you should use the base class and have it accept the appropriate values in the constructor - maybe creating a single instance of the arguments for each "sub-type" and passing a pointer to it to avoid duplication of the shared data. Another similar approach is to use templates and pass as the template argument a class that provides all the relevant values (this is commonly referred to as the "Policy" pattern).</p> <p>To conclude - for the purpose of the original example, there is no need for such "virtual static" members. If you still think they are needed for the code you are writing, please try to elaborate and add more context.</p> <p>Example of what I described above:</p> <pre><code>class BaseClass { public: BaseClass(const Descriptor&amp; desc) : _desc(desc) {} string GetName() const { return _desc.name; } int GetId() const { return _desc.Id; } X GetX() connst { return _desc.X; } virtual void UseClass() = 0; private: const Descriptor _desc; }; class DerivedClass : public BaseClass { public: DerivedClass() : BaseClass(Descriptor("abc", 1,...)) {} virtual void UseClass() { /* do something */ } }; class DerDerClass : public BaseClass { public: DerivedClass() : BaseClass("Wowzer", 843,...) {} virtual void UseClass() { /* do something */ } }; </code></pre> <p>I'd like to elaborate on this solution, and maybe give a solution to the de-initialization problem:</p> <p>With a small change, you can implement the design described above without necessarily create a new instance of the "descriptor" for each instance of a derived class.</p> <p>You can create a singleton object, DescriptorMap, that will hold the single instance of each descriptor, and use it when constructing the derived objects like so:</p> <pre><code>enum InstanceType { Yellow, Big, BananaHammoc } class DescriptorsMap{ public: static Descriptor* GetDescriptor(InstanceType type) { if ( _instance.Get() == null) { _instance.reset(new DescriptorsMap()); } return _instance.Get()-&gt; _descriptors[type]; } private: DescriptorsMap() { descriptors[Yellow] = new Descriptor("Yellow", 42, ...); descriptors[Big] = new Descriptor("InJapan", 17, ...) ... } ~DescriptorsMap() { /*Delete all the descriptors from the map*/ } static autoptr&lt;DescriptorsMap&gt; _instance; map&lt;InstanceType, Descriptor*&gt; _descriptors; } </code></pre> <p>Now we can do this:</p> <pre><code>class DerivedClass : public BaseClass { public: DerivedClass() : BaseClass(DescriptorsMap.GetDescriptor(InstanceType.BananaHammoc)) {} virtual void UseClass() { /* do something */ } }; class DerDerClass : public BaseClass { public: DerivedClass() : BaseClass(DescriptorsMap.GetDescriptor(InstanceType.Yellow)) {} virtual void UseClass() { /* do something */ } }; </code></pre> <p>At the end of execution, when the C runtime performs uninitializations, it also calls the destructor of static objects, including our autoptr, which in deletes our instance of the DescriptorsMap.</p> <p>So now we have a single instance of each descriptor that is also being deleted at the end of execution.</p> <p>Note that if the only purpose of the derived class is to supply the relevant "descriptor" data (i.e. as opposed to implementing virtual functions) then you should make do with making the base class non-abstract, and just creating an instance with the appropriate descriptor each time.</p> http://stackoverflow.com/questions/32598/any-disadvantages-in-accessing-subversion-repositories-through-file-for-a-solo/32801#32801 2 Answer by Hershi for Any disadvantages in accessing Subversion repositories through file:// for a solo developer? Hershi 2008-08-28T16:55:28Z 2008-08-28T16:55:28Z <p>I believe as long as the use of the relevant SVN tools is enabled, you should have no problem - like others said, you can always set up a server later on.</p> <p>My tip then, is to make sure you can use <a href="http://tortoisesvn.net/downloads" rel="nofollow">ToroiseSVN</a> and the Collabnet subversion client.</p> <p>One major tip to ease the setup of an SVN server right now, if you choose to, is to use a Virtual Appliance. That is, a virtual machine that has subversion pre-installed and (mostly) pre-configured on it - pretty much a plug &amp; play thing. You can try <a href="http://www.vmware.com/appliances/directory/519" rel="nofollow">here</a>, <a href="http://www.ytechie.com/svn-vm" rel="nofollow">here</a> and <a href="http://www.garghouti.co.uk/vmTrac/" rel="nofollow">here</a>, or just try searching Google on "subversion virtual appliance".</p> http://stackoverflow.com/questions/22444/my-regex-is-matching-too-much-how-do-i-make-it-stop/22461#22461 0 Answer by Hershi for My regex is matching too much. How do I make it stop? Hershi 2008-08-22T14:17:21Z 2008-08-22T14:22:55Z <p>I would also recommend you experiment with regular expressions using "Expresso" - it's a utility a great (and free) utility for regex editing and testing.</p> <p>One of its upsides is that its UI exposes a lot of regex functionality that people unexprienced with regex might not be familiar with, in a way that it would be easy for them to learn these new concepts.</p> <p>For example, when building your regex using the UI, and choosing "*", you have the ability to check the checkbox "As few as possible" and see the resulting regex, as well as test its behavior, even if you were unfamiliar with non-greedy expressions before.</p> <p>Available for download at their site: <a href="http://www.ultrapico.com/Expresso.htm" rel="nofollow">http://www.ultrapico.com/Expresso.htm</a></p> <p>Express download: <a href="http://www.ultrapico.com/ExpressoDownload.htm" rel="nofollow">http://www.ultrapico.com/ExpressoDownload.htm</a></p> http://stackoverflow.com/questions/15805/why-are-my-auto-run-applications-acting-weird-on-vista 4 Why are my auto-run applications acting weird on Vista? Hershi 2008-08-19T06:36:13Z 2008-08-20T15:06:49Z <p>The product we are working on allows the user to easily set it up to run automatically whenever the computer is started. This is helpful because the product is part of the basic work environment of most of our users. This feature was implemented not so long ago and for a while all was well, but when we started testing this feature on Vista the product started behaving really weird on startup. Specifically, our product makes use of another product (lets call it X) that it launches whenever it needs its services. The actual problem is that whenever X is launched immediately after log-on, it crashes or reports critical errors related to disk access (this happens even when X is launched directly - not through our product).</p> <p>This happens whenever we run our product by registering it in the "Run" key in the registry or place a shortcut to it in the "Startup" folder inside the "Start Menu", even when we put a delay of ~20 seconds before actually starting to run. When we changed the delay to 70 seconds, all is well.</p> <p>We tried to reproduce the problem by launching our product manually immediately after logon (by double-clicking on a shortcut placed on the desktop) but to no avail.</p> <p>Now how is it possible that applications that run normally a minute after logon report such hard errors when starting immediately after logon?</p> http://stackoverflow.com/questions/15805/why-are-my-auto-run-applications-acting-weird-on-vista/15945#15945 0 Answer by Hershi for Why are my auto-run applications acting weird on Vista? Hershi 2008-08-19T10:10:26Z 2008-08-19T10:10:26Z <p>In answer to Orion Edwards' question: Well, actually we didn't get <strong>Access Denied</strong> errors - when I mentioned disk access errors, it manifested in errors in process X due to the extremely slow I/O (probably timeouts, race conditions, etc. - not really sure exactly what since it's a 3rd party product).</p> <p>To be more specific: The product I nicknamed "X" in the original question was "Virtual PC" - when a Virtual Machine is automatically started upon login the slow I/O usually results in disk errors inside the virtual machine - meaning that we got the "BSOD" during the OS startrup within the VM, or alternatively errors like the following one appeared in the internal VM's "Event Log":</p> <p><code>An error was detected on device \Device\Harddisk0\D during a paging operation.</code></p> http://stackoverflow.com/questions/15805/why-are-my-auto-run-applications-acting-weird-on-vista/15808#15808 6 Answer by Hershi for Why are my auto-run applications acting weird on Vista? Hershi 2008-08-19T06:43:55Z 2008-08-19T06:43:55Z <p>This is the effect of a new feature in Vista called "Boxing": Windows has several mechanisms that allow the user/admin to set up applications to automatically run when windows starts. This feature is mostly used for one of these purposes: 1. Programs that are part of the basic work environment of the user, such that the first action the user would usually take when starting the computer is to start them. 2. All sorts of background "agents" - skype, messenger, winamp etc.</p> <p>When too many (or too heavy) programs are registered to run on startup the end result is that the user can't actually do anything for the first few seconds/minutes after login, which can be really annoying. In comes Vista's "Boxing" feature:</p> <p>Briefly, Vista forces all programs invoked through the Run key to operate at low priority for the first 60 seconds after login. This affects both <strong>I/O priority (which is set to Very Low) and CPU priority</strong>. Very Low priority I/O requests do not pass through the file cache, but go directly to disk. Thus, they are much slower than regular I/O. The length of the boxing period is set by the registry value: "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\DelayedApps\Delay_Sec". </p> <p>For a more detailed explanation see <a href="http://blogs.technet.com/askperf/archive/2008/03/28/startup-programs-on-windows-vista-inside-the-box.aspx" rel="nofollow">here</a> and <a href="http://myitforum.com/cs2/blogs/scassells/archive/2008/02/05/boxing-and-the-case-of-the-slow-or-hanging-logon-script-in-vista.aspx" rel="nofollow">here</a></p> http://stackoverflow.com/questions/129508/when-did-you-know-it-was-time-to-leave-your-job/129530#129530 Comment by Hershi on When did you know it was time to leave your job? Hershi 2008-09-25T11:33:18Z 2008-09-25T11:33:18Z I tend to disagree - I think there are always &quot;temptations&quot; in the market and constantly reconsidering your situation and asking yourself - am I still having fun here? What makes the difference is the answer to that question. http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121388#121388 Comment by Hershi on What is the one programming skill you have always wanted to master but haven't had time? Hershi 2008-09-25T08:02:34Z 2008-09-25T08:02:34Z Actually, having someone &quot;knowing next to nothing about multithreading&quot; write multi-threaded code sounds scary to me. It so easy to introduce subtle bugs and races even when you know what you're doing... 1. You should take the time to learn it 2. Write extensive unit tests!!!