User smink - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T23:38:16Z http://stackoverflow.com/feeds/user/6508 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/132359/how-can-google-be-so-fast 45 How can Google be so fast? smink 2008-09-25T09:42:55Z 2009-12-12T21:14:30Z <p>What are the technologies and programming decisions that make Google able to serve a query so fast? </p> <p>Every time I search something (one of the several times per day) it always amazes me how they serve the results in near or less than 1 second time. What sort of configuration and algorithms could they have in place that accomplishes this?</p> <p><strong>Side note:</strong> It is kind of overwhelming thinking that even if I was to put a desktop application and use it on my machine probably would not be half as fast as Google. Keep on learning I say.</p> <p><hr></p> <p>Here are some of the great answers and pointers provided:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Google%5Fplatform" rel="nofollow">Google Platform</a></li> <li><a href="http://labs.google.com/papers/mapreduce.html" rel="nofollow">Map Reduce</a></li> <li><a href="http://research.google.com/pubs/papers.html" rel="nofollow">Algorithms carefully crafted</a></li> <li>Hardware - cluster farms and massive number of cheap computers</li> <li>Caching and Load Balancing</li> <li><a href="http://research.google.com/archive/gfs-sosp2003.pdf" rel="nofollow">Google File System</a></li> </ul> http://stackoverflow.com/questions/937178/sql-server-2000-deadlock 1 SQL Server 2000 Deadlock smink 2009-06-01T22:45:47Z 2009-11-27T20:23:36Z <p>We are experiencing some very annoying deadlock situations in a production SQL Server 2000 database.</p> <p>The main setup is the following:</p> <ul> <li>SQL Server 2000 Enterprise Edition.</li> <li>Server is coded in C++ using ATL OLE Database.</li> <li>All database objects are being accessed trough stored procedures.</li> <li>All UPDATE/INSERT stored procedures wrap their internal operations in a BEGIN TRANS ... COMMIT TRANS block.</li> </ul> <p>I collected some initial traces with SQL Profiler following several articles on the Internet like <a href="http://www.simple-talk.com/sql/learn-sql-server/how-to-track-down-deadlocks-using-sql-server-2005-profiler/" rel="nofollow">this one</a> (<em>ignore it is referring to SQL Server 2005 tools, the same principles apply</em>). <strong>From the traces it appears to be a deadlock between two UPDATE queries.</strong></p> <p>We have taken some measures that may have reduced the likelihood of the problem from happening as:</p> <ul> <li><strong>SELECT WITH (NOLOCK)</strong>. We have changed all the SELECT queries in the stored procedures to use WITH (NOLOCK). We understand the implications of having dirty reads but the data being queried is not that important since we do a lot of automatic refreshes and under normal conditions the UI will have the right values.</li> <li><strong>READ UNCOMMITTED</strong>. We have changed the transaction isolation level on the server code to be READ UNCOMMITED.</li> <li><strong>Reduced transaction scope</strong>. We have reduced the time a transaction is being held in order to minimize the probabilities of a database deadlock to take place.</li> </ul> <p>We are also questioning the fact that we have a transaction inside the majority of the stored procedures (BEGIN TRANS ... COMMIT TRANS block). In this situation my guess is that the transaction isolation level is SERIALIZABLE, right? And what about if we also have a transaction isolation level specified in the source code that calls the stored procedure, which one applies?</p> <p>This is a processing intensive application and we are hitting the database a lot for reads (bigger percentage) and some writes.</p> <p><strong>If this were a SQL Server 2005 database I could go with <a href="http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/21158#21158">Geoff Dalgas answer on an deadlock issue concerning Stack Overflow</a></strong>, if that is even applicable for the issue I am running into. But upgrading to SQL Server 2005 is not, at the present time, a viable option.</p> <p>As these initial attempts failed my question is: <strong>How would you go from here?</strong> What steps would you take to reduce or even avoid the deadlock from happening, or what commands/tools should I use to better expose the problem?</p> http://stackoverflow.com/questions/199184/how-do-i-check-if-a-number-is-a-palindrome/199218#199218 21 Answer by smink for How do I check if a number is a palindrome? smink 2008-10-13T22:18:20Z 2009-11-25T20:32:20Z <p>For any given num:</p> <pre><code> n = num; rev = 0; while (num &gt; 0) { dig = num % 10; rev = rev * 10 + dig; num = num / 10; } </code></pre> <p>If n == rev then num is a palindrome:</p> <pre><code>cout &lt;&lt; "Number " &lt;&lt; (n == rev ? "IS" : "IS NOT") &lt;&lt; " a palindrome" &lt;&lt; endl; </code></pre> http://stackoverflow.com/questions/94046/how-can-i-tell-that-a-directory-is-really-a-recycle-bin -1 How can I tell that a directory is really a recycle bin? smink 2008-09-18T16:14:51Z 2009-11-05T13:36:52Z <p>I need a function that, given a path, tells me whether it is a Recycle Bin folder. I tried using functions like SHGetSpecialFolderPath with CSIDL_BITBUCKET, but that doesn't work because the Recycle Bin is a virtual folder that is the union of the Recycle Bins of all drives.</p> <p><hr /></p> <p>This question is to document a response posted in <a href="http://blogs.msdn.com/oldnewthing/archive/2008/09/18/8956382.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2008/09/18/8956382.aspx</a></p> http://stackoverflow.com/questions/179128/reading-compound-documents-in-c/179323#179323 2 Answer by smink for Reading compound documents in c# smink 2008-10-07T16:33:46Z 2009-10-28T20:50:29Z <p>Here is my shot. This is an initial translation of this <a href="http://www.codeguru.com/cpp/cpp/cpp%5Fmfc/files/article.php/c13487%5F%5F1/" rel="nofollow">article</a>.</p> <pre><code>namespace cs_console_app { using System; using System.Runtime.InteropServices; using System.Runtime.InteropServices.ComTypes; [ComImport] [Guid("0000000d-0000-0000-C000-000000000046")] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] public interface IEnumSTATSTG { // The user needs to allocate an STATSTG array whose size is celt. [PreserveSig] uint Next( uint celt, [MarshalAs(UnmanagedType.LPArray), Out] System.Runtime.InteropServices.ComTypes.STATSTG[] rgelt, out uint pceltFetched ); void Skip(uint celt); void Reset(); [return: MarshalAs(UnmanagedType.Interface)] IEnumSTATSTG Clone(); } [ComImport] [Guid("0000000b-0000-0000-C000-000000000046")] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] interface IStorage { void CreateStream( /* [string][in] */ string pwcsName, /* [in] */ uint grfMode, /* [in] */ uint reserved1, /* [in] */ uint reserved2, /* [out] */ out IStream ppstm); void OpenStream( /* [string][in] */ string pwcsName, /* [unique][in] */ IntPtr reserved1, /* [in] */ uint grfMode, /* [in] */ uint reserved2, /* [out] */ out IStream ppstm); void CreateStorage( /* [string][in] */ string pwcsName, /* [in] */ uint grfMode, /* [in] */ uint reserved1, /* [in] */ uint reserved2, /* [out] */ out IStorage ppstg); void OpenStorage( /* [string][unique][in] */ string pwcsName, /* [unique][in] */ IStorage pstgPriority, /* [in] */ uint grfMode, /* [unique][in] */ IntPtr snbExclude, /* [in] */ uint reserved, /* [out] */ out IStorage ppstg); void CopyTo( /* [in] */ uint ciidExclude, /* [size_is][unique][in] */ Guid rgiidExclude, // should this be an array? /* [unique][in] */ IntPtr snbExclude, /* [unique][in] */ IStorage pstgDest); void MoveElementTo( /* [string][in] */ string pwcsName, /* [unique][in] */ IStorage pstgDest, /* [string][in] */ string pwcsNewName, /* [in] */ uint grfFlags); void Commit( /* [in] */ uint grfCommitFlags); void Revert(); void EnumElements( /* [in] */ uint reserved1, /* [size_is][unique][in] */ IntPtr reserved2, /* [in] */ uint reserved3, /* [out] */ out IEnumSTATSTG ppenum); void DestroyElement( /* [string][in] */ string pwcsName); void RenameElement( /* [string][in] */ string pwcsOldName, /* [string][in] */ string pwcsNewName); void SetElementTimes( /* [string][unique][in] */ string pwcsName, /* [unique][in] */ System.Runtime.InteropServices.ComTypes.FILETIME pctime, /* [unique][in] */ System.Runtime.InteropServices.ComTypes.FILETIME patime, /* [unique][in] */ System.Runtime.InteropServices.ComTypes.FILETIME pmtime); void SetClass( /* [in] */ Guid clsid); void SetStateBits( /* [in] */ uint grfStateBits, /* [in] */ uint grfMask); void Stat( /* [out] */ out System.Runtime.InteropServices.ComTypes.STATSTG pstatstg, /* [in] */ uint grfStatFlag); } [Flags] public enum STGM : int { DIRECT = 0x00000000, TRANSACTED = 0x00010000, SIMPLE = 0x08000000, READ = 0x00000000, WRITE = 0x00000001, READWRITE = 0x00000002, SHARE_DENY_NONE = 0x00000040, SHARE_DENY_READ = 0x00000030, SHARE_DENY_WRITE = 0x00000020, SHARE_EXCLUSIVE = 0x00000010, PRIORITY = 0x00040000, DELETEONRELEASE = 0x04000000, NOSCRATCH = 0x00100000, CREATE = 0x00001000, CONVERT = 0x00020000, FAILIFTHERE = 0x00000000, NOSNAPSHOT = 0x00200000, DIRECT_SWMR = 0x00400000, } public enum STATFLAG : uint { STATFLAG_DEFAULT = 0, STATFLAG_NONAME = 1, STATFLAG_NOOPEN = 2 } public enum STGTY : int { STGTY_STORAGE = 1, STGTY_STREAM = 2, STGTY_LOCKBYTES = 3, STGTY_PROPERTY = 4 } class Program { [DllImport("ole32.dll")] private static extern int StgIsStorageFile( [MarshalAs(UnmanagedType.LPWStr)] string pwcsName); [DllImport("ole32.dll")] static extern int StgOpenStorage( [MarshalAs(UnmanagedType.LPWStr)] string pwcsName, IStorage pstgPriority, STGM grfMode, IntPtr snbExclude, uint reserved, out IStorage ppstgOpen); static void Main(string[] args) { string filename = @"f:\temp\treta2.msg"; if (StgIsStorageFile(filename) == 0) { IStorage storage = null; if (StgOpenStorage( filename, null, STGM.DIRECT | STGM.READ | STGM.SHARE_EXCLUSIVE, IntPtr.Zero, 0, out storage) == 0) { System.Runtime.InteropServices.ComTypes.STATSTG statstg; storage.Stat(out statstg, (uint) STATFLAG.STATFLAG_DEFAULT); IEnumSTATSTG pIEnumStatStg = null; storage.EnumElements(0, IntPtr.Zero, 0, out pIEnumStatStg); System.Runtime.InteropServices.ComTypes.STATSTG[] regelt = { statstg }; uint fetched = 0; uint res = pIEnumStatStg.Next(1, regelt, out fetched); if (res == 0) { while (res != 1) { string strNode = statstg.pwcsName; bool bNodeFound = false; Console.WriteLine(strNode); if (strNode == "__substg1.0_0E04001E" || strNode == "__substg1.0_0E1D001E" || strNode == "__substg1.0_1000001E" || strNode == "__substg1.0_1013001E") { bNodeFound = true; } if (bNodeFound) { switch (statstg.type) { case (int) STGTY.STGTY_STORAGE: { IStorage pIChildStorage; storage.OpenStorage(statstg.pwcsName, null, (uint) (STGM.READ | STGM.SHARE_EXCLUSIVE), IntPtr.Zero, 0, out pIChildStorage); } break; case (int) STGTY.STGTY_STREAM: { IStream pIStream; storage.OpenStream(statstg.pwcsName, IntPtr.Zero, (uint)(STGM.READ | STGM.SHARE_EXCLUSIVE), 0, out pIStream); byte[] data = new byte[255]; pIStream.Read(data, 255, IntPtr.Zero); } break; } } if ((res = pIEnumStatStg.Next(1, regelt, out fetched)) != 1) { statstg = regelt[0]; } } } } } Console.ReadLine(); } } } </code></pre> http://stackoverflow.com/questions/253314/exceptions-or-error-codes 12 Exceptions or error codes smink 2008-10-31T12:24:57Z 2009-10-18T06:23:48Z <p>Yesterday I was having a heated debate with a coworker on what would be the preferred error reporting method. Mainly we were discussing the usage of exceptions or error codes for reporting errors between application layers or modules.</p> <p><strong>What rules do you use to decide if you throw exceptions or return error codes for error reporting?</strong></p> http://stackoverflow.com/questions/157026/where-can-i-find-net-framework-class-diagram/157030#157030 1 Answer by smink for Where can I find .NET Framework class diagram? smink 2008-10-01T10:34:38Z 2009-10-06T21:12:16Z <p><a href="http://download.microsoft.com/download/4/a/3/4a3c7c55-84ab-4588-84a4-f96424a7d82d/NET%5F35%5FNamespaces%5FPoster%5FJAN08.pdf" rel="nofollow">http://download.microsoft.com/download/4/a/3/4a3c7c55-84ab-4588-84a4-f96424a7d82d/NET%5F35%5FNamespaces%5FPoster%5FJAN08.pdf</a></p> http://stackoverflow.com/questions/85122/sleep-less-than-one-millisecond 5 Sleep Less Than One Millisecond smink 2008-09-17T16:37:39Z 2009-09-19T16:34:33Z <p>On windows you have a problem you typically never encounter on Unix. That is how to get a thread to sleep for less than one millisecond. On Unix you typically have a number of choices (sleep, usleep and nanosleep) to fit your needs. On windows however there is only <em>Sleep</em> with millisecond granularity. You can however use the select system call to create a microsecond sleep. On Unix this is pretty straight forward:</p> <pre><code>int usleep(long usec) { struct timeval tv; tv.tv_sec = usec/1000000L; tv.tv_usec = usec%1000000L; return select(0, 0, 0, 0, &amp;tv); } </code></pre> <p><hr /></p> <p>On windows however, the use of select forces you to include the winsock library which has to be initialized like this in your application:</p> <pre><code>WORD wVersionRequested = MAKEWORD(1,0); WSADATA wsaData; WSAStartup(wVersionRequested, &amp;wsaData); </code></pre> <p>And then the select won't allow you to be called without any socket so you have to do a little more to create a microsleep method:</p> <pre><code>int usleep(long usec) { struct timeval tv; fd_set dummy; SOCKET s = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP); FD_ZERO(&amp;dummy); FD_SET(s, &amp;dummy); tv.tv_sec = usec/1000000L; tv.tv_usec = usec%1000000L; return select(0, 0, 0, &amp;dummy, &amp;tv); } </code></pre> <p>All these created usleep methods return zero when successful and non-zero for errors.</p> http://stackoverflow.com/questions/360887/using-version-control-for-home-development/360893#360893 149 Answer by smink for Using Version Control for Home Development? smink 2008-12-11T21:02:57Z 2009-09-14T08:01:14Z <p>Completely.</p> <p>Just some points from the top of my head:</p> <ul> <li><strong>Sometimes we do stupid mistakes.</strong> Having a source control safety net is a must.</li> <li><strong>Tag important milestones.</strong> Even in home development you may want to mark a set of files and revisions as being a specific software version.</li> <li><strong>You train for your professional life.</strong> Putting in your head the work methodology associated with using source control prepares you professionally.</li> <li><strong>Storage efficiency.</strong> Current source control systems store revisions as a delta difference to the previous revision. This means that it is more disk efficient as the entire file is not stored but only the differences.</li> <li><strong>You have the history for all your source tree.</strong> You can rapidly see what was changed and when was changed. Compare files from different revisions and merge easily.</li> <li><strong>You can branch to experiment.</strong> If you have some experiments in mind you can create a branch (a new independent development line) and test it. In the end, if you are satisfied with the results, merge it in the HEAD (main development line). You get all this for free without having to create a copy and receive the same benefits from using the source control even while experimenting.</li> </ul> http://stackoverflow.com/questions/1407430/problem-adding-to-exception-data-dictionary/1407447#1407447 2 Answer by smink for Problem adding to Exception.Data Dictionary smink 2009-09-10T20:09:28Z 2009-09-10T20:20:22Z <p>You are adding stuff to the dictionary using the enum value as key and querying it with a string key (not enum). Change the above query code as follows and it should work just fine.</p> <pre><code>ex.Data[Enums.ExceptionData.SomeName].ToString() </code></pre> <p><hr /></p> <p>This sample code writes <code>hello world</code> in the console. Is <code>_someText</code> in your example a null string?</p> <pre><code>namespace ConsoleApplication1 { using System; enum Values { Value1 } class Program { static void Test() { try { int a = 0; int c = 12 / a; } catch (Exception ex) { ex.Data.Add(Values.Value1, "hello world"); throw ex; } } static void Main(string[] args) { try { Test(); } catch (Exception ex) { Console.WriteLine(ex.Data[Values.Value1].ToString()); } Console.ReadLine(); } } } </code></pre> http://stackoverflow.com/questions/1395361/manipulating-largeintegers/1395398#1395398 6 Answer by smink for manipulating LARGE_INTEGERS smink 2009-09-08T18:00:16Z 2009-09-08T18:00:16Z <p>LARGE_INTEGER is a union of a 64-bit integer and a pair of 32-bit integers. If you want to perform 64-bit arithmetic on one you need to select the 64-bit int from inside the union.</p> <pre><code>LARGE_INTEGER a = { 0 }; LARGE_INTEGER b = { 0 }; __int64 c = a.QuadPart - b.QuadPart; </code></pre> http://stackoverflow.com/questions/1393800/vs-net-go-to-parent-class-shortcut/1395348#1395348 0 Answer by smink for vs.net go to parent class (shortcut) smink 2009-09-08T17:52:32Z 2009-09-08T17:52:32Z <p>Out of the box I think not. But if you have some money to spare, <strong>read well spent</strong>, install <a href="http://www.jetbrains.com/resharper/" rel="nofollow">Resharper</a>. It will have visual aids to the code editor that will allow you to perform that operation.</p> http://stackoverflow.com/questions/221207/how-do-you-collect-programming-knowledge 13 How do you collect programming knowledge smink 2008-10-21T08:54:35Z 2009-08-26T10:00:07Z <p>Everyday we are faced with programming problems ranging from easy to complex. For me it is important to record that knowledge so that I can find it in the future. The features that I consider that most important is recording ease of use (WYSIWIG would be good), good search capabilities and perhaps hierarchical organization or tags enabled.</p> <p><strong>What tools do you use to collect programming knowledge?</strong></p> <p>Try to give one solution per answer. Perhaps something like a short one liner clear description followed by a blank line and a paragraph explaining the rationale for your solution. You can include what you consider the strong and weak points of your choice.</p> http://stackoverflow.com/questions/1269131/templates-member-typedef-use-in-parameter-undeclared-identifier-in-vs-but-not-gc/1312875#1312875 0 Answer by smink for Template's member typedef use in parameter undeclared identifier in VS but not GCC smink 2009-08-21T16:08:42Z 2009-08-21T16:08:42Z <p><em>You must help the compiler a bit on this one</em>. You have to use the <code>typename</code> keyword because you have a qualified name that refers to a type and depends on a template parameter.</p> <p>Think in this terms how can you be sure that <code>unbounded_int_type::digit_type</code> is a type? It depends on which type is <code>unbounded_int_type</code>. So you remove the ambiguity by adding the <code>typename</code> keyword.</p> <pre><code>template&lt; class UInt, typename IntT, bool is_signed = std::numeric_limits&lt;IntT&gt;::is_signed &gt; struct uii_ops_impl; // .... template &lt;class T&gt; struct make_signed { typedef T type; }; template&lt;class UInt&gt; struct uii_ops_impl&lt; UInt, typename make_signed&lt;typename UInt::digit_type&gt;::type, true &gt; { typedef UInt unbounded_int_type; typedef typename make_signed&lt; typename unbounded_int_type::digit_type &gt;::type integral_type; // ... static void add(unbounded_int_type&amp; lhs, integral_type rhs); // ... }; template&lt;class UInt&gt; void uii_ops_impl&lt; UInt, typename make_signed&lt;typename UInt::digit_type&gt;::type, true &gt;::add(unbounded_int_type&amp; lhs, integral_type rhs) { // .... } </code></pre> <p>The only change is here - I added the <code>typename</code> keyword.</p> <pre> typedef typename make_signed&lt; <b>typename</b> unbounded_int_type::digit_type >::type integral_type; </pre> http://stackoverflow.com/questions/1312425/how-does-the-system-know-what-to-use-when-this-keyword-is-used/1312535#1312535 12 Answer by smink for How does the system know what to use when 'this' keyword is used? smink 2009-08-21T15:07:28Z 2009-08-21T15:15:05Z <p>The <code>this</code> keyword is a pointer to the current object. All <strong>non-static member functions</strong> of a class have access to a this pointer.</p> <p>The pointer to the current object is normally made available by the compiler in a non-static member function by using a register, usually ECX. So when you write <code>this</code> in a non-static member function the compiler will translate that call into loading the address from ECX.</p> <p>Check this simple example:</p> <pre> A t; t.Test(); <b>004114DE lea ecx,[t] </b> 004114E1 call std::operator > (41125Dh) </pre> <p>Before calling the non-static member function <code>Test()</code> the compiler loads the register ECX with [t] (the address of variable t - will be <code>this</code> inside Test method).</p> <pre> 004114DE lea ecx,[t] </pre> <p>And inside the function it can use ecx to obtain the address for the current object instance.</p> http://stackoverflow.com/questions/1312391/msbuild-delete-process/1312435#1312435 1 Answer by smink for MSBuild delete process smink 2009-08-21T14:52:24Z 2009-08-21T14:52:24Z <blockquote> <p>I'm working on ironing out some problems with MSBuild on a large project. As part of a custom build target in our MSBuild setup we insert the .PDB files into Symbol Storeafter the build is successful.</p> </blockquote> <p>Kudos for using a Symbol Server. I will never regret for using it.</p> <p>For your special case I would consider <a href="http://msdn.microsoft.com/en-us/library/t9883dzc.aspx" rel="nofollow">writing a custom MSBuild task</a> and hooking that task into the MSBuild script.</p> <p>Writing a task is very simple and you can just call it from the project file very easily:</p> <pre><code>&lt;Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"&gt; &lt;UsingTask TaskName="SimpleTask3.SimpleTask3" AssemblyFile="SimpleTask3\bin\debug\simpletask3.dll"/&gt; &lt;Target Name="MyTarget"&gt; &lt;SimpleTask3 MyProperty="Hello!"/&gt; &lt;/Target&gt; &lt;/Project&gt; </code></pre> http://stackoverflow.com/questions/469993/how-do-i-find-the-handle-owner-from-a-hang-dump-using-windbg/1301079#1301079 1 Answer by smink for How do I find the handle owner from a hang dump using windbg? smink 2009-08-19T16:24:38Z 2009-08-19T16:39:45Z <p>Use the <code>!htrace</code> command to get the thread ID. You must first, possibly at the start of the program, enable the collection of traces with <code>!htrace -enable</code>.</p> <pre> 0:001> !htrace <b>00003aec</b> -------------------------------------- Handle = <b>0x00003aec</b> - OPEN Thread ID = <i>0x00000b48</i>, Process ID = 0x000011e8 ... </pre> <p>The above output is fictional, it will be different for your system. But it will give you the piece of information you need - the thread ID (0x00000b48 in my example).</p> <blockquote> <p>I must work against a dump as the original process needs to be restarted on the users machine, so can't debug a live session.</p> </blockquote> <p>I am not 100% sure but I think this will work:</p> <ol> <li>Attach to the process and run <code>!htrace -enable</code></li> <li>Detach from the process with <code>qd</code>. The executable will continue.</li> <li>You can now take a dump file and use the above command - I think you will have the described results.</li> </ol> http://stackoverflow.com/questions/1300944/where-was-handle-allocated 2 Where was handle allocated? smink 2009-08-19T15:59:46Z 2009-08-19T16:13:51Z <p>I am wondering if it is possible to use WinDbg to kwown the callstack that lead to the allocation of a handle.</p> <p>For example:</p> <pre><code>#include &lt;windows.h&gt; #include &lt;conio.h&gt; #include &lt;iostream&gt; using namespace std; int _tmain(int argc, _TCHAR* argv[]) { cout &lt;&lt; "Press ENTER to leak handles." &lt;&lt; endl; _getch(); cout &lt;&lt; "Leaking handles" &lt;&lt; endl; for (int i = 0; i &lt; 100; ++i) { HANDLE h = CreateEvent(NULL, FALSE, FALSE, NULL); if (h != NULL) { cout &lt;&lt; "."; } } cout &lt;&lt; "Handles leaked. Press ENTER to exit." &lt;&lt; endl; _getch(); return 0; } </code></pre> <p>After building this sample and firing it up in WinDbg is it possible to get the callstack that allocated the handles, in the sample above the line:</p> <pre><code>HANDLE h = CreateEvent(NULL, FALSE, FALSE, NULL); </code></pre> <p>I am poking around with the <code>!handle</code> command but no progress so far.</p> <p>This is pertinent to handle leak analysis. I am aware of <code>!htrace -enable</code> and <code>!htrace -diff</code> but this is a different usage scenario (unless there is some way to combine or other usage vector for it, please provide information).</p> http://stackoverflow.com/questions/1300944/where-was-handle-allocated/1300997#1300997 2 Answer by smink for Where was handle allocated? smink 2009-08-19T16:08:32Z 2009-08-19T16:13:51Z <p>Found what seems to be a solution:</p> <ol> <li>Enable traces by using <code>!htrace -enable</code></li> <li>Run the program and wait for handle leaks</li> <li>Check the handles of the program and peak one for analysis with <code>!htrace &lt;handle&gt;</code></li> </ol> <pre> 0:001> !htrace -enable Handle tracing enabled. Handle tracing information snapshot successfully taken. 0:001> g 0:001> !handle ... Handle <b>7d8</b> Type Event ... 111 Handles Type Count Event 103 File 3 Port 1 Directory 2 WindowStation 1 KeyedEvent 1 0:001> !htrace <b>7d8</b> -------------------------------------- Handle = 0x000007d8 - OPEN Thread ID = 0x00000fc4, Process ID = 0x000017a8 0x0040106d: <b>TestMemHandleLeak!wmain+0x0000006d</b> 0x0040151b: TestMemHandleLeak!__tmainCRTStartup+0x0000010f 0x7c817077: kernel32!BaseProcessStart+0x00000023 -------------------------------------- Parsed 0x64 stack traces. Dumped 0x1 stack traces. </pre> <p>And to get the line of code at that address I did:</p> <pre> 0:001> ln <b>TestMemHandleLeak!wmain+0x0000006d</b> f:\temp\windowsapplication3\testmemhandleleak\testmemhandleleak.cpp(22) </pre> http://stackoverflow.com/questions/71475/virtual-files-are-opened-from-temporary-internet-files 0 Virtual Files are opened from Temporary Internet Files smink 2008-09-16T11:45:43Z 2009-07-29T07:40:29Z <p>I have created a namespace extension that is rooted under Desktop. The main purpose of the extension is to provide a virtual list of ZIP files that represent a list of configurable directories. When the user clicks one of the those items the contents of the related directory are zipped in place and the resulting ZIP file is stored in a cache folder.</p> <p>All this works well aside a minor issue. If we go to Windows Explorer, open the extension and double click an item the opened file is the one from the cache. [CORRECT]</p> <p>If on the other hand we open it by an Open Dialog the opened file is one from a Temporary Internet files directory. [INCORRECT]</p> <p>What do I have to change for the Open Dialog (when used for example trough notepad.exe) to open the file from the cache folder and not from Temporary Internet files. I have tried to send allways the qualified file name in IShellFolder::GetDisplayNameOf but without any luck.</p> http://stackoverflow.com/questions/71475/virtual-files-are-opened-from-temporary-internet-files/1198602#1198602 0 Answer by smink for Virtual Files are opened from Temporary Internet Files smink 2009-07-29T07:40:29Z 2009-07-29T07:40:29Z <p>The problem was fixed by masking <code>SFGAO_FILESYSTEM</code> in the attributes returned by implementation of interface method <a href="http://msdn.microsoft.com/en-us/library/bb775068(VS.85).aspx" rel="nofollow">IShellFolder::GetAttributesOf</a>.</p> http://stackoverflow.com/questions/937178/sql-server-2000-deadlock/1198561#1198561 0 Answer by smink for SQL Server 2000 Deadlock smink 2009-07-29T07:29:56Z 2009-07-29T07:29:56Z <p>The reason for the deadlocks in my setup scenario was after all the indexes. We were using (generated by default) <code>non clustered</code> indexes for the primary keys of the tables. Changing to <code>clustered</code> indexes fixed the problem.</p> http://stackoverflow.com/questions/122316/template-constraints-c 8 Template Constraints C++ smink 2008-09-23T17:03:14Z 2009-07-21T14:15:03Z <p>In C# we can define a generic type that imposes constraints on the types that can be used as the generic parameter. The following example illustrates the usage of generic constraints:</p> <pre><code>interface IFoo { } class Foo&lt;T&gt; where T : IFoo { } class Bar : IFoo { } class Simpson { } class Program { static void Main(string[] args) { Foo&lt;Bar&gt; a = new Foo&lt;Bar&gt;(); Foo&lt;Simpson&gt; b = new Foo&lt;Simpson&gt;(); // error CS0309 } } </code></pre> <p>Is there a way we can impose constraints for template parameters in C++.</p> <p><hr /></p> <p>C++0x has native support for this but I am talking about current standard C++.</p> http://stackoverflow.com/questions/1083215/returning-c-stack-variable/1083234#1083234 11 Answer by smink for returning C++ stack variable smink 2009-07-05T00:20:16Z 2009-07-05T00:20:16Z <p>Basically when you return the stack variable <code>my_x</code> you <strong>would</strong> be calling the copy constructor to create a new copy of the variable. <strong>This is not true, in this case, thanks to the all mighty compiler</strong>.</p> <p>The compiler uses a trick known as <em>return by value optimization</em> by making the variable my_x really being constructed in the place of memory assigned for g on the <code>main</code> method. This is why you see the same address <code>bfeb66d0</code> being printed. This avoids memory allocation and copy construction.</p> <p>Sometimes this is not at all possible due to the complexity of the code and then the compiler resets to the default behavior, creating a copy of the object.</p> http://stackoverflow.com/questions/1015520/java-how-do-i-build-standalone-distributions-of-maven-based-projects/1015548#1015548 0 Answer by smink for Java: How do I build standalone distributions of Maven-based projects? smink 2009-06-18T22:34:33Z 2009-06-18T22:55:13Z <p>Change the <code>pom.xml</code> file and use the <code>&lt;Embed-Dependency&gt;</code> directive. A similar example can be found <a href="http://colab.interlegis.gov.br/file/lexml/ToolKit/trunk/toolkit/pom.xml?rev=4076" rel="nofollow">here</a> so you can adapt it to your scenario.</p> <pre><code>&lt;Embed-Dependency&gt;*;scope=!test;inline=true&lt;/Embed-Dependency&gt; </code></pre> <p>I think this should do the trick.</p> <p><hr /></p> <p>Here is the example at the above URL that seems to give timeout.</p> <pre><code>&lt;project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"&gt; &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt; &lt;groupId&gt;br.gov.lexml&lt;/groupId&gt; &lt;artifactId&gt;toolkit&lt;/artifactId&gt; &lt;packaging&gt;bundle&lt;/packaging&gt; &lt;version&gt;3.0&lt;/version&gt; &lt;parent&gt; &lt;artifactId&gt;lexml&lt;/artifactId&gt; &lt;groupId&gt;br.gov.lexml&lt;/groupId&gt; &lt;version&gt;1.0&lt;/version&gt; &lt;/parent&gt; &lt;build&gt; &lt;finalName&gt;Lexml_Toolkit-2.0&lt;/finalName&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt; &lt;configuration&gt; &lt;source&gt;1.5&lt;/source&gt; &lt;target&gt;1.5&lt;/target&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.felix&lt;/groupId&gt; &lt;artifactId&gt;maven-bundle-plugin&lt;/artifactId&gt; &lt;extensions&gt;true&lt;/extensions&gt; &lt;configuration&gt; &lt;instructions&gt; &lt;!--_include&gt;src/toolkit/resources/META-INF/MANIFEST.MF&lt;/_include--&gt; &lt;Export-Package&gt;*;-split-package:=merge-last&lt;/Export-Package&gt; &lt;Bundle-Activator&gt;br.gov.lexml.borda.Toolkit&lt;/Bundle-Activator&gt; &lt;Bundle-Name&gt;Toolkit&lt;/Bundle-Name&gt; &lt;Private-Package /&gt; &lt;Embed-Dependency&gt;*;scope=!test;inline=true&lt;/Embed-Dependency&gt; &lt;Bundle-ClassPath&gt;.,{maven-dependencies}&lt;/Bundle-ClassPath&gt; &lt;/instructions&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;org.apache.xmlbeans&lt;/groupId&gt; &lt;artifactId&gt;xmlbeans&lt;/artifactId&gt; &lt;version&gt;2.4.0&lt;/version&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;org.apache.xmlbeans&lt;/groupId&gt; &lt;artifactId&gt;xmlbeans-xmlpublic&lt;/artifactId&gt; &lt;version&gt;2.4.0&lt;/version&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;log4j&lt;/groupId&gt; &lt;artifactId&gt;log4j&lt;/artifactId&gt; &lt;version&gt;1.2.15&lt;/version&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;br.gov.lexmlbeans&lt;/groupId&gt; &lt;artifactId&gt;lexmlbeans&lt;/artifactId&gt; &lt;version&gt;3.0&lt;/version&gt; &lt;/dependency&gt; &lt;/dependencies&gt; &lt;/project&gt; </code></pre> http://stackoverflow.com/questions/958566/lenth-of-a-video-file-flv-mpg-avi/958630#958630 2 Answer by smink for lenth of a video file flv -mpg -avi smink 2009-06-06T00:10:14Z 2009-06-06T00:15:46Z <p>I assume that you want to store a BLOB in the SQL Server database table and the <strong>length you are referring to is the length of the BLOB</strong>. Use the <code>FileInfo</code> class as in the following example.</p> <pre><code>using System.IO; FileInfo fi = new FileInfo(somepath); int len = fi.Length; </code></pre> <p>If you are instead referring to the duration (time length) of the video file <a href="http://bellouti.wordpress.com/2007/09/28/determine-a-video-size/" rel="nofollow">see here how to do just that</a>.</p> <pre><code>Microsoft.DirectX.AudioVideoPlayback.Video video = new Microsoft.DirectX.AudioVideoPlayback.Video(path); StringBuilder sb = new StringBuilder(); sb.Append(video.Caption); sb.Append("\r\n"); sb.Append(video.Size.Width.ToString()); sb.Append( "\r\n"); sb.Append(video.Size.Height.ToString()); sb.Append("\r\n"); sb.Append(video.Duration.ToString()); textBox1.Text = sb.ToString(); </code></pre> http://stackoverflow.com/questions/106179/regular-expression-to-match-hostname-or-ip-address/106223#106223 4 Answer by smink for Regular expression to match hostname or IP Address? smink 2008-09-19T22:45:58Z 2009-06-06T00:04:17Z <p>You can use the following regular expressions separately or by combining them in a joint OR expression.</p> <pre><code>ValidIpAddressRegex = "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$"; ValidHostnameRegex = "^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z]|[A-Za-z][A-Za-z0-9\-]*[A-Za-z0-9])$"; </code></pre> <p><strong>ValidIpAddressRegex</strong> matches valid IP addresses and <strong>ValidHostnameRegex</strong> valid host names. Depending on the language you use \ could have to be escaped with \.</p> http://stackoverflow.com/questions/937044/determine-path-to-registry-key-from-hkey-handle-in-c/937379#937379 6 Answer by smink for Determine path to registry key from HKEY handle in C++ smink 2009-06-02T00:09:29Z 2009-06-02T00:09:29Z <p>Use <code>LoadLibrary</code> and <code>ZwQueryKey</code> exported function as in the following code snippet.</p> <pre><code>#include &lt;windows.h&gt; #include &lt;string&gt; typedef LONG NTSTATUS; #ifndef STATUS_SUCCESS #define STATUS_SUCCESS ((NTSTATUS)0x00000000L) #endif #ifndef STATUS_BUFFER_TOO_SMALL #define STATUS_BUFFER_TOO_SMALL ((NTSTATUS)0xC0000023L) #endif std::wstring GetKeyPathFromKKEY(HKEY key) { std::wstring keyPath; if (key != NULL) { HMODULE dll = LoadLibrary(L"ntdll.dll"); if (dll != NULL) { typedef DWORD (__stdcall *ZwQueryKeyType)( HANDLE KeyHandle, int KeyInformationClass, PVOID KeyInformation, ULONG Length, PULONG ResultLength); ZwQueryKeyType func = reinterpret_cast&lt;ZwQueryKeyType&gt;(::GetProcAddress(dll, "ZwQueryKey")); if (func != NULL) { DWORD size = 0; DWORD result = 0; result = func(key, 3, 0, 0, &amp;size); if (result == STATUS_BUFFER_TOO_SMALL) { size = size + 2; wchar_t* buffer = new (std::nothrow) wchar_t[size]; if (buffer != NULL) { result = func(key, 3, buffer, size, &amp;size); if (result == STATUS_SUCCESS) { buffer[size / sizeof(wchar_t)] = L'\0'; keyPath = std::wstring(buffer + 2); } delete[] buffer; } } } FreeLibrary(dll); } } return keyPath; } int _tmain(int argc, _TCHAR* argv[]) { HKEY key = NULL; LONG ret = ERROR_SUCCESS; ret = RegOpenKey(HKEY_LOCAL_MACHINE, L"SOFTWARE\\Microsoft", &amp;key); if (ret == ERROR_SUCCESS) { wprintf_s(L"Key path for %p is '%s'.", key, GetKeyPathFromKKEY(key).c_str()); RegCloseKey(key); } return 0; } </code></pre> <p>This will print the key path on the console:</p> <blockquote> <p>Key path for 00000FDC is '\REGISTRY\MACHINE\SOFTWARE\Microsoft'.</p> </blockquote> http://stackoverflow.com/questions/628410/error-x-may-be-used-uninitialized-in-this-function-in-c/628423#628423 1 Answer by smink for error: X may be used uninitialized in this function in C smink 2009-03-09T23:30:20Z 2009-03-09T23:30:20Z <p><code>Access</code> is not static and therefore it must be created in every call.</p> <p>Consider simplifying the code to something like:</p> <pre><code>static MyStruct Access = Implementation(this_b); </code></pre> <p>This ensures that the function will only be called the first time the method is run and that <code>Access</code> will hold the value between calls.</p> http://stackoverflow.com/questions/386872/programmatically-set-windows-live-messenger-display-picture 1 Programmatically set Windows Live Messenger Display Picture smink 2008-12-22T17:48:48Z 2009-03-03T00:24:11Z <p>How can I programmatically set Windows Live Messenger (currently using 8.5.1302.1018) display picture. Possible solutions can be in C++, .NET or VB. Even just a hint could be useful.</p> http://stackoverflow.com/questions/179128/reading-compound-documents-in-c/179323#179323 Comment by smink on Reading compound documents in c# smink 2009-10-28T20:50:42Z 2009-10-28T20:50:42Z Fixed @Inno, thanks for the pointer. http://stackoverflow.com/questions/157026/where-can-i-find-net-framework-class-diagram/157030#157030 Comment by smink on Where can I find .NET Framework class diagram? smink 2009-10-06T21:12:33Z 2009-10-06T21:12:33Z Thanks @Peter Mortensen. Just updated the link. http://stackoverflow.com/questions/1407430/problem-adding-to-exception-data-dictionary Comment by smink on Problem adding to Exception.Data Dictionary smink 2009-09-10T20:29:51Z 2009-09-10T20:29:51Z Hummm ... your are not rethrowing the exception when you do catch (Exception ex) and set the key value in the dictionary. http://stackoverflow.com/questions/1312371/how-can-i-find-out-more-diagnostic-information-from-a-failed-web-service-call Comment by smink on How can I find out more diagnostic information from a failed web service call? smink 2009-08-21T15:34:08Z 2009-08-21T15:34:08Z First thing I would do is to eavesdrop on the port where the Web Service is being served with a sniffer. This way you can assert that the communication is getting to the web server. After that you will know which side to tackle next - either the mobile device or the web server. http://stackoverflow.com/questions/1312371/how-can-i-find-out-more-diagnostic-information-from-a-failed-web-service-call Comment by smink on How can I find out more diagnostic information from a failed web service call? smink 2009-08-21T14:46:58Z 2009-08-21T14:46:58Z Are you able to view and web pages served by the web server hosting the Web Service to rule out web server misconfiguration? http://stackoverflow.com/questions/1015520/java-how-do-i-build-standalone-distributions-of-maven-based-projects/1015548#1015548 Comment by smink on Java: How do I build standalone distributions of Maven-based projects? smink 2009-06-18T22:55:32Z 2009-06-18T22:55:32Z Just pasted the document comments inline in the answer. Hope that helps. http://stackoverflow.com/questions/106179/regular-expression-to-match-hostname-or-ip-address/106223#106223 Comment by smink on Regular expression to match hostname or IP Address? smink 2009-06-05T23:57:42Z 2009-06-05T23:57:42Z Good points Neil, just edited the answer. http://stackoverflow.com/questions/386872/programmatically-set-windows-live-messenger-display-picture/604636#604636 Comment by smink on Programmatically set Windows Live Messenger Display Picture smink 2009-03-09T22:12:38Z 2009-03-09T22:12:38Z Hum, looks good. I will take a look. Thanks scurial. http://stackoverflow.com/questions/414109/should-a-net-generic-dictionary-be-initialised-with-a-capacity-equal-to-the-numb/414148#414148 Comment by smink on Should a .NET generic dictionary be initialised with a capacity equal to the number of items it will contain? smink 2009-01-06T09:24:10Z 2009-01-06T09:24:10Z If you are talking about performance of QUERIES against the dictionary no, it will not be faster. The initial capacity k will reserve the amount of memory necessary to store k elements. ADD operations will not require more memory allocations (perhaps expensive) and thus will be faster. http://stackoverflow.com/questions/386872/programmatically-set-windows-live-messenger-display-picture/386880#386880 Comment by smink on Programmatically set Windows Live Messenger Display Picture smink 2008-12-22T17:57:19Z 2008-12-22T17:57:19Z I was not aware that Windows Live Messenger had an API. Will take a look. Thanks for the pointer. http://stackoverflow.com/questions/381373/insert-fail-then-update-or-load-and-then-decide-if-insert-or-update Comment by smink on Insert fail then update OR Load and then decide if insert or update. smink 2008-12-19T15:58:18Z 2008-12-19T15:58:18Z The primary key for the table is identity? http://stackoverflow.com/questions/266030/how-to-set-a-timeout-during-remote-ejb-lookup Comment by smink on How to set a timeout during remote ejb lookup? smink 2008-11-05T17:59:18Z 2008-11-05T17:59:18Z What application server are you using? http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253370#253370 Comment by smink on Exceptions or error codes smink 2008-10-31T12:50:43Z 2008-10-31T12:50:43Z +1 for the pointers and insight. http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253326#253326 Comment by smink on Exceptions or error codes smink 2008-10-31T12:34:39Z 2008-10-31T12:34:39Z yap C does leave a few habits in us all ;) http://stackoverflow.com/questions/226790/error-when-compiling-with-windows-ddk/227165#227165 Comment by smink on Error when compiling with Windows DDK smink 2008-10-23T10:32:34Z 2008-10-23T10:32:34Z This one got close enough to allow be to do the job. Setting it to accepted even tough it required some tuning.