User Parappa - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T11:04:03Z http://stackoverflow.com/feeds/user/9974 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1861836/checking-file-permissions-in-linux-with-python/1861849#1861849 2 Answer by Parappa for Checking File Permissions in Linux with Python Parappa 2009-12-07T18:13:11Z 2009-12-07T18:13:11Z <p>Use <code>os.access()</code> with flags <code>os.R_OK</code>, <code>os.W_OK</code>, and <code>os.X_OK</code>.</p> <p><strong>Edit</strong>: Check out <a href="http://stackoverflow.com/questions/539133/python-test-directory-permissions">this related question</a> if you are testing directory permissions on Windows.</p> http://stackoverflow.com/questions/1836724/ive-read-the-c-programming-language-where-do-i-go-from-here/1836768#1836768 0 Answer by Parappa for I've read The C Programming Language where do I go from here? Parappa 2009-12-03T00:00:26Z 2009-12-03T00:00:26Z <p><a href="http://books.google.com/books?id=9t5uxP9xHpwC&amp;printsec=frontcover&amp;dq=expert+c+programming+deep+c+secrets#v=onepage&amp;q=&amp;f=false" rel="nofollow">Expert C Programming: Deep C Secrets</a></p> http://stackoverflow.com/questions/1835059/what-is-evidence-based-software-engineering/1835187#1835187 0 Answer by Parappa for What is Evidence-Based Software Engineering ? Parappa 2009-12-02T19:18:37Z 2009-12-02T19:18:37Z <p>Do you mean <a href="http://www.joelonsoftware.com/items/2007/10/26.html" rel="nofollow">evidence-based scheduling</a>? The basic gist is that estimates for features in development should be based on statistics gathered about how long previously completed features took.</p> http://stackoverflow.com/questions/1822849/what-are-these-ms-that-keep-showing-up-in-my-files-in-emacs/1822871#1822871 6 Answer by Parappa for What are these ^M's that keep showing up in my files in emacs? Parappa 2009-11-30T22:29:03Z 2009-11-30T22:29:03Z <p>They have to do with the difference between DOS style line endings and Unix style. Check out the <a href="http://en.wikipedia.org/wiki/Newline" rel="nofollow">Wikipedia article</a>. You may be able to find a dos2unix tool to help, or simply write a small script to fix them yourself.</p> <p><strong>Edit</strong>: I found the following Python sample code <a href="http://code.activestate.com/recipes/286229/" rel="nofollow">here</a>:</p> <pre><code>string.replace( str, '\r', '' ) </code></pre> http://stackoverflow.com/questions/1805148/why-is-pythonruby-interpreted/1806134#1806134 2 Answer by Parappa for Why is (python|ruby) interpreted? Parappa 2009-11-26T23:38:18Z 2009-11-26T23:38:18Z <p><a href="http://en.wikipedia.org/wiki/Read-eval-print%5Floop" rel="nofollow">REPL</a>. Don't knock it 'till you've tried it. :)</p> http://stackoverflow.com/questions/1805445/boost-lib-linker-error-visual-c 1 Boost lib linker error Visual C++ Parappa 2009-11-26T20:04:33Z 2009-11-26T22:06:56Z <p>I downloaded the source for <a href="http://www.launchy.net/" rel="nofollow">Launchy</a> and am trying to build it in Visual Studio 2005. The Launchy project is built using VC7 so I had to update the project files to VC8 and that process seemed to go well. However, Launchy also uses the <a href="http://www.boost.org/" rel="nofollow">Boost</a> 1.33.1 libs and what I have built are the Boost 1.41.0 libs (props to Boost for making the more recent libs much easier to build), so I also updated the project to point to my new Boost libs install. Now I get the following linker error:</p> <pre><code>fatal error LNK1104: cannot open file 'libboost_regex-vc80-mt-sgd-1_41.lib' </code></pre> <p>I had a look in the Boost lib directory and the closest match that I could find is...</p> <pre><code>libboost_regex-vc80-mt-gd-1_41.lib </code></pre> <p>Notice the missing 's'. I don't understand what the difference in libs is, and whether Visual Studio is looking for the wrong thing or my Boost build process failed to build the right libs. Can anybody point me in the right direction?</p> <p>As an experiment, I made a copy of the regex lib that I have and renamed it to what the linker is looking for. That gives me a long list of linker errors about symbols already being defined in msvcrtd.lib, such as the following:</p> <pre><code>error LNK2005: "private: __thiscall type_info::type_info(class type_info const &amp;)" (??0type_info@@AAE@ABV0@@Z) already defined in libcmtd.lib(typinfo.obj) </code></pre> <p>I will try to build the Boost 1.33.1 libs and point my Launchy project file at that instead. But I'd still like to know what is wrong with my Boost 1.41.0 libs.</p> <p><strong>Edit</strong>: I found a reference <a href="http://www.boost.org/doc/libs/1%5F41%5F0/more/getting%5Fstarted/windows.html" rel="nofollow">in the Boost docs</a> to what the 's' libs are:</p> <blockquote> <p>Use this library when linking statically to the C++ standard library and compiler runtime support libraries.</p> </blockquote> <p>So it looks like the 's' libs are the right ones. Now I just have to figure out how to build them.</p> <p><strong>Solution</strong>: I was able to build the missing boost libs with the following command-line.</p> <pre><code>bjam --build-type=complete msvc stage </code></pre> <p>I ran that after already running boostrap.bat in the dir where boost lives.</p> http://stackoverflow.com/questions/1801046/input-class-appropriate-use-of-friend/1801094#1801094 0 Answer by Parappa for Input class - appropriate use of friend? Parappa 2009-11-26T01:32:17Z 2009-11-26T19:18:22Z <p>It sounds to me like making the classes friends defeats the purpose of splitting up the one class that is "too large." If you do that then you'll be dividing the class up into two, but they'll still be tightly coupled and just as inseparable as before.</p> <p>One approach would be to write public methods that describe what you want to do in response to input. For example, if your class represents a cursor that can move in four directions based on arrow key input, you'd write methods like "MoveUp" and "MoveLeft", and then call those methods outside of the class in response to input events. In that case, it wouldn't be necessary to access the class's private cursor data.</p> http://stackoverflow.com/questions/1793807/declaring-a-variable-in-an-if-else-block-in-c/1793821#1793821 3 Answer by Parappa for Declaring a variable in an if-else block in C++ Parappa 2009-11-24T23:59:08Z 2009-11-25T23:12:09Z <p>If you put a static variable inside of a scope, delimited by <code>{ }</code>, then that variable will no longer be available when the scope ends.</p> <p>Try this instead:</p> <pre><code>int main(int argc, char *argv[]) { // TODO: validate argc and argv here if (argc &lt; 3) { printf("error: not enough arguments\n"); exit(1); } Player* player_ptr = NULL; if (argv[3] == string("simple")) { player_ptr = get_Simple(); } else if (argv[3] == string("counting")) { player_ptr = get_Counting(); } else if (argv[3] == string("competitor")) { player_ptr = get_Competitor(); } if (!player_ptr) { printf("error: invalid argument %s\n", argv[3]); exit(1); } Player&amp; player = *player_ptr; // More code } </code></pre> http://stackoverflow.com/questions/1800439/what-language-will-protect-my-source-code/1800482#1800482 0 Answer by Parappa for What language will protect my source code? Parappa 2009-11-25T22:48:24Z 2009-11-25T22:48:24Z <p>This is not so much a matter of choosing the right language as it is finding a tool that will do code obfuscation for you. Nothing is bulletproof, but there are efforts to accomplish this sort of thing.</p> <p>Eg. see <a href="http://www.cs.arizona.edu/~collberg/Research/Students/DouglasLow/obfuscation.html" rel="nofollow">this research project</a> about Java code obfuscation.</p> http://stackoverflow.com/questions/1794344/glew32-dll-run-time-error/1794359#1794359 0 Answer by Parappa for glew32.dll run time error Parappa 2009-11-25T02:59:20Z 2009-11-25T02:59:20Z <p>Try putting the file glew32.dll into the same directory as the binary exe that you compiled.</p> http://stackoverflow.com/questions/1793927/play-a-sound-for-a-certain-duration/1793982#1793982 0 Answer by Parappa for Play a sound for a certain duration Parappa 2009-11-25T00:46:37Z 2009-11-25T00:46:37Z <p>You might be able to implement the duration logic yourself using a <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/utils/Timer.html" rel="nofollow">Timer</a> object and then calling Stop on your Sound when the time elapses.</p> http://stackoverflow.com/questions/1793815/get-diffrence-between-two-times-unix-epoc/1793836#1793836 2 Answer by Parappa for Get Diffrence Between Two Times (Unix Epoc) Parappa 2009-11-25T00:02:44Z 2009-11-25T00:19:51Z <p>This isn't an answer to your question, but I just wanted to point out...</p> <pre><code>while (($diff - $y) &gt; 0) { $ys++; $diff -= $y; } </code></pre> <p>is a very inefficient way of writing</p> <pre><code>$ys = $diff / $y; $diff = $diff % $y; </code></pre> <p>Also, this</p> <pre><code> else if ($ts1 &gt; $ts2) { $large = $ts1; $small = $ts2; } else { $small = $ts1; $large = $ts2; } # Get the Diffrence $diff = $large - $small; </code></pre> <p>can easily be rewritten as</p> <pre><code>$diff = abs($ts1 - $ts2); </code></pre> <p>I have a feeling that the problem in your code would be more apparent if it was less verbose. :)</p> http://stackoverflow.com/questions/1793867/best-way-to-check-if-a-character-array-is-empty/1793878#1793878 3 Answer by Parappa for Best way to check if a character array is empty Parappa 2009-11-25T00:14:58Z 2009-11-25T00:14:58Z <p>Depends on whether or not your array is holding a null-terminated string. If so, then</p> <pre><code>if(text[0] == '\0') {} </code></pre> <p>should be sufficient.</p> <p>Edit: Another method would be...</p> <pre><code>if (strcmp(text, "") == 0) </code></pre> <p>which is potentially less efficient but clearly expresses your intent.</p> http://stackoverflow.com/questions/1793590/c-dynamic-allocated-array/1793662#1793662 1 Answer by Parappa for C++ dynamic allocated array Parappa 2009-11-24T23:23:14Z 2009-11-24T23:23:14Z <p>One problem that jumps out at me is that you're not changing the value of your list pointer outside of the scope of your list_add function. You should make some changes like...</p> <pre><code>bool list_add(int *list, int&amp; space_used, int max_size, int value) </code></pre> <p>becomes</p> <pre><code>bool list_add(int **list, int&amp; space_used, int max_size, int value) </code></pre> <p>and</p> <pre><code>list = list_new </code></pre> <p>becomes</p> <pre><code>*list = list_new </code></pre> <p>Otherwise I think you'll find that when you reallocate your list, after returning from list_add your list pointer will still point to the old location.</p> http://stackoverflow.com/questions/1793082/how-to-dynamically-create-a-union-instance-in-c/1793107#1793107 0 Answer by Parappa for How to dynamically create a union instance in c++? Parappa 2009-11-24T21:41:40Z 2009-11-24T21:41:40Z <p>Use the <code>new</code> operator.</p> http://stackoverflow.com/questions/1785209/regex-to-match-part-of-a-string/1785225#1785225 2 Answer by Parappa for Regex to match part of a string Parappa 2009-11-23T18:57:40Z 2009-11-23T18:57:40Z <p>You may need to escape the forward-slashes...</p> <pre><code>/\/en\// </code></pre> http://stackoverflow.com/questions/1785143/if-else-order-sequence-issue/1785173#1785173 1 Answer by Parappa for If / else order sequence issue Parappa 2009-11-23T18:49:23Z 2009-11-23T18:49:23Z <p>Do you want the following instead?</p> <pre><code>if (radBuyer.Checked) { cp.ControlID = "ddlProd"; cp.PropertyName = "SelectedValue"; } else if (radProd.Checked) { cp.ControlID = "tbxProdAC"; cp.PropertyName = "Text"; } else { cp.ControlID = "lbRadMiss"; cp.PropertyName = "Text"; lbRadMiss.Text = "Please check appropriate radio button before you attempt a search"; } </code></pre> http://stackoverflow.com/questions/1774048/starting-opengl-programming-ultimate-resource/1774063#1774063 2 Answer by Parappa for Starting OpenGL Programming "Ultimate" Resource Parappa 2009-11-21T00:31:01Z 2009-11-21T00:31:01Z <p>The <a href="http://nehe.gamedev.net/" rel="nofollow">NeHe tutorials</a> are good for starting out.</p> http://stackoverflow.com/questions/1773968/volume-slider-volume-doesnt-change-until-mouse-over/1774057#1774057 1 Answer by Parappa for Volume slider - volume doesn't change until mouse over Parappa 2009-11-21T00:28:24Z 2009-11-21T00:28:24Z <p>You need to call mySound_sound.setVolume() with your initial value. Right now you only do in in the onMouseMove handler.</p> http://stackoverflow.com/questions/1774027/how-do-you-program/1774040#1774040 2 Answer by Parappa for how do you program? Parappa 2009-11-21T00:22:50Z 2009-11-21T00:22:50Z <p>Carefully and well.</p> http://stackoverflow.com/questions/1768314/will-antlr-help-different-suggestion/1774033#1774033 1 Answer by Parappa for Will ANTLR Help? Different Suggestion? Parappa 2009-11-21T00:21:13Z 2009-11-21T00:21:13Z <p>If you don't need for the format to be custom-built, then you should look into using an existing format such as <a href="http://www.json.org/" rel="nofollow">JSON</a> or XML, for which there are parsers available.</p> <p>Even if you do need a custom format, you may be better off designing one that is dirt simple so that you don't need a full-blown grammar to parse it. Designing your own scripting grammar from scratch and doing a good job of it is a lot of work.</p> <p>Writing grammar parsers can also be really fun, so if you're curious then you should go for it. But I don't recommend carelessly mixing learning exercises with practical work code.</p> http://stackoverflow.com/questions/1766750/flash-as3-addchild-does-not-display-imported-movieclip/1766778#1766778 0 Answer by Parappa for Flash AS3 : addChild() does not display imported movieclip. Parappa 2009-11-19T21:43:32Z 2009-11-19T21:51:17Z <p>Instead of this.addChild(h), does it work if you try root.addChild(h)?</p> <p>Edit: _root -> root for AS3</p> http://stackoverflow.com/questions/1765908/is-it-better-to-have-code-duplication-and-have-it-be-very-simple-readable-or-hav/1765981#1765981 2 Answer by Parappa for Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated? Parappa 2009-11-19T19:39:25Z 2009-11-19T19:39:25Z <p>This is a judgement call. Most programmers duplicate code too much, and I think that leads to the attitude among passionate developers that stamping out duplication is an absolute good, but it is not. Making your code easy to read should be the priority, and eliminating duplicate code is usually a good thing for readability, but not always.</p> <p>Also, I wouldn't use commercially valuable code as a place to use unfamiliar language features for the purpose of learning them. Create separate learning projects for that purpose. You don't want to end up getting called into work on off-hours to fix bugs caused by getting too fancy with generics, or any other feature.</p> http://stackoverflow.com/questions/1724673/is-it-correct-to-ask-to-solve-an-np-complete-problem-on-a-job-interview/1724696#1724696 10 Answer by Parappa for Is it correct to ask to solve an NP-complete problem on a job interview? Parappa 2009-11-12T19:22:26Z 2009-11-12T19:22:26Z <p>I don't see any problem with asking something like this. Also, programmers should NOT be expected to recognize NP-complete problems by rote. They should, however, be able to identify that their algorithm is potentially slow regardless of whether a given problem is NP-complete.</p> http://stackoverflow.com/questions/1724473/how-could-i-print-out-the-nth-letter-of-the-alphabet-in-python/1724491#1724491 1 Answer by Parappa for How could I print out the nth letter of the alphabet in Python? Parappa 2009-11-12T18:49:58Z 2009-11-12T18:49:58Z <p>You need to use the ord function, like print(ord('a')-5)</p> <p>Edit: gah, I was too slow :)</p> http://stackoverflow.com/questions/1724130/directx-9-terrain-engine-problem-c/1724170#1724170 0 Answer by Parappa for DirectX 9 Terrain Engine Problem C++ Parappa 2009-11-12T17:57:12Z 2009-11-12T18:39:35Z <p>It looks a lot like the order in which you are building your triangle-strip(s) (or are you using another type of primitive?) has an issue. Can you post the relevant part of your rendering loop?</p> <p>Edit: My intuition is that when you're mirroring your terrain data, you're creating criss-crossed geometry down the diagonal because the corners of your terrain quads (if you imagine them as such) are connecting to the corners diagonally across rather than directly across. I hope that some DirectX / rendering guru can give you a more precise answer based on the code you've posted.</p> http://stackoverflow.com/questions/1724381/explaining-why-just-add-another-column-to-the-db-is-a-bad-idea-to-non-programm/1724405#1724405 3 Answer by Parappa for Explaining why "Just add another column to the DB" is a bad idea, to non programmers. Parappa 2009-11-12T18:36:09Z 2009-11-12T18:36:09Z <p>I've never tried this myself, but I've thought about it: draw an analogy to the legal system. Legal loopholes exist because law makers try to patch the system with lazy kludges. The software equivalent is bugs, security holes, etc. The only way around these problems is careful planning and hard work.</p> http://stackoverflow.com/questions/1711633/how-do-you-track-where-in-your-code-your-business-rules-are-implemented/1711655#1711655 2 Answer by Parappa for How do you track where in your code your business rules are implemented? Parappa 2009-11-10T22:21:22Z 2009-11-10T22:21:22Z <p>I would organize my code in such a way that related business rules are all in the same unit of code (class or file, depending on your tool) and separate from non-business rule code. A good file-wise organization would allow you to track changes to it using version control software, such as Subversion, Perforce, git, etc.</p> http://stackoverflow.com/questions/1704202/determine-source-language-from-a-binary/1704254#1704254 4 Answer by Parappa for Determine source language from a binary? Parappa 2009-11-09T22:10:07Z 2009-11-09T22:10:07Z <p>I'm not a compiler hacker (someday, I hope), but I figure that you may be able to find telltale signs in a binary file that would indicate what compiler generated it and some of the compiler options used, such as the level of optimization specified.</p> <p>Strictly speaking, however, what you're asking is impossible. It could be that somebody sat down with a pen and paper and worked out the binary codes corresponding to the program that they wanted to write, and then typed that stuff out in a hex editor. Basically, they'd be programming in assembly without the assembler tool. Similarly, you may never be able to tell with certainty whether a native binary was written in straight assembler or in C with inline assembly.</p> <p>As for virtual machine environments such as JVM and .NET, you should be able to identify the VM by the byte codes in the binary executable, I would expect. However you may not be able to tell what the source language was, such as C# versus Visual Basic, unless there are particular compiler quirks that tip you off.</p> http://stackoverflow.com/questions/1695648/same-instance-referred-to-by-multiple-constructors/1695659#1695659 2 Answer by Parappa for Same instance referred to by multiple constructors Parappa 2009-11-08T07:26:02Z 2009-11-08T07:26:02Z <p>If you only ever want to have one instance of class A, use a <a href="http://en.wikipedia.org/wiki/Singleton%5Fpattern" rel="nofollow">Singleton Pattern</a>. You can then have class B's constructor refer to the singleton. Otherwise, the best way to refer to an object of class A in the constructor of class B is to pass it as an argument.</p> http://stackoverflow.com/questions/1835059/what-is-evidence-based-software-engineering/1837193#1837193 Comment by Parappa on What is Evidence-Based Software Engineering ? Parappa 2009-12-03T03:39:43Z 2009-12-03T03:39:43Z This strongly reminds me of the advice given in the book The Mythical Man-Month. :) http://stackoverflow.com/questions/1822849/what-are-these-ms-that-keep-showing-up-in-my-files-in-emacs/1822871#1822871 Comment by Parappa on What are these ^M's that keep showing up in my files in emacs? Parappa 2009-12-02T19:16:22Z 2009-12-02T19:16:22Z In vim it can be done with :%s/\r//g http://stackoverflow.com/questions/512202/what-is-boost-jam-and-is-it-jam-worth-migrating-to/658630#658630 Comment by Parappa on what is boost jam and is it jam worth migrating to? Parappa 2009-11-26T22:24:46Z 2009-11-26T22:24:46Z +1 for SCons. :-) http://stackoverflow.com/questions/1805445/boost-lib-linker-error-visual-c/1805492#1805492 Comment by Parappa on Boost lib linker error Visual C++ Parappa 2009-11-26T20:24:32Z 2009-11-26T20:24:32Z It is working! Thanks again. http://stackoverflow.com/questions/1805445/boost-lib-linker-error-visual-c/1805492#1805492 Comment by Parappa on Boost lib linker error Visual C++ Parappa 2009-11-26T20:23:22Z 2009-11-26T20:23:22Z I will give that a try, thanks. I think I built it without specifying build-type. http://stackoverflow.com/questions/1793927/play-a-sound-for-a-certain-duration/1793982#1793982 Comment by Parappa on Play a sound for a certain duration Parappa 2009-11-25T02:57:36Z 2009-11-25T02:57:36Z Sorry it didn't work. I'd like to know the answer to this as well. http://stackoverflow.com/questions/1793815/get-diffrence-between-two-times-unix-epoc/1793836#1793836 Comment by Parappa on Get Diffrence Between Two Times (Unix Epoc) Parappa 2009-11-25T00:20:25Z 2009-11-25T00:20:25Z Ah right, good call. I have tried to fix it using the mod operator. http://stackoverflow.com/questions/1793807/declaring-a-variable-in-an-if-else-block-in-c/1793821#1793821 Comment by Parappa on Declaring a variable in an if-else block in C++ Parappa 2009-11-25T00:09:10Z 2009-11-25T00:09:10Z Yup, I messed up. Tried to fix it. http://stackoverflow.com/questions/1793815/get-diffrence-between-two-times-unix-epoc/1793839#1793839 Comment by Parappa on Get Diffrence Between Two Times (Unix Epoc) Parappa 2009-11-25T00:05:17Z 2009-11-25T00:05:17Z +1. You beat me to it. :) http://stackoverflow.com/questions/1766750/flash-as3-addchild-does-not-display-imported-movieclip Comment by Parappa on Flash AS3 : addChild() does not display imported movieclip. Parappa 2009-11-19T21:55:14Z 2009-11-19T21:55:14Z What do you get if you trace h.parent, h.x, h.y, h.alpha after adding it to the stage? http://stackoverflow.com/questions/1746594/middle-of-linked-list Comment by Parappa on middle of linked list Parappa 2009-11-17T04:38:12Z 2009-11-17T04:38:12Z Sounds like a trick question. In order to identify the middle of the list, you need to know its length. In order to know its length, you need to loop to the end of the list. http://stackoverflow.com/questions/1724391/what-programs-languages-should-i-learn-for-a-career-in-web-programming-design/1724416#1724416 Comment by Parappa on What programs/languages should I learn for a career in web programming/design? Parappa 2009-11-12T18:46:05Z 2009-11-12T18:46:05Z I would add SQL and PHP to your list. http://stackoverflow.com/questions/1704202/determine-source-language-from-a-binary/1704254#1704254 Comment by Parappa on Determine source language from a binary? Parappa 2009-11-10T22:10:02Z 2009-11-10T22:10:02Z It seems to me that in theory it is not possible, and in practice it is. :) http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/359210#359210 Comment by Parappa on What dead programming languages do you know? Parappa 2009-10-06T23:50:03Z 2009-10-06T23:50:03Z Upvoted for Modula http://stackoverflow.com/questions/1156989/how-to-make-php-faster-does-string-creation-have-no-cost Comment by Parappa on How to Make PHP Faster: Does String Creation Have No Cost? Parappa 2009-07-21T03:05:21Z 2009-07-21T03:05:21Z Somebody just posted the exact same question: <a href="http://stackoverflow.com/questions/1156936/how-to-make-array-loop-faster-in-php" rel="nofollow" title="how to make array loop faster in php">stackoverflow.com/questions/1156936/&hellip;</a>