User gnobal - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T23:33:39Zhttp://stackoverflow.com/feeds/user/7748http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/923665/how-can-i-tell-if-a-balloon-tip-in-the-system-tray-has-closed/955262#9552620Answer by gnobal for How can I tell if a Balloon tip in the system tray has closed?gnobal2009-06-05T10:40:45Z2009-06-05T10:40:45Z<p>I think this post from Raymond Chen about balloon notifications may help you:
<a href="http://blogs.msdn.com/oldnewthing/archive/2009/05/04/9585032.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2009/05/04/9585032.aspx</a></p>
http://stackoverflow.com/questions/200394/one-table-or-many/200407#2004070Answer by gnobal for One table or many?gnobal2008-10-14T08:44:36Z2008-10-14T08:44:36Z<p>You're asking about database normalization. Jeff Atwood wrote about it in his post <a href="http://www.codinghorror.com/blog/archives/001152.html" rel="nofollow">Maybe Normalizing Isn't Normal</a>. It's a good read.</p>
http://stackoverflow.com/questions/200237/where-can-i-learn-more-about-c0x/200400#2004004Answer by gnobal for Where can I learn more about C++0x?gnobal2008-10-14T08:40:15Z2008-10-14T08:40:15Z<p>Here are two videos on the subject. They are a bit old, but still very relevant:
New Features in the Next C++ Standard ( <a href="http://www.youtube.com/watch?v=ZAG5txfYnW4" rel="nofollow">http://www.youtube.com/watch?v=ZAG5txfYnW4</a> ) and <a href="http://video.google.com/videoplay?docid=3528799355371049884" rel="nofollow">Advanced Topics in Programming Languages Series: C++ Threads</a></p>
http://stackoverflow.com/questions/195696/why-would-waveoutwrite-cause-an-exception-in-the-debug-heap/198381#1983810Answer by gnobal for Why would waveOutWrite() cause an exception in the debug heap?gnobal2008-10-13T17:41:03Z2008-10-13T17:49:21Z<p>I have no idea about waveOutXXX stuff, but in your code I see something strange - you allocate the memory that you put in hdr->lpData using malloc() but fom your analysis it appears that you are expected to use the GlobalXXX functions (specifically GlobalAlloc()) for the allocation/deallocation of this buffer. </p>
<p>A look in <a href="http://msdn.microsoft.com/en-us/library/ms708482(VS.85).aspx" rel="nofollow">this MSDN code sample</a> pretty much confirms my suspicion.</p>
<p>EDIT: as additional reading material I recommend Raymond Chen's "history of GlobalLock" series, parts <a href="http://blogs.msdn.com/oldnewthing/archive/2004/11/04/252258.aspx" rel="nofollow">1</a>, <a href="http://blogs.msdn.com/oldnewthing/archive/2004/11/05/252856.aspx" rel="nofollow">2</a>, <a href="http://blogs.msdn.com/oldnewthing/archive/2004/11/08/253891.aspx" rel="nofollow">3</a> and <a href="http://blogs.msdn.com/oldnewthing/archive/2004/11/09/254441.aspx" rel="nofollow">4</a>. Enjoy</p>
http://stackoverflow.com/questions/195530/what-is-a-pseudocolumn-accidently-coded-select-foo-and-got-the-error-inv/195542#1955421Answer by gnobal for What is a "pseudocolumn"? Accidently coded "SELECT $FOO.." and got the error "Invalid pseudocolumn "$FOO".gnobal2008-10-12T14:21:15Z2008-10-12T14:21:15Z<p>A simple Google search brings up <a href="http://www.lorentzcenter.nl/awcourse/oracle/server.920/a96540/sql_elements6a.htm" rel="nofollow">this</a> from Oracle's reference:</p>
<blockquote>
<p>A pseudocolumn behaves like a table
column, but is not actually stored in
the table. You can select from
pseudocolumns, but you cannot insert,
update, or delete their values.</p>
</blockquote>
<p>I think that the error you got is simply because there is no column $FOO, so the query parser tests to see if there's a psuedocolumn named $FOO as a fallback. And since there is no pseudocolumn named "$FOO" (and there are no other fallback) you get the error "Invalid pseudocolumn $FOO". This is a guess, though. I'm no expert when it comes to databases.</p>
http://stackoverflow.com/questions/114859/how-to-prevent-creating-intermediate-objects-in-cascading-operators/115155#1151551Answer by gnobal for How to prevent creating intermediate objects in cascading operators?gnobal2008-09-22T14:30:22Z2008-09-22T14:30:22Z<p>Bjarne Stroustrup has a short paper called <a href="http://www.research.att.com/~bs/abstraction.pdf" rel="nofollow">Abstraction, libraries, and efficiency in C++</a> where he mentions techniques used to achieve what you're looking for. Specifically, he mentions the library <a href="http://www.oonumerics.org/blitz/" rel="nofollow">Blitz++</a>, a library for scientific calculations that also has efficient operations for matrices, along with some other interesting libraries. Also, I recommend reading <a href="http://www.artima.com/intv/abstreffi.html" rel="nofollow">a conversation with Bjarne Stroustrup on artima.com</a> on that subject.</p>
http://stackoverflow.com/questions/108866/is-there-memset-that-accepts-integers-larger-than-char4Is there memset() that accepts integers larger than char?gnobal2008-09-20T17:50:20Z2008-09-21T10:42:17Z
<p>Is there a version of memset() which sets a value that is larger than 1 byte (char)? For example, let's say we have a memset32() function, so using it we can do the following:</p>
<pre><code>int32_t array[10];
memset32(array, 0xDEADBEEF, sizeof(array));
</code></pre>
<p>This will set the value 0xDEADBEEF in all the elements of array. Currently it seems to me this can only be done with a loop.</p>
<p>Specifically, I am interested in a 64 bit version of memset(). Know anything like that?</p>
http://stackoverflow.com/questions/110393/tinyxml-save-document-to-char-or-string/110425#1104252Answer by gnobal for TinyXML: Save document to char * or stringgnobal2008-09-21T06:56:25Z2008-09-21T06:56:25Z<p>I'm not familiar with TinyXML, but from the documentation it seems that by using operator << to a C++ stream (so you can use <a href="http://www.cppreference.com/wiki/io/sstream/start" rel="nofollow">C++ string streams</a>) or a <a href="http://www.grinninglizard.com/tinyxmldocs/classTiXmlPrinter.html" rel="nofollow">TiXMLPrinter class</a> you can get an STL string with the without using a file. See <a href="http://www.grinninglizard.com/tinyxmldocs/index.html" rel="nofollow">TinyXML documentation</a> (look for the "Printing" section)</p>
http://stackoverflow.com/questions/108819/best-way-to-randomize-a-string-array-in-c/108834#1088348Answer by gnobal for Best way to randomize a string array in C#gnobal2008-09-20T17:39:09Z2008-09-20T17:39:09Z<p>See Jeff Atwood's own posts on <a href="http://www.codinghorror.com/blog/archives/001008.html" rel="nofollow">shuffling</a> and the one <a href="http://www.codinghorror.com/blog/archives/001015.html" rel="nofollow">where he found an error in his own naive shuffling code</a></p>
<p>This must gain me some reputation ;)</p>
http://stackoverflow.com/questions/72769/static-libraries-with-managed-code-issue/73075#730752Answer by gnobal for Static libraries with managed code issuegnobal2008-09-16T14:41:35Z2008-09-16T14:41:35Z<p>My hunch was that, as you suspected, unmanaged DLLs are loaded in the context of the process and not in the context of the AppDomain, so any static data in unmanaged code is shared among AppDomains.</p>
<p><a href="http://social.msdn.microsoft.com/forums/en-US/csharpgeneral/thread/98cbabe0-33d6-4775-a3a7-04e71b7498dd/" rel="nofollow">This link</a> shows someone with the same problem you have, still not 100% verification of this, but probably this is the case.</p>
<p><a href="http://lambert.geek.nz/2007/05/29/unmanaged-appdomain-callback/" rel="nofollow">This link</a> is about creating a callback from unmanaged code into an AppDomain using a thunking trick. I'm not sure this can help you but maybe you'll find this useful to create some kind of a workaround.</p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70428#704281Answer by gnobal for Why is quicksort better than mergesort?gnobal2008-09-16T08:42:10Z2008-09-16T08:42:10Z<p>From <a href="http://en.wikipedia.org/wiki/Quicksort" rel="nofollow">the Wikipedia entry on Quicksort</a>:</p>
<blockquote>
<p>Quicksort also competes with
mergesort, another recursive sort
algorithm but with the benefit of
worst-case Θ(nlogn) running time.
Mergesort is a stable sort, unlike
quicksort and heapsort, and can be
easily adapted to operate on linked
lists and very large lists stored on
slow-to-access media such as disk
storage or network attached storage.
Although quicksort can be written to
operate on linked lists, it will often
suffer from poor pivot choices without
random access. The main disadvantage
of mergesort is that, when operating
on arrays, it requires Θ(n) auxiliary
space in the best case, whereas the
variant of quicksort with in-place
partitioning and tail recursion uses
only Θ(logn) space. (Note that when
operating on linked lists, mergesort
only requires a small, constant amount
of auxiliary storage.)</p>
</blockquote>
http://stackoverflow.com/questions/69871/vim-vi-survival-guide/70395#703954Answer by gnobal for Vim / vi Survival Guidegnobal2008-09-16T08:36:01Z2008-09-16T08:36:01Z<p>This <a href="http://www.ibm.com/developerworks/aix/library/au-speakingunix_vim/index.html" rel="nofollow">recent Vim tutorial from IBM</a> is pretty good</p>
http://stackoverflow.com/questions/45658/how-do-i-retrieve-ipiehtmldocument2-interface-on-ie-mobile/63430#634301Answer by gnobal for How do I retrieve IPIEHTMLDocument2 interface on IE Mobilegnobal2008-09-15T14:32:04Z2008-09-15T14:32:04Z<p>I found the following code in the Google Gears code, <a href="http://code.google.com/p/gears/source/browse/trunk/gears/base/ie/activex_utils.cc?r=2157" rel="nofollow">here</a>. I copied the functions I think you need to here. The one you need is at the bottom (GetHtmlWindow2), but the other two are needed as well. Hopefully I didn't miss anything, but if I did the stuff you need is probably at the link.</p>
<pre><code>#ifdef WINCE
// We can't get IWebBrowser2 for WinCE.
#else
HRESULT ActiveXUtils::GetWebBrowser2(IUnknown *site, IWebBrowser2 **browser2) {
CComQIPtr<IServiceProvider> service_provider = site;
if (!service_provider) { return E_FAIL; }
return service_provider->QueryService(SID_SWebBrowserApp,
IID_IWebBrowser2,
reinterpret_cast<void**>(browser2));
}
#endif
HRESULT ActiveXUtils::GetHtmlDocument2(IUnknown *site,
IHTMLDocument2 **document2) {
HRESULT hr;
#ifdef WINCE
// Follow path Window2 -> Window -> Document -> Document2
CComPtr<IPIEHTMLWindow2> window2;
hr = GetHtmlWindow2(site, &window2);
if (FAILED(hr) || !window2) { return false; }
CComQIPtr<IPIEHTMLWindow> window = window2;
CComPtr<IHTMLDocument> document;
hr = window->get_document(&document);
if (FAILED(hr) || !document) { return E_FAIL; }
return document->QueryInterface(__uuidof(*document2),
reinterpret_cast<void**>(document2));
#else
CComPtr<IWebBrowser2> web_browser2;
hr = GetWebBrowser2(site, &web_browser2);
if (FAILED(hr) || !web_browser2) { return E_FAIL; }
CComPtr<IDispatch> doc_dispatch;
hr = web_browser2->get_Document(&doc_dispatch);
if (FAILED(hr) || !doc_dispatch) { return E_FAIL; }
return doc_dispatch->QueryInterface(document2);
#endif
}
HRESULT ActiveXUtils::GetHtmlWindow2(IUnknown *site,
#ifdef WINCE
IPIEHTMLWindow2 **window2) {
// site is javascript IDispatch pointer.
return site->QueryInterface(__uuidof(*window2),
reinterpret_cast<void**>(window2));
#else
IHTMLWindow2 **window2) {
CComPtr<IHTMLDocument2> html_document2;
// To hook an event on a page's window object, follow the path
// IWebBrowser2->document->parentWindow->IHTMLWindow2
HRESULT hr = GetHtmlDocument2(site, &html_document2);
if (FAILED(hr) || !html_document2) { return E_FAIL; }
return html_document2->get_parentWindow(window2);
#endif
}
</code></pre>
http://stackoverflow.com/questions/968481/getprivateprofilesectionnames-always-returns-0Comment by gnobal on GetPrivateProfileSectionNames always returns 0gnobal2009-06-09T06:47:56Z2009-06-09T06:47:56ZI think the question is too general. What are the values of the parameters you're sending to the function?http://stackoverflow.com/questions/195696/why-would-waveoutwrite-cause-an-exception-in-the-debug-heap/198381#198381Comment by gnobal on Why would waveOutWrite() cause an exception in the debug heap?gnobal2008-10-13T17:52:02Z2008-10-13T17:52:02ZAdam, I completely agree. It appears I wasn't clear enough: the buffer needs to be allocated with GlobalAlloc() and released with GlobalFree(). The use of <i>both</i> malloc() and free() seems to be the problem.http://stackoverflow.com/questions/108866/is-there-memset-that-accepts-integers-larger-than-char/109853#109853Comment by gnobal on Is there memset() that accepts integers larger than char?gnobal2008-09-21T08:21:22Z2008-09-21T08:21:22ZThanks for the detailed answerhttp://stackoverflow.com/questions/108866/is-there-memset-that-accepts-integers-larger-than-char/108884#108884Comment by gnobal on Is there memset() that accepts integers larger than char?gnobal2008-09-21T08:20:31Z2008-09-21T08:20:31ZThis implementation is more than I bargained for with the question :) Thanks! It would have been nice if you explained the implementation. For example, I can't understand why use a function call to memcpy() instead of an assignment.