User Travis - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T21:12:27Zhttp://stackoverflow.com/feeds/user/1685http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1297433/how-do-you-specify-a-different-base-class-in-xaml-files-silverlight0How do you specify a different base class in .xaml files (Silverlight)?Travis2009-08-19T01:45:12Z2009-09-10T09:09:00Z
<p>How can you specify a common base class in .xaml files for seperate Silverlight Page classes? I have a few common properties that I would like to share across pages, but I don't know how to do this without manually changing the base class in the .g.cs files each time they are generated.</p>
<p>Is this possible? I assume it is possible, since the ChildControl in the Toolkit, for example, derives from a different class. Am I overlooking something obvious? </p>
http://stackoverflow.com/questions/832032/can-you-recommend-an-alternative-web-application-stack7Can you recommend an alternative web application stack?Travis2009-05-06T22:10:04Z2009-08-29T08:41:49Z
<p>I'm an experienced developer who has been working with .Net for the last 5 years or so. As I've been assembling an application stack for a startup idea I've had, I've noticed that many of the supporting tools that I would like to use are either flaky or have become commercial. As I have no revenue, and factoring in the cost for for Visual Studio, SQL Server (yes, I know about Biz Spark), etc, and I've suddenly realised that I should be looking elsewhere.</p>
<p>So, without further ado, here are my requirements and nice-to-haves. The obvious front-runners are Java and Ruby, but I'm happy to hear any other suggestions (Object oriented and compiled preferred but not required. PHP not welcome here).</p>
<p>Overall</p>
<ul>
<li>Mandatory: Supported by shared hosting to get started</li>
<li>Desirable: Should not be too fiddly to get working (just work when components are plugged in)</li>
</ul>
<p>Framework</p>
<ul>
<li>Mandatory: Modern mvc framework</li>
<li>Mandatory: Fine-grained control over html output</li>
</ul>
<p>Code Quality</p>
<ul>
<li>Mandatory: Logging framework</li>
<li>Desirable: Static analysis (complexity, etc)</li>
<li>Desirable: Generate UML diagrams of code structure</li>
<li>Desirable: Test coverage reports</li>
</ul>
<p>OOP Stuff</p>
<ul>
<li>Mandatory: ORM that handles semi-deep hierarchies, incl many-to-many relationships.</li>
<li>Mandatory: Mock framework</li>
<li>Mandatory: IOC container (probably its own category)</li>
</ul>
<p>IDE</p>
<ul>
<li>Mandatory: Formatting assistance (indentation)</li>
<li>Mandatory: debugging: break points, variable inspection</li>
<li>Desirable: auto-completion: VS's intellisense is really nice. This is close to mandatory</li>
<li>Desirable: debugging: in-place code execution (immediate window), move current frame backwards</li>
<li>Desirable: Test framework integration</li>
</ul>
<p>Code Quality</p>
<ul>
<li>Mandatory: Test framework</li>
<li>Desirable: Code coverage</li>
<li>Desirable: Generate documentation from code comments</li>
</ul>
<p>Build</p>
<ul>
<li>Desirable: One click pull from SVN, build, test, code coverage, code documentation</li>
<li>Desirable: Continuous integration (for later when we, er, get really big)</li>
</ul>
<p>Other notes: I'm happy using Linux (would be quite refreshing!). I'm assuming MySQL for DB, as I don't require ACID compliance (and it's probably ACID by now anyway), and SVN for source control.</p>
<p>Any help or suggestions would be greatly appreciated.</p>
<p>Edit: Currently leaning towards Sinatra, as it looks very elegant, but allows the user to have as much or as little control as they want. And I will select an answer when I think the answers have stopped.</p>
http://stackoverflow.com/questions/82639/how-to-become-a-better-programmer/1339242#13392420Answer by Travis for How to become a better programmer?Travis2009-08-27T06:41:59Z2009-08-27T06:41:59Z<p>The key is maintaining your interest. You're super keen right now, which is great, but will you still be interested in 4 years? 10 years? 15?</p>
<p>Everyone goes through periods of drought, but if you maintain interest, that's the most important thing. Keep learning and learning.</p>
http://stackoverflow.com/questions/918531/silverlight-wcf-service-bound-to-grid-grid-is-blank-am-i-missing-something/1314762#13147620Answer by Travis for Silverlight WCF Service Bound to Grid - Grid is Blank ... am I missing something?Travis2009-08-22T00:30:52Z2009-08-22T00:30:52Z<p>This question is a bit old, but I've ran into a similar problem...</p>
<p>Are you using the theme engine? I've noticed that using the grid inside of another control (ChildWindow, Tab, etc) with the Theme Engine causes the children to not render. I've raised a bug with the toolkit people, so we'll see if it gets fixed.</p>
http://stackoverflow.com/questions/1191925/which-javascript-framework-is-generally-used-for-high-performance-websites/1191932#11919320Answer by Travis for Which JavaScript framework is generally used for high performance websites?Travis2009-07-28T04:25:57Z2009-07-28T04:25:57Z<p>The answer, as always, is: it depends. What kind of performance are you talking about? Download speed? Use a minimiser and there's probably not a lot of difference. Or client-side performance, and what are you doing with it?</p>
<p>But, I would suggest that if you're after raw performance, I would not use a framework at all, and create low level javascript that will be far more difficult to maintain.</p>
<p>Some good information can be found on the <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">YUI site</a>.</p>
http://stackoverflow.com/questions/1186450/state-management-in-winforms-c/1186478#1186478-1Answer by Travis for state management in winforms (c#)Travis2009-07-27T04:48:01Z2009-07-27T04:48:01Z<p>It's unclear to me whether you are talking about a web application or a stand along application based upon one of your responses. If you are talking about a web application, you can use the Session properties on the Page object.</p>
<p>It would set the variables like this:</p>
<pre><code>Session["username"] = "Username";
Session["fullname"] = "User's full name";
</code></pre>
<p>You could then access like:</p>
<pre><code>lblGreetings.Text = "Hi " + Session["fullname"];
</code></pre>
<p>Is that what you were after?</p>
http://stackoverflow.com/questions/1107943/stackoverflow-source-code/1107959#11079590Answer by Travis for StackOverflow Source CodeTravis2009-07-10T06:12:30Z2009-07-10T06:12:30Z<p>The point of Phil's demo is just to demonstrate creating applications using mvc. He just chose stack overflow as a known problem that his audience can relate to.</p>
http://stackoverflow.com/questions/866499/is-being-a-programmer-a-younger-persons-job/866571#8665717Answer by Travis for Is being a programmer a younger person's job?Travis2009-05-15T00:46:38Z2009-05-15T00:46:38Z<p>As an older programmer, I have no desire to work 14 hours a day. And, as an older (or senior or experienced) programmer, I don't have to.</p>
<p>=)</p>
http://stackoverflow.com/questions/861016/asp-net-3-5-web-application-project-takes-excessively-long-time-to-initially-load/861026#8610260Answer by Travis for ASP.NET 3.5 Web Application Project takes excessively long time to initially loadTravis2009-05-14T00:08:51Z2009-05-14T00:08:51Z<p>How many projects are there? If you have heaps of assemblies and dlls in the bin directory, that can slow load times considerably (even if they are quite small). That's the best I can suggest.</p>
http://stackoverflow.com/questions/846780/asp-nets-equivalent-of-cycle-from-rails/846846#8468460Answer by Travis for ASP.net's equivalent of "cycle" from Rails?Travis2009-05-11T05:43:05Z2009-05-11T05:43:05Z<p>There's no built-in function to accomplish that - you will have to code it yourself. You can accomplish the same thing using modulo, but you will have to use a for loop (or some kind of index):</p>
<p>var colours = new List {"Red", "Green", "Blue"};</p>
<pre><code>for (int i=0; i < rows.length; i++) {
out.write("<p class='" + colours[i % colours.Count] + "'>" + rows[i].Name + "</p>");
}
</code></pre>
<p>Now, I'm sure you will agree that this is much more elegant than that silly Ruby stuff ;-)</p>
http://stackoverflow.com/questions/832465/how-good-bad-is-sharepoint-programming/832526#83252622Answer by Travis for How good/bad is sharepoint programming?Travis2009-05-07T01:33:43Z2009-05-07T01:33:43Z<p>I'm surprised at all of the positive responses. Let me just ask, do you mind creating your markup in code? As in HtmlWriter.BeginTag("br") (or whatever, sorry for not knowing the HtmlWriter api). That's considered best practices for creating redistributable web parts.</p>
<p>How about the Ajax Toolkit? Oops, off limits. Doesn't work due to a missing doc-type in the header.</p>
<p>And your laptop is running Windows server 2003, right? Because of course Sharepoint won't run on anything else.</p>
<p>I understand people defending their platform, but as someone who has had to do some work in Sharepoint, but doesn't any more ... let me say that developing for Sharepoint is the worst development experience of my life. Now, I've been pretty careful in my choices to date, so it's not the worst possible experience, but it's down there. Or, to put it another way, I would much prefer working in PHP than Sharepoint. </p>
http://stackoverflow.com/questions/827606/implementing-ajax-in-sharepoint/827761#827761-1Answer by Travis for Implementing AJAX in SharepointTravis2009-05-06T02:23:41Z2009-05-06T02:23:41Z<p>It's not really possible. MS Ajax requires a specific doctype to exist in the header, but Sharepoint does not provide it.</p>
<p>The solution for you, my friend, can be found <a href="http://jquery.com/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/494189/ways-to-handle-a-programmer-who-is-not-thorough/819078#8190780Answer by Travis for Ways to handle a programmer who is not thorough.Travis2009-05-04T07:09:41Z2009-05-04T07:18:50Z<p>I agree with the comments about integration testing, but I would also suggest having a chat with him, as he probably does not realise that he is not very thorough. I have a similar problem - I am very good with thinking in the large (for example, overall architecture), but not very detailed focused in the small. So, for example, if you want to architect a large, complex business transaction, I'm better than most. But if you want a form to collect a user's details and mail them to someone, most developers are more thorough than me. I'm likely to forget null checks, etc.</p>
<p>However, I've learned to compensate for this because I'm aware of this tendency, and so I ensure that I very thoroughly test my code, both with unit tests and additional checks before I think of it as 'done'. But, I had to learn to do that by being made aware of my tendency to brush over the details.</p>
<p>But, be gentle and take his feelings into consideration. Just let him know that you're trying to improve his skills and the team's overall effectiveness.</p>
http://stackoverflow.com/questions/710863/log4net-vs-nlog/818530#8185300Answer by Travis for log4net vs. NlogTravis2009-05-04T01:44:48Z2009-05-04T01:44:48Z<p>I think the general consensus is that nlog is a bit easier to configure and use. Both are quite capable, though.</p>
http://stackoverflow.com/questions/816258/good-architecture-interview-questions/816857#8168570Answer by Travis for Good Architecture Interview Questions Travis2009-05-03T11:47:31Z2009-05-03T11:47:31Z<p>The problem with asking questions like this is that there's not really a 'right' answer, so the main thing is to get the candidate start talking. I would ask them to describe an architecture that they've implemented that they are proud of. And then follow up with things like, 'what about it are you most proud of?'. And you can then ask them what mistakes they've made in the past, that sort of thing.</p>
<p>I feel more comfortable about that because you getting a feel for the person, and not their ability to answer a canned question.</p>
http://stackoverflow.com/questions/25458/how-costly-is-reflection-really/813853#8138531Answer by Travis for How costly is Reflection? Really.Travis2009-05-02T00:53:05Z2009-05-02T00:53:05Z<p>I'll answer your question if you answer mine: how important is performance, really? I think you will find that the answer is, it depends. It's not a big deal if you want to put it in your task-list application. It is a big deal if you want to put it in facebook's persistence library.</p>
http://stackoverflow.com/questions/813758/tips-on-creating-clean-elegant-code/813842#8138420Answer by Travis for Tips on creating clean, elegant codeTravis2009-05-02T00:47:39Z2009-05-02T00:47:39Z<p>Don't procrastinate. Ever. When you think of a way to improve a section of code, go and do it right then, no matter how hard it may be, or how long it might take. Always look for potential improvements and never take the easy way out.</p>
<p>Now, this is not the most efficient or profitable way of developing code, which is why professional codebases are rarely examples of beauty. But that wasn't your question.</p>
http://stackoverflow.com/questions/788697/ddd-factory-method-and-dependency-injection/788727#7887272Answer by Travis for DDD - Factory Method and Dependency InjectionTravis2009-04-25T11:18:51Z2009-04-25T11:18:51Z<p>Why don't you move the currency building outside of the currency class? I don't like the name, but you might try something like CurrencyBuilder. It might look like this:</p>
<pre><code>public class CurrencyBuilder {
private IRepository repository;
public CurrencyBuilder() : this(new DefaultRepository()) {
}
public CurrencyBuilder(IRepository repository) {
this.repository = repository;
}
public Currency FromCountryCode(string countryCode) {
string currencyName = repository.GetCurrencyNameByCode(countryCode);
if (currencyName == null)
throw new CurrencyCodeException(countryCode + " not found");
Currency c = new Currency();
c.Name = currencyName;
return c;
}
}
</code></pre>
<p>Using this setup, when you call 'new CurrencyBuilder()', it will use your default repository instance. However, for testing, you can pass a mock repository into the constructor.</p>
<p>Hope that helps, and stick with it. For what it's worth, this is not a great example where DI will help a lot. So, if you feel unsatisfied at the completion of this task, don't give up on DI straight away. As you get more comfortable with it, it's usefulness will become more apparent.</p>
http://stackoverflow.com/questions/788675/in-nhibernate-how-would-i-map-an-object-to-only-retrieve-its-children-but-ignore/788705#7887050Answer by Travis for In NHibernate how would I map an object to only retrieve it's children but ignore them when creating or updating?Travis2009-04-25T11:06:13Z2009-04-25T11:06:13Z<p>Why not set lazy to true? Wouldn't that basically do it? And also maybe set cascade to 'none'?</p>
http://stackoverflow.com/questions/788535/eric-lipperts-challenge-comma-quibbling-best-answer/788700#7887001Answer by Travis for Eric Lippert's challenge "comma-quibbling", best answer?Travis2009-04-25T11:04:05Z2009-04-25T11:04:05Z<p>I quite liked Jon's answer, but that's because it's much like how I approached the problem. Rather than specifically coding in the two variables, I implemented them inside of a FIFO queue.</p>
<p>It's strange because I just assumed that there would be 15 posts that all did exactly the same thing, but it looks like we were the only two to do it that way. Oh, looking at these answers, Marc Gravell's answer is quite close to the approach we used as well, but he's using two 'loops', rather than holding on to values.</p>
<p>But all those answers with LINQ and regex and joining arrays just seem like crazy-talk! :-)</p>
http://stackoverflow.com/questions/775690/safe-to-jump-on-asp-net-mvc-bandwagon-when-building-enterprise-solutions/775781#7757813Answer by Travis for Safe to jump on ASP.NET MVC bandwagon when building enterprise solutions?Travis2009-04-22T05:10:56Z2009-04-22T05:26:15Z<p>I can answer half of your question. I've just dove into MVC from a WebForms background. There is (obviously) a learning curve, but it's really not very steep. I've been able to make the transition with little effort, and I find the whole thing to be a breath of fresh air.</p>
<p>However, I am quite capable with front-end technologies (HTML & Javascript), and I don't like the HTML the WebForms and Microsoft ajax framework generates. If you and/or your team are like this, you will love it. However, if you are proud of the in-depth knowledge you have of the event hierarchy, or if you love the simplicity of UpdatePanels, then you'll probably bridle against the changes.</p>
<p>The documentation is OK, enough to get going happily, anyway. Here's a few videos to whet your appetite:
<a href="http://videos.visitmix.com/MIX09/T49F" rel="nofollow">http://videos.visitmix.com/MIX09/T49F</a>
<a href="http://videos.visitmix.com/MIX09/T50F" rel="nofollow">http://videos.visitmix.com/MIX09/T50F</a>
<a href="http://videos.visitmix.com/MIX09/T44F" rel="nofollow">http://videos.visitmix.com/MIX09/T44F</a></p>
<p>Here's your documentation home:
<a href="http://www.asp.net/mvc/" rel="nofollow">http://www.asp.net/mvc/</a></p>
<p>For a bit more info, the first chapter of the asp.net mvc 1.0 book is online and can be downloaded for free. See ScottGu's blog here:
<a href="http://weblogs.asp.net/scottgu/archive/2009/03/10/free-asp-net-mvc-ebook-tutorial.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2009/03/10/free-asp-net-mvc-ebook-tutorial.aspx</a></p>
<p>And, the full code for the chapter can be found here:
<a href="http://www.codeplex.com/nerddinner" rel="nofollow">http://www.codeplex.com/nerddinner</a></p>
<p>Finally, in terms of development time, I think it might take a bit longer to develop apps using MVC (although I have no evidence of this), but I think supporting, maintaining, bugfixing and enhancing will take a lot less time. So, with a small up-front investment, I think you'll more than recoup that effort.</p>
<p>Anyway, like I said, these are my preliminary findings. I still have yet to hit a really hairy problem.</p>
http://stackoverflow.com/questions/775678/should-asp-net-mvc-views-be-parameterized/775738#7757381Answer by Travis for Should ASP.NET MVC Views be ParameterizedTravis2009-04-22T04:52:44Z2009-04-22T04:52:44Z<p>The convention is usually to provide a View Model that encapsulates the data you need in your view. You can then pass this strongly typed object down into your view. So, for example, you might have a BlogDisplay object that looks like this:</p>
<pre><code>public object BlogDisplayPage {
public string PageTitle {get; set;}
public BlogEntry Content {get; set;}
public IList<Comment> Comments {get; set;}
public IList<BlogEntry> RelatedEntries {get; set;}
public IList<BlogEntry> PreviousEntries {get; set;}
}
</code></pre>
<p>Excuse the contrivedness of the example, but I think you understand what I'm trying to get at. This way, you can have all of the data associated with the View in one object that can be easily tested and maintained. This also has the advantage of having strongly typed Views using generics.</p>
<p>I prefer this over your suggestion of parameterized constructors because its intent is clear, and the creation and aggregation of that data is going to be in one spot that will probably be easier to maintain.</p>
http://stackoverflow.com/questions/770810/how-do-you-get-jquery-intellisense-working-if-youve-implemented-a-url-helper-ext/770834#7708341Answer by Travis for How do you get jQuery intellisense working if you've implemented a Url Helper extension to get the URL of your script files?Travis2009-04-21T02:28:30Z2009-04-21T02:28:30Z<p>He suggests mapping those URLs to a helper method to avoid duplication. However, in the case of a master page, you already have a central place for that information to live (i.e. you are not repeating yourself).</p>
<p>So, in this case, I would suggest that in this circumstance that it is not only unnecessary, but that it is actively harmful. Intellisense is much more important in this case than slavishly being 100% consistent.</p>
http://stackoverflow.com/questions/770806/image-swap-technique-to-fade-instead/770815#7708153Answer by Travis for image swap technique - to fade insteadTravis2009-04-21T02:19:39Z2009-04-21T02:19:39Z<p>Check out <a href="http://www.hieu.co.uk/blog/index.php/imageswitch/" rel="nofollow">ImageSwitch</a>. Does everything you want and a fair bit more.</p>
http://stackoverflow.com/questions/767102/when-to-use-a-presentation-model-in-asp-net-mvc/767160#7671602Answer by Travis for When to use a Presentation Model in ASP.NET MVC?Travis2009-04-20T06:48:31Z2009-04-21T00:13:32Z<p>I think you're on the right track with your understanding of Presentation Models. As to when you should create a View Model, the answer is probably 'it depends'. In your example, you can probably get away with passing the BlogPost and Comments in the ViewData object. It's not gorgeous, but hey, it gets the job done.</p>
<p>When and if that starts to feel ugly or unwieldy, then I would start thinking about making a View Model. I usually end up with the notion of some sort of 'Page', which includes the page title, common data, and then specific stuff for a particular page. In your case, that might end up as a BlogViewPage, which includes Title, BlogPost and List comments.</p>
<p>The nice thing about that approach is that you can then test that controller by making a request and testing the BlogViewPage to ensure that it contains the expected data.</p>
http://stackoverflow.com/questions/745675/what-features-any-good-application-should-care-about-by-design/745687#7456873Answer by Travis for What features any good application should care about 'By-Design'Travis2009-04-13T22:54:39Z2009-04-15T05:03:51Z<p><strong>Search</strong>. It should be easy to find the search textbox, and the results should be as good as possible.</p>
http://stackoverflow.com/questions/181029/implementing-jquerys-jggrid-with-asp-net-and-json-formatting7Implementing jQuery's jgGrid with ASP.Net and JSON formattingTravis2008-10-08T01:07:37Z2009-04-02T21:05:50Z
<p>Has anyone been able to implement the JQuery grid plugin, jqGrid? I'm trying to implement the JSON paging, and I feel like I'm getting close, but that I am also being swamped by inconsequential details. If anyone could post some sample code, I would greatly appreciate it.</p>
http://stackoverflow.com/questions/700019/what-is-the-best-way-of-sliding-section-of-html-using-javascript/700036#7000361Answer by Travis for What is the best way of sliding section of html using javascript?Travis2009-03-31T04:52:08Z2009-03-31T04:52:08Z<p>I don't use Django, but I can tell you that <a href="http://jquery.com/" rel="nofollow">JQuery</a> will do exactly what you want. You will need to include the JQuery library, and then use the slideDown() and slideUp() functions to show your form.</p>
<p>Here's a rough example of what you are after. Check the <a href="http://docs.jquery.com/Effects/slideDown#speedcallback" rel="nofollow">JQuery documentation</a> for more information</p>
<pre><code><script>
$("#toggleForm").click(function () {
if ($("#loginForm").is(":hidden")) {
$("#loginForm").slideDown("slow");
} else {
$("#loginForm").slideUp("slow");
}
});
</script>
<div id='toggleForm'>Show Login</div>
<div id='loginForm'>
Your form goes here!
<div>
</code></pre>
http://stackoverflow.com/questions/679621/how-to-overcome-the-everyone-elses-code-sucks-attitude/679642#6796421Answer by Travis for How to overcome the "Everyone else's code sucks" attitude?Travis2009-03-24T23:19:55Z2009-03-24T23:19:55Z<p>Most of the time, you just bridle at the code being different to how you would have done it. It's rare that it's anyway near as bad as you think it is.</p>
http://stackoverflow.com/questions/663795/what-are-the-best-features-of-visual-studio-team-system/664634#6646340Answer by Travis for What are the best features of Visual Studio Team System?Travis2009-03-20T01:08:52Z2009-03-20T01:08:52Z<p>I like the line-by-line blame, profiler (as mentioned), but more importantly, I like the reports it produces, such as defect rates over time.</p>
<p>However, even though there are plenty of features that I like, I certainly don't think it provides good value for money.</p>
http://stackoverflow.com/questions/46031/why-does-the-asp-net-web-forms-model-suck/330063#330063Comment by Travis on Why does the ASP.Net Web Forms model "suck"?Travis2009-10-11T22:52:03Z2009-10-11T22:52:03ZWhat I was trying to say (but did a poor job of expressing) was that with MVC I do a little more work upfront, and save a lot of time in effort in maintenance and bug fixing. I spend more getting the first version done, due to writing tests and explicitly handling more of the rendering, but in the end, I save a lot of time as there are less bugs due to the webforms's rendering pipeline and control oddities.http://stackoverflow.com/questions/61959/tfs-vs-open-source-alternatives/61975#61975Comment by Travis on TFS vs open source alternatives?Travis2009-08-20T23:21:16Z2009-08-20T23:21:16ZI'm pretty sure that this response was composed before MS announced they would be bundling their <i>first</i> open source project, the aforementioned jQuery :-). But yes, they are opening up a little and showing some of their code to the world, but it's certainly baby steps at this stage. Also, did the MVC guys accept patches? That to me is the minimum that I consider to be open source - not just code on display.http://stackoverflow.com/questions/1297433/how-do-you-specify-a-different-base-class-in-xaml-files-silverlight/1298414#1298414Comment by Travis on How do you specify a different base class in .xaml files (Silverlight)?Travis2009-08-19T10:22:43Z2009-08-19T10:22:43ZAlso, if you guys are out of features to add and want to add one that is more trouble than it's worth ... I was looking for something like:
x:BaseClass="Namespace.YourUserControlBase"
Thanks again!http://stackoverflow.com/questions/1297433/how-do-you-specify-a-different-base-class-in-xaml-files-silverlight/1298414#1298414Comment by Travis on How do you specify a different base class in .xaml files (Silverlight)?Travis2009-08-19T10:19:54Z2009-08-19T10:19:54ZHey, thanks! I initially thought, 'interesting that he shares his name with the developer...' ;-). Love the autocomplete, too. I just built a custom templated control that made my bosses drool, so thanks. I took the credit, though =)http://stackoverflow.com/questions/832465/how-good-bad-is-sharepoint-programming/832526#832526Comment by Travis on How good/bad is sharepoint programming?Travis2009-05-08T02:53:25Z2009-05-08T02:53:25ZSorry if I offended any sharepoint developers :-). I know there are workarounds, and stsdev makes it easier, but it really is a lot of work to do dev in Sharepoint. It's great for certain solutions, but it's not fun and it is a lot of work.http://stackoverflow.com/questions/832032/can-you-recommend-an-alternative-web-application-stack/832098#832098Comment by Travis on Can you recommend an alternative web application stack?Travis2009-05-07T01:45:01Z2009-05-07T01:45:01ZThanks. Liking what I've seen of Sinatra.http://stackoverflow.com/questions/832032/can-you-recommend-an-alternative-web-application-stack/832050#832050Comment by Travis on Can you recommend an alternative web application stack?Travis2009-05-07T00:06:03Z2009-05-07T00:06:03ZBrowsing through sinatra docs... looks very nicehttp://stackoverflow.com/questions/832032/can-you-recommend-an-alternative-web-application-stackComment by Travis on Can you recommend an alternative web application stack?Travis2009-05-06T23:57:17Z2009-05-06T23:57:17ZI'm pretty open. Perhaps it's what I'm used to. But autocomplete is nice ... it's about discovering APIs rather than saving keystrokes. It's hard to do in dynamic languages, though.http://stackoverflow.com/questions/832032/can-you-recommend-an-alternative-web-application-stack/832229#832229Comment by Travis on Can you recommend an alternative web application stack?Travis2009-05-06T23:53:52Z2009-05-06T23:53:52ZThank you, very informativehttp://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/818195#818195Comment by Travis on What are some bad programming habits to look out for and avoid?Travis2009-05-04T05:45:08Z2009-05-04T05:45:08ZI actually think this is some of the worst advice that gets passed around. Most developers these days seem to confuse programming efficiently with premature optimization. If you're Knuth or one of his colleagues, this is great advice. Otherwise, it's often used as an excuse for sloppy programming.http://stackoverflow.com/questions/814696/document-getelementbyid-doesnt-seem-to-work/814707#814707Comment by Travis on document.getElementById doesnt seem to workTravis2009-05-03T11:35:36Z2009-05-03T11:35:36ZIt's OK, I gave you +. JQuery is nice.http://stackoverflow.com/questions/788697/ddd-factory-method-and-dependency-injection/788727#788727Comment by Travis on DDD - Factory Method and Dependency InjectionTravis2009-04-26T08:40:43Z2009-04-26T08:40:43ZAlso, using the pattern above, you can 'inject the IRepository' into the CurrencyBuilder using the CurrencyBuilder(IRepository repo) constructor. This is how you could change the implementation to use an XMLFile or just keep all of the data in memory, as discussed below. If I were building this, I would create a list of country objects, and then create an object that held country codes in a hashtable, and use the country code as the key.http://stackoverflow.com/questions/788697/ddd-factory-method-and-dependency-injection/788727#788727Comment by Travis on DDD - Factory Method and Dependency InjectionTravis2009-04-26T08:37:25Z2009-04-26T08:37:25ZIt's not really a factory. With factory, you're returning a concrete implementation of an abstract class. Here, we're just using normal class to return certain types of information.
In this case, I would not make any of the methods static - there's not really any need to do that here. The dependency injection comes in the second constructor of the CurrencyBuilder. For example, you could build FakeRepository that derives from IRepository and have it return known values. This lets you test CurrencyBuilder without having to use the database.
http://stackoverflow.com/questions/767102/when-to-use-a-presentation-model-in-asp-net-mvc/767160#767160Comment by Travis on When to use a Presentation Model in ASP.NET MVC?Travis2009-04-21T00:12:06Z2009-04-21T00:12:06ZActually, I think I got it wrong. Model-View-ViewModel is the pattern I was thinking of. See <a href="http://blogs.msdn.com/dancre/archive/2006/10/11/datamodel-view-viewmodel-pattern-series.aspx" rel="nofollow">blogs.msdn.com/dancre/archive/…</a>, where collections are presented as IObservable, etc. This is a nitpicking level of detail, but I'll update my post to reflect your suggestion.http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/750631#750631Comment by Travis on What technologies are you using even though they are embarassingly out of date?Travis2009-04-15T07:48:35Z2009-04-15T07:48:35ZI was going to go with Pencil and Paper. I use them as the first step in wireframing sites/applications.