User dicroce - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T15:11:58Zhttp://stackoverflow.com/feeds/user/3886http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1904445/borderless-windows-on-linux0Borderless windows on Linux...dicroce2009-12-15T00:15:47Z2009-12-15T19:17:20Z
<p>Is their a standard way to make a particular window borderless on Linux? I believe that the window border is drawn by your window manager, so it may be that I just need to use a particular window manager (that would be find, I'd just need to know which one)... My hope is that all the window managers might follow some standard that allows me to do this programatically...</p>
http://stackoverflow.com/questions/917298/javascript-server-under-xulrunner-fails0javascript server under XULRunner fails.dicroce2009-05-27T18:27:09Z2009-12-08T12:43:44Z
<p>I'm trying to debug a DOM scraping packaged called <a href="http://simile.mit.edu/wiki/Crowbar" rel="nofollow">crowbar</a>. Anyhow, when I run I get:</p>
<blockquote>
<p>Error: [Exception... "Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIServerSocket.asyncListen]" nsresult: "0xc1f30001 (NS_ERROR_NOT_INITIALIZED)" location: "JS frame :: chrome://crowbar/content/crowbar.js :: onLoad :: line 375" data: no]<br />
Source File: chrome://crowbar/content/crowbar.js<br />
Line: 375</p>
</blockquote>
<p>Basically, <code>asyncListen()</code> is throwing <code>NS_ERROR_NOT_INITIALIZED</code>. This is weird because the line of code immediately before this is a call to <code>init()</code>! I've tried adding:</p>
<pre><code>netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
</code></pre>
<p>just before the call to <code>asyncListen()</code> and it had no effect. Is this a security issue? (btw, in case it matters, this is on a Fedora box, running as root, with selinux disabled)... I've also tried a few different port numbers...</p>
http://stackoverflow.com/questions/1861204/disabling-access-to-exec-functions/1861273#18612731Answer by dicroce for Disabling access to "exec" functions ?dicroce2009-12-07T16:53:21Z2009-12-07T16:53:21Z<p>If you're on Linux, you can do the following:</p>
<p>Implement your OWN version of exec() and system() that do what you want (or don't do), and either LD_PRELOAD it, or pass RTLD_DEEPBIND to dlopen()... This will cause the linker to prefer YOUR versions of these methods over the versions provided by libc.</p>
http://stackoverflow.com/questions/1834771/how-do-you-get-createwindowex-to-create-the-window-on-a-specific-monitor0How do you get CreateWindowEx() to create the window on a specific monitor?dicroce2009-12-02T18:11:21Z2009-12-02T18:21:51Z
<p>I've determined that I can use GetSystemMetrics(SM_CMONITORS) to query the number of attached monitors, but is their any way to control what monitor CreateWindowEx() uses for the window?</p>
http://stackoverflow.com/questions/1829706/how-to-query-x11-display-resolution2How to query X11 display resolution?dicroce2009-12-01T23:35:21Z2009-12-02T00:59:59Z
<p>It seems like an simple problem, but I can't find the answer: How do you query (via X11) what monitors exist and their resolutions?</p>
http://stackoverflow.com/questions/1829013/trouble-understanding-c-virtual/1829037#18290370Answer by dicroce for Trouble understanding C++ `virtual`dicroce2009-12-01T21:27:07Z2009-12-01T21:27:07Z<p>Try ((A*)&b).a() and see what gets called then.</p>
<p>The virtual keyword lets you treat an object in an abstract way (I.E. through a base class pointer) and yet still call descendant code...</p>
<p>Put another way, the virtual keyword "lets old code call new code". You may have written code to operate on A's, but through virtual functions, that code can call B's newer a().</p>
http://stackoverflow.com/questions/1810351/what-to-look-for-in-a-candidate-with-over-8-years-of-experience-in-c-c-linux/1810431#18104310Answer by dicroce for What to look for in a candidate with over 8 years of experience in C, C++, Linux Application Development?dicroce2009-11-27T19:52:10Z2009-11-27T19:52:10Z<p>I interview people like this all the time. The answer is that no matter how much experience he has, you must prove to yourself that he is capable of the job.</p>
<p>Joel Spolsky is right, hiring badly is destructive to a team and organization. It should be avoided at all costs.</p>
http://stackoverflow.com/questions/1794489/draw-a-polygon-in-c/1794500#17945000Answer by dicroce for Draw a polygon in Cdicroce2009-11-25T03:53:17Z2009-11-25T03:53:17Z<p>I'm not going to just give you the answer, but I have some advice. First, learn how line drawing works INSIDE AND OUT. When you have this down, try to write a filled triangle renderer.
Generally, filled polygons are drawn 1 horizontal scan line at a time, top to bottom. You're job is to determine the starting and stopping x coordinate for every scan line. Note that the edge of a polygon follows a straight line (hint, hint)... :)</p>
http://stackoverflow.com/questions/1780351/linking-error-in-c/1780371#17803712Answer by dicroce for Linking error in C++dicroce2009-11-22T23:14:12Z2009-11-23T00:50:25Z<p>What I usually do is manually verify the symbol exists in the library: </p>
<pre><code>objdump --syms foo.o
</code></pre>
<p>This will output a list of symbols contained in the .o file... (since it's a link error, you should have .o files... (make sure you pass -c to g++ to get it to stop after compilation))... Then you can just visually verify the object has the symbols you think it does...</p>
http://stackoverflow.com/questions/1779347/using-rubys-ready-io-method-with-gets-puts-etc/1779376#17793761Answer by dicroce for Using Ruby's "ready?" IO method with gets, puts, etcdicroce2009-11-22T17:41:19Z2009-11-22T17:41:19Z<p>I don't have a lot of experience with Ruby, but I have a heck of a lot of experience with libc, and my opinion is that yes, it is safe. Odds are pretty good that "ready" is implemented in terms of select() or poll()...</p>
<p>If "ready" behaves like a select() that's been passed a timeval with zeros for tv_sec, and tv_usec, then the downside to "ready" is that you'll be spinning... Can you pass a timeout to ready?</p>
http://stackoverflow.com/questions/1759093/win32-createwindow-call-hangs-in-child-thread0Win32 CreateWindow() call hangs in child thread?dicroce2009-11-18T21:06:41Z2009-11-19T16:06:32Z
<p>I'm working on a portability layer for OpenGL (abstracts the glX and wgl stuff for Linux and Windows)... Anyhow, it has a method for creating a Window... If you don't pass in a parent, you get a real window with a frame... If you pass in a parent, you get a borderless, frameless window...</p>
<p>This works fine, as long as I do it all on 1 thread... As soon as another thread tries to create a child window, the app deadlocks in the win32 call "CreateWindow()". Any ideas?</p>
http://stackoverflow.com/questions/1759093/win32-createwindow-call-hangs-in-child-thread/1763870#17638700Answer by dicroce for Win32 CreateWindow() call hangs in child thread?dicroce2009-11-19T14:58:20Z2009-11-19T14:58:20Z<p>This is an interesting question: A lot of old school win32 guys have told me you CANNOT do this. In researching this, I found this forum: <a href="http://www.codeguru.com/forum/archive/index.php/t-293050.html" rel="nofollow">SendMessage()</a>. My current theory is that CreateWindowEx() must send a message (via SendMessage(), so it blocks) to the parent window to ask for permission to exist (or at least to notify of its existence)... Anyhow, as long as that parent thread is free to process these messages, it all works... </p>
http://stackoverflow.com/questions/1718098/does-pthreads-support-a-method-for-querying-the-lock-count-of-a-recursive-mutex0Does pthreads support a method for querying the "lock count" of a recursive mutex?dicroce2009-11-11T21:12:12Z2009-11-19T04:23:02Z
<p>Does pthreads support any method that allows you to query the number of times a recursive mutex has been locked?</p>
http://stackoverflow.com/questions/1749972/determine-the-current-hinstance1Determine the current HINSTANCE?dicroce2009-11-17T16:16:34Z2009-11-18T08:42:59Z
<p>The HINSTANCE of a win32 application is passed to WinMain, but is there any other way of determining the current HINSTANCE (in case you couldn't tell, I'm very new to win32 programming!)? I need to create a window inside of a library and (since the library is cross platform), id prefer not to have to pass it in.</p>
http://stackoverflow.com/questions/1736601/do-you-use-vim-emacs-terminals-to-develop-c-c-what-kind-of-projects-is-this-pr/1737908#17379082Answer by dicroce for Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for?dicroce2009-11-15T15:53:35Z2009-11-15T15:53:35Z<p>Hmm... Well, look at it this way:</p>
<p>I open code in emacs. I edit it. I use code completion (and I've even played with intellisense emacs)... When I'm ready to compile, I hit CTRL+F7... A key I've bound... It builds in a small popup window... If there are any errors, I can jump to them in the code by hitting f8 (another bound key)... Once it's all building, I hit f5... (this runs a little program I wrote that parses the Makefile and determines the path the executable)... This starts the debugger in a small popup window... I can click on code lines to set break points... etc... I debug... I can "next" through the code with F10... I can "step" through the code with F11 (more key bindings)... When it's all done I hit Shift-F7 to package (.rpm) the project.</p>
<p>So, do I have an IDE? Or am I just using a plain text editor?</p>
http://stackoverflow.com/questions/1736526/any-good-free-c-game-programming-pdf/1736537#17365377Answer by dicroce for Any good free C++ Game Programming PDFdicroce2009-11-15T04:11:24Z2009-11-15T04:11:24Z<p>Check out <a href="http://www.gamedev.net/" rel="nofollow">Gamedev.net</a> they are a real treasure trove of game development.</p>
http://stackoverflow.com/questions/1735344/why-does-my-simple-glx-app-leak-memory1Why does my simple GLX app leak memory?dicroce2009-11-14T19:33:51Z2009-11-15T03:26:00Z
<p>The code below shows a small 48 byte leak in valgrind.</p>
<pre><code>#include <X11/Xlib.h>
#include <GL/glx.h>
#include <unistd.h>
int main( int argc, char* argv[] )
{
Display* _display;
Window _windowHandle;
XVisualInfo* _visual;
GLXContext _context;
Atom _deleteWindowMessage;
Atom _pingWindowMessage;
_display = XOpenDisplay( NULL );
int attributes[] = { GLX_RGBA,
GLX_DOUBLEBUFFER,
GLX_RED_SIZE, 8,
GLX_BLUE_SIZE, 8,
GLX_GREEN_SIZE, 8,
GLX_ALPHA_SIZE, 8,
GLX_DEPTH_SIZE, 8,
GLX_STENCIL_SIZE, 0,
0 };
_visual = glXChooseVisual( _display,
DefaultScreen( _display ),
attributes );
_context = glXCreateContext( _display,
_visual,
0,
GL_TRUE );
Colormap colormap;
colormap = XCreateColormap( _display,
RootWindow( _display, _visual->screen ),
_visual->visual,
AllocNone );
XSetWindowAttributes windowAttributes;
windowAttributes.colormap = colormap;
windowAttributes.border_pixel = 0;
windowAttributes.event_mask = ExposureMask | StructureNotifyMask;
_windowHandle =
XCreateWindow( _display,
RootWindow( _display, _visual->screen ),
0,
0,
1280,
720,
0, // Borderwidth
_visual->depth, // Depth
InputOutput,
_visual->visual,
CWBorderPixel | CWColormap | CWEventMask,
&windowAttributes );
XFreeColormap( _display, colormap );
XMapWindow( _display, _windowHandle );
// causes 48 byte leak...
glXMakeCurrent( _display,
_windowHandle,
_context );
sleep( 3 );
XUnmapWindow( _display, _windowHandle );
XDestroyWindow( _display, _windowHandle );
glXMakeCurrent( _display,
None,
NULL );
glXDestroyContext( _display, _context );
XFree( _visual );
XCloseDisplay( _display );
return 0;
}
</code></pre>
<p>All this code does is initialize a window for GLX rendering and then tear it down. The funny thing, is that as soon as I call glXMakeCurrent(), I leak 48 bytes... The valgrind output looks like this:</p>
<pre><code>[developer@localhost ~]$ valgrind --tool=memcheck --leak-check=full ./simplex
==9531== Memcheck, a memory error detector
==9531== Copyright (C) 2002-2009, and GNU GPL'd, by Julian Seward et al.
==9531== Using Valgrind-3.5.0 and LibVEX; rerun with -h for copyright info
==9531== Command: ./simplex
==9531==
==9531==
==9531== HEAP SUMMARY:
==9531== in use at exit: 248 bytes in 6 blocks
==9531== total heap usage: 1,265 allocs, 1,259 frees, 2,581,764 bytes allocated
==9531==
==9531== 48 bytes in 1 blocks are definitely lost in loss record 5 of 6
==9531== at 0x400591C: malloc (vg_replace_malloc.c:195)
==9531== by 0x349D0F8: ??? (in /usr/lib/nvidia/libGL.so.180.60)
==9531==
==9531== LEAK SUMMARY:
==9531== definitely lost: 48 bytes in 1 blocks
==9531== indirectly lost: 0 bytes in 0 blocks
==9531== possibly lost: 0 bytes in 0 blocks
==9531== still reachable: 200 bytes in 5 blocks
==9531== suppressed: 0 bytes in 0 blocks
==9531== Reachable blocks (those to which a pointer was found) are not shown.
==9531== To see them, rerun with: --leak-check=full --show-reachable=yes
==9531==
==9531== For counts of detected and suppressed errors, rerun with: -v
==9531== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 30 from 8)
</code></pre>
<p>If you comment out the call to glXMakeCurrent() right before the sleep, the leak will go away... Of course, I need to make that call in order to render anything!</p>
<p>The real problem is that my app creates many child windows, each with GLX contexts associated... and each leaks this same 48 bytes... I don't know what else to try (the code is cleaning up the GLX context)... Any ideas?</p>
http://stackoverflow.com/questions/1735344/why-does-my-simple-glx-app-leak-memory/1736467#17364670Answer by dicroce for Why does my simple GLX app leak memory?dicroce2009-11-15T03:26:00Z2009-11-15T03:26:00Z<p>Ok, it looks like it really wasn't leaking.</p>
<p>Valgrind is still reporting the leak, but I wrote a test app that brings up thousands of windows in random locations and the memory is completely flat via top... So, looks like I'll need a suppression file for glx applications.</p>
http://stackoverflow.com/questions/658439/how-many-hash-functions-does-my-bloom-filter-need0How many hash functions does my bloom filter need?dicroce2009-03-18T14:20:57Z2009-11-08T02:46:56Z
<p><a href="http://en.wikipedia.org/wiki/Bloom%5Ffilter" rel="nofollow">Wikipedia</a> says:</p>
<blockquote>
<p>An empty Bloom filter is a bit array of m bits, all set to 0. There must also be k different hash functions defined, each of which maps or hashes some set element to one of the m array positions with a uniform random distribution.</p>
</blockquote>
<p>I read the article, but what I don't understand is how k is determined. Is it a function of the table size?</p>
<p>Also, in hash tables I've written I used a simple but effective algorithm for automatically growing the hash's size. Basically, if ever more than 50% of the buckets in the table were filled, I would double the size of the table. I suspect you might still want to do this with a bloom filter to reduce false positives. Correct?</p>
http://stackoverflow.com/questions/503833/what-is-the-best-way-to-implement-smart-pointers-in-c4What is the best way to implement smart pointers in C++?dicroce2009-02-02T16:33:14Z2009-11-07T11:40:31Z
<p>I've been evaluating various smart pointer implementations (wow, there are a LOT out there) and it seems to me that most of them can be categorized into two broad classifications:</p>
<p>1) This category uses inheritance on the objects referenced so that they have reference counts and usually up() and down() (or their equivalents) implemented. IE, to use the smart pointer, the objects you're pointing at must inherit from some class the ref implementation provides.</p>
<p>2) This category uses a secondary object to hold the reference counts. For example, instead of pointing the smart pointer right at an object, it actually points at this meta data object... Who has a reference count and up() and down() implementations (and who usually provides a mechanism for the pointer to get at the actual object being pointed to, so that the smart pointer can properly implement operator ->()).</p>
<p>Now, 1 has the downside that it forces all of the objects you'd like to reference count to inherit from a common ancestor, and this means that you cannot use this to reference count objects that you don't have control over the source code to.</p>
<p>2 has the problem that since the count is stored in another object, if you ever have a situation that a pointer to an existing reference counted object is being converted into a reference, you probably have a bug (I.E., since the count is not in the actual object, there is no way for the new reference to get the count... ref to ref copy construction or assignment is fine, because they can share the count object, but if you ever have to convert from a pointer, you're totally hosed)...</p>
<p>Now, as I understand it, boost::shared_pointer uses mechanism 2, or something like it... That said, I can't quite make up my mind which is worse! I have only ever used mechanism 1, in production code... Does anyone have experience with both styles? Or perhaps there is another way thats better than both of these?</p>
http://stackoverflow.com/questions/1683013/writing-a-binary-file-in-c-to-be-read-by-c-program-with-pointers/1683044#16830443Answer by dicroce for Writing a binary file in C# to be read by C program, with pointers?dicroce2009-11-05T19:43:11Z2009-11-05T19:43:11Z<p>If the old code was writing pointers to a file, then odds are you dealing with very poorly written code. Those pointers would be meaningless to any other process reading that file...</p>
<p>Also, reading whole structures with a single fread() is a bad idea because different compilers may pad those structures differently (so the structure written by one application may be laid out differently than one read by another application).</p>
http://stackoverflow.com/questions/1676036/what-should-i-use-to-replace-gettimeofday-on-windows0What should I use to replace gettimeofday() on Windows?dicroce2009-11-04T19:26:52Z2009-11-05T01:17:38Z
<p>I'm writing a portable Socket class that supports timeouts for both sending and receiving... To implement these timeouts I'm using <code>select()</code>.... But, I sometimes need to know how long I was blocked inside <code>select()</code> which of course on Linux I would implement by calling <code>gettimeofday()</code> before and after I call <code>select()</code> and then using <code>timersub()</code> to calculate the delta...</p>
<p>Given that <code>select()</code> on Windows accepts <code>struct timeval</code> for it's timeout, what method should I used to replace gettimeofday() on Windows?</p>
http://stackoverflow.com/questions/1676036/what-should-i-use-to-replace-gettimeofday-on-windows/1677744#16777440Answer by dicroce for What should I use to replace gettimeofday() on Windows?dicroce2009-11-05T01:17:38Z2009-11-05T01:17:38Z<p>I ended up finding this page: <a href="http://www.cpp-programming.net/c-tidbits/gettimeofday-function-for-windows/" rel="nofollow">gettimeofday() on windows</a>. Which has a handy, dandy implementation of gettimeofday() on Windows. It uses the <code>GetSystemTimeAsFileTime()</code> method to get an accurate clock.</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1671377#1671377-2Answer by dicroce for What's your most controversial programming opinion?dicroce2009-11-04T02:22:44Z2009-11-04T02:22:44Z<p>The C++ STL library is so general purpose that it is optimal for no one.</p>
http://stackoverflow.com/questions/1659681/what-makes-emacs-a-good-editor/1659731#16597312Answer by dicroce for What makes emacs a good editor?dicroce2009-11-02T06:33:34Z2009-11-02T06:33:34Z<p>Emacs takes GDB to the next level.. No other software integrates as well with GDB....</p>
<p>It's super configurable (for example, when I press F5 my emacs parses my Makefile, figures out what executable it creates, splits the window and runs gdb against it)...</p>
http://stackoverflow.com/questions/1659099/why-is-it-preferable-to-write-func-const-class-value/1659124#16591241Answer by dicroce for Why is it preferable to write func( const Class &value )?dicroce2009-11-02T02:04:42Z2009-11-02T02:04:42Z<p>The first example is pass by reference. Rather than pass the type, C++ will pass a reference to the object (generally, references are implemented with pointers... So it's likely an object of size 4 bytes)... In the second example, the object is passed by value... if it is a big, complex object then likely it's a fairly heavyweight operation as it involves copy construction of a new "Class".</p>
http://stackoverflow.com/questions/1658386/sleep-function-in-c/1658404#16584041Answer by dicroce for Sleep function in C++dicroce2009-11-01T21:31:08Z2009-11-01T21:49:59Z<p>On unix, include <code>#include <unistd.h></code>... The call your interested in is usleep()... Which takes microseconds, so you should multiply your millisecond value by 1000 and pass the result to usleep()...</p>
http://stackoverflow.com/questions/1657671/what-fields-are-the-c-and-c-jobs-in-now-days/1657744#16577445Answer by dicroce for what fields are the c and c++ jobs in now days?dicroce2009-11-01T17:35:27Z2009-11-01T17:35:27Z<p>People are still using C/C++ for embedded development (at least, that's where all my jobs have been), but even here, we're starting to see things like C# and Flash creeping in (at least for the gui's)... </p>
http://stackoverflow.com/questions/1657225/experiences-with-adobes-adam-and-eve-c-gui-library/1657628#16576280Answer by dicroce for Experiences with Adobe's "Adam and Eve" C++ GUI library?dicroce2009-11-01T16:42:30Z2009-11-01T16:42:30Z<p>I watched the Tech Talk.. He sort of lost me when he showed the real world example code and then a massively shorter version using his model... I suspect that his implementation, just like anything else, would in practice be bogged down by real world considerations if actually pursued to solve real problems... </p>
<p>That said, it was interesting... The first half of the talk was great... I especially liked his assertion that Generic programming is the mathematics of coding... </p>
http://stackoverflow.com/questions/1657484/can-you-give-an-example-of-stack-overflow-in-c/1657491#16574911Answer by dicroce for Can you give an example of stack overflow in C++?dicroce2009-11-01T15:55:07Z2009-11-01T15:55:07Z<p>This example shows uncontrolled recursion. Eventually, the stack spaced allocated to this process will be completely overwritten by instances of bar and ret...</p>
<pre><code>int foo( int bar )
{
int ret = foo( 42 );
return ret;
}
</code></pre>
http://stackoverflow.com/questions/1904445/borderless-windows-on-linux/1909708#1909708Comment by dicroce on Borderless windows on Linux...dicroce2009-12-16T14:52:24Z2009-12-16T14:52:24ZAwesome... :) Exactly what I was looking for, and better than what I went with because it's more portable... :) I'll be using this instead later today...http://stackoverflow.com/questions/1907921/can-using-0l-to-initialize-a-pointer-in-c-cause-problems/1907958#1907958Comment by dicroce on Can using 0L to initialize a pointer in C++ cause problems?dicroce2009-12-15T14:58:04Z2009-12-15T14:58:04ZNo, because 0 does not imply an int.http://stackoverflow.com/questions/1904445/borderless-windows-on-linux/1904484#1904484Comment by dicroce on Borderless windows on Linux...dicroce2009-12-15T14:35:50Z2009-12-15T14:35:50ZI couldn't use this, because I needed to talk right to the Window manager, but I accept it as the answer because for most people, this is probably the solution they are looking for.http://stackoverflow.com/questions/1861204/disabling-access-to-exec-functions/1861273#1861273Comment by dicroce on Disabling access to "exec" functions ?dicroce2009-12-08T19:15:35Z2009-12-08T19:15:35ZVery true... I'm not sure there is a way to make this foolproof... I supposed if you were willing to make kernel modifications...http://stackoverflow.com/questions/1759093/win32-createwindow-call-hangs-in-child-thread/1759252#1759252Comment by dicroce on Win32 CreateWindow() call hangs in child thread?dicroce2009-11-19T02:45:23Z2009-11-19T02:45:23ZIn my case, the parent will not be destroyed until after ALL of its children have been...http://stackoverflow.com/questions/1759093/win32-createwindow-call-hangs-in-child-thread/1759231#1759231Comment by dicroce on Win32 CreateWindow() call hangs in child thread?dicroce2009-11-19T02:44:14Z2009-11-19T02:44:14ZHmm... Well, I actually did get it to work... Basically, I just needed to get the parents message pump pumping... then it all started working... But you're comments worry me... How sure are you of this being a bad thing?http://stackoverflow.com/questions/1759093/win32-createwindow-call-hangs-in-child-thread/1759252#1759252Comment by dicroce on Win32 CreateWindow() call hangs in child thread?dicroce2009-11-18T21:48:37Z2009-11-18T21:48:37ZThere is no interaction between parent and child... So I don't know what the SendMessage and PostMessage stuff is for... How sure are you of your second paragraph? Is this a general limitation of Win32?http://stackoverflow.com/questions/1759093/win32-createwindow-call-hangs-in-child-thread/1759231#1759231Comment by dicroce on Win32 CreateWindow() call hangs in child thread?dicroce2009-11-18T21:47:32Z2009-11-18T21:47:32ZThis is not what I'm trying to do. I want each thread to take care of ONLY the windows that it creates... I just need to create a window with a parent created by another thread...http://stackoverflow.com/questions/1753369/review-c-selectors-and-method-delegatesComment by dicroce on [review?] C++ selectors and method delegatesdicroce2009-11-18T03:05:12Z2009-11-18T03:05:12ZWhere's the question?http://stackoverflow.com/questions/1749972/determine-the-current-hinstance/1750008#1750008Comment by dicroce on Determine the current HINSTANCE?dicroce2009-11-17T16:25:21Z2009-11-17T16:25:21ZThat assumes I already have a window (and thus, and hwnd)... I'm trying to push the job of window creation out to my library... http://stackoverflow.com/questions/1749972/determine-the-current-hinstance/1750008#1750008Comment by dicroce on Determine the current HINSTANCE?dicroce2009-11-17T16:21:41Z2009-11-17T16:21:41ZIs that method MFC only?http://stackoverflow.com/questions/1580471/how-to-mix-c-and-external-buttons-on-seperate-window/1658902#1658902Comment by dicroce on How to mix C++ and external buttons on seperate window?dicroce2009-11-02T02:14:10Z2009-11-02T02:14:10ZThe beauty of Stackoverflow is that sometimes you get great answers, even when the original question was totally unintelligible...http://stackoverflow.com/questions/1658695/solid-foundation-in-programming-for-windows-internals/1658711#1658711Comment by dicroce on Solid Foundation in programming for windows (Internals)dicroce2009-11-01T23:10:53Z2009-11-01T23:10:53ZThe question was "What do you think?"... and "Windows programmer" answered it...http://stackoverflow.com/questions/1658639/what-is-a-good-free-rdbms-solution-for-a-small-web-project-that-may-grow-large-if/1658665#1658665Comment by dicroce on What is a good free RDBMS solution for a small web project that may grow large if successful?dicroce2009-11-01T23:01:37Z2009-11-01T23:01:37ZFor a long time, postgresql was the clear winner when you actually counted up the features.. I think mysql finally has triggers now, but last I looked they still didn't have an inbuilt language for stored procedures (both of which postgres had for forever)... that said, mysql was always slightly faster... The trade off used to be features / performance...http://stackoverflow.com/questions/1658408/array-of-buffers-in-c-programmingComment by dicroce on Array of buffers in C programming?dicroce2009-11-01T21:39:53Z2009-11-01T21:39:53ZWhat is the value of n?