cdleary

5,753
reputation
530 views

Registered User

name cdleary
member for 1 year
seen 23 hours ago
website
location Silicon Valley, CA
age 23
Dec
15
awarded  Popular Question
Dec
6
awarded  Mortarboard
Dec
6
awarded  Popular Question
Nov
29
comment What’s the idiomatic way to turn a single char into a string in Java?
And you won the race by two seconds... the Java tag sure is fast-moving!
Nov
29
asked What’s the idiomatic way to turn a single char into a string in Java?
Nov
25
comment Is there a cross-platform way to open a file browser in Python?
@S.Lott: Not a Python-process owned GUI window -- shelling out to a native subprocess in the same sense that webbrowser does, appropriate to the user's operating environment.
Nov
25
awarded  Notable Question
Nov
25
asked Is there a cross-platform way to open a file browser in Python?
Nov
22
awarded  Nice Question
Nov
19
awarded  Popular Question
Nov
16
comment wxPython: How should I organize per-widget data in the controller?
This makes perfect sense and demonstrates my imperfect understanding of MVC theory -- for data that is "observable" (or shared across widgets), regardless of how "business" it is, the MVC pattern is more useful. Even though the systems I'm targeting have no inotify-like abilities (making the refresh command necessary), I could see retargeting this widget for platforms that did gain through observation. I think I have a much better understanding of where MVC practicality beats purity now -- thanks Alex!
Nov
15
answered wxPython: How should I organize per-widget data in the controller?
Nov
15
comment wxPython: How should I organize per-widget data in the controller?
My hang-up is that the displayed directories are not "business data" (i.e. it's not serialized or stored away anywhere), it's just metadata about the state of the UI. wxPython is just a library for windowing systems, so the MVC separation is all my own effort towards a maintainable system.
Nov
13
awarded  Tumbleweed
Nov
6
revised wxPython: How should I organize per-widget data in the controller?
Making question specific to wxPython.
Nov
6
awarded  Popular Question
Nov
6
asked wxPython: How should I organize per-widget data in the controller?
Nov
5
awarded  Notable Question
Nov
4
revised Easy_install of wxpython has “setup script” error.
Put shell command into code block.
Oct
27
awarded  Nice Question
Oct
26
awarded  Notable Question
Oct
24
comment Why does stdlib.h’s abs() family of functions return a signed value?
Agreed that's the general case counter-argument. Just a nitpick clarification: you never have to check whether something is below INT_MIN if it's a flavor of int, so in this particular case of unsigned abs(signed) you would not have to check the argument at all before invocation.
Oct
23
comment Why does stdlib.h’s abs() family of functions return a signed value?
It shouldn't be any slower -- the common assembly sequence for absolute value is ((x + y) ^ y), which works fine for the maximum negative value resulting in an unsigned word.
Oct
23
comment Why does stdlib.h’s abs() family of functions return a signed value?
I can buy this -- type promotion is complex and you can't blame anyone for wishing everything fit in a signed value. I guess if I could go back in time to argue with the committee I would say that abs should be as accurate as possible and that C programmers already have to know how to deal with function return types and type promotion in expressions, but I left my time machine on a bus one time.
Oct
23
revised Why does stdlib.h’s abs() family of functions return a signed value?
Update with an example.
Oct
23
asked Why does stdlib.h’s abs() family of functions return a signed value?
Oct
23
comment Idiomatic Python has_one
functools.reduce(operator.__add__, ...) is what sum is for!
Oct
18
revised Idiomatic Python has_one
Augmented clarification.
Oct
18
revised Idiomatic Python has_one
Added clarification.
Oct
17
comment Idiomatic Python has_one
@gnibbler: You could probably make a case for it, but I don't particularly like idioms that seem to violate fundamental laws of logic. (Law of the excluded middle is slightly more universal than Python ;-)
Oct
17
revised Idiomatic Python has_one
Removing unnecessary information the may have confused the question.
Oct
17
comment Idiomatic Python has_one
I like this better than the question's .count(True) for the inline idiom. The corresponding generator expression is uglier in this particular case, as sum(1 for item in seq if predicate(item)), so I think map is the way to go. Technically, though, the genexp doesn't rely on the predicate returning a bool.
Oct
17
comment Idiomatic Python has_one
It's clever, but I think that's probably a bad thing. I wouldn't blame people for looking at it concluding it never returns true.
Oct
17
revised Idiomatic Python has_one
Emboldened the question.
Oct
17
asked Idiomatic Python has_one
Oct
15
awarded  Popular Question
Oct
4
accepted Changes to Python since Dive into Python
Oct
2
awarded  Popular Question
Sep
29
awarded  Notable Question
Sep
28
awarded  Nice Question
Sep
18
awarded  Popular Question
Sep
14
awarded  Popular Question
Sep
13
awarded  Nice Question
Sep
6
awarded  Popular Question
Aug
30
awarded  Yearling
Aug
28
awarded  Notable Question
Aug
19
comment Are there conclusive studies/experiments on C compilation using a C++ compiler?
@dwelch: I'd be happy to see evidence either (both) ways, as that would at least demonstrate something. Right now I can't find anything but speculation and anecdotes. :-)
Aug
15
comment Are there conclusive studies/experiments on C compilation using a C++ compiler?
@sbi: Yes, I understand that many people would expect that result. The question asks for experimental evidence. It's all about the science!
Aug
14
comment Are there conclusive studies/experiments on C compilation using a C++ compiler?
@onebyone: It would be begging the question if I were actually making the assumption that the statement is correct. I am asking for real-world experimental evidence that demonstrates that conclusion.
Aug
14
comment Are there conclusive studies/experiments on C compilation using a C++ compiler?
@sbi: The "stricter checking" statement is irrelevant to this question and largely troll bait. I'm asking specifically about perf and evidence.