User Torbjørn - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T08:01:20Zhttp://stackoverflow.com/feeds/user/22621http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1438774/can-i-peek-into-empty-msmq-without-getting-exception0Can I peek into empty MSMQ without getting exception?Torbjørn2009-09-17T13:07:18Z2009-12-10T15:48:58Z
<p>As far as I can see from the documentation, the way you are supposed to check if there are messages in a message queue is to use the Peek method. You then rely on it failing with a MessageQueueException to tell you that the queue was empty.</p>
<pre><code> public bool IsQueueEmpty()
{
bool isQueueEmpty = false;
MessageQueue myQueue = new MessageQueue(".\\myQueue");
try
{
myQueue.Peek(new TimeSpan(0));
isQueueEmpty = false;
}
catch(MessageQueueException e)
{
if (e.MessageQueueErrorCode ==
MessageQueueErrorCode.IOTimeout)
{
isQueueEmpty = true;
}
}
return isQueueEmpty;
}
</code></pre>
<p>I've always been told - and have experienced - that Exeptions are costly, and should not be used for normal operations. So my questions are:</p>
<ul>
<li><p>Are my assumptions that relying on catching the MessageQueueException is a costly operation correct?</p></li>
<li><p>Are there any way to synchronously check if there are messages in a queue without having to rely on exceptions?</p></li>
</ul>
<p>I'm working with the System.Messaging namespace in C#, but if I would need to go unmanaged to solve this that could be an option. And note that I want a solution without using WCF with MSMQ.</p>
http://stackoverflow.com/questions/350027/setting-wpf-image-source-in-code6Setting WPF image source in codeTorbjørn2008-12-08T16:15:29Z2009-11-24T11:40:04Z
<p>I'm trying to set a WPF image's source in code. The image is embedded as a resource in the project. By looking at examples I've come up with the below code. For some reason it doesn't work - the image does not show up. </p>
<p>By debugging I can see that the stream contains the image data. So what's wrong?</p>
<pre><code>Assembly asm = Assembly.GetExecutingAssembly();
Stream iconStream = asm.GetManifestResourceStream("SomeImage.png");
PngBitmapDecoder iconDecoder = new PngBitmapDecoder(iconStream, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.Default);
ImageSource iconSource = iconDecoder.Frames[0];
_icon.Source = iconSource;
</code></pre>
<p>The icon is defined something like this: <Image x:Name="_icon" Width="16" Height="16" /></p>
http://stackoverflow.com/questions/323987/ddd-repositories-as-singletons2DDD repositories as singletons?Torbjørn2008-11-27T15:03:16Z2009-10-04T03:23:27Z
<p>Quick question: Would it be a good or a bad idea to implement my domain-driven design style repositories as singletons? Why?</p>
<p>Or should I maybe use a dependency injector container to manage my repositories and decide if they are singletons or not?</p>
<p>I'm still reading <em>DDD Quickly</em>, and would like to see some good repository examples.</p>
http://stackoverflow.com/questions/1275936/can-we-come-up-with-a-better-name-for-tdd/1281560#12815600Answer by Torbjørn for Can we come up with a better name for TDD?Torbjørn2009-08-15T09:57:16Z2009-08-15T09:57:16Z<p>I think <strong>"Code-By-Example"</strong> is the best name for what we do. I think that's what Dan North calls it. Code By Example is then a part of BDD (so BDD is larger/more specific that TDD).</p>
<p>The concept of <em>"Context Specifications"</em> is also quite similar, promoted by people like Scott Bellware.</p>
<p>I agree that using the word "test" makes it difficult to communicate the technique to new developers.</p>
http://stackoverflow.com/questions/856115/should-one-test-internal-implementation-or-only-test-public-behaviour/1281539#12815390Answer by Torbjørn for Should one test internal implementation, or only test public behaviour?Torbjørn2009-08-15T09:42:10Z2009-08-15T09:42:10Z<p>You shouldn't blindly think that a unit == a class. I think that can be counter productive. When I say that I write a unit test I'm testing a logical unit - "something" that provides some behaviour. A unit may be a single class, or it may be several classes working together to provide that behaviour. Sometimes it starts out as a single class, but evolves to become three or four classes later. </p>
<p>If I start with one class and write tests for that, but later it becomes several classes, I will usually not write separate tests for the other classes - they are implementation details in the unit being tested. This way I allow my design to grow, and my tests are not so fragile.</p>
<p>I used to think exactly like CrisW demonstartes in this question - that testing at higher levels would be better, but after getting some more experience my thoughts are moderated to something between that and "every class should have a test class". Every unit should have tests, but I choose to define my units slightly different from what I once did. It might be the "components" CrisW talks about, but very often it also is just a single class.</p>
<p>In addition, functional tests can be good enough to prove that your system does what it's supposed to do, but if you want to drive your design with examples/tests (TDD/BDD), lower lever tests are a natural consequence. You could throw those low-level tests away when you are done implementing, but that would be a waste - the tests are a positive side effect. If you decide to do drastic refactorings invalidating your low-level tests, then you throw them away and write new once.</p>
<p>Separating the goal of testing/proving your software, and using tests/examples to drive your design/implementation can clarify this discussion a lot.</p>
<p><strong>Update:</strong> Also, there are basically two ways of doing TDD: outside-in and inside-out. BDD promotes outside-in, which leads to higher-level tests/specifications. If you start from the details however, you will write detailed tests for all classes.</p>
http://stackoverflow.com/questions/368384/when-release-dlls-dont-work-but-debug-dlls-do4When release dlls don't work but debug dlls doTorbjørn2008-12-15T13:40:08Z2009-07-15T15:14:27Z
<p>After deploying our huge distributed system to one of our clients we experience an unexpected error. During the investigation we replace the assembly causing the error with one where we have added some diagnostic code. The dll we use is built in debug mode. And suddenly it all works!</p>
<p>Replacing the debug dll with the release version (with the diagnostic code) makes it crash again. </p>
<p>There are no precompiler directives, conditional debug attributes etc. in our code. The problem has been found in two different installation sites, while it works fine in several more.</p>
<p>(The project has a mix of C# and VB.NET, the troublesom assembly is VB.NET.., if that makes any difference)</p>
<p>So the question is: <strong><em>What do you do in situations like this? And what can be the cause - in general?</em></strong> Any advice on debugging this issue is welcome.</p>
http://stackoverflow.com/questions/833156/general-advice-help-ive-niched-myself/833225#8332251Answer by Torbjørn for General Advice - Help, I've niched myself! Torbjørn2009-05-07T06:54:23Z2009-05-07T06:54:23Z<p>TO answer regarding your mvc interest: If I was behind in asp.net I would definitely go straight for asp.net mvc, as there is bound to be opening up more job opportunities with this framework, and most .net web developers aren't there yet. Also invest some time in new stuff like ado.net data services, RIA services etc., and look into how this can improve your web skills.</p>
<p>I do however agree with the answers saying that the technology shouldn't count for that much. Your general developer skills are the most important once.., but many of the once doing the hiring don't see it that way.</p>
http://stackoverflow.com/questions/355172/how-to-design-an-immutable-object-with-complex-initialization1How to design an immutable object with complex initializationTorbjørn2008-12-10T05:46:52Z2009-05-06T06:23:40Z
<p>I'm learning about DDD, and have come across the statement that "value-objects" should be immutable. I understand that this means that the objects state should not change after it has been created. This is kind of a new way of thinking for me, but it makes sense in many cases.</p>
<p>Ok, so I start creating immutable value-objects. </p>
<ul>
<li>I make sure they take the entire state as parameters to the constructor, </li>
<li>I don't add property setters, </li>
<li>and make sure no methods are allowed to modify the content (only return new instances).</li>
</ul>
<p>But now I want to create this value object that will contain 8 different numeric values. If I create a constructor having 8 numeric parameters I feel that it will not be very easy to use, or rather - it will be easy to make a mistake when passing in the numbers. This can't be good design.</p>
<p><em>So the questions is:</em> Are there any other ways of making my immutable object better.., any magic that can be done in C# to overcome a long parameter list in the constructor? I'm very interested in hearing your ideas..</p>
<p><strong>UPDATE:</strong> Before anyone mentions it, one idea has been discussed here:
<a href="http://stackoverflow.com/questions/263585/immutable-object-pattern-in-c-what-do-you-think">http://stackoverflow.com/questions/263585/immutable-object-pattern-in-c-what-do-you-think</a></p>
<p>Would be interested in hearing other suggestions or comments though.</p>
http://stackoverflow.com/questions/759069/how-do-you-write-a-unit-test-to-test-an-asp-net-web-forms-application-for-csrf-vu/780749#7807490Answer by Torbjørn for How do you write a unit test to test an ASP.NET web forms application for CSRF vulnerability?Torbjørn2009-04-23T08:07:43Z2009-04-23T08:07:43Z<p>You need to understand how CSRF is done. Get into the hackers way of thinking. You then need to create automated tests performing CSRF. This will probably not be a unit test (testing a single unit), more like an integration test. When you have succeeded in performing the CSRF attack - when your tests are red - you'll be able to fix the problem.</p>
<p>Check out the <a href="http://www.cgisecurity.com/csrf-faq.html" rel="nofollow">CSRF FAQ</a> for more information on how to perform the attack. And here's a good wiki article about <a href="http://www.owasp.org/index.php/Testing%5Ffor%5FCSRF%5F%28OWASP-SM-005%29" rel="nofollow">Testing for CSRF</a> you should check out.</p>
http://stackoverflow.com/questions/779469/how-might-i-insert-some-javascript-into-the-document-of-a-webbrowser-control/780721#7807211Answer by Torbjørn for How might I insert some JavaScript into the document of a WebBrowser control?Torbjørn2009-04-23T07:54:10Z2009-04-23T07:54:10Z<p>I think this question has been asked and answered here: <a href="http://stackoverflow.com/questions/153748/webbrowser-control-from-net-how-to-inject-javascript">153748/webbrowser-control-from-net-how-to-inject-javascript</a></p>
http://stackoverflow.com/questions/156800/silverlight-display-problem0Silverlight display problemTorbjørn2008-10-01T09:05:20Z2009-04-12T02:54:29Z
<p>I have created a nice silverlight control doing exactly what I want it to do, and it looks great :) When I host it in the test projects ASPX sample file or the HTML sample file it shows up nicely.</p>
<p>I now have to use the control in my existing ASP.NET 2.0 project, which has a fancy design. The problem I'm having is that the control don't show up exactly how it should:</p>
<ul>
<li>The loading progress don't show</li>
<li>The control usually don't become visible before I move my mouse over the aria where it's contained</li>
</ul>
<p>Obviously it's something with my HTML/CSS design causing this, but it will be extremely time consuming to find the issue - so does anyone have knowledge in this area? What are the rules around how to make sure the control is displayed properly? What CSS properties should be used?</p>
<p>PS: Since I have a 2.0 app, I'm using the object tag approach to Silverlight, and it's contained in a DIV with height and width set in style.</p>
<p>Code snippet was requested. It's something like this (basically a copy of the HTML test page from the silverlight test project (which work perfectly)):</p>
<pre><code><div id="silverlightControlHost" style="height: 300px; width: 750px;">
<object data="data:application/x-silverlight," type="application/x-silverlight-2-b2"
width="100%" height="100%">
<param name="source" value="Contiki.SilverLight.FileUploader.xap" />
<param name="onerror" value="onSilverlightError" />
<param name="background" value="white" />
<a href="http://go.microsoft.com/fwlink/?LinkID=115261" style="text-decoration: none;">
<img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight"
style="border-style: none" />
</a>
</object>
<iframe style='visibility: hidden; height: 0; width: 0; border: 0px'></iframe>
</div>
</code></pre>
<p>This DIV is contained in a cell in a table, which again is part of a larger design. There's a lot of CSS as mentioned. Don't know if this helps...</p>
http://stackoverflow.com/questions/550741/problem-with-asp-net-gridview/550761#5507611Answer by Torbjørn for problem with asp.net gridviewTorbjørn2009-02-15T11:36:56Z2009-02-15T11:36:56Z<p>So the Id is created by the database (autonumber). When id 5 is used it's used up. This is normal behavior.</p>
http://stackoverflow.com/questions/549965/how-do-i-resolve-type-or-namespace-could-not-be-found-compilation-error/549975#5499750Answer by Torbjørn for How do I resolve "Type or namespace could not be found" compilation error?Torbjørn2009-02-14T23:25:25Z2009-02-14T23:25:25Z<p>If you build your site locally and upload the resulting dll (that will contain HelloClass) to the bin directory, I bet it will work.</p>
http://stackoverflow.com/questions/548405/how-do-you-test-your-business-objects/548849#5488491Answer by Torbjørn for How do you test your business objects?Torbjørn2009-02-14T09:37:23Z2009-02-14T17:19:20Z<p>I support the once saying that you should test you business objects with a moched database. In some cases you might want to have your data persisted as part of the test though. The drawbacks to this are longer running tests and the need for cleanup.</p>
<p>One solution to this that might help you is to use an <strong>in-memory database</strong> for your tests. SQLite for instance lets you create in-memory databases on the fly, and when you dispose them they are gone. This makes your tests much faster, and you don't have to set up cleanup code - while you actually get to test your SQL / db code through automated tests.</p>
http://stackoverflow.com/questions/548852/asp-net-time-localization/548854#5488543Answer by Torbjørn for ASP.Net Time LocalizationTorbjørn2009-02-14T09:48:10Z2009-02-14T10:06:53Z<p>COnvert the datetime to GMT client side (in JavaScript if this is a web app) before sending it to the server. Let the server only work with GMT (I would say UTC). Same thing for displaying dates/time. Send GMT/UTC to client, and let JS localize. This is the only completely safe way in my opinion, because you let it be up to the users operating system to figure out what the time is supposed to be.</p>
<p>There are other approaches of cause, and if you only need to know what the client's time is right now you can just get the offset from it (can be retrieved through JS etc). But if you need accurate dates/times in different locations for historical and future date/times you better let the client handle it. </p>
<p>PS: In my TimeZone implementation I also use UNIX time format for communication between client and server. This is just plain easier to parse, and I belive it's the native datetime format for JS. I can't present my code for you now, but should be relatively easy to google for this.</p>
http://stackoverflow.com/questions/375301/should-i-use-the-model-view-viewmodel-mvvm-pattern-in-silverlight-projects/375318#3753183Answer by Torbjørn for Should I use the Model-View-ViewModel (MVVM) pattern in Silverlight projects?Torbjørn2008-12-17T17:25:33Z2008-12-17T17:25:33Z<p>I'm not sure if I can answer your question, but I have foudn the article below very valuable. Jonas Follesø is using ninject to switch out his services when in design/blend mode. Very nice!</p>
<p><a href="http://jonas.follesoe.no/YouCardRevisitedImplementingDependencyInjectionInSilverlight.aspx" rel="nofollow">http://jonas.follesoe.no/YouCardRevisitedImplementingDependencyInjectionInSilverlight.aspx</a></p>
http://stackoverflow.com/questions/375248/a-clean-way-of-generating-querystring-parameters-for-web-requests/375279#3752790Answer by Torbjørn for A clean way of generating QueryString parameters for web requestsTorbjørn2008-12-17T17:10:32Z2008-12-17T17:10:32Z<p><a href="http://www.csharper.net/blog/querystring_class_useful_for_querystring_manipulation__appendage__etc.aspx" rel="nofollow">Here is a nice, little class to manipulate the QueryString</a>.</p>
http://stackoverflow.com/questions/349318/what-other-frameworks-should-asp-net-programmer-consult/349344#3493442Answer by Torbjørn for What other frameworks should asp.net programmer consult?Torbjørn2008-12-08T12:20:53Z2008-12-08T12:20:53Z<p>ASP.NET programmers should have a look at the ASP.NET MVC framework for alternatives on how to do stuff on basically the same platform, but still more like some other, popular frameworks.</p>
http://stackoverflow.com/questions/336535/tiny-fonts-on-web-sites/336577#3365771Answer by Torbjørn for Tiny Fonts on Web SitesTorbjørn2008-12-03T09:16:05Z2008-12-03T09:16:05Z<p>I've had this problem with Chrome, but not to the extent that you are talking about. Some pages however display really tiny fonts that looks ok in other browsers. In some forums the font actually gets smaller for each post - so I normally can read the first post and maybe the second, but the rest is just pixels :)</p>
http://stackoverflow.com/questions/333291/are-there-any-reasons-not-to-use-this-self-me/333303#3333031Answer by Torbjørn for Are there any reasons not to use "this" ("Self", "Me", ...)?Torbjørn2008-12-02T08:07:04Z2008-12-02T08:07:04Z<p>That sounds like nonsense to me. Using 'this' can make the code nicer, and I can see no problems with it. Policies like that is stupid (at least when you don't even tell people why they are in place).</p>
http://stackoverflow.com/questions/329779/asp-net-best-queue-system-for-a-new-application/331025#3310251Answer by Torbjørn for ASP.NET - best queue system for a new applicationTorbjørn2008-12-01T14:29:59Z2008-12-01T14:29:59Z<p>I agree with moose-in-the-jungle that MSMQ probably is what you should stick with.</p>
<p>I would maybe research some alternative API's that use MSMQ under the cover, like <a href="http://www.nservicebus.com/" rel="nofollow">nServiceBus</a> from Udi Dahan.</p>
http://stackoverflow.com/questions/324150/how-many-lines-of-code-do-you-write-modify-per-day/324467#3244670Answer by Torbjørn for How many lines of code do you write / modify per day?Torbjørn2008-11-27T18:49:55Z2008-11-27T18:49:55Z<p>I'm the team lead, and actually seldom get to write any code at all. But I make sure someone else does.</p>
<p>When I actually program, I would say around 50 to 100 lines is a good day :/ Hmm, I really need to code more!</p>
http://stackoverflow.com/questions/306708/must-haves-for-developers-office/306764#3067647Answer by Torbjørn for Must haves for developers officeTorbjørn2008-11-20T20:30:30Z2008-11-20T20:30:30Z<p>Foosball table</p>
http://stackoverflow.com/questions/201087/cant-install-visual-studio-2008-after-having-beta-version1Can't install Visual Studio 2008 after having beta versionTorbjørn2008-10-14T13:09:09Z2008-11-20T13:05:21Z
<p>When trying to install Visual Studio 2008 I get the following message straight away: </p>
<blockquote>
<p>"You must uninstall all pre-release
products in a specific order before
you can continue with setup."</p>
</blockquote>
<p></p>
<p>And then it gived me <a href="http://www.microsoft.com/express/support/uninstall/" rel="nofollow">this link on how to do that</a>.</p>
<p>I've been working on this problem for quite some time now, uninstalling the components as best I can (my list did not actually match microsoft's list), and I can find no trace of the beta software of 3.5 framework anywhere.</p>
<p>However, I just remembered something I had to "install" to make my AJAX 1.0 continue to work after installing 3.5 beta 2 - a <a href="http://weblogs.asp.net/scottgu/archive/2007/07/26/vs-2008-and-net-3-5-beta-2-released.aspx" rel="nofollow"><strong>batch script provided by ScottGu</strong></a>. I don't know enough to understand what it actually does, but maybe this is something I have to undo in order to make the installation work?!</p>
<p>I'm looking for a solution to undo what the batch did, and if that doesn't help I need more tips on how to locate what the problem might be, so that I can finally install Visual Studio 2008.</p>
<p>The content of the batch from ScottGu:</p>
<pre><code>@ECHO OFF
ECHO Disabling publisher policy for System.Web.Extensions.
IF EXIST %windir%\assembly\GAC_MSIL\policy.1.0.System.Web.Extensions\3.5.0.0__31bf3856ad364e35\policy.1.0.System.Web.Extensions.cfg (
REN %windir%\assembly\GAC_MSIL\policy.1.0.System.Web.Extensions\3.5.0.0__31bf3856ad364e35\policy.1.0.System.Web.Extensions.cfg policy.1.0.System.Web.Extensions.cfg.disabled
IF ERRORLEVEL 1 (
ECHO On Windows Vista this script must be run as administrator.
GOTO :END
)
)
ECHO Disabling publisher policy for System.Web.Extensions.Design.
IF EXIST %windir%\assembly\GAC_MSIL\policy.1.0.System.Web.Extensions.Design\3.5.0.0__31bf3856ad364e35\policy.1.0.System.Web.Extensions.Design.cfg (
REN %windir%\assembly\GAC_MSIL\policy.1.0.System.Web.Extensions.Design\3.5.0.0__31bf3856ad364e35\policy.1.0.System.Web.Extensions.Design.cfg policy.1.0.System.Web.Extensions.Design.cfg.disabled
IF ERRORLEVEL 1 (
ECHO On Windows Vista this script must be run as administrator.
GOTO :END
)
)
:END
PAUSE
</code></pre>
http://stackoverflow.com/questions/267768/java-still-relevant-for-web-programming/267797#2677970Answer by Torbjørn for Java still relevant for web programming?Torbjørn2008-11-06T06:37:17Z2008-11-06T06:37:17Z<p>Not getting stuck with one technology is ONE advice. It makes sense. But it can also be positive to become an expert on a single technology. There is already way too much in the .NET framework for a single person to master it all. And lots of variety.</p>
<p>What's especially nice in .NET I feel is Microsoft's apparent dedication to making your skills in one area of the framework be portable to all other areas. Like with WPF and Silverlight - almost the same thing.</p>
<p>Not really an answer to your questions, just wanted to balance the comments.. But I do lean towards .NET.</p>
http://stackoverflow.com/questions/267763/defensive-coding-practices/267776#26777610Answer by Torbjørn for defensive coding practicesTorbjørn2008-11-06T06:25:03Z2008-11-06T06:25:03Z<p>This is a simple and obvious one, but I NEVER EVER NEVER repeat the same string constant twice in my code, cause I KNOW that if I do I will be spelling one of them wrong :) Use constants, people! </p>
http://stackoverflow.com/questions/253030/best-way-to-format-if-statement-with-multiple-conditions/253047#2530474Answer by Torbjørn for Best way to format if statement with multiple conditions.Torbjørn2008-10-31T10:20:12Z2008-10-31T10:33:42Z<p>Other answers explain why the first option is normally the best. But if you have multiple conditions, consider creating a separate function (or property) doing the condition checks in option 1. This makes the code much easier to read, at least when you use good method names.</p>
<pre><code>if(MyChecksAreOk()) { Code to execute }
...
private bool MyChecksAreOk()
{
return ConditionOne && ConditionTwo && ConditionThree;
}
</code></pre>
<p>It the conditions only rely on local scope variables, you could make the new function static and pass in everything you need. If there is a mix, pass in the local stuff.</p>
http://stackoverflow.com/questions/156800/silverlight-display-problem/225662#2256621Answer by Torbjørn for Silverlight display problemTorbjørn2008-10-22T13:10:41Z2008-10-31T08:58:29Z<p>Found the cause myself...</p>
<p>It turns out Silverlight has a display problem when the control is placed in a html table. <a href="http://silverlight.net/forums/p/20863/72280.aspx" rel="nofollow">Found information about this on the silverlight forum</a>. It was about the beta 2, but I have upgraded to the release version, and it's still a problem.</p>
<blockquote>
<p>Try this. Add a height and a width to
the table containing the Silverlight
control. You may also want to add a
single character of white space inside
the TD containing the control.</p>
<p>Basically when the table was rendered
it couldn't 'see' the size of the
contents so it either didn't render at
all or only rendered to the size of a
single white-space character.</p>
<p>-- John Stockton</p>
</blockquote>
<p>My design is quite complex with nested tables, so I haven't actually been able to make it work yet.</p>
<p><strong>UPDATE:</strong></p>
<p>The actual fix I ended up implementing was a small JavaScript that "refreshes" the containing <DIV>. Here it is:</p>
<pre><code><script type="text/javascript">
function refreshSL()
{
var div = document.getElementById('silverlightControlHost');
div.style.display = 'block';
}
refreshSL();
</script>
</code></pre>
<p>I placed this in my HTML below the actual SL markup, and then it worked (I guess calling it on the page loaded event would be the proper thing to do.</p>
http://stackoverflow.com/questions/235484/resources-for-getting-started-with-mcml/236854#2368541Answer by Torbjørn for Resources for getting started with MCML?Torbjørn2008-10-25T19:07:50Z2008-10-25T19:07:50Z<p>The <a href="http://blog.mediacentersandbox.com/" rel="nofollow">Windows Media Center Sandbox</a> is probably the best resource. But I guess you knew that already. The <a href="http://mediacenterdev.blogspot.com/" rel="nofollow">media center development blog</a> is also pretty nice. Can <a href="http://mediacenterdev.blogspot.com/2007/02/thinking-and-transferring-data-in-mcml.html" rel="nofollow">this article</a> get you started?</p>
<p>I'm very much a n00b myself though..</p>
http://stackoverflow.com/questions/229107/soa-career/229114#2291142Answer by Torbjørn for SOA CareerTorbjørn2008-10-23T09:36:24Z2008-10-23T09:36:24Z<p>Become a programmer. Learn the SOA theory. Then get hired as a consultant. Practice. Then make sure you become a part of a SOA project. Easy ;D</p>
<p>Probably not very helpful...</p>
http://stackoverflow.com/questions/350027/setting-wpf-image-source-in-code/1651397#1651397Comment by Torbjørn on Setting WPF image source in codeTorbjørn2009-11-04T19:37:35Z2009-11-04T19:37:35ZI don't know why this was needed though, and why the other answers didn't work for me...http://stackoverflow.com/questions/350027/setting-wpf-image-source-in-code/1651397#1651397Comment by Torbjørn on Setting WPF image source in codeTorbjørn2009-11-04T19:35:58Z2009-11-04T19:35:58ZYes, this was the solution I found myself after some trial and error. Thanks for the thorough explanation. Answer accepted! http://stackoverflow.com/questions/1438774/can-i-peek-into-empty-msmq-without-getting-exception/1440668#1440668Comment by Torbjørn on Can I peek into empty MSMQ without getting exception?Torbjørn2009-09-19T10:52:29Z2009-09-19T10:52:29ZI'll wait to see if I get any other comments, but if I don't I'll accept your answer :|http://stackoverflow.com/questions/1438774/can-i-peek-into-empty-msmq-without-getting-exception/1440668#1440668Comment by Torbjørn on Can I peek into empty MSMQ without getting exception?Torbjørn2009-09-18T12:24:25Z2009-09-18T12:24:25ZWe 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.http://stackoverflow.com/questions/856115/should-one-test-internal-implementation-or-only-test-public-behaviour/1281539#1281539Comment by Torbjørn on Should one test internal implementation, or only test public behaviour?Torbjørn2009-08-15T22:10:43Z2009-08-15T22:10:43ZAs 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.http://stackoverflow.com/questions/1198182/msmq-and-polling-to-receive-messages/1198380#1198380Comment by Torbjørn on MSMQ and polling to receive messages?Torbjørn2009-08-15T12:42:25Z2009-08-15T12:42:25ZYes, this is exactly how I believe it should be done. +1http://stackoverflow.com/questions/1263754/msmq-in-net-as-a-service/1263779#1263779Comment by Torbjørn on MSMQ in .net as a ServiceTorbjørn2009-08-15T11:59:46Z2009-08-15T11:59:46ZRemember 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.http://stackoverflow.com/questions/976435/is-this-a-poor-design/978609#978609Comment by Torbjørn on Is this a poor design?Torbjørn2009-08-15T11:28:02Z2009-08-15T11:28:02ZBDD advocated outside-in development, so AccountService would normally never exist the first time you need it. +1 to Oni's comment. http://stackoverflow.com/questions/976435/is-this-a-poor-design/977637#977637Comment by Torbjørn on Is this a poor design?Torbjørn2009-08-15T11:22:35Z2009-08-15T11:22:35ZSome good advice here +1http://stackoverflow.com/questions/1269388/should-i-change-code-to-make-it-more-testable/1269477#1269477Comment by Torbjørn on Should I change code to make it more testable?Torbjørn2009-08-15T11:14:25Z2009-08-15T11:14:25ZThis does not seam like a mainstream idea / approach. Would you like to elaborate, or provide some references?http://stackoverflow.com/questions/1247308/i-do-not-write-tests-am-i-stupid/1247336#1247336Comment by Torbjørn on I do not write tests. Am I stupid?Torbjørn2009-08-15T11:09:42Z2009-08-15T11:09:42ZAnd 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 :)http://stackoverflow.com/questions/1247308/i-do-not-write-tests-am-i-stupid/1247391#1247391Comment by Torbjørn on I do not write tests. Am I stupid?Torbjørn2009-08-15T11:07:28Z2009-08-15T11:07:28Z"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.http://stackoverflow.com/questions/1247308/i-do-not-write-tests-am-i-stupid/1247339#1247339Comment by Torbjørn on I do not write tests. Am I stupid?Torbjørn2009-08-15T11:01:50Z2009-08-15T11:01:50ZYour point is valid (and correct in my opinion), but your three sentences is not a good answer to the question, now is it?http://stackoverflow.com/questions/1218302/the-right-way-to-mock-with-moq-methods-that-return-mocked-objects/1218324#1218324Comment by Torbjørn on The right way to mock (with moq) methods that return mocked objects?Torbjørn2009-08-02T08:32:58Z2009-08-02T08:32:58ZI 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.http://stackoverflow.com/questions/1180461/different-algorithm-for-different-inputs/1180501#1180501Comment by Torbjørn on Different algorithm for different inputsTorbjørn2009-07-24T23:51:29Z2009-07-24T23:51:29ZI would argue that what satyajit has done kind of is an implementation of Strategy. It may or may note use a common interface.