User Casey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T02:39:12Z http://stackoverflow.com/feeds/user/64313 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1527447/how-can-i-replace-intraline-tabs-with-spaces-maintaining-alignment/1527546#1527546 5 Answer by Casey for How can I replace intraline tabs with spaces, maintaining alignment? Casey 2009-10-06T19:20:02Z 2009-10-06T19:20:02Z <p>In Vim:</p> <pre><code>:retab </code></pre> <p>or, if you have tabs after spaces:</p> <pre><code>:retab! </code></pre> http://stackoverflow.com/questions/1522237/could-someone-recommend-video-tutorial-websites-for-beginners/1522318#1522318 1 Answer by Casey for Could someone recommend video tutorial websites for beginners? Casey 2009-10-05T20:49:58Z 2009-10-05T20:49:58Z <p>MIT has a great Intro to Computer Science course using Python.</p> <p><a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-00Fall-2008/CourseHome/index.htm" rel="nofollow">MIT 6.00 Introduction to Computer Science and Programming</a></p> http://stackoverflow.com/questions/1494523/publishing-a-git-svn-repo/1494978#1494978 1 Answer by Casey for Publishing a "git svn" repo Casey 2009-09-29T21:11:50Z 2009-09-29T21:11:50Z <ol> <li><p>It is safe to publish an SVN branch, but only if all commits are pushed to the SVN repo using <code>git-svn dcommit</code>. If you have no changes in the branch, then <code>git-svn rebase</code> will just do a fast forward.<br><br> If someone branches from the your published branch, it's important that they know that it is from an SVN repo. That's because if you ever try to accept their changes, the only way to push them into the SVN repo is by essentially rebasing their changes. After you publish the committed changes again, they will have to deal with the conflicting commits, since the hash will not match.</p></li> <li><p>It's safe to work in <code>master</code>, but probably not practical. From above, you can't publish your commits until you run <code>git-svn dcommit</code>. So if you have any work you don't want to commit, you will need to move it to a separate branch before trying to publish the latest SVN commits (i.e. <code>git-svn rebase; git push</code>)</p></li> </ol> http://stackoverflow.com/questions/1474022/version-control-to-manage-club-project/1474385#1474385 2 Answer by Casey for Version control to manage club project? Casey 2009-09-24T21:56:42Z 2009-09-24T21:56:42Z <p>Git has a really nice feature called <a href="http://www.kernel.org/pub/software/scm/git/docs/git-submodule.html" rel="nofollow">submodule</a>.</p> <p>It lets you group any number of unique git repositories into another repository. This way, all the programmers create their own repos, and then you can create a super project to link them all together.</p> <p>There is a good description on how to do this at the <a href="http://progit.org/book/ch6-6.html" rel="nofollow">Pro Git online book</a>.</p> http://stackoverflow.com/questions/1473625/python-multiprocessing-manager-composite-pattern-sharing/1474232#1474232 0 Answer by Casey for python multiprocessing manager & composite pattern sharing Casey 2009-09-24T21:23:40Z 2009-09-24T21:23:40Z <p>Is it possible there is a circular reference between the classes? For example, the outer class has a reference to the composite class, and the composite class has a reference back to the outer class.</p> <p>The multiprocessing manager works well, but when you have large, complicated class structures, then you are likely to run into an error where a type/reference can not be serialized correctly. The other problem is that errors from multiprocessing manager are very cryptic. This makes debugging failure conditions even more difficult.</p> http://stackoverflow.com/questions/558848/can-i-force-cache-coherency-on-a-multicore-x86-cpu/1457837#1457837 0 Answer by Casey for Can I force cache coherency on a multicore x86 CPU? Casey 2009-09-22T02:18:17Z 2009-09-22T02:18:17Z <p>The following is a good article in reference to using <code>volatile</code> w/ threaded programs.</p> <p><a href="http://software.intel.com/en-us/blogs/2007/11/30/volatile-almost-useless-for-multi-threaded-programming/" rel="nofollow">Volatile Almost Useless for Multi-Threaded Programming</a>.</p> http://stackoverflow.com/questions/1425714/how-do-you-mix-old-style-and-new-style-python-classes 0 How do you mix old-style and new-style Python classes? Casey 2009-09-15T07:41:44Z 2009-09-16T19:42:24Z <p>I've seen a few questions on this topic, but I haven't been able to find a definitive answer. </p> <p>I would like to know the proper way to use old-style classes in a new Python code base. Let's say for example that I have two fixed classes, <strong>A</strong> and <strong>B</strong>. If I want to subclass <strong>A</strong> and <strong>B</strong>, and convert to new-style classes (<strong>A2</strong> and <strong>B2</strong>), this works. However there is an issue if I want to create a new class <strong>C</strong>, from <strong>A2</strong> and <strong>B2</strong>. </p> <p>Therefore, is it possible to continue with this method, or do all classes have to conform to the old-style if any base class is defined as old-style?</p> <p>See the example code for clarification:</p> <pre><code>class A: def __init__(self): print 'class A' class B: def __init__(self): print 'class B' class A2(A,object): def __init__(self): super(A2, self).__init__() print 'class A2' class B2(B,object): def __init__(self): super(B2, self).__init__() print 'class B2' class C(A2, B2): def __init__(self): super(C,self).__init__() print 'class C' A2() print '---' B2() print '---' C() </code></pre> <p>The output of this code:</p> <pre><code>class A class A2 --- class B class B2 --- class A class A2 class C </code></pre> <p>As you can see, the problem is that in the call to <code>C()</code>, class <strong>B2</strong> was never initialized.</p> <p><hr /></p> <p><strong>Update - New-Style Class Example</strong></p> <p>I guess it is not clear what the correct initialization sequence should be when using <code>super</code>. Here is a working example where a call to super <strong>does</strong> initialize all base classes, not just <em>the first one it finds</em>.</p> <pre><code>class A(object): def __init__(self): super(A, self).__init__() print 'class A' class B(object): def __init__(self): super(B, self).__init__() print 'class B' class A2(A): def __init__(self): super(A2, self).__init__() print 'class A2' class B2(B): def __init__(self): super(B2, self).__init__() print 'class B2' class C(A2, B2): def __init__(self): super(C, self).__init__() print 'class C' C() </code></pre> <p>and produces the output:</p> <pre><code>class B class B2 class A class A2 class C </code></pre> http://stackoverflow.com/questions/1407638/git-merge-removing-files-i-want-to-keep/1407694#1407694 4 Answer by Casey for git merge: Removing files I want to keep! Casey 2009-09-10T21:00:54Z 2009-09-11T00:40:57Z <p>This is an interesting issue. Because you deleted the file after <code>BranchA</code> was created, and then are merging <code>master</code> into <code>BranchA</code>, I'm not sure how Git would be able to realize there is a conflict.</p> <p>After the bad merge you can undo, and then re-merge, but add back the file:</p> <pre><code>git checkout HEAD@{1} . git merge --no-commit master git checkout master test.txt git add test.txt git commit </code></pre> http://stackoverflow.com/questions/1402531/deciding-on-a-language-python-or-java/1402627#1402627 2 Answer by Casey for Deciding on a language: Python or Java Casey 2009-09-09T23:12:29Z 2009-09-09T23:12:29Z <p>IMHO, anyone suggesting you don't need unit tests in a static typed language (i.e. Java) is highly suspect.</p> http://stackoverflow.com/questions/687/keyboard-for-programmers/1381711#1381711 -1 Answer by Casey for Keyboard for programmers Casey 2009-09-04T21:45:59Z 2009-09-04T22:18:41Z <p><a href="http://www.kinesis-ergo.com/freestyle.htm" rel="nofollow">Kinesis Ergononme Keyboard, Freestyle solo USB</a> --> [see <a href="http://www.kinesis-ergo.com/support/kinesis%5Ffreestyle%5Fpc.pdf" rel="nofollow">PDF Brochure</a>]</p> <p>Available for purchase @ <a href="http://www.cyberguys.com/product-details/?productid=26638" rel="nofollow">CyberGuys.com</a> for <strong>$99.95</strong></p> <p><img src="http://www.kinesis-ergo.com/images/freestyle-solo%5F690x375.jpg" alt="Kinesis Ergonomic Keyboard, Freestyle solo USB, Black by DS International" /> <img src="http://ecx.images-amazon.com/images/I/51E4Fd4QVML.%5FSS400%5F.jpg" alt="Kinesis Ergonomic Keyboard, Freestyle solo USB, Black by DS International" /></p> http://stackoverflow.com/questions/1342232/nose-tests-of-pylons-app-with-models-in-initmodel/1344479#1344479 2 Answer by Casey for nose tests of Pylons app with models in init_model? Casey 2009-08-28T00:43:46Z 2009-08-28T00:43:46Z <p>I would try debugging your nosetest run. Why not put:</p> <pre><code>import pdb;pdb.set_trace() </code></pre> <p>in the <code>init_model()</code> function and see how it is getting invoked more than once.</p> <p>With PDB running you can see the stack trace using the <code>where</code> command:</p> <pre><code>w(here) Print a stack trace, with the most recent frame at the bottom. An arrow indicates the "current frame", which determines the context of most commands. 'bt' is an alias for this command. </code></pre> http://stackoverflow.com/questions/1274755/integrator-workflow-is-fetch-rebase-push-safe-for-remote-repos 2 Integrator workflow, Is fetch-rebase-push safe for remote repos? Casey 2009-08-13T21:38:33Z 2009-08-25T23:29:25Z <p>I'm managing a git repo using the integrator work flow. In other words, I pull commits from my co-workers, and push them out to the blessed repo.</p> <p>I'd like to keep the commit history linear for most cases, so is it OK to do a <code>rebase</code> instead of a <code>merge</code> when I integrate changes? Here is an example:</p> <pre><code>git fetch coworker git checkout coworker/master git rebase master git checkout master git merge HEAD@{1} git push </code></pre> <p>I'm concerned what will happen to the remote repos when they do their next <code>git pull</code>. Will git be able to handle this, or will the <code>coworker</code> repo fail during the <code>pull</code>, now that the commits are in a different order on the <code>origin</code>?</p> <p><strong>Update</strong>: I originally had the example rebase the 'coworker' branch from 'master'. What I intended was the opposite, to put the 'coworker' commits on top of the master. So I updated the example.</p> http://stackoverflow.com/questions/1274755/integrator-workflow-is-fetch-rebase-push-safe-for-remote-repos/1331578#1331578 0 Answer by Casey for Integrator workflow, Is fetch-rebase-push safe for remote repos? Casey 2009-08-25T23:29:25Z 2009-08-25T23:29:25Z <p>I did some simple tests on this work flow. I agree with Charles' post, but wanted to add some other info.</p> <p><strong>Pros</strong></p> <ul> <li>The workflow will not break the users pulling from your public repo.</li> <li>It gives you more control over the commits being pulled into your mainline.</li> <li>It is easier to follow the feature history of the mainline branch. If you have to do a merge commit (standard workflow) to pull multiple changes in, then the merge commit will group modifications of all the new commits into a single commit. This breaks the "one commit one feature" idiom.</li> </ul> <p><strong>Cons</strong></p> <ul> <li>On the repo where you are pulling changes from, the "original" commits will still show up. This will likely add confusion for the contributor, unless they know what you are doing. I guess one way around this is to have the contributor throw away their dev-branch after you pull and rebase it.</li> <li>If the remote repos don't throw away their dev branches after you rebase, then it makes the master branch history difficult to follow along side the remote branch.</li> <li>After the rebase, you loose the original authors name on the commit. (Maybe there is a manual way around this though.) This makes it harder to track who commited each change.</li> </ul> http://stackoverflow.com/questions/1313832/track-programming-progress-on-a-project/1313864#1313864 0 Answer by Casey for Track programming progress on a project Casey 2009-08-21T19:36:55Z 2009-08-21T19:36:55Z <p>I think the best solution is to use a local DVCS like git. Make sure you check in changes frequently. Then when you come back after a hiatus you'll have a really detailed log of what you were in the middle of doing.</p> http://stackoverflow.com/questions/1297519/trouble-finding-the-source-of-my-segfault/1297588#1297588 2 Answer by Casey for Trouble finding the source of my segfault Casey 2009-08-19T02:40:15Z 2009-08-19T02:46:22Z <p>It looks like segfault occurs trying to dereference <code>0xfeeefefe</code>, before the actual comparison. </p> <blockquote> <p>FEEEFEEE Used by Microsoft's HeapFree() to mark freed heap memory <a href="http://en.wikipedia.org/wiki/Magic%5Fnumber%5F%28programming%29" rel="nofollow">(1)</a></p> </blockquote> <p>What are the types of <code>__</code>x and <code>__y</code>? Can you verify the initial values written to <code>__x</code> and <code>__y</code>, and then put a watch on the memory location for any changes?</p> <p>Also, if you could put a break point on the <code>HeapFree</code> function, you might be able to catch a bad memory reference. </p> http://stackoverflow.com/questions/1275287/it-works-dont-touch-it-and-continues-engineering/1275365#1275365 13 Answer by Casey for "it works-don't touch it" and continues engineering Casey 2009-08-14T00:09:06Z 2009-08-14T01:54:25Z <p>I've dealt with this problem from time to time, and I can sympathise with your entire post. You have to be careful to pick and choose your battles with this, as you can quickly build up bad will with the people that don't agree. Here are some options:</p> <ol> <li>If it's just commenting or minor code-style, just leave it alone until you have to actually go back to the code for a change.</li> <li>If you have a code-style guideline, and there is code that is non-compliant, I would bring it up during a code review. Still, going back and fixing other people's code, just for style will probably piss them off.</li> <li>If there is a single person on your team that is just making zero effort to meet the comply with the agreed coding style or adding poor/low-quality comments, then you might be able to get the remainder of the team bought in on helping you clean things up every now and then. If it's just one person, hopefully they will get sick with people changing their code, and try and improve. Be careful though, cause even that one person can probably complain enough to the managers and have something blow back on you.</li> <li>Ok, so now to the point where there is more than just bad style, but poorly implemented code, sloppy, or whatever. Probably if it's functionally correct, you should just leave as is and move on. I would just note it in a journal and see if you can eventually get by-in from the rest of the team to fix it later.</li> <li>If the code has some faults, and you can see abstract errors, that may be testable, you could send off the test case to the owner, and maybe have the fix the issue. Again, this might start earning you some ill will with the person if you continue doing this, so be careful that the error is relevant to some degree.</li> <li>If the code is so flawed, that you feel it will not be acceptable for long term, then I think that point you need to have a face-to-face with the developer. It is likely that they won't agree with you, but if they do, maybe you can agree on a plan to fix it.</li> <li>Assuming the developer doesn't agree with you, I would at this point have a talk with your team lead and see what they think. If they're going to support you then you should move forward with it, and bring the team lead to back you up with another meeting with the developer.</li> <li><p>If your team lead doesn't go for it, then I think you need to just drop it, and see how it plays out in the long term. From here I think you have some big choices to make. If the team lead and/or other developers never support you then:</p> <ul> <li>You either need to accept the fact that your being too critical to your co-workers, and need to relax, the code will never be perfect. </li> <li>The other case, is that you're in a shop that will never be able to output a high-quality product. You need to decide if you want to continue making an investment with the group. If the answer is "no", then start updating your resume.</li> </ul></li> </ol> http://stackoverflow.com/questions/1275378/differences-between-pointer-initializations/1275387#1275387 0 Answer by Casey for Differences between pointer initializations Casey 2009-08-14T00:18:02Z 2009-08-14T00:18:02Z <p><strong>No, they are not equivalent</strong></p> <p>If <code>p = NULL</code>, then doing <code>*p = a</code> will give you a segmentation fault.</p> http://stackoverflow.com/questions/1191527/should-basic-continue-to-be-recommended-for-non-programmers-and-beginners 4 Should BASIC continue to be recommended for non-programmers and beginners? Casey 2009-07-28T01:40:50Z 2009-08-13T01:43:29Z <p>I just came across a new BASIC implementation for Google Android application called <a href="http://code.google.com/p/simple" rel="nofollow">Simple</a>. You can read about it here:</p> <p><a href="http://google-opensource.blogspot.com/2009/07/programming-made-simple.html" rel="nofollow">http://google-opensource.blogspot.com/2009/07/programming-made-simple.html</a></p> <p>Clearly, a lot of time and effort has been recently put into enabling this functionality for Android.</p> <p><strong>Should the software industry continue to encourage non-programmers into learning BASIC</strong>, or are modern languages like C#, Python, Ruby more appropriate at this time?</p> http://stackoverflow.com/questions/1265117/structure-problem-in-c/1265185#1265185 1 Answer by Casey for Structure Problem in C Casey 2009-08-12T09:33:53Z 2009-08-12T09:33:53Z <p>Use strncpy():</p> <pre><code>strncpy( aEntity-&gt;fileName, fileNameDir, sizeof(entity.fileName) ); aEntity.fileName[ sizeof(entity.fileName) - 1 ] = 0; </code></pre> <blockquote> <p>The strncpy() function is similar, except that not more than n bytes of src are copied. Thus, if there is no null byte among the first n bytes of src, <strong>the result will not be null-terminated.</strong> <a href="http://linux.die.net/man/3/strncpy" rel="nofollow">See man page.</a></p> </blockquote> http://stackoverflow.com/questions/1255223/what-are-the-important-notions-in-c-that-you-did-not-learn-from-your-teachers/1264259#1264259 1 Answer by Casey for What are the important notions in C that you did not learn from your teachers Casey 2009-08-12T04:49:55Z 2009-08-12T04:49:55Z <ul> <li>Non-procedural programming techniques including OOP patterns in C.</li> <li>Advanced C preprocessor techniques</li> <li>Debugging with something other than printf().</li> <li>Complier and linker features, including building shared/dynamic objects.</li> <li>Unit testing and mock objects, TDD in general.</li> </ul> http://stackoverflow.com/questions/1264170/how-do-you-keep-up-with-the-software-development-world/1264200#1264200 1 Answer by Casey for How do you keep up with the Software Development world? Casey 2009-08-12T04:22:31Z 2009-08-12T04:22:31Z <p>Obvious ... <strong>read StackOverflow.com</strong></p> http://stackoverflow.com/questions/1259547/is-it-a-good-idea-to-use-super-in-python/1259584#1259584 1 Answer by Casey for Is it a good idea to use super() in Python? Casey 2009-08-11T10:41:19Z 2009-08-11T10:41:19Z <p>Yes, just stick to keyword arguments in your <code>__init__</code> methods and you shouldn't have too many problems.</p> <p>I agree that it is brittle, but no less so than using the name of the inherited class.</p> http://stackoverflow.com/questions/1257638/variable-sized-structs-with-trailers/1257685#1257685 6 Answer by Casey for Variable sized structs with trailers Casey 2009-08-10T22:56:57Z 2009-08-10T23:28:01Z <p>Try updating the struct and then adding the following:</p> <pre><code>typedef struct{ unsigned int h; unsigned int* b; unsigned int t; } pkt; ... ... pkt p; p-&gt;b = arr </code></pre> <p>Here is a visual example of what it is doing...</p> <pre><code>|----------------------| | header | |----------------------| | B int* | ------- p-&gt;b = arr |----------------------| | | trailer | | |----------------------| v |----------------------| arr | | | B items [0 ... N] | | | |----------------------| </code></pre> <p>If you want to get tricky you can do something like this ...</p> <pre><code>|----------------------| | header | |----------------------| | B int* | ------- (= to memory address after trailer) |----------------------| | | trailer | | |----------------------| | | | &lt;------- | B items [0 ... N] | | | |----------------------| </code></pre> <p>Here is a working version of the later:</p> <pre><code>#include "stdlib.h" #include "stdio.h" #include "malloc.h" typedef struct{ unsigned int h; unsigned int* b; unsigned int t; } pkt; int main(){ pkt* p = (pkt*) malloc( sizeof(pkt) + sizeof(int)*10); p-&gt;h = 0x0905006a; p-&gt;b = &amp;(p-&gt;t)+1; p-&gt;t = 0x55555555; p-&gt;b[0] = 0xafbb0000; p-&gt;b[1] = 0xafbb0001; p-&gt;b[2] = 0xafbb0011; p-&gt;b[3] = 0xafbb0111; p-&gt;b[4] = 0xafbb1111; p-&gt;b[5] = 0xafbc0000; p-&gt;b[6] = 0xafbc0001; p-&gt;b[7] = 0xafbc0011; p-&gt;b[8] = 0xafbc0111; p-&gt;b[9] = 0xafbc1111; int counter; printf( "header is \n" ); printf( "%0x\n", p-&gt;h); printf( "body is\n" ); for(counter=0; counter &lt; 10;++counter) printf( "%0x\n", (p-&gt;b)[counter]); printf( "trailer is\n" ); printf( "%0x\n", p-&gt;t ); } </code></pre> http://stackoverflow.com/questions/1250779/python-class-vs-module-attributes 1 Python Class vs. Module Attributes Casey 2009-08-09T06:04:50Z 2009-08-09T21:02:56Z <p>I'm interested in hearing some discussion about class attributes in Python. For example, what is a good use case for class attributes? For the most part, I can not come up with a case where a class attribute is preferable to using a module level attribute. If this is true, then why have them around?</p> <p>The problem I have with them, is that it is almost too easy to clobber a class attribute value by mistake, and then your "global" value has turned into a local instance attribute.</p> <p>Feel free to comment on how you would handle the following situations:</p> <ol> <li>Constant values used by a class and/or sub-classes. This may include "magic number" dictionary keys or list indexes that will never change, but possible need one-time initialization.</li> <li>Default class attribute, that in rare occasions updated for a special instance of the class.</li> <li>Global data structure used to represent an internal state of a class shared between all instances.</li> <li>A class that initializes a number of default attributes, not influenced by constructor arguments.</li> </ol> <p>Some Related Posts: <br> <a href="http://stackoverflow.com/questions/207000/python-difference-between-class-and-instance-attributes">Difference Between Class and Instance Attributes</a></p> http://stackoverflow.com/questions/1241720/git-cherry-pick-vs-merge-workflow 5 Git Cherry-pick vs Merge Workflow Casey 2009-08-06T21:50:25Z 2009-08-08T12:22:19Z <p>Assuming I am the maintainer of a repo, and I want to pull in changes from a contributor, there are a few possible workflows:</p> <ol> <li>I <code>cherry-pick</code> each commit from the remote (in order). In this case git records the commit as unrelated to the remote branch.</li> <li>I <code>merge</code> the branch, pulling in all changes, and adding a new "conflict" commit (if needed).</li> <li>I <code>merge</code> each commit from the remote branch individually (again in order), allowing conflicts to be recorded for each commit, instead of grouped all together as one. </li> <li>For completeness, you could do a <code>rebase</code> (same as <code>cherry-pick</code> option?), however my understanding is that this can cause confusion for the contributor. Maybe that eliminates option 1.</li> </ol> <p>In both cases 2 and 3, git records the branch history of the commits, unlike 1.</p> <p><strong>What are the pro's and con's between using either <code>cherry-pick</code> or <code>merge</code> methods described?</strong> My understanding is that method 2 is the norm, but I feel that resolving a large commit with a single "conflict" merge, is not the cleanest solution. </p> http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1220061#1220061 2 Answer by Casey for What are things that make a programmer's life miserable? Casey 2009-08-02T22:38:42Z 2009-08-04T00:44:11Z <p>Management has "<strong>employee dress-up</strong>" days when any customer on any project is in the office. 9/10 times the customer does not stay long enough to see more than 3% of the work staff.</p> http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1220041#1220041 4 Answer by Casey for What are things that make a programmer's life miserable? Casey 2009-08-02T22:33:46Z 2009-08-02T22:40:37Z <p>Asinine management that value capital expenditures at 100x the cost of salary rate. For example:</p> <ul> <li>Reject purchase of memory upgrades, that would increase build speed 200% or more.</li> <li>Reject purchase of commercial software in favor of inferior "free" versions, or nothing at all.</li> <li>Think that having Google is a replacement for purchasing any published material or paying to access subscription web sites.</li> <li>Expectation to spend 3 or 4 man-hours for documenting and processing time to justify and reimburse a $20 purchase.</li> <li>Killing team moral for week or longer by canceling team-building functions to save $200-$300.</li> </ul> http://stackoverflow.com/questions/1162234/what-is-the-benefit-of-private-name-mangling-in-python 3 What is the benefit of private name mangling in Python? Casey 2009-07-21T23:11:31Z 2009-07-22T06:20:49Z <p>Python provides <a href="http://docs.python.org/reference/expressions.html#atom-identifiers" rel="nofollow">private name mangling</a> for class methods and attributes.</p> <p>Are there any concrete cases where this feature is required, or is it just a carry over from Java and C++?</p> <p><strong>Please describe a use case where Python name mangling should be used, if any?</strong></p> <p>Also, I'm not interested in the case where the author is merely trying to prevent accidental external attribute access. I believe this use case is not aligned with the Python programming model.</p> http://stackoverflow.com/questions/1110803/if-you-wanted-to-improve-software-development-in-your-organization-and-you-had-1/1140154#1140154 1 Answer by Casey for If you wanted to improve software development in your organization and you had $1000 to spend, what would you spend it on? Casey 2009-07-16T20:37:22Z 2009-07-16T20:37:22Z <p>Tell your team they can give out a $25 (gift card) bonus to anyone at any time for doing exceptional work. This might be for giving you a 30 min code review, helping you fix a nasty bug, or finishing a work assignment in above average time. With $1000, this is enough for 40 awards. Average about 0.5-1.0 award/person/week.</p> <p>The time/date/reason should be recorded by single party to reduce the risk of abuse. I had this at my last job, and I was not aware of any problems.</p> <p>Some people might think that using a bonus is a poor way to encourage morale, but $25 is really not that much, so its more of the recognition thing. When the awards come from co-workers instead of managers, it will usually have a larger impact to the receiver. I think its important that people are not left out, even the newest employees, so there should be a different scale for different workers. </p> <p>I would try it out for a few weeks, if there are problems, then make an adjustment or try something else.</p> http://stackoverflow.com/questions/488462/vi-vim-how-to-set-the-tab-label-title-length-to-a-fixed-size-in-chars/1112056#1112056 0 Answer by Casey for vi / vim - how to set the tab label/title length to a fixed size in chars Casey 2009-07-10T21:23:34Z 2009-07-10T21:23:34Z <p>I found the following <a href="http://blog.golden-ratio.net/2008/08/19/using-tabs-in-vim/" rel="nofollow">blog post</a> was the most concise of all.</p> <p>The link provides the following function which should be placed in your <code>.gvimrc</code> file.</p> <pre><code>function! GuiTabLabel() " add the tab number let label = '['.tabpagenr() " modified since the last save? let buflist = tabpagebuflist(v:lnum) for bufnr in buflist if getbufvar(bufnr, '&amp;modified') let label .= '*' break endif endfor " count number of open windows in the tab let wincount = tabpagewinnr(v:lnum, '$') if wincount &gt; 1 let label .= ', '.wincount endif let label .= '] ' " add the file name without path information let n = bufname(buflist[tabpagewinnr(v:lnum) - 1]) let label .= fnamemodify(n, ':t') return label endfunction set guitablabel=%{GuiTabLabel()} </code></pre> http://stackoverflow.com/questions/323411/bugzilla-or-mantis/323542#323542 Comment by Casey on Bugzilla or Mantis? Casey 2009-12-11T01:48:27Z 2009-12-11T01:48:27Z Can you add a link to the multi-proejct trac plugin? http://stackoverflow.com/questions/1495004/favorite-interview-question/1495028#1495028 Comment by Casey on Favorite Interview Question? Casey 2009-09-30T03:14:34Z 2009-09-30T03:14:34Z 0; you can correctly choose 2 stones with 1% probability using random selection. http://stackoverflow.com/questions/1495666/how-to-define-a-class-in-python/1495681#1495681 Comment by Casey on How to define a class in Python Casey 2009-09-30T02:50:34Z 2009-09-30T02:50:34Z This is unnecessary and makes it difficult to extend the class using inheritance. http://stackoverflow.com/questions/1241720/git-cherry-pick-vs-merge-workflow/1241829#1241829 Comment by Casey on Git Cherry-pick vs Merge Workflow Casey 2009-09-29T04:02:41Z 2009-09-29T04:02:41Z What do you think about &quot;merge --squash&quot; ? http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/1429390#1429390 Comment by Casey on What are the dark corners of Vim your mom never told you about? Casey 2009-09-22T22:31:10Z 2009-09-22T22:31:10Z so I guess this won't work if you use 'set expandtab' to force all tabs to spaces. http://stackoverflow.com/questions/72552/c-when-has-the-volatile-keyword-ever-helped-you/76974#76974 Comment by Casey on C++: When Has The volatile Keyword Ever Helped You? Casey 2009-09-22T04:32:44Z 2009-09-22T04:32:44Z Agree with Zan Lynx. If you use correct mulit-threaded primitives, using volatile is unnecessary and degrades performance. The computer hardware will correctly perform necessary cache synchronization. http://stackoverflow.com/questions/1457814/get-every-combination-of-strings Comment by Casey on get every combination of strings Casey 2009-09-22T02:47:20Z 2009-09-22T02:47:20Z Can you expand on your example? Is it ok to choose the same item multiple times? http://stackoverflow.com/questions/1321615/what-are-multi-threading-dos-and-donts/1321653#1321653 Comment by Casey on What are multi-threading DOs and DONTs? Casey 2009-09-21T23:09:46Z 2009-09-21T23:09:46Z In any professional shop, the answer is likely going to be 'yes'. If not right now, then at some point down the line. Not knowing this topic is going to hold you back eventually. http://stackoverflow.com/questions/1321615/what-are-multi-threading-dos-and-donts/1321666#1321666 Comment by Casey on What are multi-threading DOs and DONTs? Casey 2009-09-21T22:58:25Z 2009-09-21T22:58:25Z If this is true, then it is a hardware design flaw. The CPU cache design should be transparent to the software. Volatile should only be necessary when the memory is change by non-CPU hardware. http://stackoverflow.com/questions/558848/can-i-force-cache-coherency-on-a-multicore-x86-cpu/558900#558900 Comment by Casey on Can I force cache coherency on a multicore x86 CPU? Casey 2009-09-21T22:55:32Z 2009-09-21T22:55:32Z -1 the whole point of 'volatile' is to force the CPU to ignore cached values. Maybe your version of 'volatile' is broken. http://stackoverflow.com/questions/1442250/accessing-a-python-variable-in-a-list Comment by Casey on Accessing a Python variable in a list Casey 2009-09-18T01:58:16Z 2009-09-18T01:58:16Z list is missing an '[' brace? http://stackoverflow.com/questions/1425714/how-do-you-mix-old-style-and-new-style-python-classes/1435060#1435060 Comment by Casey on How do you mix old-style and new-style Python classes? Casey 2009-09-16T23:18:19Z 2009-09-16T23:18:19Z This was mentioned before, but it is painful to maintain a customized version of 3rd-party libraries. If there is any way to avoid this, then I would prefer that. http://stackoverflow.com/questions/1425714/how-do-you-mix-old-style-and-new-style-python-classes Comment by Casey on How do you mix old-style and new-style Python classes? Casey 2009-09-15T23:10:49Z 2009-09-15T23:10:49Z Please correct me if wrong, but your answer is then &quot;don't use super.&quot;? http://stackoverflow.com/questions/1425714/how-do-you-mix-old-style-and-new-style-python-classes/1425998#1425998 Comment by Casey on How do you mix old-style and new-style Python classes? Casey 2009-09-15T21:36:13Z 2009-09-15T21:36:13Z Getting pedantic that the initial call to super() does not directly call all base classes is really irrelevant. For the average developer, the important point is that super() works when implemented properly. http://stackoverflow.com/questions/1425714/how-do-you-mix-old-style-and-new-style-python-classes Comment by Casey on How do you mix old-style and new-style Python classes? Casey 2009-09-15T21:35:11Z 2009-09-15T21:35:11Z Sorry you feel that way, but that is the proper way to use super(). Just because the old-style classes don't have an equivalent form, should not be a reason to discount this type of comparison.