User slicedlime - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T09:40:18Z http://stackoverflow.com/feeds/user/11230 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1389032/trying-to-run-64-bit-tests-on-32-bit-windows 2 Trying to run 64-bit tests on 32-bit windows slicedlime 2009-09-07T11:56:03Z 2009-09-07T13:38:30Z <p>We're running our unit tests as a post-build step in our builds. Now I've run into a problem with this on our autobuild machines that automatically pull and build every revision in svn.</p> <p>The autobuild script pulls down a revision, does some setup and then calls devenv.exe /build on it. This, in turn, will build everything and then try to run the tests. The build gets stuck and never completes.</p> <p>If you build the solution manually, what happens at the run tests point is a popup dialog box saying the test executable is not a valid Win32 application. I'm assuming the autobuilds somehow get this box as well, but hidden away in a non-interactive session somewhere.</p> <p>I've had two ideas for a solution this far:</p> <ol> <li><p>Check in a test-runner application which tries to run the tests and detects the failure. This is undesirable though since this would mean creating this extra kludge of code and adding it to be used only on windows builds etc.</p></li> <li><p>Somehow test if windows is 32-bit or 64-bit in the build scripts (we're running cmake), and simply don't run the tests if they wouldn't work. This is preferable, but requires a way of checking if windows is 32-bit or 64-bit, preferably without having to check in another "test-windows-type" helper tool.</p></li> </ol> <p>Any further ideas or hints on how to implement suggestion 2 would be much appreciated.</p> <p><strong>Update:</strong> Note here: This is a cross-compile running on a 32-bit machine but compiling a 64-bit exe. If I could just check properties of the compiler, there wouldn't have been a problem. But I'm after properties of the <em>build machine</em>, not of the build itself, which is clearly 64-bit.</p> http://stackoverflow.com/questions/1389032/trying-to-run-64-bit-tests-on-32-bit-windows/1389363#1389363 0 Answer by slicedlime for Trying to run 64-bit tests on 32-bit windows slicedlime 2009-09-07T13:09:42Z 2009-09-07T13:09:42Z <p>I found out one way to identify if the system is 64-bit or not, which should be possible to access from cmake. It feels as a rather ugly hack though that could break on any random version of windows, so I'd still rather find another way.</p> <p>The %ProgramFiles(x86)% environment variable only exists in 64bit OS versions.</p> http://stackoverflow.com/questions/1343577/checking-if-a-registry-key-exists 1 Checking if a registry key exists slicedlime 2009-08-27T20:26:16Z 2009-08-28T10:15:37Z <p>I am looking for a clean way to check if a registry key exists. I had assumed that RegOpenKey would fail if I tried to open a key that didn't exist, but it doesn't.</p> <p>I could use string processing to find and open the parent key of the one I'm looking for, and then enumerating the subkeys of that key to find out if the one I'm interested in exists, but that feels both like a performance hog and like a weird way to have to implement such a simple function.</p> <p>I'd guess that you could use RegQueryInfoKey for this somehow, but MSDN doesn't give too many details on how, in case it's possible.</p> <p><strong>Update</strong>: I need the solution in straight win32 api, not in managed code, .NET or any other library.</p> <p>The docs in MSDN seem to indicate that you should be able to open a key for read permission and get an error if it doesn't exist, like this:</p> <pre><code>lResult = RegOpenKeyEx (hKeyRoot, lpSubKey, 0, KEY_READ, &amp;hKey); if (lResult != ERROR_SUCCESS) { if (lResult == ERROR_FILE_NOT_FOUND) { </code></pre> <p>However, I get ERROR_SUCCESS when I try this.</p> <p><strong>Update 2</strong>: My exact code is this:</p> <pre><code>HKEY subKey = nullptr; LONG result = RegOpenKeyEx(key, subPath.c_str(), 0, KEY_READ, &amp;subKey); if (result != ERROR_SUCCESS) { </code></pre> <p>... but result comes out as ERROR_SUCCESS, even though I've put in a key that does not exist.</p> <p><strong>Update 3</strong>: It looks like you guys are right. This fails on one specific test example (mysteriously). If I try it on any other key, it returns the correct result. Doublechecking it with the registry editor still does not show the key. Dunno what to make of that at all.</p> http://stackoverflow.com/questions/878057/delete-a-registry-key-recursively/1343506#1343506 -1 Answer by slicedlime for Delete a registry key recursively slicedlime 2009-08-27T20:10:15Z 2009-08-27T20:10:15Z <p>You're looking for the <a href="http://msdn.microsoft.com/en-us/library/aa379776%28VS.85%29.aspx" rel="nofollow">RegDeleteTree</a>() function. Just replace RegDeleteKey with it.</p> <p>Apparently, it took them a while to figure it out, so if you want to support XP or older, you need to have your own implementation of it.</p> http://stackoverflow.com/questions/101468/how-can-you-improve-your-work-environment 3 How can you improve your work environment? slicedlime 2008-09-19T12:34:26Z 2009-06-22T01:37:01Z <p>Work environment vary wildly. Some lucky few have the luxury of private offices while most of us are situated in some version or other of the open office space.</p> <p>I'm looking for hints and tips of what each and every one of us can do, regardless of the details of your office layout, to improve our work environment. I realize there are always problems that you can not do much about and your boss refuses to solve, but what I'm looking for here are things that each and every professional developer can do.</p> <p>What do you do to keep your focus up if your environment is loud? What are the small things you do during the workday to keep feeling comfortable through long programming sessions? How do you set up your equipment the best way?</p> <p>Please share your best "Pimp my desk" experiences.</p> http://stackoverflow.com/questions/566472/where-is-the-gcov-symbols/879383#879383 2 Answer by slicedlime for Where is the gcov symbols? slicedlime 2009-05-18T19:33:42Z 2009-05-19T19:12:48Z <p>I just spent an incredible amount of time debugging a very similar error. Here's what I learned:</p> <ul> <li>You have to pass -fprofile-arcs -ftest-coverage when compiling.</li> <li>You have to pass -fprofile-arcs when linking.</li> <li><p>You can still get weird linker errors when linking. They'll look like this:</p> <p>libname.a(objfile.o):(.ctors+0x0): undefined reference to `global constructors keyed to long_name_of_file_and_function'</p></li> </ul> <p>This means that gconv's having problem with one of your compiler-generated constructors (in my case, a copy-constructor). Check the function mentioned in the error message, see what kinds of objects it copy-constructs, and see if any of those classes doesn't have a copy constructor. Add one, and the error will go away.</p> <p>Edit: Whether or not you optimize can also affect this. Try turing on / switching off optimizations if you're having problems with it.</p> http://stackoverflow.com/questions/519900/how-to-assign-alt-f1-key-to-an-opened-windows-application/523902#523902 0 Answer by slicedlime for How to assign alt + f1 key to an opened Windows application slicedlime 2009-02-07T15:06:18Z 2009-02-07T15:06:18Z <p>There's a fair number of shareware apps for keyboard shortcuts out there. Take a look at Stardock's <a href="http://www.stardock.com/products/klp/" rel="nofollow">Keyboard Launchpad</a>, it's supposed to be able to do stuff like that.</p> http://stackoverflow.com/questions/476152/windows-window-docking 0 Windows window docking slicedlime 2009-01-24T15:33:12Z 2009-01-24T16:38:08Z <p>I'm wondering how to dock / snap a window to the side of the screen in Windows, preferably with straight Win32 API. The effect I'm looking for is like the task bar -- a window that has a reserved space on screen, so that maximizing another window makes that window take up the rest of the screen, but leaves my window in place and visible.</p> <p>I know various IM clients do this, but haven't been able to find any resources on how to do it. Not sure what the appropriate name for it is either.</p> <p>Edit: "Application Desktop Toolbar" is the search term to use to find info on this.</p> http://stackoverflow.com/questions/91935/windows-api-spying-hijacking-techniques 3 Windows API spying/hijacking techniques slicedlime 2008-09-18T12:10:07Z 2008-10-21T17:58:19Z <p>I'm interested in using API spying/hijacking to implement some core features of a project I'm working on. It's been mentioned <a href="http://stackoverflow.com/questions/60641/how-to-replace-winapi-functions-calls-in-the-ms-vc-project-with-my-own-implemen">in this question</a> as well, but that wasn't really on topic so I figured it'd be better with a question of its own for this.,</p> <p>I'd like to gather as much information as possible on this, different techniques/libraries (<a href="http://research.microsoft.com/sn/detours/" rel="nofollow">MS Detours</a>, <a href="http://www.codeproject.com/KB/system/hooksys.aspx" rel="nofollow">IAT patching</a>) or other suggestions.</p> <p>Also, it'd be especially interesting to know if someone has any real production experience of using such techniques -- can they be made stable enough for production code or is this strictly a technique for research? Does it work properly over multiple versions of windows? How bug prone is it?</p> <p>Personal experiences and external links both appreciated.</p> http://stackoverflow.com/questions/138227/getting-started-with-pair-programming/138961#138961 1 Answer by slicedlime for Getting Started with Pair Programming slicedlime 2008-09-26T11:51:53Z 2008-09-26T11:51:53Z <p>What I used to do on a previous project was not to enforce pair programming, but to open for it. We'd code away at our own pieces of the project doing the mundane and the ordinary, and then once in a while we'd stop and have a long discussion of architecture or such.</p> <p>Every so often one of us would end up with something tricky, and we'd naturally end up pair programming for a while through the difficult segments. I find that one of the most useful part of the exercise is that it forces you to explain what you're doing, and in order to make someone understand it you'll have to straighten out the concepts in your own head first.</p> <p>This also applies to a less strict form of pair programming, which is simply a form of reviewing... sit as if you'd be pair programming and let him guide you through the code (that he's already written), or do pair debugging.</p> <p>If you're just starting out with pair programming and he knows the project, then you have a perfect opportunity to let him do the programming while working on old code -- he can explain the thought behind it to you and help you understand it. When it comes to writing new code, you can take the coding position instead and explain your views on things to him. This both lets you learn the codebase and lets him learn from your way of thinking.</p> http://stackoverflow.com/questions/101294/building-a-new-operating-system/101319#101319 18 Answer by slicedlime for Building a new operating system slicedlime 2008-09-19T12:02:07Z 2008-09-19T12:02:07Z <p>To answer the first question: It's never too late. Especially when it comes to niche market segments and stuff like that. </p> <p>Second though, before you start down the path of creating a new OS, you should understand the kind of undertaking it is: it'd be a massive project.</p> <p>Is it just a normal programmer "scratch the itch" kind of project? If so, then by all means go ahead -- you might learn alot of things by doing it. But if you're doing it for the resulting product, then you shouldn't start down that path until you've looked at all the current OSes under development (there are alot more than you'd think at first) and figured out what you'd like to change in them.</p> <p>Quite possibly the effort would be better spent improving/changing an existing open source system. Even for your own experimentation, it may be easier to get the results you want if you start out with something already in development.</p> http://stackoverflow.com/questions/2187/essential-programming-tools/92741#92741 7 Answer by slicedlime for Essential Programming Tools slicedlime 2008-09-18T13:55:37Z 2008-09-18T13:55:37Z <p>If you're coding with Visual Studio, <a href="http://www.wholetomato.com/" rel="nofollow">Visual Assist X</a> is one of the best addons you could ever find.</p> http://stackoverflow.com/questions/92546/variable-declarations-in-header-files-static-or-not/92693#92693 2 Answer by slicedlime for Variable declarations in header files - static or not? slicedlime 2008-09-18T13:50:21Z 2008-09-18T13:50:21Z <p>The static will mean you get one copy per file, but unlike others have said it's perfectly legal to do so. You can easily test this with a small code sample:</p> <p>test.h:</p> <pre><code>static int TEST = 0; void test(); </code></pre> <p>test1.cpp:</p> <pre><code>#include &lt;iostream&gt; #include "test.h" int main(void) { std::cout &lt;&lt; &amp;TEST &lt;&lt; std::endl; test(); } </code></pre> <p>test2.cpp:</p> <pre><code>#include &lt;iostream&gt; #include "test.h" void test() { std::cout &lt;&lt; &amp;TEST &lt;&lt; std::endl; } </code></pre> <p>Running this gives you this output:</p> <blockquote> <p>0x446020<br /> 0x446040</p> </blockquote> http://stackoverflow.com/questions/80923/how-to-find-header-dependencies-for-large-scale-projects-on-linux/80975#80975 2 Answer by slicedlime for How to find header dependencies for large scale projects on linux slicedlime 2008-09-17T08:01:45Z 2008-09-17T08:01:45Z <p>Tools like <a href="http://www.doxygen.org" rel="nofollow">doxygen</a> (used with the graphviz options) can generate dependency graphs for include files... I don't know if they'd provide enough overview for what you're trying to do, but it could be worth trying.</p> http://stackoverflow.com/questions/73134/will-this-c-code-cause-a-memory-leak-casting-array-new/73201#73201 5 Answer by slicedlime for Will this C++ code cause a memory leak (casting array new) slicedlime 2008-09-16T14:52:55Z 2008-09-16T14:52:55Z <p>The behaviour of the code is undefined. You may be lucky (or not) and it may work with your compiler, but really that's not correct code. There's two problems with it:</p> <ol> <li>The delete should be a vector delete.</li> <li>The delete should delete the same type as the new.</li> </ol> <p>So to be entirely correct, you want to be doing something like this:</p> <pre><code>delete [] (BYTE*)(pStruct); </code></pre> http://stackoverflow.com/questions/72383/whats-the-point-of-perl-golf/72423#72423 4 Answer by slicedlime for What's the point of Perl golf? slicedlime 2008-09-16T13:50:26Z 2008-09-16T13:50:26Z <p>What's the point of the obfuscated C code contest? Or any other such thing? It's just another programmer passtime, and another way to practice your skill, sharpen your mind and have a fun competition with fellow programmers.</p> http://stackoverflow.com/questions/72128/fastest-way-to-find-if-a-3d-coordinate-is-already-used/72178#72178 1 Answer by slicedlime for Fastest way to find if a 3D coordinate is already used slicedlime 2008-09-16T13:30:49Z 2008-09-16T13:30:49Z <p>Well, it depends on what's most important... if a tripple map is too tedious to use, then is implementing other data structures not worth the effort?</p> <p>If you want to get around the uglyness of the tripple map solution, just wrap it up in another container class with an access function with three parameter, and hide all the messing around with maps internally in that.</p> <p>If you're more worried about the runtime performance of this thing, storing the coordinates in an <a href="http://en.wikipedia.org/wiki/Octree" rel="nofollow">Octree</a> might be a good idea.</p> <p>Also worth mentioning is that doing these sorts of things with floats or doubles you should be very careful about precision -- if (0, 0, 0.01) the same coordinate as (0, 0, 0.01000001)? If it is, you'll need to look at the comparison functions you use, regardless of the data structure. That also depends on the source of your coordinates I guess.</p> http://stackoverflow.com/questions/72010/c-overload-resolution/72086#72086 0 Answer by slicedlime for c++ overload resolution slicedlime 2008-09-16T13:20:37Z 2008-09-16T13:20:37Z <p>The function is hidden by the function with the same name in the subclass (but with a different signature). You can unhide it by using the using statement, as in using A::DoSomething();</p> http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/70348#70348 0 Answer by slicedlime for char[] to hex string exercise slicedlime 2008-09-16T08:25:35Z 2008-09-16T08:25:35Z <p>I'm not sure doing it more bytes at a time will be better... you'll probably just get tons of cache misses and slow it down significantly.</p> <p>What you might try is to unroll the loop though, take larger steps and do more characters each time through the loop, to remove some of the loop overhead.</p> http://stackoverflow.com/questions/62918/using-gcc-from-within-vs-20058-ide/69921#69921 1 Answer by slicedlime for Using GCC from within VS 2005(8) IDE slicedlime 2008-09-16T06:54:41Z 2008-09-16T06:54:41Z <p>There are certainly ways to do this -- this is how we develop for the PS3 with sony's toolchain (which is based on gcc). I don't know exactly how that works, but it integrates pretty seamlessly into VS.</p> <p>I think what you need to do is either set it up to build with a makefile (probably easiest) or to write a wrapper program that converts VC arguments to gcc ones. Also, if you want the error/warning output in the VS format (so you can click it and get that file/line up in the editor), you need something to convert the output.</p> <p>This stuff may help you in <a href="http://www.xs4all.nl/~borkhuis/vxworks/vxw_pt1.html#1.13" rel="nofollow">a related discussion</a> about using VS with WRS/VxWorks version of the gcc tools:</p> <p>Especially note the <a href="http://www.xs4all.nl/~borkhuis/vxworks/gnu2msdev.cpp" rel="nofollow">program linked there</a> which converts the error output.</p> http://stackoverflow.com/questions/1389032/trying-to-run-64-bit-tests-on-32-bit-windows/1389475#1389475 Comment by slicedlime on Trying to run 64-bit tests on 32-bit windows slicedlime 2009-09-07T13:46:52Z 2009-09-07T13:46:52Z Sounds like I was looking for. Only weirdness I can find with this is that running cygwin seems to overwrite the value with x86. http://stackoverflow.com/questions/1389032/trying-to-run-64-bit-tests-on-32-bit-windows/1389137#1389137 Comment by slicedlime on Trying to run 64-bit tests on 32-bit windows slicedlime 2009-09-07T13:00:05Z 2009-09-07T13:00:05Z Sorry that was a bit unclear, that should have said having it run on 32-bit XP. http://stackoverflow.com/questions/1389032/trying-to-run-64-bit-tests-on-32-bit-windows/1389122#1389122 Comment by slicedlime on Trying to run 64-bit tests on 32-bit windows slicedlime 2009-09-07T12:53:14Z 2009-09-07T12:53:14Z The size of a pointer reflects the settings of the build (just like the cmake generator, like someone else suggested), not the properties of the build machine. http://stackoverflow.com/questions/1389032/trying-to-run-64-bit-tests-on-32-bit-windows/1389137#1389137 Comment by slicedlime on Trying to run 64-bit tests on 32-bit windows slicedlime 2009-09-07T12:52:37Z 2009-09-07T12:52:37Z Well, there are other good reasons for having the build run on XP. Preferably would do both, but if I have to choose I'll have to go with the 32-bit box. And I do have to choose at the moment, sadly. http://stackoverflow.com/questions/1389032/trying-to-run-64-bit-tests-on-32-bit-windows/1389049#1389049 Comment by slicedlime on Trying to run 64-bit tests on 32-bit windows slicedlime 2009-09-07T12:07:26Z 2009-09-07T12:07:26Z The CMake generator is 64 bit since we're compiling a 64 bit exe... so that doesn't really help. This is a cross-compile running on a 32-bit box. http://stackoverflow.com/questions/1343577/checking-if-a-registry-key-exists/1343599#1343599 Comment by slicedlime on Checking if a registry key exists slicedlime 2009-08-27T20:58:33Z 2009-08-27T20:58:33Z Well, this is not so much a case of premature optimization as of not wanting to add that kind of complexity to the code. http://stackoverflow.com/questions/531502/vc-resources-in-a-static-library/531790#531790 Comment by slicedlime on VC++ resources in a static library slicedlime 2009-08-14T19:31:16Z 2009-08-14T19:31:16Z I've actually done your option 2, and it's not all that hard. You need to build a parser for the .res file format as well, which is well documented and not too terrible. http://stackoverflow.com/questions/566472/where-is-the-gcov-symbols/567296#567296 Comment by slicedlime on Where is the gcov symbols? slicedlime 2009-05-18T19:06:55Z 2009-05-18T19:06:55Z -fprofile-arcs implies -lgcov http://stackoverflow.com/questions/27607/is-this-code-an-abuse-of-stls-findif/27631#27631 Comment by slicedlime on Is this code an abuse of STL's find_if? slicedlime 2008-09-19T15:55:48Z 2008-09-19T15:55:48Z Using the comments feature for commenting might seem appropriate. Your answers may be voted all over the place, so there's no real way to have a discussion as such. That or editing your original question to reflect new info.