User Parappa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T11:04:03Zhttp://stackoverflow.com/feeds/user/9974http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1861836/checking-file-permissions-in-linux-with-python/1861849#18618492Answer by Parappa for Checking File Permissions in Linux with PythonParappa2009-12-07T18:13:11Z2009-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#18367680Answer by Parappa for I've read The C Programming Language where do I go from here?Parappa2009-12-03T00:00:26Z2009-12-03T00:00:26Z<p><a href="http://books.google.com/books?id=9t5uxP9xHpwC&printsec=frontcover&dq=expert+c+programming+deep+c+secrets#v=onepage&q=&f=false" rel="nofollow">Expert C Programming: Deep C Secrets</a></p>
http://stackoverflow.com/questions/1835059/what-is-evidence-based-software-engineering/1835187#18351870Answer by Parappa for What is Evidence-Based Software Engineering ?Parappa2009-12-02T19:18:37Z2009-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#18228716Answer by Parappa for What are these ^M's that keep showing up in my files in emacs?Parappa2009-11-30T22:29:03Z2009-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#18061342Answer by Parappa for Why is (python|ruby) interpreted?Parappa2009-11-26T23:38:18Z2009-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-c1Boost lib linker error Visual C++Parappa2009-11-26T20:04:33Z2009-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 &)" (??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#18010940Answer by Parappa for Input class - appropriate use of friend?Parappa2009-11-26T01:32:17Z2009-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#17938213Answer by Parappa for Declaring a variable in an if-else block in C++Parappa2009-11-24T23:59:08Z2009-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 < 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& player = *player_ptr;
// More code
}
</code></pre>
http://stackoverflow.com/questions/1800439/what-language-will-protect-my-source-code/1800482#18004820Answer by Parappa for What language will protect my source code?Parappa2009-11-25T22:48:24Z2009-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#17943590Answer by Parappa for glew32.dll run time errorParappa2009-11-25T02:59:20Z2009-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#17939820Answer by Parappa for Play a sound for a certain durationParappa2009-11-25T00:46:37Z2009-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#17938362Answer by Parappa for Get Diffrence Between Two Times (Unix Epoc)Parappa2009-11-25T00:02:44Z2009-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) > 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 > $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#17938783Answer by Parappa for Best way to check if a character array is emptyParappa2009-11-25T00:14:58Z2009-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#17936621Answer by Parappa for C++ dynamic allocated arrayParappa2009-11-24T23:23:14Z2009-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& space_used, int max_size, int value)
</code></pre>
<p>becomes</p>
<pre><code>bool list_add(int **list, int& 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#17931070Answer by Parappa for How to dynamically create a union instance in c++?Parappa2009-11-24T21:41:40Z2009-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#17852252Answer by Parappa for Regex to match part of a stringParappa2009-11-23T18:57:40Z2009-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#17851731Answer by Parappa for If / else order sequence issueParappa2009-11-23T18:49:23Z2009-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#17740632Answer by Parappa for Starting OpenGL Programming "Ultimate" ResourceParappa2009-11-21T00:31:01Z2009-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#17740571Answer by Parappa for Volume slider - volume doesn't change until mouse overParappa2009-11-21T00:28:24Z2009-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#17740402Answer by Parappa for how do you program?Parappa2009-11-21T00:22:50Z2009-11-21T00:22:50Z<p>Carefully and well.</p>
http://stackoverflow.com/questions/1768314/will-antlr-help-different-suggestion/1774033#17740331Answer by Parappa for Will ANTLR Help? Different Suggestion?Parappa2009-11-21T00:21:13Z2009-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#17667780Answer by Parappa for Flash AS3 : addChild() does not display imported movieclip.Parappa2009-11-19T21:43:32Z2009-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#17659812Answer 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?Parappa2009-11-19T19:39:25Z2009-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#172469610Answer by Parappa for Is it correct to ask to solve an NP-complete problem on a job interview?Parappa2009-11-12T19:22:26Z2009-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#17244911Answer by Parappa for How could I print out the nth letter of the alphabet in Python?Parappa2009-11-12T18:49:58Z2009-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#17241700Answer by Parappa for DirectX 9 Terrain Engine Problem C++Parappa2009-11-12T17:57:12Z2009-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#17244053Answer by Parappa for Explaining why "Just add another column to the DB" is a bad idea, to non programmers.Parappa2009-11-12T18:36:09Z2009-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#17116552Answer by Parappa for How do you track where in your code your business rules are implemented?Parappa2009-11-10T22:21:22Z2009-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#17042544Answer by Parappa for Determine source language from a binary?Parappa2009-11-09T22:10:07Z2009-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#16956592Answer by Parappa for Same instance referred to by multiple constructorsParappa2009-11-08T07:26:02Z2009-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#1837193Comment by Parappa on What is Evidence-Based Software Engineering ?Parappa2009-12-03T03:39:43Z2009-12-03T03:39:43ZThis 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#1822871Comment by Parappa on What are these ^M's that keep showing up in my files in emacs?Parappa2009-12-02T19:16:22Z2009-12-02T19:16:22ZIn vim it can be done with :%s/\r//ghttp://stackoverflow.com/questions/512202/what-is-boost-jam-and-is-it-jam-worth-migrating-to/658630#658630Comment by Parappa on what is boost jam and is it jam worth migrating to? Parappa2009-11-26T22:24:46Z2009-11-26T22:24:46Z+1 for SCons. :-)http://stackoverflow.com/questions/1805445/boost-lib-linker-error-visual-c/1805492#1805492Comment by Parappa on Boost lib linker error Visual C++Parappa2009-11-26T20:24:32Z2009-11-26T20:24:32ZIt is working! Thanks again.http://stackoverflow.com/questions/1805445/boost-lib-linker-error-visual-c/1805492#1805492Comment by Parappa on Boost lib linker error Visual C++Parappa2009-11-26T20:23:22Z2009-11-26T20:23:22ZI 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#1793982Comment by Parappa on Play a sound for a certain durationParappa2009-11-25T02:57:36Z2009-11-25T02:57:36ZSorry 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#1793836Comment by Parappa on Get Diffrence Between Two Times (Unix Epoc)Parappa2009-11-25T00:20:25Z2009-11-25T00:20:25ZAh 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#1793821Comment by Parappa on Declaring a variable in an if-else block in C++Parappa2009-11-25T00:09:10Z2009-11-25T00:09:10ZYup, I messed up. Tried to fix it.http://stackoverflow.com/questions/1793815/get-diffrence-between-two-times-unix-epoc/1793839#1793839Comment by Parappa on Get Diffrence Between Two Times (Unix Epoc)Parappa2009-11-25T00:05:17Z2009-11-25T00:05:17Z+1. You beat me to it. :)http://stackoverflow.com/questions/1766750/flash-as3-addchild-does-not-display-imported-movieclipComment by Parappa on Flash AS3 : addChild() does not display imported movieclip.Parappa2009-11-19T21:55:14Z2009-11-19T21:55:14ZWhat 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-listComment by Parappa on middle of linked listParappa2009-11-17T04:38:12Z2009-11-17T04:38:12ZSounds 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#1724416Comment by Parappa on What programs/languages should I learn for a career in web programming/design?Parappa2009-11-12T18:46:05Z2009-11-12T18:46:05ZI would add SQL and PHP to your list.http://stackoverflow.com/questions/1704202/determine-source-language-from-a-binary/1704254#1704254Comment by Parappa on Determine source language from a binary?Parappa2009-11-10T22:10:02Z2009-11-10T22:10:02ZIt 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#359210Comment by Parappa on What dead programming languages do you know?Parappa2009-10-06T23:50:03Z2009-10-06T23:50:03ZUpvoted for Modulahttp://stackoverflow.com/questions/1156989/how-to-make-php-faster-does-string-creation-have-no-costComment by Parappa on How to Make PHP Faster: Does String Creation Have No Cost?Parappa2009-07-21T03:05:21Z2009-07-21T03:05:21ZSomebody 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/…</a>