User Foredecker - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T12:06:58Zhttp://stackoverflow.com/feeds/user/18256http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1878389/festvox-voices-where-can-i-find-them/1878407#18784070Answer by Foredecker for Festvox Voices. Where can I find them.Foredecker2009-12-10T03:07:46Z2009-12-10T03:07:46Z<p>Bing is your friend : <a href="http://festvox.org/" rel="nofollow">http://festvox.org/</a> </p>
http://stackoverflow.com/questions/1875552/loadlibrary-static-globals-and-threads/1878401#18784010Answer by Foredecker for LoadLibrary Static/Globals and ThreadsForedecker2009-12-10T03:05:56Z2009-12-10T03:05:56Z<p>DLL's are not initialized like EXE's since they are shared by multiple processes. What you need is effectively a singleton object that is a one time factory for your other objects. </p>
<p>Note, I'm assuming here by "ClassA" and "ClassB" you mean instances of those classes...</p>
<p>For example you could have a someting like </p>
<pre><code>ClassA& GetTheClassAInstance();
ClassB& GetTheClassBInstsance();
</code></pre>
<p>The first time these are called, these functions would ensure that your global instances of ClassA and ClassB were properly constructed. </p>
http://stackoverflow.com/questions/312003/what-is-the-most-ridiculous-pessimization-youve-seen/312064#312064123Answer by Foredecker for What is the most ridiculous pessimization you've seen?Foredecker2008-11-23T03:04:04Z2009-11-17T10:48:35Z<p>I think the phrase "premature optimization is the root of all evil" is way, way over used. For many projects, it has become an excuse not to take performance into account until late in a project. </p>
<p>This phrase is often a crutch for people to avoid work. I see this phrase used when people should really say "Gee, we really didn't think of that up front and don't have time to deal with it now". </p>
<p>I've seen many more "ridiculous" examples of dumb performance problems than examples of problems introduced due to "pessimization"</p>
<ul>
<li>Reading the same registry key thousands (or 10's of thousands) of times during program launch.</li>
<li>Loading the same DLL hundreds or thousands of times</li>
<li>Wasting mega bytes of memory by keeping full paths to files needlessly</li>
<li>Not organizing data structures so they take up way more memory than they need</li>
<li>Sizing all strings that store file names or paths to MAX_PATH</li>
<li>Gratuitous polling for thing that have events, callbacks or other notification mechanisms</li>
</ul>
<p>What I think is a better statement is this: "optimization without measuring and understanding isn't optimization at all - its just random change". </p>
<p>Good Performance work is time consuming - often more so that the development of the feature or component itself. </p>
http://stackoverflow.com/questions/1671711/is-there-a-general-purpose-object-pool-for-net/1671760#16717603Answer by Foredecker for Is there a general-purpose object pool for .NET?Foredecker2009-11-04T05:03:13Z2009-11-04T05:03:13Z<p>No Cheeso, there is no general object pool like this. But it is a good idea. I think this would be pretty simple to develop. The key thing is making it work well in a threaded environment. </p>
<p>I think this is an interesting design problem. For example, if this needs to to scale on sever class hardware -and- you will give objects to indivudual threads often then you might do this:</p>
<ol>
<li>Keep a single central pool of objects.</li>
<li>Keep a per-thread pool (a cache) that is populated when its called for the first time for a thread, and when it becomes empty.</li>
</ol>
<p>This way, you avoid per-thread contention for most requests.</p>
<p>Different operational conditions would lead you to a different design. For example, if object allocations are rare or the number of threads is low, then it might be simpler just to have a lock around a collection. This won't scale well, but in this case, it would need to.</p>
<p>If you design the class or interface correctly, then you could change the implementation over time to handle more complex scenarios.</p>
http://stackoverflow.com/questions/1671718/using-handled-exceptions-as-an-intended-trigger/1671732#16717320Answer by Foredecker for Using handled exceptions as an intended trigger?Foredecker2009-11-04T04:57:07Z2009-11-04T04:57:07Z<p>Yes, this is bad practice. Exceptions should be used for things that are exceptional - e.g. conditions that are true errors that should not occur in the normal course of operation. </p>
<p>One important reason is that exceptions are expensive in terms of CPU time. </p>
<p>It will be much more efficent, and likely much easier to debug and verify if you use a flag or other signal to terminate your loop.</p>
http://stackoverflow.com/questions/1570071/clock-speed-formula/1573256#15732561Answer by Foredecker for Clock Speed FormulaForedecker2009-10-15T15:49:18Z2009-10-15T15:49:18Z<p>Note that sleeping is not at all a good proxy for running code on a less capable CPU. There are many things that affect computational performance other than clock rate. In many cases, clock rate is a second or third (or 10'th) order determinate of computational performance.</p>
<p>Also note that QueryPerformanceCounter() while high resolution is expensive on most systems (3000 to 5000 CPU clocks in many cases). The reason is that it requires a system call and several reads from the HPET in the system's south bridge. (note, this varies by system).</p>
<p>Could you help us better understand what you are trying to do?</p>
<p>As I mentioned in my comment on James Black's answer: do not poll a timer call (like QPC or the direct X stufF). Your thread will simply consume massive amounts of CPU cycles and not let ANY thread at a lower priority run, and will eat up most of the time at its priority. Note that the NT Scheduler does adjust thread priorities. This is called 'boosting'. If your thread is boosted and hits one of your polling loops, then it will almost assuredly cause perf problems. This is very bad behavior from a system perspective. Avoid it if at all possible. </p>
<p>Said another way: Windows is a mult-tasking OS and users run lots of things. Be aware that your app is running in a larger context and its behavior can have system wide implications.</p>
http://stackoverflow.com/questions/1501669/notify-changes-on-an-xml-file/1501695#15016951Answer by Foredecker for Notify changes on an XML fileForedecker2009-10-01T03:02:09Z2009-10-01T03:02:09Z<p>Note - this approach will be really, really expensive in terms of disk I/O, memory usage and CPU time. Why are you using XML is that the native format of the data you are editing? You may want to look at a more compact format - one that will use less memory, generate fewer I/Os and use less CPU. </p>
<p>Also note that you writer may need to flush the file for the watcher to notice any changes. This is expensive as well - especially if you re doing it on every key stroke. </p>
<p>Be sure to use the correct file open attributes (sharing, reading and writing). </p>
<p>You may want to consider using shared memory to communicate between your processes. This will be less expensive. You can avoid large ammounts of disk I/O by only writing changes to disk when the use asks to commit them, or there is a hint to do so. I suggest avoiding doing this on every key stroke.</p>
<p>Remember, your app needs to be a good system citizen and consume a reasonable amount of system resources. This is especially true running on netbooks and other 'low spec' systems.</p>
http://stackoverflow.com/questions/1490384/there-is-in-windows-file-systems-a-pre-computed-hash-for-each-file/1490453#14904533Answer by Foredecker for There is in Windows file systems a pre computed hash for each file?Foredecker2009-09-29T03:36:50Z2009-09-29T03:36:50Z<p>Windows does not store a hash for each file. As Jader Dias suggests, there are checksums for EXE's and DLL's but these are not the droids you are looking for.</p>
<p>Note that even if you had such a hash, it still does not guarantee uniqueness. If you found two files with the same hash (and size) you would still have to then compare contents to determine if the files were truly the same. </p>
<p>JPEG files may have some checksums or hashes, but you probably cannot count on them either.</p>
http://stackoverflow.com/questions/1355658/how-can-i-get-the-software-information-form-the-windows-registry/1355668#13556681Answer by Foredecker for How can I get the software information form the windows registry ?Foredecker2009-08-31T03:25:14Z2009-08-31T03:25:14Z<p>Much of the registry is undocumented and there is a lot of information not stored there. I suspect that most of the information you need (if not all of it) can be obtained using documented APIs and other methods. Take a look at the WMI and setup APIs.</p>
http://stackoverflow.com/questions/1274938/learning-embedded-systems-from-the-ground-up/1275000#12750004Answer by Foredecker for Learning embedded systems from the ground upForedecker2009-08-13T22:33:36Z2009-08-14T04:01:38Z<p>hi Erik,</p>
<p>This is a huge topic :) There are many places you can start. Its even tougher when you consider that the definition for an embedded system is very, very fuzzy. "back in the day", an embedded system was one where the software (or most of it) was burned into ROM. In the early 90's I worked on a point of sale system and controller for gas stations. It was a 'big' 16bit 186 system. It was 'big' in the sense that it had way more than 64k of code spaced - we did that by paging physical ROMs in and out of the address space dynamically.</p>
<p>Today, many things are considered embedded systems, but many are 'softer' in that the software is more conventionally like a PC as is the hardware. For example kiosks and point of sale systems these days are almost always just PCs that present one application (or a controlled UI) to the user.</p>
<p>In my mind, there are two things that define a classica embedded system: </p>
<ol>
<li>where you (the system designer or owner) has access to and can change, the source code to everything in the system. </li>
<li>Where resources such as CPU, memory, I/O, and power are constrained in a significant way.</li>
</ol>
<p>All the best embedded developers I know got their start wrting all the software for an embedded system from scratch - this means all the code, from the code at the hardware rest vector, to the application code. In many cases this meant building a small, but effective kernel. </p>
<p>A good place to start would be this.</p>
<ol>
<li>Decide on something cool or interesting to do.</li>
<li>Find some inexpensive hardware that can perform the task. There are TONs of do it yourself bare bones hardware systems out there. </li>
<li>Pick one that has decent development tools that let you work in C or C++. I suggest avoiding things that are programmed in basic or other higher level languages. </li>
<li>Write all the software for your idea from scratch. Its groovy to use the C/C++ libraries.</li>
</ol>
<p>This will teach you quite a bit about embedded systems work.</p>
<p>Note, this is not the only or best way to proceed - others will have different suggestions. But, I promise this will teach you quite a bit about embedded systems work.</p>
<h1>Added Info</h1>
<p>Ok! That's very helpful info. Many embedded systems do not true real time operating systems. Heck, many use a simple main dispatch loop and they work jsut fine. </p>
<p>For your puposes, I would suggesting experimenting with </p>
<ol>
<li><a href="http://en.wikipedia.org/wiki/RTLinux" rel="nofollow">RTLinux</a> - you can do this on a normal PC with very good success.</li>
<li><a href="http://www.microsoft.com/windowsembedded/en-us/downloads/default.mspx" rel="nofollow">WindowsCE</a> - is also easy to experiment with using the trial version and the tools are very good (as are the linux tools, but hey, I do work for MSFT)</li>
<li><a href="http://prex.sourceforge.net/" rel="nofollow">PREX</a> looks cool, but I have no experience with it.</li>
</ol>
<p>One other
1. <a href="http://www.ebsnetinc.com/index.php" rel="nofollow">EBSNet</a> is not free, but it is very good. I used to work with these guys years ago.</p>
<p>Books
1. <a href="http://rads.stackoverflow.com/amzn/click/0136375391" rel="nofollow">XINU Operating System Design: The XINU Approach</a> Is an oldie but a goody. Also see the <a href="http://rads.stackoverflow.com/amzn/click/013637414X" rel="nofollow">networking book</a>.
2. My favorite thing in this class is <a href="http://rads.stackoverflow.com/amzn/click/0879305436" rel="nofollow">MicroC/OS-II</a> The book and the code are great. </p>
<p>MicroC/OS-II works great on PC hardware and will give you all the nitty-gritty access you desire. </p>
http://stackoverflow.com/questions/260885/storing-large-numbers-of-varying-size-objects-on-disk1Storing large numbers of varying size objects on diskForedecker2008-11-04T04:30:30Z2009-08-11T13:28:20Z
<p>I need to develop a system for storing large numbers (10's to 100's of thousands) of objects. Each object is email-like - there is a main text body, and several ancillary text fields of limited size. A body will be from a few bytes, to several KB in size. </p>
<p>Each item will have a single unique ID (probably a GUID) that identifies it. </p>
<p>The store will only be written to when an object is added to it. It will be read often. Deletions will be rare. The data is almost all human readable text so it will be readily compressible.</p>
<p>A system that lets me issue the I/Os and mange the memory and caching would be ideal. </p>
<p>I'm going to keep the indexes in memory, using it to map indexes to the single (and primary) key for the objects. Once I have the key, then I'll load it from disk, or the cache.</p>
<p>The data management system needs to be part of my application - I do not want to depend on OS services. Or separately installed packages. Native (C++) would be best, but a manged (C#) thing would be ok. </p>
<p>I believe that a database is an obvious choice, but this needs to be super-fast for look up and loading into memory of an object. I am not experienced with data base tech and I'm concerned that general relational systems will not handle all this variable sized data efficiently. </p>
<p>(Note, this has nothing to do with my job - its a personal project.)</p>
<p>In your experience, what are the viable alternatives to a traditional relational DB? Or would a DB work well for this? </p>
http://stackoverflow.com/questions/1183151/when-querying-with-linq-to-xml-is-it-better-more-efficient-to-leave-element-valu/1183162#11831621Answer by Foredecker for When querying with LINQ-to-XML, is it better/more efficient to leave element values as strings or convert them to the correct type?Foredecker2009-07-25T21:52:01Z2009-07-26T15:31:50Z<p>Its difficult to assess the performance issues here without measuring. But I think you have two scenarios.</p>
<ol>
<li>If you need to use most (or all) of the values in an expression sooner or later, then it is probably best to pay the CPU costs of converting to native types up front - discarding the XML string data early.</li>
<li>If you are only going to touch (evaluate or use) a few of the values, then it will most likely be cheaper in terms of CPU time to convert string data to native types lazily - at the time of (or close to it temporally) consumption.</li>
</ol>
<p>Now, this is just the CPU time considerations. I suggest that it is likely that the data itself will take up considerably less memory once converted to native value types. This lets you discard the string (XML) data early. </p>
<p>In short, it is rare for questions like this to have black or white answers: it will depend on your scenario, the complexity of the data, how much data there is, and when it will be used (touched or evaluated). </p>
<h3>Update</h3>
<p>In Dan's comment to my original answer, he ask for a general rule of thumb in cases where there is not time, or reason to do detailed measurements. </p>
<p>My suggestion is to prefer conversion to native types at XML parsing time, not keep the string data around and parse lazily. Here is my reasoning</p>
<ol>
<li>The code will already be burning some CPU, I/O, and memory resources at parasing time. </li>
<li>The code is like to be simpler doing the conversions at load time (rather than at another time) as this can all be coded in a simple procedural way.</li>
<li>This is likely to be more memory efficient as well.</li>
<li>When the data needs to be used, it is already in a native format - this will be much better performing than dealing with string data at consumption time: comparisons and computation with native types will usually be much more efficient than dealing with data in string format. This is likely to keep the consuming code simpler as well.</li>
</ol>
<p>Again, I'm suggesting this as a rule of thumb :) There will be scenarios where another approach is more optimal from a performance standpoint, or will make the code 'better' in some way (more cohesive, modular, easier to maintain, etc).</p>
<p>This is one of those cases where you will most likely need to measure the results to be sure you are doing the right thing.</p>
http://stackoverflow.com/questions/1183166/should-i-continue-learning-c-with-windows-forms-or-wpf-applications/1183201#11832011Answer by Foredecker for Should I continue learning C# with Windows Forms or WPF Applications?Foredecker2009-07-25T22:11:37Z2009-07-25T22:11:37Z<p>I recommend WPF - it is now very mature and well supported. Of course, winforms is still supproted and some new development is being done for it. However, WPF is significantly more sophisticated and powerful. Almost as importantly, the tool support for it is MUCH better than for WPF. </p>
<p>Here are some links for you.</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/aa480221.aspx" rel="nofollow">A Guided Tour of Windows Presentation Foundation</a></li>
<li><a href="http://windowsclient.net/" rel="nofollow">Windows Client .NET</a></li>
<li><a href="http://mdavey.wordpress.com/2007/09/05/wpf-vs-windows-forms/" rel="nofollow">WPF vs Windows Forms</a></li>
</ul>
http://stackoverflow.com/questions/1181185/how-to-convert-xml-file-to-a-database/1181193#11811931Answer by Foredecker for How to convert XML file to a Database?Foredecker2009-07-25T04:23:14Z2009-07-25T04:23:14Z<p>C# handles XML natively very well. Unless there is a large amount of XML, simply use <a href="http://msdn.microsoft.com/en-us/library/bb387098.aspx" rel="nofollow">LINQ to XML</a>. </p>
<p>If you have large amounts of XML, then handling it in streaming mode is proably less work than putting it in a DB</p>
http://stackoverflow.com/questions/1179301/is-sleep-a-good-idea-for-the-main-loop-of-a-job-scheduling-app/1179409#11794092Answer by Foredecker for Is sleep() a good idea for the main loop of a job-scheduling appForedecker2009-07-24T18:38:57Z2009-07-24T18:38:57Z<p>Using sleep is likely OK for quick and dirty things. But for things that need a bit more robustness or reliability I suggest that sleep is evil :) The problem with sleeping is that the thread is (I'm assuming Windows here...) is truly asleep - the scheduler will not run the thread until some time after sleep interval has passed.</p>
<p>During this time, the thread will not wake up for anything. This means it cannot be canceled, or wake up to process some kind of event. Of course, the process can be killed, but that doesn't give the sleeping thread an opportunity to wake up and clean anything up. </p>
<p>I'm not familiar with Ruby, but I assume it has some kind of facility for waiting on multiple things. If you can, I suggest that instead of using sleep, you waint on two things\</p>
<ol>
<li>A timer that wakes the thread periodically to do its work.</li>
<li>An event that is set when he process needs to cancel or quite (trapping control-C for example). </li>
</ol>
<p>It would be even better if there is some kind of event that can be used to signal the need to do work. This would avoid polling on a timer. This generally leads to lower resource utilization and a more responsive system.</p>
http://stackoverflow.com/questions/1175511/in-c-which-is-faster-if-with-returns-or-else-if-with-returns/1175524#11755240Answer by Foredecker for In C, which is faster: if with returns, or else if with returns?Foredecker2009-07-24T02:43:00Z2009-07-24T02:43:00Z<p>This should perform the same in the optimized builds. If not, then something else is likely preventing the compiler from doing the "right thing".</p>
<p>Robbotic is incorrect. In both instances, if the first clause is true, then the subsiquent statements will not be executed (evaluated).</p>
<p>Note, be sure to measure - you may be optimizing the wrong thing.</p>
http://stackoverflow.com/questions/1079864/evaluate-software-minimum-requirements/1079924#10799242Answer by Foredecker for Evaluate software minimum requirementsForedecker2009-07-03T15:50:08Z2009-07-03T22:07:11Z<p>A profiler will not help you here. Neither will estimating the size of data structures. </p>
<p>A profiler can certainly tell you where your code is spending the most CPU time, but it will not tell you if you are missing performance targets - e.g. if your users will be happy, or unhappy with the performance of your application on any given system.</p>
<p>Simply computing the size of data structures, and how many may be allocated at any one time will not at all give you an accurate picture of memory usage over time. The reason is that memory usage is determined by many other factors including how much I/O your application does, what OS services your application uses, and most importantly the temporal nature of how your application uses memory. </p>
<p>The most effective way to understand minimum requirements is to </p>
<ul>
<li>Make sure you have an effective way of measuring performance using <strong>metrics that are important to your user</strong>. the best metric is response time. Depending on your app, a rate such as throughput or operations per second may be applicable. Your measurements could be empirical (e.g. just try it) but that is least effective. This is best done with some kind of instrumentation. On windows, the choice is [ETW][1]. Other operating systems have other suitable mechanisms.</li>
<li>Have some kind of automated method of exercising your application. This will let you make repeated and reliable measurements. </li>
<li>Measure your application using various memory sizes and see where performance begins to suffer. This may also expose performance bugs that prevent your application from performing well. If you have access to platforms of various performance levels, use those as well. You didn't indicate what your app does, but testing on a netbook with 1GB of memory is great for many (not all) client applications.</li>
</ul>
<p>You can do the same with the CPU and other components such as disk, networking or the GPU. </p>
<p>Also note that there is no simple answer here - doing an effective job at setting minimum requirements is real work. This is especially true if your application is participatory sensitive to one platform aspect or another. </p>
<p>There are other factors as well - for example, your app may run fine in one configuration until the user opens another application that may be memory hungry or a CPU pig. Users rarely only have one application open. </p>
<p>This means that in addition to specifying minimum requirements you must do an effective job in setting user expectations - that is explaining when your application will perform well, and when it won't, and what the factors are that impact performance. </p>
<p>[1]: <a href="http://msdn.microsoft.com/en-us/library/ms751538.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms751538.aspx</a><strong>strong text</strong></p>
http://stackoverflow.com/questions/1077666/searching-a-collection-of-excel-sheets-w-c/1077689#10776891Answer by Foredecker for Searching a collection of excel sheets w/C#Foredecker2009-07-03T03:54:21Z2009-07-03T03:54:21Z<p>This is an easy one :) use the <a href="http://msdn.microsoft.com/en-us/library/bb215242.aspx" rel="nofollow">sheets</a> collection in the <a href="http://msdn.microsoft.com/en-us/library/bb245607.aspx" rel="nofollow">workbook</a> object.</p>
http://stackoverflow.com/questions/1065792/producing-more-complex-excel-worksheets-using-c/1065817#10658172Answer by Foredecker for Producing more complex excel worksheets using c#Foredecker2009-06-30T20:18:34Z2009-07-01T04:11:52Z<p>Visual Studio Tools for Office (VSTO) is your friend :) I use this all the time to build complex worksheets. This is way, way better than importing from CSV or using some kind of wacky DB connectivity. </p>
<p>Here are some links</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/d2tx7z6d.aspx" rel="nofollow">MSDN</a></li>
<li><a href="http://blogs.msdn.com/vsto/rss.xml" rel="nofollow">Blog</a></li>
<li><a href="http://en.wikipedia.org/wiki/VSTO" rel="nofollow">Wikipedia</a></li>
</ul>
<p>This is very easy to do, though there are a few oddities. I find it very effective to use the Excell MACRO recorder to record actions, then look at the source and re-impliment in C#. The object model is exactly the same between VB and C#.</p>
<p>VSTO is part of Visual Studio 2008. I looked on the product page, but I cannot determine if it comes with <a href="http://www.microsoft.com/express/vcsharp/" rel="nofollow">VS2008 C# Express Edition</a>. The easiest thin to do is just download it and see :)</p>
http://stackoverflow.com/questions/1053593/what-is-the-easiest-way-for-two-separate-c-net-apps-to-talk-to-each-other-on-th/1053609#10536096Answer by Foredecker for What is the easiest way for two separate C# .Net apps to talk to each other on the same computer.Foredecker2009-06-27T20:56:32Z2009-06-27T20:56:32Z<p>There are several mechanisms for this - probably the easiest to use is named pipes. I have not used it, but I understand the Windows Communication Foundation (WCF) is easy to use as well. </p>
<p>There are a bunch of <a href="http://www.codeproject.com/KB/WCF/?cat=3" rel="nofollow">articles on CodePoject</a> about WCF :) </p>
<p>An advantage of using WCF is that it would let easily move your processes to different systems. (should that be practical for your scenario).</p>
http://stackoverflow.com/questions/1052491/c-runtime-objects-dll-boundaries/1053118#10531181Answer by Foredecker for C Runtime objects, dll boundariesForedecker2009-06-27T16:20:19Z2009-06-27T16:20:19Z<p>Neither existing answer is correct: Given the following on Windows: you have two DLLs, each is statically linked with two different versions of the C/C++ standard libraries.</p>
<p>In this case, you should not pass pointers to structures created by the C/C++ standard library in one DLL to the other. The reason is that these structures <strong>may</strong> be different between the two C/C++ standard library implementations. </p>
<p>The other thing you should not do is free a pointer allocated by new or malloc from one DLL that was allocated in the other. The heap manger may be differently implemented as well.</p>
<p>Note, you can use the pointers between the DLLs - they just point to memory. It is the free that is the issue.</p>
<p>Now, you may find that this works, but if it does, then you are just luck. This is likely to cause you problems in the future.</p>
<p>One potential solution to your problem is dynamically linking to the <a href="http://msdn.microsoft.com/en-us/library/abx4dbyh%28VS.80%29.aspx" rel="nofollow">CRT</a>. For example,you could dynamically link to MSVCRT.DLL. That way your DLL's will always use the same CRT. </p>
<p>Note, I suggest that it is not a best practice to pass CRT data structures between DLLs. You might want to see if you can factor things better. </p>
<p>Note, I am not a Linux/Unix expert - but you will have the same issues on those OSes as well.</p>
http://stackoverflow.com/questions/1030521/is-deriving-square-from-rectangle-a-violation-of-liskovs-substitution-principle/1030534#1030534-1Answer by Foredecker for Is deriving square from rectangle a violation of Liskov's Substitution Principle?Foredecker2009-06-23T03:44:18Z2009-06-23T03:44:18Z<p>Hi Somaraj,</p>
<p>Its pretty simple :) The more 'base' the class (the first in the derivation chain) should be the most general.</p>
<p>For example shape -> Rectangle -> Square.</p>
<p>Here a square is a special case of a rectangle (with constrained dimensions) and a Rectangle is a special case of a shape. </p>
<p>Said another way - use the "is a" test. A squire is a rectangle. But a rectange is not always a square.</p>
http://stackoverflow.com/questions/1030253/need-a-free-programmers-keylogger/1030513#10305133Answer by Foredecker for Need a free Programmer's KeyloggerForedecker2009-06-23T03:36:57Z2009-06-23T03:36:57Z<p>What you are looking for are application and test automation tools. They generally are not called key loggers. There are many of these tools available. Here are a couple:</p>
<ul>
<li><a href="http://www.autoitscript.com/autoit3/" rel="nofollow">AutoIt</a> (Free)</li>
<li><a href="http://www.ranorex.com/" rel="nofollow">Ranorex</a> (pay)</li>
<li><a href="http://msdn.microsoft.com/en-us/library/ms747327.aspx" rel="nofollow">Windows UI Automation APIs</a> (free)</li>
<li><a href="http://msdn.microsoft.com/en-us/magazine/cc337896.aspx" rel="nofollow">Web UI Automation with Windows PowerShell</a> (free)</li>
<li><a href="http://uiautomationverify.codeplex.com/" rel="nofollow">UIA Verify</a> (free)</li>
<li><a href="http://www.testingfaqs.org/t-gui.html" rel="nofollow">Big list of tools</a> (unverified)</li>
<li><a href="http://www.bing.com/search?q=software%2Btesting%2BUI%2Bautomation%2Bwindows&form=OSDSRC" rel="nofollow">Spiffy Bing Search for more stuff</a></li>
</ul>
http://stackoverflow.com/questions/1030221/how-important-is-mirroring-the-entire-user-interface-for-arabic-speakers/1030487#10304871Answer by Foredecker for How important is mirroring the _entire_ user interface for Arabic speakers?Foredecker2009-06-23T03:21:49Z2009-06-23T03:21:49Z<p>Its important. Imagine if you were using some software written by an Arabic speaker that was translated into English and some things were not correctly flipped. </p>
<p>In general, Windows (Vista and WIn7 in particular) and Office are very well translated for right to left reading languages. You can use this as an example of what to do - this is especially true for the top level UI elements</p>
<p>I would agree that purely graphical elements may not need to be flipped, but you should consider doing the right thing for anything that is generally scanned in reading order. </p>
http://stackoverflow.com/questions/1030440/effective-way-to-make-a-system-tray-application/1030470#10304702Answer by Foredecker for Effective way to make a system tray applicationForedecker2009-06-23T03:13:59Z2009-06-23T03:13:59Z<p>Be carefully with manged applications and Java here. Tray applications run all the time. So, if they are poorly written then they can use enough system resources to interfere with other things.</p>
<p>There is nothing wrong with manged code or Java in general, but it can be more difficult to keep managed or java apps frugal with memory, I/O and CPU time. </p>
<p>I'm saying this as a dev manger on the Windows perf team - we've seen lots and lots of very piggy tray applications. Yes, some are even windows or MSFT applications. </p>
<p>It may be a better approach to write a very small light weight tray app that launches a richer process when the user needs it. You can write your try app in simple C++ right on top of the low level Win32 APIs. If you don't want to use the Win32 APIs directly, you can use the <a href="http://wtl.sourceforge.net/" rel="nofollow">Windows Template Library</a>. </p>
http://stackoverflow.com/questions/1010226/windows-7-what-to-expect-from-a-developers-standpoint/1010292#10102921Answer by Foredecker for Windows 7 - What to expect from a developer's standpoint?Foredecker2009-06-18T01:06:04Z2009-06-18T01:06:04Z<p>Very east to use and seamless Virtual PC is great for debugging and testing. </p>
<p>Touch is another new capability.</p>
http://stackoverflow.com/questions/937641/determining-window-message-queue-depth/937691#9376910Answer by Foredecker for Determining Window Message Queue DepthForedecker2009-06-02T02:35:21Z2009-06-02T02:35:21Z<p>Hi Tall,</p>
<p>There isn't a good way to do this. One thing you could do is aggressively empty the message que and put them in your own queue. But, this will not solve your problem. </p>
<p>I hate telling you this, but you should really find a way to process your socket data. I think you will find some other mechanism scales better, performs better, and is easier to debug than using the windows message queue for this.</p>
<p>Foredecker</p>
http://stackoverflow.com/questions/929754/application-on-windows-startup/929810#9298102Answer by Foredecker for Application on windows startupForedecker2009-05-30T14:29:02Z2009-05-30T14:29:02Z<p>This really isn't possible to do. Windows works pretty hard to get the desktop up and explorer responsive as soon after the user logs in. This is what is most important to the user.</p>
<p>Your goals may be noble, but they are at odds with what users want. So in general, they are at odds with how Windows works (especially Win-7).</p>
<p>If you have software that needs to run early that doesn't need to interact with the user, then a service is they way to go. It is important to note that in Vista and later Windows systems, there is no way for a service to interact with the user - e.g. they cannot have their own graphical user interface. Services with UI are inherently not secure.</p>
<p>One way to partition your software is to put some things in a service, and have a think UI layer on top of it. COM and Local RPC are good choices for communication between your service and your UI layer. </p>
<p>Note that you will need to do work here to prevent your components from slowing down boot. Poorly behaving applications are one of the biggest problems in the boot path. You can study this using the <a href="http://msdn.microsoft.com/en-us/performance/default.aspx" rel="nofollow">Windows Performance Toolkit</a></p>
http://stackoverflow.com/questions/875686/advice-for-c-gui-programming/875708#8757084Answer by Foredecker for Advice for C++ GUI programming.Foredecker2009-05-17T23:09:10Z2009-05-17T23:20:24Z<p>For C++ you have two choices, Native or Managed. </p>
<p>For native development, my team (at Microsoft, in Windows) uses the <a href="http://en.wikipedia.org/wiki/Windows%5FTemplate%5FLibrary" rel="nofollow">Windows Template Library</a>. It works very well for us. </p>
<p>You should learn the basics of Win32 and how Windowing works. The canonical tome is <a href="http://rads.stackoverflow.com/amzn/click/157231995X" rel="nofollow">Programming Windows®</a></p>
<p>For Managed development you can use C++ with <a href="http://en.wikipedia.org/wiki/Windows%5FForms" rel="nofollow">Windows Forms</a>. However, windows forms has been supplanted by <a href="http://en.wikipedia.org/wiki/Windows%5FPresentation%5FFoundation" rel="nofollow">Windows Presentation Foundation (WPF)</a>.</p>
<ul>
<li><a href="http://windowsclient.net/" rel="nofollow">Here is a good site</a> that can get you up to speed.</li>
<li><a href="http://msdn.microsoft.com/en-us/library/aa733747%28VS.60%29.aspx" rel="nofollow">This tutorial is useful</a></li>
<li>You can use V<a href="http://www.microsoft.com/Express/vc/" rel="nofollow">isual C++ 2008 Express Edition</a> for your tools (they are free).</li>
</ul>
http://stackoverflow.com/questions/870578/importance-of-code-formatting-specificly-spacing/870629#8706290Answer by Foredecker for Importance of Code Formatting Specificly SpacingForedecker2009-05-15T20:05:51Z2009-05-15T20:05:51Z<p>I prefer your spacing, though I would do it a bit differently. I believe your most important question is how to convince someone your approach is best: Code formatting can be very subjective. Some people object because it takes too much time to get right. Others object because the team doesn't have any coding standards. Some object because the feel it is crammed down their necks.</p>
<p>The best method is to work with your team to build consensus that your particular approach is the best practice. This is true if you are the lead, or if you are a individual contributor.</p>
<p>Once a team consensus is generally accepted (it may not be universal), then I find that code reviews are the best place to ensure that team practices are followed. I suggest that you will find peer pressure is the most effective way to encourage other people to follow an accepted best practice. The corralling is often true; it is hard for one person to drive this kind of thing on team without consensus.</p>
<p>Here are some of my related StackOverflow answers</p>
<ul>
<li><a href="http://stackoverflow.com/questions/393001/do-any-other-developers-get-yelled-at-for-making-every-thing-public-closed">Do any other developers get yelled at for making every thing public?</a></li>
<li><a href="http://stackoverflow.com/questions/311454/how-would-you-format-indent-this-piece-of-code">How would you format/indent this piece of code?</a></li>
<li><a href="http://stackoverflow.com/questions/310813/how-do-you-perform-code-reviews/310849#310849">How do you perform code reviews?</a></li>
</ul>
http://stackoverflow.com/questions/1570071/clock-speed-formula/1573256#1573256Comment by Foredecker on Clock Speed FormulaForedecker2009-10-16T01:52:17Z2009-10-16T01:52:17ZOf course, there may be times when only one thing that looks like an application is running. But it will be rare that an app is the only thing running on a system that is important to the user. Most importantly, an app has no idea what is running - it is not practical to write an app to poll sometimes and not others.... how would it know when not to poll? If it is at all possible to code something to avoid polling, that's the best way to do it.http://stackoverflow.com/questions/1570071/clock-speed-formula/1570103#1570103Comment by Foredecker on Clock Speed FormulaForedecker2009-10-15T15:45:03Z2009-10-15T15:45:03ZThis isn't correct. The minimul sleep time can be 1ms (or even less). It depends on how fast the timer tick interrupt is running. This can vary at run time. See docs for timeBeginPeriod(). Also note that sleeping() is very VERY different from polling and looping. Sleep blocks and your thread will not use CPU cycles while asleep. Polling is a HUGE consumer of CPU cycles. Polling is is a classic performance design and implementation problem in many applications - avoid this if at all possible.http://stackoverflow.com/questions/1490384/there-is-in-windows-file-systems-a-pre-computed-hash-for-each-file/1490396#1490396Comment by Foredecker on There is in Windows file systems a pre computed hash for each file?Foredecker2009-09-29T03:32:32Z2009-09-29T03:32:32ZAndrew is correct.http://stackoverflow.com/questions/1303265/algorithm-for-determining-minimum-bounding-rectangle-for-collection-of-lat-lon-co/1303291#1303291Comment by Foredecker on Algorithm for determining minimum bounding rectangle for collection of lat/lon coordinatesForedecker2009-08-20T00:18:00Z2009-08-20T00:18:00ZRegular C++ has libraries as well. Also, how is coding this statically a good idea?http://stackoverflow.com/questions/1183166/should-i-continue-learning-c-with-windows-forms-or-wpf-applications/1183182#1183182Comment by Foredecker on Should I continue learning C# with Windows Forms or WPF Applications?Foredecker2009-07-25T22:05:50Z2009-07-25T22:05:50ZI don't agree- WPF and Winforms are very, very different. Developing for WPF is very different form developing for Winfroms.http://stackoverflow.com/questions/1180984/programmatically-compute-the-start-time-of-a-process-on-windows/1181078#1181078Comment by Foredecker on Programmatically compute the start time of a process on WindowsForedecker2009-07-25T04:32:07Z2009-07-25T04:32:07ZThis is the right answer.http://stackoverflow.com/questions/1180993/check-whos-blocking-you-with-twitter-apiComment by Foredecker on Check who's blocking you with twitter APIForedecker2009-07-25T04:28:35Z2009-07-25T04:28:35ZThink about it. If there was a way to do this, then you could get around their blocking - it would defeat the purpose of blocking. If someone is blocking you, then they don't want to hear from you.http://stackoverflow.com/questions/1080478/changes-required-to-meet-windows-7-logo-requirements/1080489#1080489Comment by Foredecker on Changes Required To Meet Windows 7 Logo RequirementsForedecker2009-07-03T19:22:44Z2009-07-03T19:22:44ZThat document is pretty clear. What is in it that you don't understand?http://stackoverflow.com/questions/929754/application-on-windows-startup/929810#929810Comment by Foredecker on Application on windows startupForedecker2009-07-02T21:15:30Z2009-07-02T21:15:30ZHi Suriyan,
I'm not sure what to tell you. There aren not enough details for me to debug your problem.
Do you have a service runs that then starts your normal user mode application?http://stackoverflow.com/questions/1052491/c-runtime-objects-dll-boundaries/1053118#1053118Comment by Foredecker on C Runtime objects, dll boundariesForedecker2009-06-28T00:46:00Z2009-06-28T00:46:00ZI did suggestion a solution :) Don't link to the CRT statically. link to MSVCRT.DLL. I'd be quite surprised if all CRT libraries on Linux, Unix or the MAC were guaranteed to work flawless. I think you've been lucky there as well. http://stackoverflow.com/questions/1053593/what-is-the-easiest-way-for-two-separate-c-net-apps-to-talk-to-each-other-on-th/1053614#1053614Comment by Foredecker on What is the easiest way for two separate C# .Net apps to talk to each other on the same computer.Foredecker2009-06-27T21:00:55Z2009-06-27T21:00:55ZThis is a poor solution as it requires polling. Named pipes, WCF, local sockets all enable produces and consumer to block - only running when needed.http://stackoverflow.com/questions/1045584/whats-the-best-encoding-for-multiple-languagesComment by Foredecker on What's the best encoding for multiple languages?Foredecker2009-06-25T18:52:51Z2009-06-25T18:52:51Zyour question is very unclear. Could you clarify?http://stackoverflow.com/questions/1030440/effective-way-to-make-a-system-tray-application/1030470#1030470Comment by Foredecker on Effective way to make a system tray applicationForedecker2009-06-23T03:48:53Z2009-06-23T03:48:53ZThat's not true. Especially with memory, it is harder to be frugal with manged languages and Java than it is with Native apps. I've seen many examples of this. For example, the little clock in Coobird's example is most likely much larger than it would be if it were written in native code. This is especially true since it is always active. Note! i'm not saying that managed or java apps are the wrong choice here - only that extra care is need to keep them from using too many resources.http://stackoverflow.com/questions/1020826/how-to-run-an-application-as-administrator-in-vista-from-c-codeComment by Foredecker on How to run an application as administrator in VISTA from C++ codeForedecker2009-06-20T04:41:25Z2009-06-20T04:41:25ZCould you clarify your question? What do you mean by "from c++ code"?http://stackoverflow.com/questions/992671/how-to-write-an-unkillable-process-for-windows/992703#992703Comment by Foredecker on How to write an unkillable process for Windows?Foredecker2009-06-14T14:39:42Z2009-06-14T14:39:42ZThis won't work either - it will make it harder to kill but not unkillable . The system will terminate the threads that can be terminated. Those threads that are 'stuck' in a driver will not be killed but they cannot do any work.