Casey

1,286
Reputation
170 views

Registered User

name Casey
member for 10 months
seen Dec 3 at 1:43
website
location HI
age 29
Interested in Python and git ATM.
Oct
6
accepted How can I replace intraline tabs with spaces, maintaining alignment?
Oct
6
answered How can I replace intraline tabs with spaces, maintaining alignment?
Oct
5
answered Could someone recommend video tutorial websites for beginners?
Sep
30
comment Favorite Interview Question?
0; you can correctly choose 2 stones with 1% probability using random selection.
Sep
30
accepted Publishing a “git svn” repo
Sep
29
answered Publishing a “git svn” repo
Sep
29
comment Git Cherry-pick vs Merge Workflow
What do you think about "merge --squash" ?
Sep
24
answered Version control to manage club project?
Sep
24
answered python multiprocessing manager & composite pattern sharing
Sep
22
comment What are the dark corners of Vim your mom never told you about?
so I guess this won't work if you use 'set expandtab' to force all tabs to spaces.
Sep
22
comment get every combination of strings
Can you expand on your example? Is it ok to choose the same item multiple times?
Sep
22
answered Can I force cache coherency on a multicore x86 CPU?
Sep
21
comment What are multi-threading DOs and DONTs?
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.
Sep
21
comment What are multi-threading DOs and DONTs?
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.
Sep
21
comment Can I force cache coherency on a multicore x86 CPU?
-1 the whole point of 'volatile' is to force the CPU to ignore cached values. Maybe your version of 'volatile' is broken.
Sep
18
comment Accessing a Python variable in a list
list is missing an '[' brace?
Sep
16
comment How do you mix old-style and new-style Python classes?
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.
Sep
15
comment How do you mix old-style and new-style Python classes?
Please correct me if wrong, but your answer is then "don't use super."?
Sep
15
comment How do you mix old-style and new-style Python classes?
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.
Sep
15
comment How do you mix old-style and new-style Python classes?
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.
Sep
15
comment How do you mix old-style and new-style Python classes?
See my update, super executes all __init__ methods.
Sep
15
revised How do you mix old-style and new-style Python classes?
added working example
Sep
15
comment How do you mix old-style and new-style Python classes?
Super will call all base class methods if implemented with all new-style classes and used consistently. My question is how to handle the case when you are forced to mix in an old-style class. I am aware of how to directly call the parent methods, but this breaks for diamond inheritance.
Sep
15
revised How do you mix old-style and new-style Python classes?
deleted 2 characters in body
Sep
15
asked How do you mix old-style and new-style Python classes?
Sep
14
comment Copying git local branch between machines?
Is not '--track' unnecessary? The docs say that "this behavior is the default when the start point is a remote branch".
Sep
12
accepted git merge: Removing files I want to keep!
Sep
11
revised git merge: Removing files I want to keep!
added 34 characters in body
Sep
11
comment git merge: Removing files I want to keep!
no, you don't need a manual backup. You can get the file out of the master branch. I updated the example.
Sep
10
answered git merge: Removing files I want to keep!
Sep
10
comment Deciding on a language: Python or Java
Yes, and it's so hard to find Linux programmers that the Linux Foundation was forced to hire Linus Torvalds. It's pretty lucky he can find a job in this market.
Sep
10
comment Deciding on a language: Python or Java
For example, Java has 'ArrayList', 'LinkedList', 'Vector'; Python just has list(). Hope your Java developers pick the right one.
Sep
9
answered Deciding on a language: Python or Java
Sep
9
comment What do you do with a developer that does not test his code?
yes, with DVCS you can refuse to accept code that does not meet the minimum quality.
Sep
9
comment Why should I use an IDE?
Warning-as-you-type, I assume John Skeet needs this for warning the IDE trying to correct the following code would be an attempt in futility.
Sep
9
comment Vim 80 column layout concerns
This made my day.
Sep
7
awarded  Popular Question
Sep
4
revised Keyboard for programmers
added 20 characters in body
Sep
4
answered Keyboard for programmers
Sep
4
comment Keyboard for programmers
Good post, never seen this before, but I like it a lot.
Sep
4
comment Keyboard for programmers
I'd up-vote this, but there is no link.
Sep
2
awarded  Nice Answer
Sep
1
awarded  Nice Answer
Aug
28
accepted nose tests of Pylons app with models in init_model?
Aug
28
answered nose tests of Pylons app with models in init_model?
Aug
25
answered Integrator workflow, Is fetch-rebase-push safe for remote repos?
Aug
25
comment Integrator workflow, Is fetch-rebase-push safe for remote repos?
Sorry about confusion, I updated the work flow. So in actuality, the history of public branch is not changing. Instead, new changes are being re-commited onto the HEAD of the master branch. Therefore any branches from the "blessed" repo are still valid.
Aug
25
revised Integrator workflow, Is fetch-rebase-push safe for remote repos?
deleted 7 characters in body
Aug
24
comment How Do I Know When I Am Skilled Enough To Get A C#/.NET Job?
I think this question is generic enough that it should be set to community wiki.
Aug
21
answered Track programming progress on a project