emk

1,963
Reputation
140 views

Registered User

Name emk
Member for 1 year
Seen yesterday
Website
Location Vermont, USA
Age
2d
comment Why does C have a distinction between -> and . ?
Good point. And that memory reference may be very expensive on modern architectures, perhaps costing 1000x as much as accessing a register, assuming that the data needs to be fetched from main memory.
Nov
8
awarded  Good Answer
Oct
31
accepted MySQL AND Filemaker Pro?
Sep
17
awarded  Yearling
Aug
25
accepted How to release a subset of deliverables?
Aug
24
revised Which pattern would you choose for web application and why?
More minor edits, links to a general GUI MVC/MVP article
Aug
24
revised Which pattern would you choose for web application and why?
Minor edits to improve wording
Aug
24
revised Which pattern would you choose for web application and why?
Traditional MVC and MVP+event bus
Aug
24
revised Which pattern would you choose for web application and why?
Links and background reading
Aug
24
answered Which pattern would you choose for web application and why?
Aug
24
comment How to release a subset of deliverables?
I've tried to answer some of questions. The answers are based on my own personal experiences, so your mileage may vary. :-)
Aug
24
revised How to release a subset of deliverables?
Answer questions in the comments
Aug
24
answered How to release a subset of deliverables?
Aug
24
comment Difference between MIT License and public domain
+1, because I've heard that at least some lawyers say this (and because a few are confused by public domain even within the US). Oh, and the MIT license also contains quite a few disclaimers.
Aug
24
comment Does going out of scope like this free the associated memory?
Thank you for pointing out the rather serious bug in method2.
Aug
23
comment Writing a new refactoring plugin for Eclipse?
Ah, thank you! Those are also very useful articles. I think the time has arrived for me to start digging through the source code for the built-in refactorings.
Aug
21
asked Writing a new refactoring plugin for Eclipse?
Aug
20
comment Where did all the java applets go?
I don't know. I've never actually seen a JavaFX demo run successfully in Firefox 3.5 on my Mac, or even give me an error message telling me what I need to install. :-(
Aug
20
comment Enums in Ruby
Popular Ruby frameworks rely heavily on runtime metaprogramming, and performing too much load-time checking would take away most of Ruby's expressive power. To avoid problems, most Ruby programmers practice test-driven design, which will find not just typos but also logic errors.
Jul
20
comment How do I clone all remote branches with Git?
Cristian: I used to always create a branch 'foo' for every branch 'origin/foo', but this led to two problems: (1) I wound up with lots of really stale tracking branches that were many commits behind the corresponding remote branch, and (2) in older versions of git, running 'git push' would attempt to push all my local branches to a remote, even when those branches were stale. So now I only keep local branches for things that I'm actively developing, and access the origin/* branches directly if I need information about them. (That said, you could use a shell script to parse 'git branch -a'.)
Jun
30
awarded  Nice Answer
Jun
14
comment How can you tell if a person is a programmer?
I once popped the conversational stack 3 times, greatly to the amusement and horror of my conversational partner. This cannot be a good sign. :-)
Jun
12
comment Reformat C++ braces without changing indentation?
Many thanks! This is a good start, and it can be adapted to handle other constructs like 'catch'.
Jun
12
comment Reformat C++ braces without changing indentation?
Great! I'll try this out in an hour or so.
Jun
12
revised Reformat C++ braces without changing indentation?
Yes, we want to do this :-)
Jun
12
comment Reformat C++ braces without changing indentation?
About 75% of the code uses the style we want to use, and the remaining 25% uses the other style. If the overall style were actually consistent, we'd leave it alone.
Jun
12
comment Reformat C++ braces without changing indentation?
If you can (1) point me at a version of indent with the necessary options, and (2) explain anything which isn't obvious from the manual, then I'll accept this answer. But I've already spent half an hour looking at GNU indent with no luck.
Jun
12
comment Reformat C++ braces without changing indentation?
We've lived with this inconsistent formatting for 7+ years, and we've decided that we can afford a once-a-decade flag day to make our code more enjoyable to hack on. :-) All outstanding branches have been merged, and we're not concerned out our increasingly ancient stable branches.
Jun
12
comment Reformat C++ braces without changing indentation?
As far as I can tell, most indent commands always reindent source code, just like all the other tools. Do you know any way to turn this off? Also, indent generally does not support C++.
Jun
12
revised Reformat C++ braces without changing indentation?
added 12 characters in body
Jun
12
asked Reformat C++ braces without changing indentation?