Don Kirkby

2,456
reputation
385 views

Registered User

name Don Kirkby
member for 1 year
seen yesterday
website
location Vancouver, BC, Canada
age 40
I'm just this guy, you know?
1d
revised C#: Invoke Event from Locked Block
added 614 characters in body
1d
answered C#: Invoke Event from Locked Block
2d
revised How can I monitor the winforms TextBox.SelectionStart property for changes?
typo
2d
revised Can I make DataGridView.EndEdit trigger the CellValidating event?
mark as community wiki
Dec
17
answered partial argument match in rhino mocks
Dec
17
comment Mocking - setting a property before calling the constructor
Some example code might help clarify this question. I don't understand how your constructor can depend on properties. Are you talking about the constructor of your object under test, or the constructor of the class you're trying to mock?
Dec
17
accepted Can I declare a character encoding when using XStreamingElement to write a large XML file?
Dec
17
answered Rhino mocks naming expectations
Dec
17
asked Rhino mocks naming expectations
Dec
17
accepted Using subversion as a versioning engine within an application
Dec
16
revised Using subversion as a versioning engine within an application
Other wikis that support RCS data storage
Dec
16
revised Issue with SVN Commit for certain File Extension
bold the update
Dec
16
revised Using subversion as a versioning engine within an application
More details on longhouse
Dec
16
answered Using subversion as a versioning engine within an application
Dec
16
comment .NET Dependency Management and Tagging/Branching
In your situation, I would check out trunk or a single branch, whatever I'm working on. Then use switch to work on another branch. I might check out two working copies so I can leave one on my main work branch and use the other to switch around when doing small jobs on other branches. Something else to consider is shallow checkouts: check out the whole repository from the root, but don't recurse that checkout down to the branches until you need them. I find this more annoying because getting rid of a branch from your checkout is a hassle.
Dec
15
answered .NET Dependency Management and Tagging/Branching
Dec
14
answered How do I automatically have the build date inserted at design time
Dec
9
answered help with passing arguments to function
Dec
8
answered How to effectively work with devices over a serial connection?
Dec
7
revised Losing session variables after redirect…?
typo
Dec
7
revised Run Java Code Online
added 169 characters in body
Dec
7
answered Run Java Code Online
Dec
4
comment Type Dictionary?
I clarified the chain of responsibility a bit. Each transformer becomes a link in the chain. It's up to you whether you make the calling code implement the entire link class or just pass in a function and a type to be held by your own link class in the chain. By the way, if the ambiguity isn't a problem, I think Qwertie's suggestion is simpler.
Dec
4
revised Type Dictionary?
Clarified chain of responsibility
Dec
4
revised Type Dictionary?
Suggest chain-of-responsibility design pattern; added 88 characters in body
Dec
4
comment Type Dictionary?
You're right, I didn't think that through.
Dec
4
answered Type Dictionary?
Nov
29
answered Unit testing: how to access a text file?
Nov
29
revised Spring.Net IoC: alternative to using configuration metadata XML
typo and formatting problems
Nov
28
comment How can make all my user control dependency values load before they control accesses their values?
Sorry, I just noticed you're asking about WPF. I don't know if it has the same kind of events.
Nov
28
answered How can make all my user control dependency values load before they control accesses their values?
Nov
27
comment Hide stderr output in unit tests
This also has the advantage that you could check the output in your test if you wanted to.
Nov
24
answered User Controls not showing up in the toolbox
Nov
18
comment advantage of creating a temporary buffer when iterating over and modifying a collection in java
I think there's some confusion here. The method is iterating over sandwichType.getIngredients() and modifying availableIngredients. Perhaps an earlier version was iterating and modifying the same collection, but I don't think it's necessary here.
Nov
16
revised Can I declare a character encoding when using XStreamingElement to write a large XML file?
I was wrong about when the database queries get run.
Nov
14
comment How can I split an IEnumerable<String> into groups of IEnumerable<string>
Does the GroupBy have to iterate the whole sequence before you get any results, or do you still get deferred execution here?
Nov
13
revised How can I split an IEnumerable<String> into groups of IEnumerable<string>
minor typos
Nov
11
answered Can I declare a character encoding when using XStreamingElement to write a large XML file?
Nov
11
asked Can I declare a character encoding when using XStreamingElement to write a large XML file?
Nov
10
accepted tutorial on generating MSI
Nov
9
answered tutorial on generating MSI
Nov
9
comment regex for four-digit numbers (or “default”)
Works for me at this regex test page: regular-expressions.info/javascriptexample.html/… (Note: I had to remove the slashes at the beginning and the end.) Could there be some other reason that things aren't working for you? Namespace problems, perhaps?
Nov
6
revised How useful is C#’s ?? operator?
Fix typo and minor grammar
Nov
6
comment How useful is C#’s ?? operator?
@Dan, if you care whether the object exists or not, then check someObject == null. If you just want to display something readable to the user, then use SomeType.DefaultObject. FYI, this refactoring is called Introduce Null Object.
Nov
6
revised How to get cardinal mouse direction from mouse coordinates
Clarify title
Nov
5
accepted XML Timezone - Daylight Saving
Nov
4
comment XML Timezone - Daylight Saving
I think daylight saving is a separate time zone from standard, and there's a method that lists all the time zones your system knows about. You'll probably find EST and EDT as two of the time zones in the list. TimeZoneInfo.Local should just return whichever one your system is currently set to. If you want a specific time zone, there's probably another method that will look it up based on the code.
Nov
4
answered XML Timezone - Daylight Saving
Nov
2
comment Testing SMTP with .net
Dumbster lets your unit test start the SMTP service, test some sending code, and then make assertions about how many e-mails were sent, what their contents were, and so on.
Nov
2
answered Testing SMTP with .net