Torbjørn

960
Reputation
176 views

Registered User

Name Torbjørn
Member for 1 year
Seen 13 hours ago
Website
Location Bergen, Norway
Age 33
I'm a .NET developer working for PSWinCom - a company in the Telecommunications business, located in Bergen, Norway.

Some links:
Linked In profile | My blog (Norwegian only) | twitter

See also my programming-related cartoon, the contiki strip.
Nov
4
comment Setting WPF image source in code
I don't know why this was needed though, and why the other answers didn't work for me...
Nov
4
comment Setting WPF image source in code
Yes, this was the solution I found myself after some trial and error. Thanks for the thorough explanation. Answer accepted!
Sep
27
awarded  Yearling
Sep
19
comment Can I peek into empty MSMQ without getting exception?
I'll wait to see if I get any other comments, but if I don't I'll accept your answer :|
Sep
18
comment Can I peek into empty MSMQ without getting exception?
We pass messages through a pipeline of services where we use queues between them. We want to have the highest throughput possible, so it's not unimportant, but so far we have good enough performance.
Sep
18
revised Can I peek into empty MSMQ without getting exception?
added 2 characters in body
Sep
17
asked Can I peek into empty MSMQ without getting exception?
Aug
15
comment Should one test internal implementation, or only test public behaviour?
As I said, I use tests to drive my design/code. If I was only interested in verifying the behaviour of my solutions, the high-level tests would be enough. They don't help me enough when I implement the details though, so most "responsibilities" in the design gets their own tests.
Aug
15
comment MSMQ and polling to receive messages?
Yes, this is exactly how I believe it should be done. +1
Aug
15
comment MSMQ in .net as a Service
Remember to call EndRecieve in the RecieveCompleted event before you call BeginRecieve again if you use this approach. Had some nasty behaviour before I figured this out.
Aug
15
comment Is this a poor design?
BDD advocated outside-in development, so AccountService would normally never exist the first time you need it. +1 to Oni's comment.
Aug
15
comment Is this a poor design?
Some good advice here +1
Aug
15
comment Should I change code to make it more testable?
This does not seam like a mainstream idea / approach. Would you like to elaborate, or provide some references?
Aug
15
comment I do not write tests. Am I stupid?
And when you get used to having tests, you start missing them after writing about 20 lines of code without them... I try to use tests for the smallest things now :)
Aug
15
comment I do not write tests. Am I stupid?
"a new feature with a deadline tomorrow set by an impatient but bug-tolerant customer" Should we ever accept assignments like that? Can we ever tell the chef at a restaurant to just throw something together quickly and don't care about the quality of the result, and expect him to deliver? He would ask us to go to McDonalds and leave him alone.
Aug
15
comment I do not write tests. Am I stupid?
Your point is valid (and correct in my opinion), but your three sentences is not a good answer to the question, now is it?
Aug
15
answered Can we come up with a better name for TDD?
Aug
15
answered Should one test internal implementation, or only test public behaviour?
Aug
2
comment The right way to mock (with moq) methods that return mocked objects?
I agree with using the second option for the simplicity. Nesten lambdas are hard to read. If you want a new one each time you could use the first option, but extract the inner expression and give it a good name.
Jul
30
awarded  Popular Question
Jul
24
comment Different algorithm for different inputs
I would argue that what satyajit has done kind of is an implementation of Strategy. It may or may note use a common interface.
Jul
24
comment Different algorithm for different inputs
Haven't you just replaced satyajit's reflection with a switch/if-else? I agree that this smells of Strategy, but it does not improve the situation very much.. You have just added one more place (the factory) where the code needs to change if more strategies are added.