User que que - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T17:24:38Zhttp://stackoverflow.com/feeds/user/10278http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/972580/where-does-xcodes-open-quickly-search/1070840#10708400Answer by que que for Where does Xcode's open quickly search?que que2009-07-01T19:14:49Z2009-07-01T19:14:49Z<p>This isn't just a question for Cocoa devs. I use C++ in Xcode and I, too, would like to make "Open Quickly" work better for me.</p>
<p>Like Corey (the original asker), I would also like to know of any method that would allow me to direct the "Open Quickly" tool to the location in which I would like it to search when it searches for a header file.</p>
<p>I have one case in particular right now that is REALLY ODD.</p>
<p>If I change the double-quotes to SINGLE quotes in the directive line, such as <code> #include 'file.h' </code> instead of <code> #include "file.h" </code>, then the Open Quickly tool will open the header file for me.</p>
<p>Obviously, however, this is not a workable solution. I can't leave the directive written like that.</p>
<p>There must be a setting? Doesn't anyone know?</p>
http://stackoverflow.com/questions/372652/what-are-the-ruby-gotchas-a-newbie-should-be-warned-about/783115#7831151Answer by que que for What are the Ruby Gotchas a newbie should be warned about?que que2009-04-23T19:08:06Z2009-04-23T19:08:06Z<h3>Pay attention to the Range notation.</h3>
<p>(At least, pay more attention than <strong>I</strong> initially did!)</p>
<p>There is a difference between <strong><code>0..10</code></strong> (two dots) and <strong><code>0...10</code></strong> (three dots).</p>
<ul>
<li><a href="http://www.ruby-doc.org/core/classes/Range.html" rel="nofollow" title="http://www.ruby-doc.org/core/classes/Range.html">http://www.ruby-doc.org/core/classes/Range.html</a></li>
</ul>
<p>I love Ruby. I truly enjoy Ruby a great deal. But this dot-dot versus dot-dot-dot thing bugs me. I think that such a subtle dual-syntax "feature" that is:</p>
<ul>
<li>easy to mistype, and</li>
<li>easy to miss with your eyes while glancing over the code</li>
</ul>
<p>should not be able to cause devastating off-by-one bugs in my programs.</p>
<p>This is potentially my only criticism with the Ruby language. (and clearly, if this is the only thing that bugs me, then you can extrapolate how awesome I think Ruby is overall.)</p>
http://stackoverflow.com/questions/387894/unit-testing-c-templates/390234#3902341Answer by que que for Unit-testing C++ templatesque que2008-12-23T22:24:03Z2008-12-23T22:24:03Z<blockquote>
<p><strong>Note to the asker (to iocio):</strong> I apologize if you are already aware of
the techniques that I mention below.
I did not mean to obnoxiously "preach
to the choir." After I typed up my
response, I reread your question, and
you do seem to be experienced with
template techniques so you probably
already do something like what I
describe below. Sorry! In that case
hopefully some other reader of this
thread will be helped by this.</p>
</blockquote>
<p>I applaud your desire to achieve an effective level of testing. I do believe that you should attempt to unit test generic classes as best as you can. (Unfortunately, I do not have much specific advice on that point.)</p>
<p><strong>I have an <em>additional</em> suggestion.</strong> In addition to unit-testing each template, please examine various techniques that will help <strong>constrain</strong> the potentially vast universe of template arguments that your library users might try to pass to your templates.</p>
<p>For example: say that you only manage to test your templates using the type arguments "string" and "char". Say that you do not have proof that other type arguments will be problematic for this particular template, but for one reason or another you "suspect" that other untested type args <em>will</em> be problematic.</p>
<p>In a case such as the above example, you don't necessarily have a case that implies you need to exhaustively test other type args. Instead, you have a case that might imply you should simply employ some compile-time template metaprogramming techniques to ensure that your template is never used with any other arguments but "string" and "char". </p>
<p>I am probably not the best person to elaborate on such techniques (because I am still studying them myself), however I would strongly urge you to take a look at the following book. </p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0201704315" rel="nofollow">Modern C++ Design -- by Andrei Alexandrescu</a></p>
<p>Very early on in this book, the author shows examples such as:</p>
<ul>
<li><p><strong>how to make a template that will self-enforce that its first type arg be of a smaller type than its second type arg</strong></p></li>
<li><p><strong>how to detect convertibility and inheritance at compile time</strong></p></li>
</ul>
<p>"Modern C++ Design" (despite its rather broad/vague title) is a fairly advanced exploration of template programming techniques.</p>
<p><img src="http://content-0.powells.com/cgi-bin/imageDB.cgi?isbn=9780201704310" alt="book cover: Modern C++ Design" /></p>
http://stackoverflow.com/questions/364017/faster-bulk-inserts-in-sqlite3/370184#3701841Answer by que que for Faster bulk inserts in sqlite3?que que2008-12-16T00:34:19Z2008-12-16T00:34:19Z<p>The following is a nice compendium of tips:</p>
<p><a href="http://web.utk.edu/~jplyon/sqlite/SQLite_optimization_FAQ.html" rel="nofollow" title="sqlite speed tuning">SQLite optimization</a></p>
<p>Depending on the size of the data and the amount of RAM available, one of the best performance gains will occur by setting sqlite to use an all-in-memory database rather than writing to disk.</p>
<p>For in-memory databases, pass NULL as the filename argument to <code>sqlite3_open</code> and <a href="http://www.sqlite.org/pragma.html#pragma_temp_store" rel="nofollow">make sure that TEMP_STORE is defined appropriately</a></p>
<p>(All of the above text is excerpted from my own answer to a <a href="http://stackoverflow.com/questions/136175/fastest-small-datastore-on-windows#136714">separate sqlite-related question</a>)</p>
http://stackoverflow.com/questions/276620/how-to-develop-real-life-oop-skills/276646#2766462Answer by que que for How to develop *real life* oop skills?que que2008-11-09T23:12:00Z2008-11-09T23:29:50Z<p>I am currently half-way finished reading the following book:</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0131489062" rel="nofollow">http://www.amazon.com/Applying-UML-Patterns-Introduction-Object-Oriented/dp/0131489062</a></p>
<p><strong>I cannot recommend this book strongly enough</strong> in terms of learning a real-life, professional-grade, practical approach to drafting and applying a well-formed and iterative DESIGN strategy before diving into code. </p>
<p>I, too, read the "<strong>Head First</strong>" book and felt that I was much better off for having read it.</p>
<p>After having a few years of working-world experience, I now view the Craig Larman book that I am recommending to be a perfectly fitted "next step" for me.</p>
<h3>A Word-To-The-Wise About the Presence of "UML" in this Book Title:</h3>
<p>Whether you have "positive feelings" or "negative feelings" about UML notation, please do not let that influence your decision to buy the book (ISBN 0131489062) in either direction.</p>
<p>The prominence of "UML" in the title is somewhat misleading. While the author does use and explain UML notation, these explanations are extremely well-woven into relevant design discussions, and at no time does this book read like a boring UML spec.</p>
<p>In fact, here is a quote taken directly from the book:</p>
<blockquote>
<p>What's important is knowing how to think and design in objects, which is a very different and much more valuable skill than knowing UML notation. While drawing a diagram, we need to answer key questions: What are the responsibilities of the object? Who does it collaborate with? What design patterns should be applied? Far more important than knowing the difference between UML 1.4 and 2.0 !</p>
</blockquote>
<p>This book at times seems like it is "speaking to" a lead architect or a project manager. What I mean to say by that is that it assumes that the reader has significant control over the planning and direction of a software project.</p>
<p>Nonetheless, even if you are only responsible for some very small piece of your company's projects and products, I would still recommend this book and encourage you to apply some "scaled down" modifications of the book's advice to your piece of the project.</p>
http://stackoverflow.com/questions/184025/best-concrete-how-to-manual-on-managing-test-driven-and-or-agile-development4Best concrete "how-to manual" on MANAGING Test Driven and/or Agile development?que que2008-10-08T18:02:54Z2008-10-23T12:11:43Z
<p><strong>Obligatory up-front clarification</strong>: I have a great boss. Very smart guy. Respectful towards all. Dude is awesome. Seriously.</p>
<h2>Now for my question:</h2>
<h3>I am looking for an easily digestible book to possibly present to my boss/team.</h3>
<p><hr /></p>
<p><strong>Background info:</strong> More and more of our meetings at work involve my boss/team pondering how to implement more "best practices" around here. ("Here" = a very small application development shop. 4 developers)</p>
<p>The following things are items that my whole team agrees that we need:</p>
<ul>
<li>Nightly builds</li>
<li>Decomposing "bugs" in our bug-tracker into smaller, more-specific items</li>
<li>Automated testing</li>
</ul>
<h2><b>The problem we face is how to get started.</b></h2>
<p>I believe that if my shop could simply choose <strong><em>a clear and specific plan</em></strong> or set of rules, then everything else would fall into place. Right now we are stuck in discussions of fuzzy, feel-good ideas and nice-sounding buzzwords.</p>
<p>Please recommend to me your favorite book (or online resource) that contains clear, discrete, sequential steps for implementing a management scheme for guiding a TDD or Agile team/shop.</p>
<p>I realize that there are other paradigms besides TDD and Agile that would also address these concerns, but my own self-interests and biases point toward TDD and Agile so I would love to harness my team's desire for change and "nudge" it in that direction. Or feel free to slap me down if you vehemently disagree with my sentiments! I will take no offense. :)</p>
<h3>As others have stated, I think these questions are answered best when respondents list only one book recommendation per answer.</h3>
<p><hr /></p>
<p>Thank you all.</p>
http://stackoverflow.com/questions/176373/specific-help-with-xcode-project-template-that-is-not-doing-substitution-in-file/176492#1764920Answer by que que for Specific help with Xcode Project Template that is not doing substitution in file contentsque que2008-10-06T22:39:05Z2008-10-06T22:39:05Z<p>First thoughts: have you tried using Apple's "Property List Editor" to edit your plist(s)??? </p>
<p><code>/Developer/Applications/Utilities/Property\ List\ Editor.app</code></p>
<p>That should make sure that you save the plist files in the correct format.</p>
<p><strong>Choice of file encoding matters. Plist files typically have an encoding of UTF-8. If you save as ASCII, the double-angle quotes will not be encoded correctly.</strong></p>
<p>I, personally, have only ever gone as far as defining <code>__MyCompanyName__</code> inside the Xcode plist in ~/Library/Preferences</p>
<p>What I write below is not from personal experience, but rather from a book on my desk:</p>
<p>Tips:</p>
<p>TemplateInfo.plist should have 3 properties:</p>
<ul>
<li>Description</li>
<li>FilesToRename</li>
<li>FilesToMacroExpand</li>
</ul>
<p>FilesToRename is a dictionary of key/value pairs. Each pair contains the name of the original file in the project and the name it should be renamed to.</p>
<p>FilesToMacroExpand: the names in the list are the files in the new project, not the template, so if you are renaming files, use the name the file was changed to (this itself will involve template macros).</p>
<p><strong>Choice of file encoding matters. Plist files typically have an encoding of UTF-8. If you save as ASCII, the double-angle quotes will not be encoded correctly.</strong></p>
<p>Look at the system console log. Some problems during template processing/loading are logged there.</p>
<p>Study the Xcode templates that come pre-installed.</p>
<h3>Also worth mentioning:</h3>
<p><hr /></p>
<p>The FilesToRename property renames files in the project folder. It does not alter or fix any of the <strong><em>project references</em></strong> to the files. To do that, you have to <strong><em>manually</em></strong> insert template macros into the project.pbxproj file.</p>
http://stackoverflow.com/questions/145765/gdbinit-config-file-conflict-with-xcode-debugging/153797#1537974Answer by que que for .gdbinit config file conflict with Xcode debuggingque que2008-09-30T16:16:19Z2008-09-30T16:16:19Z<h2>My "short" answer:</h2>
<p><hr /></p>
<p>You may have noticed this already, but just in case:</p>
<p>First of all, even when you see that error, (assuming that you click past it and continue), then you should <strong>still be able to use 99% of the debugging features</strong> in Xcode. In other words, that error means that only a very small, specific portion of the debugger is "broken" for a given debugging session. It does <strong><em>not</em></strong> mean that debugging is completely down and/or impossible for the given program-execution.</p>
<p>Given the above fact, if you simply want to get rid of the error and do not care whether Custom Data Formatters are working or not, then REMOVE the check-mark next to the following menu item:</p>
<ul>
<li>Run -> Variables View -> Enable Data Formatters</li>
</ul>
<h2>My "long" answer:</h2>
<p><hr /></p>
<p>The developers in my office had been experiencing this very same Xcode error for quite a while until someone discovered that some third party libraries were the cause.</p>
<p>In our case, this error was happening only for projects using wxWidgets. I am not meaning to imply that usage of wxWidgets is the only possible cause. I am only trying to put forth more information that might lead to the right solution for your case. </p>
<p>Also of interest: we (in my office) were getting this error without any use or presence of any .gdbinit file whatsoever.</p>
<p>It turns out that the "property" of wxWidgets that made it trigger this error was related to a "custom/generic" implementation of "dlopen." Prior to Mac OS X 10.3,
dlopen was not provided within the operating system, so apparently some libraries coded their own versions. When such libraries are being used, then apparently the dlopen call that tries to open PBGDBIntrospectionSupport.A.dylib can fail.</p>
<p><a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1896410&group_id=9863&atid=309863" rel="nofollow">Read through the comments on this sourceforge patch submission to learn even further details about dlopen in 10.3 and beyond.</a></p>
<p>Also, here is another related link:</p>
<p><a href="http://lists.apple.com/archives/Xcode-users/2008/Mar/msg00240.html" rel="nofollow">Message on the Xcode users mailing list about PBGDBIntrospectionSupport and Custom Data Formatters</a></p>
http://stackoverflow.com/questions/141807/how-do-i-rename-an-entire-project-in-vc-2005/141955#1419550Answer by que que for How do I rename an entire project in VC++ 2005que que2008-09-26T21:01:08Z2008-09-26T21:01:08Z<p>I assume that in addition to the directory in which you now have the totally renamed set of files, I assume that you also still maintain a complete "parallel" set of the original files in some other directory, am I right?</p>
<p>Assuming you have both versions, what I would do (and what I personally have done in the past) is:</p>
<p>Get a file comparison tool like <a href="http://www.google.com/search?hl=en&q=%22beyond+compare%22+%22scooter+software%22&btnG=Search" rel="nofollow">Beyond Compare</a> or <a href="http://www.google.com/search?hl=en&q=sourcegear+diffmerge&btnG=Search" rel="nofollow">DiffMerge</a> and compare the old SLN file and the new SLN file side-by-side. Also do this for each "proj" file and any other "config" type files.</p>
<p>It is possible to edit these files by hand. Usually looking at what is different between two copies will help illuminate what you should do to get the second one working.</p>
<p>You might as well start tinkering with the renamed project by hand, anyway, given that it already isn't working. You can't make it too much worse. And: you might learn some handy tricks about the XML structure of these files.</p>
<p>Even if you do make small mistakes when hand-tweaking this files, I have repeatedly been very impressed by how Visual Studio handles things. Visual Studio will usually tell you exactly where you got it wrong with a message like this:</p>
<p><img src="http://members.dslextreme.com/users/kkj/Xcode/visual_studio_cant_parse_xml_popup.png" alt="alt text" title="Visual Studio failed to load during XML parsing" /></p>
http://stackoverflow.com/questions/138981/how-do-i-test-if-a-file-is-a-directory-in-a-batch-script/140663#1406633Answer by que que for How do I test if a file is a directory in a Batch script?que que2008-09-26T16:53:23Z2008-09-26T16:53:23Z<h2>The NUL technique seems to only work on 8.3 compliant file names.</h2>
<h3>(In other words, `D:\Documents and Settings` is "bad" and `D:\DOCUME~1` is "good")</h3>
<p><hr /></p>
<p>I think there is some difficulty using the "NUL" tecnique when there are SPACES in the directory name, such as "Documents and Settings."</p>
<p>I am using Windows XP service pack 2 and launching the cmd prompt from %SystemRoot%\system32\cmd.exe</p>
<p>Here are some examples of what DID NOT work and what DOES WORK for me:</p>
<p>(These are all demonstrations done "live" at an interactive prompt. I figure that you should get things to work there before trying to debug them in a script.)</p>
<p><strong>This DID NOT work:</strong></p>
<p><code>D:\Documents and Settings>if exist "D:\Documents and Settings\NUL" echo yes</code></p>
<p><strong>This DID NOT work:</strong></p>
<p><code>D:\Documents and Settings>if exist D:\Documents and Settings\NUL echo yes</code></p>
<p><strong>This DOES work (for me):</strong></p>
<p><code>D:\Documents and Settings>cd ..</code></p>
<p><code>D:\>REM get the short 8.3 name for the file</code></p>
<p><code>D:\>dir /x</code></p>
<p><code> Volume in drive D has no label.</code>
<code> Volume Serial Number is 34BE-F9C9</code></p>
<p><code> Directory of D:\</code>
<BR>
<code>09/25/2008 05:09 PM <DIR> 2008</code><BR>
<code>09/25/2008 05:14 PM <DIR> 200809~1.25 2008.09.25</code><BR>
<code>09/23/2008 03:44 PM <DIR> BOOST_~3 boost_repo_working_copy</code><BR>
<code>09/02/2008 02:13 PM 486,128 CHROME~1.EXE ChromeSetup.exe</code><BR>
<code>02/14/2008 12:32 PM <DIR> cygwin</code><BR></p>
<p>[[Look right here !!!! ]]<br>
<code>09/25/2008 08:34 AM <DIR> DOCUME~1 Documents and Settings</code><BR></p>
<p><code>09/11/2008 01:57 PM 0 EMPTY_~1.TXT empty_testcopy_file.txt</code><BR>
<code>01/21/2008 06:58 PM <DIR> NATION~1 National Instruments Downloads</code><BR>
<code>10/12/2007 11:25 AM <DIR> NVIDIA</code><BR>
<code>05/13/2008 09:42 AM <DIR> Office10</code><BR>
<code>09/19/2008 11:08 AM <DIR> PROGRA~1 Program Files</code><BR>
<code>12/02/1999 02:54 PM 24,576 setx.exe</code><BR>
<code>09/15/2008 11:19 AM <DIR> TEMP</code><BR>
<code>02/14/2008 12:26 PM <DIR> tmp</code><BR>
<code>01/21/2008 07:05 PM <DIR> VXIPNP</code><BR>
<code>09/23/2008 12:15 PM <DIR> WINDOWS</code><BR>
<code>02/21/2008 03:49 PM <DIR> wx28</code><BR>
<code>02/29/2008 01:47 PM <DIR> WXWIDG~2 wxWidgets</code><BR>
<code> 3 File(s) 510,704 bytes</code><BR>
<code> 20 Dir(s) 238,250,901,504 bytes free</code><BR></p>
<p><code>D:\>REM now use the \NUL test with the 8.3 name</code></p>
<p><code>D:\>if exist d:\docume~1\NUL echo yes</code></p>
<p><code>yes</code></p>
<p><strong>This works, but it's sort of silly, because the dot already implies i am in a directory:</strong></p>
<p><code>D:\Documents and Settings>if exist .\NUL echo yes</code></p>
http://stackoverflow.com/questions/136175/fastest-small-datastore-on-windows/136714#1367142Answer by que que for Fastest small datastore on Windowsque que2008-09-25T22:54:50Z2008-09-25T22:54:50Z<p>If you do begin to experiment with SQLite, you should know that "out of the box" it might not seem as fast as you would like, but it can quickly be made to be much faster by applying some established optimization tips:</p>
<p><a href="http://web.utk.edu/~jplyon/sqlite/SQLite_optimization_FAQ.html" rel="nofollow" title="sqlite speed tuning">SQLite optimization</a></p>
<p>Depending on the size of the data and the amount of RAM available, one of the best performance gains will occur by setting sqlite to use an all-in-memory database rather than writing to disk.</p>
<p>For in-memory databases, pass NULL as the filename argument to <code>sqlite3_open</code> and <a href="http://www.sqlite.org/pragma.html#pragma_temp_store" rel="nofollow">make sure that TEMP_STORE is defined appropriately</a></p>
<p><strong>On the other hand</strong>, if you tell sqlite to use the harddisk, then you will get a similar benefit to your current usage of RegEdit to manipulate the program's data "on the fly."</p>
<p>The way you could simulate your current RegEdit technique with sqlite would be to use the sqlite command-line tool to connect to the on-disk database. You can run UPDATE statements on the sql data from the command-line while your main program is running (and/or while it is paused in break mode).</p>
http://stackoverflow.com/questions/134001/how-can-i-load-the-contents-of-a-text-file-into-a-batch-file-variable/134495#1344950Answer by que que for How can I load the contents of a text file into a batch file variable?que que2008-09-25T16:53:09Z2008-09-25T16:53:09Z<p>You might benefit (either directly and immediately or indirectly and at a later time) by reading this page (it's a VERY easy read. clear and concise).</p>
<p><a href="http://student.northpark.edu/pemente/sed/bat_env.htm" rel="nofollow" title="read file data into an env var">Getting File Data into an Environment Variable (env var)</a></p>
<p>I was able to have success with "method 4b", which gives me hope that I will eventually have success with 4a. I think "method 4a" is cool and would be ideal for me, but I haven't managed to get the creation of "prefix.dat" correct yet as the tutorial describes.</p>
http://stackoverflow.com/questions/122316/template-constraints-c/122548#1225482Answer by que que for Template Constraints C++que que2008-09-23T17:43:10Z2008-09-23T17:43:10Z<p>I found the following to be a very interesting read on the topic:</p>
<ul>
<li><a href="http://www.oonumerics.org/tmpw00/mcnamara.pdf" rel="nofollow" title="cpp static interfaces">static interfaces in c++, georgia institute of technology</a></li>
</ul>
http://stackoverflow.com/questions/81644/how-to-timeout-a-mysql-query-in-c/94540#945400Answer by que que for How to timeout a mysql++ query in c++que que2008-09-18T17:10:09Z2008-09-18T17:10:09Z<p>I don't know if this is a good idea in terms of resource usage and "best practices" and "cleanliness" and all the rest... but you have now repeatedly described the handcuffs that bind you in terms of re-architecting a "clean" system... so here goes.....</p>
<p>Could you open a new, separate connection just for sending the LOCK statement? Then close that connection when you catch the timeout alarm? By closing/destroying the connection that was dedicated to the LOCK statement, would not that essentially "cancel" the LOCK statment? I am not certain if such events would occur as I have described/guessed, but maybe it is something to test out.</p>
http://stackoverflow.com/questions/87979/beginner-question-about-xcode-3-1-1-and-static-libraries/88583#885833Answer by que que for Beginner question about XCode 3.1.1 and static librariesque que2008-09-17T23:11:40Z2008-09-17T23:24:20Z<p>I am not sure if I am correctly visualizing each of the steps you have described, and therefore I might be misinterpreting the current state you are in as a result. However, I <strong>think</strong> I follow you, and if I am following correctly, then there is one more simple thing you should do.</p>
<p>Open the App project. Right-click on the App target and choose "Get Info." Then go to the "General Tab" and find "Direct Dependencies." Click the ( + ) (plus sign) button to add a direct dependency. The Lib.xcodeproj should appear among a list of possibilities for you. Choose the Lib target from that list.</p>
<p>That should accomplish that the Lib project must build (or rebuild) when you build the App target.</p>
<p>The following screenshot should help clarify the steps I just described.</p>
<p>(Editing my own post now. I realize I said nothing about point number 2 in the question. I am actually still thinking about number 2. I am not sure if that is possible or not. Hopefully someone else can chime in....)</p>
<p><img src="http://members.dslextreme.com/users/kkj/Xcode/cross_project_target.png" alt="Xcode cross-project target reference" title="Xcode cross-project target reference" /></p>
http://stackoverflow.com/questions/87979/beginner-question-about-xcode-3-1-1-and-static-libraries/88633#886330Answer by que que for Beginner question about XCode 3.1.1 and static librariesque que2008-09-17T23:20:30Z2008-09-17T23:20:30Z<p>I am also a fairly new user of Xcode. Most of what I know I learned from an Xcode book by James Bucanek (ISBN 047175479x). It is an older book that was written for/with Xcode 2.2, but I find that pretty much all of it still applies for me today, and I currently use Xcode 3.1</p>
<p>You can probably find a cheap used copy if you are interested. I only really used about half of the chapters (with the other half being either too basic, too obvious, or too Cocoa oriented). But even just the small subset of chapters that I actually used were worth the (cheap) used-book price that I paid.</p>
http://stackoverflow.com/questions/62918/using-gcc-from-within-vs-20058-ide/74675#746751Answer by que que for Using GCC from within VS 2005(8) IDEque que2008-09-16T17:13:42Z2008-09-16T17:13:42Z<p>What I am about to suggest would still require a makefile, so I am partially repeating the advice above. Or, as was also mentioned earlier, maybe you already have a makefile, in which case you will have even fewer steps in order to accomplish what I am about to describe.</p>
<p>Once you know what your machine-specific windows command-line command would be for invoking make or g++ on your code, then you could create a "Pre-Build Event" in your Visual Studio Project. ("Project Properties >> Configuration Properties >> Build Events >> Pre-Build Event").</p>
<p>The pre-build event can call a bat file script, or any other script on your machine, and that script will be able to return an error-code. Essentially, "script OK," or "script FAILED" is the extent of the amount of communication you script can have BACK to visual studio.</p>
<p>I do not believe that the script automatically sees all the visual studio environment variables (such as $(InputDir), $(ProjectDir), $(SolutionName), etc), however you can use those variables when you specify how to call the script. In other words, you can pass those values to the script as arguments.</p>
<p>You could set this up so that every time you build your Visual Studio, the pre-build event will FIRST try to run make/g++ on your code. If your script (the one that calls make/g++) detects any problems, then the script returns an error and the build can be STOPPED right then and there. The script can print to stdout or stderr and that output should be visible to you in the Visual Studio Build output window (the window that usually shows stuff like "========== Build: 3 succeeded, 0 failed").</p>
<p>You can have the script print "BUILD FAILED, non-portable code detected, make/g++ returned the following:........."</p>
<p>This way, you don't have to remember to periodically switch from Visual Studio to the command line. It will be automatically done for you every time you build.</p>
http://stackoverflow.com/questions/64790/why-arent-my-breakpoints-working-in-xcode/67957#6795714Answer by que que for Why aren't my breakpoints working in Xcode?que que2008-09-15T23:34:46Z2008-09-15T23:34:46Z<p>First of all, I agree 100% with the earlier folks that said turn OFF "Load Symbols Lazily."</p>
<p>I have two more things to add.</p>
<p>My first suggestion sounds obvious, but the first time someone told me this I was on the verge of responding with "oh, come on, you really think I wouldn't know better...... oh."</p>
<ol>
<li><p>Make sure you haven't accidentally set your "Active Build Configuration" to "Release."</p></li>
<li><p>Under "Targets" in the graphical tree display of your project, right click on your Target and do "Get Info." Look for a property named "Generate Debug Symbols" (or similar) and make sure this is CHECKED (aka ON). Also, you might try finding (also in Target >> Get Info) a property called "Debug Information Format" and setting it to "Dwarf with dsym file."</p></li>
</ol>
<p>There are a number of other properties under Target >> Get Info that might be affecting you. Look for things like optimizing or compressing code and turn that stuff OFF (I assume you are working in a debug mode, so that this is not bad advice). Also, look for things like stripping symbols and make sure that is also OFF.</p>
http://stackoverflow.com/questions/54974/keyboard-shortcut-for-restoring-applications-from-the-mac-osx-dock/67883#678830Answer by que que for Keyboard shortcut for restoring applications from the Mac OSX Dock?que que2008-09-15T23:17:03Z2008-09-15T23:17:03Z<p>Many mac users that are keyboard-shortcut fanatics have come to know and love "Quicksilver," which allows you to customize quite a number of shortcuts and easily link them to a broad variety of actions.</p>
<p>Quicksilver is a free, open-source program.</p>
<p>Quicksilver is the work of a Google programmer, Nicholas Jitkoff, and the open source code for this project is also available in Google Code.</p>
<p>You can download the program from <a href="http://www.blacktree.com/" rel="nofollow" title="blacktree - maker of Quicksilver">http://www.blacktree.com/</a></p>
<p>Here is one decent introduction to its usage:</p>
<p><a href="http://lifehacker.com/software/quicksilver/hack-attack-a-beginners-guide-to-quicksilver-247129.php" rel="nofollow">http://lifehacker.com/software/quicksilver/hack-attack-a-beginners-guide-to-quicksilver-247129.php</a></p>
http://stackoverflow.com/questions/38934/how-to-take-screenshot-in-mac-os-x-using-cocoa-or-c/67767#677670Answer by que que for How to take screenshot in Mac OS X using Cocoa or C++que que2008-09-15T22:56:18Z2008-09-15T22:56:18Z<p>The following might be helpful if you are attempting to accomplish this with either C++ or python. Also, this would be even more helpful in the case that you want your programmatic method to be cross-platform portable. (Windows, Linux, Mac osx, and even beyond)</p>
<p>My response involves a similar approach to one of the earlier responses, but the difference is in which cross-platform framework one uses.</p>
<p>In almost the same way that QT will allow you to capture and save a screenshot, so does another "competing" framework, namely the wxWidgets framework. wxWidgets is a C++ framework, but it also provides python bindings via a framework called wxPython.</p>
<p>To read more, follow the following link and choose "Page 139" from the list of pages that match the search:</p>
<p><a href="http://books.google.com/books?id=CyMsvtgnq0QC&vq=%22accessing+the+screen+with+wxScreendc%22" rel="nofollow">http://books.google.com/books?id=CyMsvtgnq0QC&vq="accessing+the+screen+with+wxScreendc"</a></p>
http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237611#237611Comment by que que on What coding mistakes are a telltale giveaway of an inexperienced programmer?que que2009-05-20T19:29:53Z2009-05-20T19:29:53Zi love the sample TODO comment "Why in the world is this code frobbing the quux?" ... oh man. I have been writing almost this exact thing on code that i just inheritedhttp://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/239030#239030Comment by que que on What coding mistakes are a telltale giveaway of an inexperienced programmer?que que2009-05-20T19:25:33Z2009-05-20T19:25:33Zthis is classic! this should have more votes. maybe people who use dynamic non-compiled languages just can't relate to this one, resulting in fewer up-votes.http://stackoverflow.com/questions/773704/whats-a-good-book-to-learn-how-computers-actually-work/773751#773751Comment by que que on Whats a good book to learn how computers actually work?que que2009-05-13T18:39:35Z2009-05-13T18:39:35ZIf I could relinquish a month's worth of voting rights on stackoverflow in order to vote for the Hennessey & Patterson book 50 times, i would do it. I thought each <b>chapter</b> of their book contained so much good information that you could practically repackage each chapter as a book unto itself.http://stackoverflow.com/questions/183788/c-c-compiler-warnings-do-you-clean-up-all-your-code-to-remove-them-or-leave/184206#184206Comment by que que on C / C++ compiler warnings: do you clean up all your code to remove them or leave them in?que que2009-05-11T17:22:03Z2009-05-11T17:22:03Zi am voting this up because Nick mentioned the following HUGELY important case when you should not mess with warning-flagged code: "Cleaning up warnings when you don't understand what the fix does"http://stackoverflow.com/questions/390867/calling-application-methods-from-a-wx-frame-classComment by que que on Calling Application Methods from a wx Frame Classque que2008-12-24T06:31:30Z2008-12-24T06:31:30ZIf you truly are on a learning adventure and you are not under a time crunch, then you might browse the source code of the Audacity application. This is a very successful, non-basic, non-trivial app that happens to be open source <i>AND</i> uses wxWidgets. <a href="http://audacity.sourceforge.net" rel="nofollow">audacity.sourceforge.net</a>http://stackoverflow.com/questions/256916/utilizing-time-to-improve-programming-skill/257135#257135Comment by que que on Utilizing Time to Improve Programming Skillque que2008-12-23T06:07:45Z2008-12-23T06:07:45Z"Analyzing real-world, working code is also one of the most practical skills a programmer can have." Amen. Amen. Amen.http://stackoverflow.com/questions/386345/c-abstract-class-constructor-issues/386385#386385Comment by que que on C++ Abstract class - constructor issuesque que2008-12-22T23:37:38Z2008-12-22T23:37:38ZGood point. I hope the asker (Daniel) will consider choosing composition over inheritance. The composition option seems to get overlooked in cases like these.http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273267#273267Comment by que que on Are memory leaks ever ok?que que2008-11-07T23:28:22Z2008-11-07T23:28:22Z"But you definitely need to document that the memory leak is a conscious decision." Thank heavens. The best point made so far.http://stackoverflow.com/questions/262714/anyone-have-a-good-shared-memory-container-for-c/262908#262908Comment by que que on Anyone have a good shared memory container for C++?que que2008-11-06T16:38:17Z2008-11-06T16:38:17ZI support this answer using personal experience. The online guide made using IPC a breeze! www.boost.org/doc/libs/1_36_0/doc/html/interprocess/quick_guide.html www.boost.org/doc/libs/1_36_0/doc/html/interprocess/sharedmemorybetweenprocesses.html#interprocess.sharedmemorybetweenprocesses.mapped_filehttp://stackoverflow.com/questions/207925/how-to-keep-business-support-team-motivated/207973#207973Comment by que que on How to keep business support team motivated?que que2008-11-06T06:40:29Z2008-11-06T06:40:29ZThis answer is incredibly well thought out and so well put! I wish I could give this 10 up votes. http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/243018#243018Comment by que que on Dealbreakers for new programming jobs?que que2008-10-28T15:44:55Z2008-10-28T15:44:55ZI think I agree with you, but the guideline you present about books could be better worded to improve clarity. My first thought when reading the phrase "nothing but programming books" was that you were looking for philosophy or history texts or something.http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/243028#243028Comment by que que on Dealbreakers for new programming jobs?que que2008-10-28T15:38:53Z2008-10-28T15:38:53ZI second what Thomas Owens was saying. I, too, really like what Dave Markle said about the difference between failure on the Joel Test versus sincere efforts toward future excellence on the test.http://stackoverflow.com/questions/234458/does-polymorphism-or-conditionals-promote-better-design/234510#234510Comment by que que on Does polymorphism or conditionals promote better design?que que2008-10-24T21:10:11Z2008-10-24T21:10:11ZHead First Design Patterns is <b>really</b> a good book. It is on Jeff Atwood's bookshelf, too! Refer to <a href="http://www.codinghorror.com/blog/archives/001108.html" rel="nofollow">codinghorror.com/blog/archives/…</a>http://stackoverflow.com/questions/36077/finding-out-the-source-of-an-exception-in-c-after-it-is-caught/36135#36135Comment by que que on Finding out the source of an exception in C++ after it is caught?que que2008-10-24T21:06:58Z2008-10-24T21:06:58ZEven beyond the extra up-vote I just gave, I want to emphasize again that the John Robbins book is an EXCELLENT BOOK. I, too, highly recommend it.http://stackoverflow.com/questions/220644/c-ide-for-macsComment by que que on C++ IDE for Macsque que2008-10-23T15:59:10Z2008-10-23T15:59:10Z!!! :) applause for not imposing a hardliner Visual-Studio-only regulation