Andy Dent

3,495
Reputation
521 views

Registered User

Name Andy Dent
Member for 10 months
Seen 9 hours ago
Website
Location Perth, Western Australia
Age 46
  • non-computing interests:
    • Chow Gar kung fu and Tai Chi,
    • reading and (pretending to) writing SF
    • scuba diving,
    • occasional ice skating (dance and figure),
    • solar housing,
    • carpentry
  • computing interests:
    • OOD, OO languages and frameworks
    • Usability,
    • cross-platform development,
    • code generation
5h
awarded  Notable Question
21h
answered which is a better language (C++ or Python) for complex problem solving exercises (ex. Graphs) ?
21h
answered Can you create custom build rules for XCode based on file type?
21h
comment Is Mac experience important for a future developer?
Very ignorant comment. The Mac Cocoa GUI and main Objective-C programming language have significant differences from other frameworks.
22h
answered Reliable and efficient key--value database for Linux?
22h
answered UI Databinding: alternatives and future
23h
answered Ruby without Rails
Nov
26
answered parasoft C++ unit test question
Nov
26
answered Would you hire a C++ programmer with 10 years experience for a C# role?
Nov
24
revised How do you estimate a ROI for clearing technical debt?
typo2 (need caffeine, dyslexic start to day)
Nov
24
comment How do you estimate a ROI for clearing technical debt?
On a large code base with long history, statistical approaches like this should converge on reasonable estimates. You do, of course, need to know to what degree people could devote time to a project but that's a simple time-series analysis and can be refined when people look at the figures. ("Hey, I was on holiday for that week and working 30 hours/week on FizzBuzz 2.0 in May").
Nov
24
revised How do you estimate a ROI for clearing technical debt?
add mention of effort-based estimation
Nov
24
comment How do you estimate a ROI for clearing technical debt?
Yes, (I did say "rough") - simply review commit times by known working days.
Nov
24
comment WPF ToggleButton and DelegateCommand
How does having multiple buttons prevent you binding them to the viewmodel? They obviously have some unique identifier so that could be used as a key to a collection property.
Nov
24
answered How do you estimate a ROI for clearing technical debt?
Nov
24
comment Managed class definition in C++\CLI
@Benny, yes but only as far as that is meaningful - the compiler is always free to decide to not inline a function.
Nov
24
comment Improving the performance of C code…
straightforward solution - simply statistically strange
Nov
24
answered C#/.NET: Creating Dynamic Visuals in C#
Nov
24
accepted Managed class definition in C++\CLI
Nov
24
answered how to store regions in a database field
Nov
24
answered Managed class definition in C++\CLI
Nov
24
answered Are there any good resources on real world practical uses of programming theory?
Nov
23
answered How to design objects?
Nov
23
comment Is it possible to deallocate a statically defined array?
why do you ask and in what language?
Nov
22
answered Has anybody used Unit Testing as a way to learn programming?
Nov
22
comment Has anybody used Unit Testing as a way to learn programming?
You get a point for effort which I took away for being wrong - I don't think I've ever seen ANYONE assert that unit testing "is done at the end".
Nov
21
revised 4D - is it any good?
add 4D praise
Nov
21
comment 4D - is it any good?
@Simon REALbasic is even better than 4D at putting together cross-platform GUI however they have removed their database bindings (part of a long-term cleanup of the core) and so for database apps it's not a rival - you have to map SQL results yourself. I'm working on a port of my OOFILE c++ frameworks to make that kind of thing trivial, started by getting the report-writer going.
Nov
20
comment Bitblt blackness
You should be saving the result of your SelectObject and restoring it before the Delete, to avoid Windows problems, possibly you are avoiding crashes because of the release of the DC but it may have other side-effects: HBITMAP saveBM; .. saveBM = SelectObject(hdcMem, bitmap); ... SelectObject(hdcMem, saveBM); DeleteObject(bitmap);
Nov
20
answered Secure iPhone-Desktop Connection
Nov
19
comment Why does memcpy fail copying to a local array member of a simple object?
"if you wrote good c" - I'm porting it, I didn't write it! I can't use structs for things which assume the original Apple definitions which are typedefs. As I said, normally when porting code like this I use objects and operator overloading to get robust types.
Nov
19
comment FORTH love if honk then
you forgot to say "sadly" - it is unlikely you are going to make a living using it on real-world projects :-/
Nov
19
answered Does anybody know a real life example of IronRuby usage
Nov
19
answered Real world usage of concatenative programming langauges
Nov
17
answered Which non mainstream programming language to use for a hobby project?
Nov
17
answered programming languages not in english?
Nov
17
comment Code Golf: Fractran
titillating ternary trick to terminate!
Nov
17
comment Tech Books you have but never read
ditto the really, really want to read
Nov
17
comment Tech Books you have but never read
That's a great vanity title to have on a visible bookshelf though, comes with free testosterone.
Nov
17
revised C++ Classes - Pointers question
corrected to mention global array init to zero
Nov
17
comment C++ Classes - Pointers question
good point. The precise wording (from C++ Programming Language sec 9.4.1) is "nonlocal variables...variables defined outside any function...by default initialised to the default for its type."
Nov
17
comment C++ Classes - Pointers question
Judging by your response on that issue and the bit quoted, the standard would seem to suggest that the array is a single instance (allocated by new) and the Point* slots within the array are still NOT instances ;-). I'm a POD!=instance kinda guy.
Nov
16
awarded  Necromancer
Nov
16
answered Is the default Ruby install on Mac OSX 10.5 “good enough” for Rails development?
Nov
16
answered C++ Classes - Pointers question
Nov
16
comment What are some questions to ask when choosing between two equal programmers?
Do Java programmers need to understand pointers? Do Python programmers? You might get a blank look from someone who actually understands simple type value passing vs object references and can be really useful but doesn't know the term "pointer".
Nov
14
answered What are some questions to ask when choosing between two equal programmers?
Nov
14
answered What are some questions to ask when choosing between two equal programmers?
Nov
12
answered What’s the best toolchain for Continuous Integration with C++?
Nov
12
comment Is anybody working on a high level standard library for C++
The speed of standard C++ development has nothing to do with external frameworks, Boost is not part of the standards process. This is a ridiculous argument.