User kbluck - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T13:32:01Zhttp://stackoverflow.com/feeds/user/13402http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/549983/not-necessary-to-export-class-with-only-virtual-inline-functions2Not necessary to export class with only virtual/inline functions?kbluck2009-02-14T23:29:10Z2009-11-11T07:07:10Z
<p>In C++ on Win32: </p>
<p>Suppose I have a DLL with a header file that declares a class. The DLL exports some means of obtaining a pointer/reference to an instance of that class, such as a factory function.</p>
<p>Am I correct in believing that it is not necessary to mark that class as exported using __declspec if one is only going to call virtual or inline functions on its instances?</p>
<p>Conversely, is it necessary to export the class declaration if one wishes to call nonvirtual member functions?</p>
http://stackoverflow.com/questions/1546510/declaring-fixed-size-integer-typedef-in-standard-c1Declaring fixed-size integer typedef in Standard Ckbluck2009-10-09T23:26:12Z2009-10-10T13:18:34Z
<p>Is there a reliable way to declare typedefs for integer types of fixed 8,16,32, and 64 bit length in ISO Standard C?</p>
<p>When I say ISO Standard C, I mean that strictly:</p>
<ul>
<li>ISO C89/C90, not C99. </li>
<li>No headers not defined in the ISO standard.</li>
<li>No preprocessor symbols not defined in the ISO standard.</li>
<li>No type-size assumptions not specified in the ISO standard.</li>
<li>No proprietary vendor symbols.</li>
</ul>
<p>I see other questions similar to this in StackOverflow, but no answers yet that do not violate one of the above constraints. I'm not sure it's possible without resorting to platform symbols.</p>
http://stackoverflow.com/questions/1546504/how-long-would-it-take-you-to-program-a-site-like-stackoverflow/1546531#15465311Answer by kbluck for How long would it take you to Program a Site like Stackoverflowkbluck2009-10-09T23:31:50Z2009-10-09T23:31:50Z<p>Although the question doesn't say it in so many words, there is a strong implication that SO would be easy to reimplement.</p>
<p>Benjamin Pollack already blogged about why this is a ridiculous assumption.</p>
<p><a href="http://blog.bitquabit.com/2009/07/01/one-which-i-call-out-hacker-news/" rel="nofollow">http://blog.bitquabit.com/2009/07/01/one-which-i-call-out-hacker-news/</a></p>
<p>Jeff Atwood too.</p>
<p><a href="http://www.codinghorror.com/blog/archives/001284.html" rel="nofollow">http://www.codinghorror.com/blog/archives/001284.html</a></p>
http://stackoverflow.com/questions/230364/how-to-get-rpath-with-origin-to-work-on-codeblocks-gcc0How to get RPATH with $ORIGIN to work on Code::Blocks GCC?kbluck2008-10-23T16:15:35Z2009-09-30T22:29:47Z
<p>I'm trying to link an RPATH containing the special string $ORIGIN into an executable built using GCC with the Code::Blocks IDE. I've specified</p>
<pre><code>-Wl,-R$ORIGIN
</code></pre>
<p>in the linker options for the project, but the command line output to GCC is wrong (stripped for clarity):</p>
<pre><code>g++ -Wl,-R
</code></pre>
<p>What is the correct way to specify this argument for Code::Blocks?</p>
http://stackoverflow.com/questions/595765/mount-executable-as-file-on-linux-unix-filesystem1Mount executable as file on Linux/Unix filesystemkbluck2009-02-27T17:32:31Z2009-03-07T05:15:02Z
<p>Is it possible to make an executable look like a read-only file on Linux, such that opening the "file" for reading actually executes the file and makes its stdout available for reading as if it were data in the "file"? It should be openable by any program that knows how to open a file for reading, for example 'cat'.</p>
http://stackoverflow.com/questions/193161/what-is-the-best-project-structure-for-a-python-application9What is the best project structure for a Python application?kbluck2008-10-10T21:50:34Z2009-01-06T19:48:01Z
<p>Imagine that you want to develop a non-trivial end-user desktop (not web) application in Python. What is the best way to structure the project's folder hierarchy?</p>
<p>Desirable features are ease of maintenance, IDE-friendliness, suitability for source control branching/merging, and easy generation of install packages.</p>
<p>In particular:</p>
<ol>
<li>Where do you put the source?</li>
<li>Where do you put application startup scripts?</li>
<li>Where do you put the IDE project cruft?</li>
<li>Where do you put the unit/acceptance tests?</li>
<li>Where do you put non-Python data such as config files?</li>
<li>Where do you put non-Python sources such as C++ for pyd/so binary extension modules?</li>
</ol>
http://stackoverflow.com/questions/207069/how-to-link-using-gcc-without-l-and-without-hardcoding-path3How to link using GCC without -l and without hardcoding pathkbluck2008-10-16T00:58:54Z2008-11-11T15:42:23Z
<p>I have a shared library that I wish to link an executable against using GCC. The shared library has a nonstandard name not of the form libNAME.so, so I can not use the usual -l option. (It happens to also be a Python extension, and so has no 'lib' prefix.) I am able to pass the path to the library file directly to the link command line, but this causes the library path to be hardcoded into the executable.</p>
<p>For example:</p>
<pre><code>g++ -o build/bin/myapp build/bin/_mylib.so
</code></pre>
<p>Is there a way to link to this library without causing the path to be hardcoded into the executable?</p>
http://stackoverflow.com/questions/107888/is-there-a-windows-msvc-equivalent-to-the-rpath-linker-flag/230425#2304251Answer by kbluck for Is there a Windows/MSVC equivalent to the -rpath linker flag?kbluck2008-10-23T16:31:56Z2008-10-23T16:31:56Z<p>Sadly there is no direct analogue to RPATH. There are a number of alternative possibilities, each of them most likely undesirable to you in its own special way.</p>
<p>Given that you need a different exe for each build flavor anyway to avoid runtime library clashes, as you might guess the easiest thing to do is to put each exe in the same folder as each set of DLLs.</p>
<p>As you also mentioned, the most universal method is to change the PATH variable by using a batch file to bootstrap the exe.</p>
<p>You could instead change the current working directory before running the program to the desired DLL folder.</p>
<p>You can use the function SetDllDirectory inside your exe. This is probably the closest to an RPATH, but only works on WinXP SP1 or later.</p>
<p>If you're willing to alter the file name of each exe flavor, you can use the "App Paths" registry key. Each exe would need a unique filename.</p>
http://stackoverflow.com/questions/230364/how-to-get-rpath-with-origin-to-work-on-codeblocks-gcc/230376#2303760Answer by kbluck for How to get RPATH with $ORIGIN to work on Code::Blocks GCC?kbluck2008-10-23T16:16:21Z2008-10-23T16:16:21Z<p>Whoever decided to make the token $ORIGIN is an evil bastard who deserves a special place in programmer hell. Since '$' is a special character for bash and other scripting languages like make, it screws everything up unless carefully escaped. Even worse, depending on which build environment you're using, the specifics of how to escape properly will likely change.</p>
<p>In bash, you need to stick a backslash in front of the $:</p>
<pre><code>-Wl,-R\$ORIGIN
</code></pre>
<p>Code::Blocks apparently also treats the $ as special. Then, whatever subprocess controller Code::Blocks sends the command to treats the backslash as special. So, both the backslash and the $ need to be doubled up to get escaped properly. Therefore, in Code::Blocks linker settings, you need to specify:</p>
<pre><code>-Wl,-R\\$$ORIGIN
</code></pre>
<p>...which outputs:</p>
<pre><code>-Wl,-R\\$ORIGIN
</code></pre>
<p>...to the build log, but the shell actually gets sent:</p>
<pre><code>-Wl,-R\$ORIGIN
</code></pre>
<p>...which as mentioned above produces the desired result.</p>
<p>What a pain.</p>
http://stackoverflow.com/questions/208373/wxwidgets-how-to-initialize-wxapp-without-using-macros-and-without-entering-the/212953#212953-1Answer by kbluck for wxWidgets: How to initialize wxApp without using macros and without entering the main application loop?kbluck2008-10-17T16:55:45Z2008-10-23T15:44:26Z<p>You want to use the function:</p>
<pre><code>bool wxEntryStart(int& argc, wxChar **argv)
</code></pre>
<p>instead of wxEntry. It doesn't call your app's OnInit() or run the main loop.</p>
<p>You can call <code>wxTheApp->CallOnInit()</code> to invoke OnInit() when needed in your tests.</p>
<p>You'll need to use</p>
<pre><code>void wxEntryCleanup()
</code></pre>
<p>when you're done.</p>
http://stackoverflow.com/questions/24109/c-ide-for-linux/219039#2190391Answer by kbluck for C++ IDE for Linux?kbluck2008-10-20T16:23:11Z2008-10-20T16:23:11Z<p>I'm glad you seem to be working it out with vim. But I have to say, I'm a bit mystified about how you already "really like Eclipse for Java", implying that you're already familiar with how it works. In that case, why wouldn't you also use it for C++? CDT meets every requirement you've mentioned.</p>
http://stackoverflow.com/questions/134029/wxwidgets-setup-h-no-such-file/209172#2091724Answer by kbluck for wxwidgets setup.h "no such file"kbluck2008-10-16T15:55:02Z2008-10-16T15:55:02Z<p>wxWidgets is not built into useable libraries when you "install" the wxMSW installer. This is because there are so many configurable elements, which is precisely what the setup.h you refer to is for.</p>
<p>If you just want to build it with default options as quickly as possible and move on, here is how:</p>
<ol>
<li><p>Start the "Visual Studio Command Prompt." You'll find this in the start menu under "Microsoft Visual Studio -> Visual Studio Tools".</p></li>
<li><p>Change to folder: [WXWIN root]\build\msw</p></li>
<li><p>Build default debug configuration: <code>nmake -f makefile.vc BUILD=debug</code></p></li>
<li><p>Build default release configuration: <code>nmake -f makefile.vc BUILD=release</code></p></li>
<li><p>Make sure the DLLs are in your PATH. They'll be found in [WXWIN root]\lib\vc_dll</p></li>
<li><p>Under the DLL folder mentioned above, you will find subfolders for each build variant (The instructions above made two, debug and release.) In each variant folder you'll find a 'wx' folder containing a 'setup.h" file. You'll see that the setup.h files are actually different for each build variant. These are the folders you need to add to your project build configuration include path, one per build variant. So, for example, you'd add [WXWIN root]\lib\vc_dll\mswud to the include path for your debug build, [WXWIN root]\lib\vc_dll\mswu for your release build.</p></li>
<li><p>It is possible to build lots of other variant combinations: static libs, monolithic single library, non-Unicode, etc. See [WXWIN root]\docs\msw\install.txt for much more extensive instructions.</p></li>
</ol>
http://stackoverflow.com/questions/193170/subversion-switching-between-tags/193180#1931802Answer by kbluck for Subversion & switching between tagskbluck2008-10-10T22:02:59Z2008-10-10T22:02:59Z<p>Command line: svn switch URL</p>
<p>Use svn help switch for more detail.</p>
<p>However, I recommend doing things the other way around. Your production site is always on trunk, while you do your development on branches which get merged back to trunk when they're ready for release. After any given release, you can then do a tag for historical purposes. After the merge, you have only to do a svn update to get your site running the new code.</p>
<p>DivMod takes this idea to its logical conclusion, creating a branch for each issue/ticket being worked. You can <a href="http://divmod.org/trac/wiki/UltimateQualityDevelopmentSystem" rel="nofollow">read their description of their system</a>; it offers some convincing arguments.</p>
http://stackoverflow.com/questions/1546510/declaring-fixed-size-integer-typedef-in-standard-c/1546560#1546560Comment by kbluck on Declaring fixed-size integer typedef in Standard Ckbluck2009-10-11T17:36:57Z2009-10-11T17:36:57ZAlthough I acknowledge that there is no bulletproof solution, this answer comes closest to a practical workaround.http://stackoverflow.com/questions/1546510/declaring-fixed-size-integer-typedef-in-standard-c/1546539#1546539Comment by kbluck on Declaring fixed-size integer typedef in Standard Ckbluck2009-10-09T23:42:28Z2009-10-09T23:42:28ZYes, technically C99 is the current standard, but compiler support remains spotty and that would be far too easy to answer anyway. ;-)http://stackoverflow.com/questions/595765/mount-executable-as-file-on-linux-unix-filesystem/595776#595776Comment by kbluck on Mount executable as file on Linux/Unix filesystemkbluck2009-05-20T23:45:08Z2009-05-20T23:45:08ZTrue enough, but I was responding to your original suggestion of popen. A named pipe still doesn't meet the other part of my requirement in that opening the read side of the pipe does not automatically execute the process and connect it to the write side of the pipe.http://stackoverflow.com/questions/595765/mount-executable-as-file-on-linux-unix-filesystem/595776#595776Comment by kbluck on Mount executable as file on Linux/Unix filesystemkbluck2009-03-04T17:18:37Z2009-03-04T17:18:37ZYou're right, dmckee, I'm not looking for a pipe. I want something that can be opened by any arbitrary program that knows how to open a file for reading. I should have been more clear in my question.http://stackoverflow.com/questions/595765/mount-executable-as-file-on-linux-unix-filesystem/595779#595779Comment by kbluck on Mount executable as file on Linux/Unix filesystemkbluck2009-03-04T17:10:27Z2009-03-04T17:10:27ZThanks, exactly the pointer I needed.http://stackoverflow.com/questions/207069/how-to-link-using-gcc-without-l-and-without-hardcoding-path/281253#281253Comment by kbluck on How to link using GCC without -l and without hardcoding pathkbluck2008-12-15T19:33:57Z2008-12-15T19:33:57ZThis, sir, is exactly what I was looking for. Thanks!http://stackoverflow.com/questions/208373/wxwidgets-how-to-initialize-wxapp-without-using-macros-and-without-entering-the/212953#212953Comment by kbluck on wxWidgets: How to initialize wxApp without using macros and without entering the main application loop?kbluck2008-10-21T19:30:43Z2008-10-21T19:30:43ZMain windows are conventionally created in OnInit(). You can call wxTheApp->CallOnInit() to invoke it manually.
However, if the message pump is not running, most event-related parts of the window will not work. Perhaps this topic is moving into a new, different question about how to unit test GUIs?http://stackoverflow.com/questions/86676/is-there-a-good-and-free-ide-for-c-c-in-linux/86691#86691Comment by kbluck on Is there a good and free ide for c/c++ in linux?kbluck2008-10-20T16:16:45Z2008-10-20T16:16:45ZEclipse is golden for multilanguage projects. Given that many if not most C++ projects involve at least some XML/HTML or some scripting language, Eclipse looks really good.http://stackoverflow.com/questions/208373/wxwidgets-how-to-initialize-wxapp-without-using-macros-and-without-entering-the/212953#212953Comment by kbluck on wxWidgets: How to initialize wxApp without using macros and without entering the main application loop?kbluck2008-10-20T15:59:05Z2008-10-20T15:59:05ZCan you be more specific about what "not initialized" means? If you read the source code, you will see that wxEntry really doesn't do much more than invoke wxEntryStart() and then call the "OnInit()" and "OnRun()". I would think you'd want to call OnInit() manually in your tests.http://stackoverflow.com/questions/134029/wxwidgets-setup-h-no-such-file/134120#134120Comment by kbluck on wxwidgets setup.h "no such file"kbluck2008-10-16T15:57:13Z2008-10-16T15:57:13ZThe setup.h is not supposed to be in the include/wx folder. This would prevent you from using wxWidgets with multiple build configurations; debug, release, etc.
The build process actually copies appropriately configured setup.h headers to configuration-specific folders under [WXWIN root]\lib.