User loudej - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T08:45:42Zhttp://stackoverflow.com/feeds/user/6056http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1847843/spark-view-engine-if-statement-applied-to-attributes/1847912#18479123Answer by loudej for Spark View Engine If statement applied to attributesloudej2009-12-04T16:01:56Z2009-12-04T16:01:56Z<pre><code><select id="State" name="State" if="Model.StateList.Any()" >
<option value="">Select One</option>
<option each="var item in Model.StateList" value="${item.Value}" selected="true?{Model.State == item.Value}" >${item.Key}</option>
</select>
</code></pre>
http://stackoverflow.com/questions/772634/is-there-an-asp-mvc-equivilent-to-jstl-tags/1107920#11079201Answer by loudej for Is there an ASP MVC equivilent to JSTL tags?loudej2009-07-10T05:55:58Z2009-07-10T05:55:58Z<p>Yep, <a href="http://sparkviewengine.com" rel="nofollow">Spark</a> is probably your friend on that one. Looks pretty similar in spirit.</p>
<pre><code><c:forEach var="c" items="${Customers}">
<c:out value="${c.Name}"/><br/ >
</c:forEach>
</code></pre>
<p>becomes</p>
<pre><code><for each="var c in Customers">
${c.Name}<br/>
</for>
</code></pre>
http://stackoverflow.com/questions/1073644/getting-the-whatever-view-or-its-master-could-not-be-found-with-spark-view-e/1089918#10899181Answer by loudej for Getting "The 'WhatEver' view or its master could not be found" with Spark View Engine when going to the login pageloudej2009-07-07T01:19:01Z2009-07-07T01:19:01Z<p>(Copied answer from <a href="http://groups.google.com/group/spark-dev/browse%5Fthread/thread/d92a7bc6989ff44f" rel="nofollow">Spark discussion group</a>)</p>
<p>Should be fine - if you start with a stock "new ASP.NET MVC project"
and convert the views to spark it has the same type of url in the
login page and works fine.</p>
<p>In the login action when you return View(x); could the request url be
passed in accidentally as x? </p>
http://stackoverflow.com/questions/1081650/cannot-use-html-actionlink-in-asp-net-mvc-spark-files/1089915#10899153Answer by loudej for Cannot use Html.ActionLink in asp.net mvc spark filesloudej2009-07-07T01:17:41Z2009-07-07T01:17:41Z<p>(Copied from Rei Roldán's answer in <a href="http://groups.google.com/group/spark-dev/browse%5Fthread/thread/5276b265a3880aeb" rel="nofollow">Spark discussion group</a>)</p>
<p>This is where the helpers live.</p>
<pre><code><use namespace="System.Web.Mvc.Html" />
</code></pre>
http://stackoverflow.com/questions/1004842/whats-the-equivalent-syntax-for-this-mvc-view-code-in-spark/1005182#10051823Answer by loudej for What's the equivalent syntax for this MVC view code in Spark?loudej2009-06-17T04:53:47Z2009-06-17T05:06:45Z<p>The</p>
<pre><code><% if (UserService.IsAuthenticated && !Model.Post.IsDeleted) { %>
<% Html.RenderPartial("Reply", new ReplyViewModel { Id=Model.Post.PostId, CssClass="respond" }); %>
<% } %>
</code></pre>
<p>and</p>
<pre><code><if condition="UserService.IsAuthenticated && !Model.Post.IsDeleted">
#Html.RenderPartial("Reply", new ReplyViewModel { Id=Model.Post.PostId, CssClass="respond" });
</if>
</code></pre>
<p>and the <test if=""> variation should all work and produce nearly identical code:</p>
<pre><code>if (UserService.IsAuthenticated && !Model.Post.IsDeleted)
{
Html.RenderPartial("Reply", new ReplyViewModel { Id=Model.Post.PostId, CssClass="respond" });
}
</code></pre>
<p>Maybe try outputting ${UserService.IsAuthenticated} and ${Model.Post.IsDeleted} to be absolutely certain the condition isn't always true?</p>
<p><hr /></p>
<p>Okay - confirmed in another medium that's incorrect... Is it possible the "Reply" partial is a WebForms view like Reply.ascx or Reply.aspx? There is an issue with WebForms in that it's output by default will go directly to the current HttpContext response output, which makes it difficult to interleave those partials with view engines that spool or layer output.</p>
<p>There's a way to work around that in one of the Spark samples, but it's a bit tricky.</p>
http://stackoverflow.com/questions/861866/how-does-spark-view-engines-performance-compare-to-asp-net/900400#9004007Answer by loudej for How does Spark View Engine's performance compare to ASP.NET?loudej2009-05-22T23:22:38Z2009-05-23T16:31:07Z<p>The view templates are parsed to generate and compile a class that does nothing more than write output. After the first request of a view there's no real work being done other than to create an instance of that type and render.</p>
<p>It's been profiled for cpu and memory costing pretty extensively. I believe it's safe to assume there's nothing measurably slower in Spark - and in general it's unlikely the rendering in either Spark or WebForms view engines would be a bottleneck in a real-world application.</p>
http://stackoverflow.com/questions/894637/is-asp-net-mvc-a-step-backwards-in-some-ways/895041#8950411Answer by loudej for Is ASP.NET MVC a step backwards in some ways?loudej2009-05-21T20:44:58Z2009-05-21T20:44:58Z<p>I think it was a necessary step backwards, or better yet backtracking a few steps to move ahead.</p>
<p>The web had evolved in a direction that diverged significantly from ASP.NET's core design premise.</p>
<p>In the end, comparing ASP.NET to other agile web frameworks, I believe it was a case of "you can't get there from here".</p>
http://stackoverflow.com/questions/812991/writing-a-templatelanguage-vewengine/844953#8449530Answer by loudej for Writing a TemplateLanguage/VewEngineloudej2009-05-10T08:44:41Z2009-05-10T08:44:41Z<p>The Spark grammar is implemented with a kind-of-fluent domain specific language. </p>
<p>It's declared in a few layers. The rules which recognize the html syntax are declared in <a href="http://github.com/loudej/spark/blob/master/src/Spark/Parser/Markup/MarkupGrammar.cs" rel="nofollow">MarkupGrammar.cs</a> - those are based on grammar rules copied directly from the xml spec.</p>
<p>The markup rules refer to a limited subset of csharp syntax rules declared in <a href="http://github.com/loudej/spark/blob/master/src/Spark/Parser/Code/CodeGrammar.cs" rel="nofollow">CodeGrammar.cs</a> - those are a subset because Spark only needs to recognize enough csharp to adjust single-quotes around strings to double-quotes, match curley braces, etc.</p>
<p>The individual rules themselves are of type <a href="http://github.com/loudej/spark/blob/master/src/Spark/Parser/ParseAction.cs" rel="nofollow">ParseAction<TValue> delegate</a> which accept a <a href="http://github.com/loudej/spark/blob/master/src/Spark/Parser/Position.cs" rel="nofollow">Position</a> and return a <a href="http://github.com/loudej/spark/blob/master/src/Spark/Parser/ParseResult.cs" rel="nofollow">ParseResult</a>. The ParseResult is a simple class which contains the TValue data item parsed by the action and a new Position instance which has been advanced past the content which produced the TValue.</p>
<p>That isn't very useful on it's own until you introduce a <a href="http://github.com/loudej/spark/blob/master/src/Spark/Parser/Position.cs" rel="nofollow">small number of operators</a>, as described in <a href="http://en.wikipedia.org/wiki/Parsing%5Fexpression%5Fgrammar" rel="nofollow">Parsing expression grammar</a>, which can combine single parse actions to build very detailed and robust expressions about the shape of different syntax constructs.</p>
<p>The technique of using a delegate as a parse action came from a Luke H's blog post <a href="http://blogs.msdn.com/lukeh/archive/2007/08/19/monadic-parser-combinators-using-c-3-0.aspx" rel="nofollow">Monadic Parser Combinators using C# 3.0</a>. I also wrote a post about <a href="http://whereslou.com/2008/05/15/creating-a-domain-specific-language-for-parsing" rel="nofollow">Creating a Domain Specific Language for Parsing</a>.</p>
<p>It's also entirely possible, if you like, to reference the Spark.dll assembly and inherit a class from the base CharGrammar to create an entirely new grammar for a particular syntax. It's probably the quickest way to start experimenting with this technique, and an example of that can be found in <a href="http://github.com/loudej/spark/blob/master/src/Spark.Tests/Parser/CharGrammarTester.cs" rel="nofollow">CharGrammarTester.cs</a>.</p>
http://stackoverflow.com/questions/81067/is-there-a-more-efficient-text-spooler-than-textwriter-stringbuilder2Is there a more efficient text spooler than TextWriter/StringBuilderloudej2008-09-17T08:18:31Z2008-11-12T18:08:53Z
<p>For a situation like capturing text incrementally, for example if you were receiving all of the output.write calls when a page was rendering, and those were being appended into a textwriter over a stringbuilder.</p>
<p>Is there a more efficient way to do this? Something that exists in dotnet already preferably? Especially if there's a total size over a hundred k. Maybe something more like an array of pages rather than contiguous memory?</p>
http://stackoverflow.com/questions/180470/how-do-you-deal-with-connection-strings-when-deploying-an-asp-net-site/195127#1951270Answer by loudej for How do you deal with connection strings when deploying an ASP.NET site?loudej2008-10-12T05:14:56Z2008-10-12T05:14:56Z<p>I've recently been leaning towards config manipulation on the continuous integration server. That's because we've had problems with multiple web.config, web.qa.config, web.production.config keeping the 95% of the file that should be the same in sync.</p>
<p>In a nutshell: there's only the one web.config in source control and it's the development configuration (debug friendly, local db, etc.). The build server does the compile, then a deploy to the canary site, then the package for release candidate.</p>
<p>We're using nant, so it's the .build file that has xmlpoke to set debug="false", alter connection strings, and whatever else needs to change in the canary copy and the packaging copy of the web.config.</p>
<p>The build machine's deploy is called "canary" because it's the first thing to die if there's a problem.</p>
http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow/181508#1815084Answer by loudej for Is there a better way to find midnight tomorrow?loudej2008-10-08T06:06:31Z2008-10-08T06:06:31Z<p>Nope - it'll be the same way you use to find midnight today.</p>
http://stackoverflow.com/questions/181427/c-event-handling-compared-to-java/181487#1814871Answer by loudej for C# event handling (compared to Java)loudej2008-10-08T05:47:34Z2008-10-08T05:47:34Z<p>The delegate declares a function signature, and when it's used as an event on a class it also acts as a collection of enlisted call targets. The += and -= syntax on an event is used to adding a target to the list.</p>
<p>Given the following delegates used as events:</p>
<pre><code>// arguments for events
public class ComputerEventArgs : EventArgs
{
public Computer Computer { get; set; }
}
public class ComputerErrorEventArgs : ComputerEventArgs
{
public Exception Error { get; set; }
}
// delegates for events
public delegate void ComputerEventHandler(object sender, ComputerEventArgs e);
public delegate void ComputerErrorEventHandler(object sender, ComputerErrorEventArgs e);
// component that raises events
public class Thing
{
public event ComputerEventHandler Started;
public event ComputerEventHandler Stopped;
public event ComputerEventHandler Reset;
public event ComputerErrorEventHandler Error;
}
</code></pre>
<p>You would subscribe to those events with the following:</p>
<pre><code>class Program
{
static void Main(string[] args)
{
var thing = new Thing();
thing.Started += thing_Started;
}
static void thing_Started(object sender, ComputerEventArgs e)
{
throw new NotImplementedException();
}
}
</code></pre>
<p>Although the arguments could be anything, the object sender and EventArgs e is a convention that's used very consistently. The += thing_started will first create an instance of the delegate pointing to target method, then add it to the event.</p>
<p>On the component itself you would typically add methods to fire the events:</p>
<pre><code>public class Thing
{
public event ComputerEventHandler Started;
public void OnStarted(Computer computer)
{
if (Started != null)
Started(this, new ComputerEventArgs {Computer = computer});
}
}
</code></pre>
<p>You must test for null in case no delegates have been added to the event. When you make the method call however all delegates which have been added will be called. This is why for events the return type is void - there is no single return value - so to feed back information you would have properties on the EventArgs which the event handlers would alter.</p>
<p>Another refinement would be to use the generic EventHandler delegate rather than declaring a concrete delegate for each type of args.</p>
<pre><code>public class Thing
{
public event EventHandler<ComputerEventArgs> Started;
public event EventHandler<ComputerEventArgs> Stopped;
public event EventHandler<ComputerEventArgs> Reset;
public event EventHandler<ComputerErrorEventArgs> Error;
}
</code></pre>
http://stackoverflow.com/questions/161114/how-do-you-keep-track-of-temporary-threads-of-conversation-online2How do you keep track of temporary threads of conversation onlineloudej2008-10-02T06:39:10Z2008-10-03T23:26:18Z
<p>Often when I post a comment or answer on a site I like to keep an eye out for additional responses from other people, possibly replying again if appropriate. Sometimes I'll bookmark a page for a while, other times I'll end up re-googling keywords to locate the post again. I've always thought there should be something better than my memory for keeping track of pages I care about for a few days to a week.</p>
<p>Does anyone any clever ideas for this type of thing? Is there a micro-delicious type of online app with a bookmarklet for very short term followup?</p>
<p><hr /></p>
<p><strong>Update</strong> I think I should clarify. I wasn't asking about Stack Overflow specifically - on the "read/write web" in general I add comments to blog posts, respond to google group threads, etc. It's that sort of mish-mash of individual pages on random sites that I would care to keep track of for seven-to-ten days.</p>
http://stackoverflow.com/questions/160971/what-are-your-language-hangups/161269#16126912Answer by loudej for What are your language "hangups"?loudej2008-10-02T07:57:22Z2008-10-02T07:57:22Z<p>I never really liked the keywords spelled backwards in some scripting shells</p>
<p>if-then-<strong>fi</strong> is bad enough, but case-in-<strong>esac</strong> is just getting silly</p>
http://stackoverflow.com/questions/160774/net-wtfs/161075#1610756Answer by loudej for .NET WTF?sloudej2008-10-02T06:18:09Z2008-10-02T06:18:09Z<p>I always thought the XmlWriter was a pretty insane design for an abstract base class. The following are just the abstract methods you <em>have</em> to provide - there are plenty of other virtual and non-virtual variations.</p>
<p>One of the things that bothers is that there are so many different ways callers can do the same thing. When you think you have a correct implementation, and you go to use it with an XmlSerializer, you always learn something new about caller expectations you're not satisfying. </p>
<p>But the biggest WTF has to be WriteRaw. I mean the XmlWriter is supposed to be the abstraction of the formatting of the infoset being written, but that method allows the <em>caller</em> to format any fragment into xml text and pass it in. What's a non-xml-text writer supposed to do? Parse the xml text fragment in context to the best of it's ability and call whichever methods should have been used in the first place?</p>
<pre><code>public class CustomWriter : XmlWriter
{
public override void WriteStartDocument() { }
public override void WriteStartDocument(bool standalone) { }
public override void WriteEndDocument() { }
public override void WriteDocType(string name, string pubid, string sysid, string subset) { }
public override void WriteStartElement(string prefix, string localName, string ns) { }
public override void WriteEndElement() { }
public override void WriteFullEndElement() { }
public override void WriteStartAttribute(string prefix, string localName, string ns) { }
public override void WriteEndAttribute() { }
public override void WriteCData(string text) { }
public override void WriteComment(string text) { }
public override void WriteProcessingInstruction(string name, string text) { }
public override void WriteEntityRef(string name) { }
public override void WriteCharEntity(char ch) { }
public override void WriteWhitespace(string ws) { }
public override void WriteString(string text) { }
public override void WriteSurrogateCharEntity(char lowChar, char highChar) { }
public override void WriteChars(char[] buffer, int index, int count) { }
public override void WriteRaw(char[] buffer, int index, int count) { }
public override void WriteRaw(string data) { }
public override void WriteBase64(byte[] buffer, int index, int count) { }
public override void Close() { }
public override void Flush() { }
public override string LookupPrefix(string ns) { throw new System.NotImplementedException(); }
public override WriteState WriteState { get { throw new System.NotImplementedException(); } }
}
</code></pre>
http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/161033#1610331Answer by loudej for Do you have a hobby development project?loudej2008-10-02T05:51:24Z2008-10-02T05:51:24Z<p>Yep - <a href="http://dev.dejardin.org" rel="nofollow">Spark view engine</a> for Asp.Net MVC, MonoRail, and standalone. It is open-source and a number of people are using it and have done some write-ups about it. I don't think I'd say it's helped me profesionally - but it has resulted in plenty of interesting interaction with people in the development community.</p>
http://stackoverflow.com/questions/160376/why-move-your-javascript-files-to-a-different-main-domain-that-you-also-own/160508#1605083Answer by loudej for Why move your Javascript files to a different main domain that you also own?loudej2008-10-02T01:41:05Z2008-10-02T01:47:14Z<p>Lots of reasons:</p>
<p>CDN - a different dns name makes it easier to shift static assets to a content distribution network</p>
<p>Parallelism - images, stylesheets, and static javascript are using two other connections which are not going to block other requests, like ajax callbacks or dynamic images</p>
<p>Cookie traffic - exactly correct - especially with sites that have a habit of storing far more than a simple session id in cookies</p>
<p>Load shaping - even without a CDN there are still good reasons to host the static assets on fewer web servers optimized to respond extremely quickly to a huge number of file url requests, while the rest of the site is hosted on a larger number of servers responding to more processor intensive dynamic requests</p>
<p><hr /></p>
<p>update - two reasons you don't use the CDN's dns name. The client dns name acts as a key to the proper "hive" of assets the CDN is caching. Also since your CDN is a commodity service you can change the provider by altering the dns record - so you can avoid any page changes, reconfiguration, or redeployment on your site.</p>
http://stackoverflow.com/questions/156257/ai-applications-in-c-how-costly-are-virtual-functions-what-are-the-possible-o/156420#15642019Answer by loudej for AI Applications in C++: How costly are virtual functions? What are the possible optimizations?loudej2008-10-01T06:17:25Z2008-10-01T06:17:25Z<p>Virtual functions are very efficient. Assuming 32 bit pointers the memory layout is approximately:</p>
<pre><code>classptr -> [vtable:4][classdata:x]
vtable -> [first:4][second:4][third:4][fourth:4][...]
first -> [code:x]
second -> [code:x]
...
</code></pre>
<p>The classptr points to memory that is typically on the heap, occasionally on the stack, and starts with a four byte pointer to the vtable for that class. But the important thing to remember is the vtable itself is not allocated memory. It's a static resource and all objects of the same class type will point to the exactly the same memory location for their vtable array. Calling on different instances won't pull different memory locations into L2 cache.</p>
<p>This <a href="http://msdn.microsoft.com/en-us/magazine/cc301398.aspx" rel="nofollow">example from msdn</a> shows the vtable for class A with virtual func1, func2, and func3. Nothing more than 12 bytes. There is a good chance the vtables of different classes will also be physically adjacent in the compiled library (you'll want to verify this is you're especially concerned) which could increase cache efficiency microscopically.</p>
<pre><code>CONST SEGMENT
??_7A@@6B@
DD FLAT:?func1@A@@UAEXXZ
DD FLAT:?func2@A@@UAEXXZ
DD FLAT:?func3@A@@UAEXXZ
CONST ENDS
</code></pre>
<p>The other performance concern would be instruction overhead of calling through a vtable function. This is also very efficient. Nearly identical to calling a non-virtual function. Again from the <a href="http://msdn.microsoft.com/en-us/magazine/cc301398.aspx" rel="nofollow">example from msdn</a>:</p>
<pre><code>; A* pa;
; pa->func3();
mov eax, DWORD PTR _pa$[ebp]
mov edx, DWORD PTR [eax]
mov ecx, DWORD PTR _pa$[ebp]
call DWORD PTR [edx+8]
</code></pre>
<p>In this example ebp, the stack frame base pointer, has the variable <code>A* pa</code> at zero offset. The register eax is loaded with the value at location [ebp], so it has the A*, and edx is loaded with the value at location [eax], so it has class A vtable. Then ecx is loaded with [ebp], because ecx represents "this" it now holds the A*, and finally the call is made to the value at location [edx+8] which is the third function address in the vtable.</p>
<p>If this function call was not virtual the mov eax and mov edx would not be needed, but the difference in performance would be immeasurably small.</p>
http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/142755#1427550Answer by loudej for what is an ideal variable naming convention for loop variables?loudej2008-09-27T02:08:01Z2008-09-27T02:08:01Z<p>For integers I use int index, unless it's nested then I use an Index suffix over what's being iterated like int groupIndex and int userIndex.</p>
http://stackoverflow.com/questions/54963/how-would-you-refactor-this-linq-code/142688#1426881Answer by loudej for How would you refactor this LINQ code?loudej2008-09-27T01:18:27Z2008-09-27T01:18:27Z<p>Don't use LINQ if it's impacting readability. Factor out the individual tests into boolean methods which can be used as your where expression.</p>
<pre><code>IQueryable<MyObject> results = ...;
results = results
.Where(TestFileNameText)
.Where(TestFileNameChecked)
.Where(TestIPAddressText)
.Where(TestIPAddressChecked);
</code></pre>
<p>So the the individual tests are simple methods on the class. They're even individually unit testable. </p>
<pre><code>bool TestFileNameText(MyObject x)
{
return string.IsNullOrEmpty(ddlFileName.SelectedItem.Text) ||
x.FileName.Contains(ddlFileName.SelectedValue);
}
bool TestIPAddressChecked(MyObject x)
{
return !chkIPAddress.Checked ||
x.IpAddress == null;
}
</code></pre>
http://stackoverflow.com/questions/142223/under-what-circumstances-are-dynamic-languages-not-appropriate/142432#142432-1Answer by loudej for Under what circumstances are dynamic languages not appropriate?loudej2008-09-26T23:00:41Z2008-09-26T23:00:41Z<p>Video card device drivers</p>
http://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer/142412#1424121Answer by loudej for Test if a floating point number is an integerloudej2008-09-26T22:50:13Z2008-09-26T22:50:13Z<p>This will let you choose what precision you're looking for, plus or minus half a tick, to account for floating point drift. The comparison is integral also which is nice.</p>
<pre><code>static void Main(string[] args)
{
const int precision = 10000;
foreach (var d in new[] { 2, 2.9, 2.001, 1.999, 1.99999999, 2.00000001 })
{
if ((int) (d*precision + .5)%precision == 0)
{
Console.WriteLine("{0} is an int", d);
}
}
}
</code></pre>
<p>and the output is</p>
<pre><code>2 is an int
1.99999999 is an int
2.00000001 is an int
</code></pre>
http://stackoverflow.com/questions/140468/what-is-the-maximum-possible-length-of-a-net-string/141034#1410340Answer by loudej for What is the maximum possible length of a .NET string?loudej2008-09-26T18:06:09Z2008-09-26T18:06:09Z<p>200 megs... at which point your app grinds to a virtual halt, has about a gig working set memory, and the o/s starts to act like you'll need to reboot.</p>
<pre><code>static void Main(string[] args)
{
string s = "hello world";
for(;;)
{
s = s + s.Substring(0, s.Length/10);
Console.WriteLine(s.Length);
}
}
12
13
14
15
16
17
18
...
158905664
174796230
192275853
211503438
</code></pre>
http://stackoverflow.com/questions/140270/humor-in-code/140962#1409623Answer by loudej for Humor in codeloudej2008-09-26T17:54:39Z2008-09-26T17:54:39Z<p>My favorite is a comment a co-worker added to a safe-delete function we had in c++. It was very hackish, but it protected from some null problems in a code-base that wasn't checking nulls often enough.</p>
<pre><code> class WidgetBase
{
void SafeDelete()
{
if (this)
delete this;
/*
Whether 'tis nobler in the mind to suffer
The slings and arrows of outrageous fortune,
Or to take arms against a sea of troubles,
And by opposing, end them.
*/
}
}
</code></pre>
http://stackoverflow.com/questions/140774/ways-to-prepare-your-mind-before-coding/140917#1409178Answer by loudej for Ways to prepare your mind before coding?loudej2008-09-26T17:47:49Z2008-09-26T17:47:49Z<p>First, if you expect to accomplish anything significant make sure you can have the next several hours potentially uninterrupted. There's nothing more destructive to a productive mind frame than getting up every twenty minutes to take out the garbage, grab lunch, answer the phone, drive to the pharmacy, etc. Getting your tea, coffee, music, and snack prepared before you start is a good idea so you don't interrupt yourself.</p>
<p>Second, select the task you fear the most and plan to do that one next. I've found if I put off items which seem difficult on the surface it negatively affects my mindset. They can seem to grow into a dark cloud on the horizon, but if you address them early you can turn a mountain into a molehill. Sketch out some ideas for that task on a pad, make a short list any todo bullets which can be individually crossed off, and jump on the keyboard with the simplest possible assumptions. Having a micro-plan and a sense of incremental progress always helps avoid engineering despair.</p>
http://stackoverflow.com/questions/77352/how-do-i-reward-my-developers-for-the-little-things-they-get-right/79728#797281Answer by loudej for How do I reward my developers for the little things they get right?loudej2008-09-17T03:41:33Z2008-09-17T03:41:33Z<p>I believe you hit the nail on the head when you said, "they have value because I do not have to go through and point out mistakes which means I do not have to watch them like a hawk which frees me to do more useful things."</p>
<p>At Minnebar I heard a fellow giving a presentation on communication for engineers. One of the things he said was don't "compliment" people. They aren't really seen as all that sincere, like it's something you say because it's expected, or worse that you say to be flattering when you're trying to get someone to do something.</p>
<p>He said the best thing to do is keep your compliments selfishly oriented. I appreciate when you do 'x' because it affects me 'y'. Exactly like you had in your example. Like, "I love when a task lands on your plate so I don't have to worry about how it will be done." "Good job answering that group's questions, you made our team look really smart." Etc.</p>
http://stackoverflow.com/questions/56479/will-net-mvc-give-me-the-html-css-js-separation-i-need/58423#584230Answer by loudej for Will .NET MVC give me the HTML/CSS/JS separation I need?loudej2008-09-12T07:02:07Z2008-09-12T07:02:07Z<p>Asp.Net MVC will help you keep html/css/js separate in that it will present fewer features that would prevent you from keeping them separate.</p>
<p>For example Html helpers typically return just that: Html. From that point you are free to choose to keep all style information associated only by class attributes. </p>
<p>Consider also looking into the practices you usually follow with a library like jQuery. It's an excellent example of how to keep the scripted functionality entirely in your js and out of your html by applying the event handling behaviors to the elements on page load based on things like element type, class and id.</p>
http://stackoverflow.com/questions/42582/what-view-engine-are-you-using-with-asp-net-mvc/58415#584150Answer by loudej for What View Engine are you using with ASP.NET MVC?loudej2008-09-12T06:47:34Z2008-09-12T06:47:34Z<p>I've used NVelocity with MonoRail for some time but have recently switched to <a href="http://dev.dejardin.org" rel="nofollow">Spark</a> for both Asp.Net MVC and MonoRail. The syntax seems very natural to me, but I guess that's to be expected. ;)</p>
http://stackoverflow.com/questions/58380/avoiding-first-chance-exception-messages-when-the-exception-is-safely-handled/58409#584093Answer by loudej for Avoiding first chance exception messages when the exception is safely handledloudej2008-09-12T06:32:37Z2008-09-12T06:32:37Z<p>Unlike Java, Dotnet exceptions are fairly expensive in terms of processing power and handled exceptions should be avoided in the normal and successful execution path. Not only will you avoid clutter in the console window but your performance will improve and it will make performance counters like .NET CLR Exceptions more meaningful.</p>
<p>In this example you would use</p>
<pre><code>while (reader.PeekChar() != -1)
{
bodyByteList.Add(reader.ReadByte());
}
</code></pre>
http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow/181508#181508Comment by loudej on Is there a better way to find midnight tomorrow?loudej2009-08-24T20:14:51Z2009-08-24T20:14:51ZIt's not saying the formula is the same as today plus one. It's intentionally misunderstanding the sentence structure of the question, as if I believed Dre was asking if a better formula not currently available might present itself if he waited a day. "Is there a better way to find midnight tomorrow?" See? To which you could quite rightly reply, "If you have to explain it, it ain't funny."http://stackoverflow.com/questions/1184615/nested-layouts-in-spark/1184673#1184673Comment by loudej on Nested "Layouts" in Spark?loudej2009-07-31T19:46:11Z2009-07-31T19:46:11ZYou'll want to remove the <content:view>... The name view is the default output, so you can't capture into it.http://stackoverflow.com/questions/739483/visual-studio-language-service-with-c-intellisense/1022733#1022733Comment by loudej on Visual Studio Language Service with C# intellisenseloudej2009-07-10T06:13:50Z2009-07-10T06:13:50ZcMapping is the size argument for the mappings array, the ref [0] is address-of-array to interop. Same with cPaints and paints.
Mapping is exactly right - it's an array of substring offset pairs for each little window where code in the template show through as code in the generated file.
Paint is an array of substring offsets and color types in the original source. That information is used to colorize the rest of the non-code text.
To be honest the biggest pain was reworking the parse/gen code to carry forward and capture all of the input/output text offsets.
http://stackoverflow.com/questions/58380/avoiding-first-chance-exception-messages-when-the-exception-is-safely-handled/58409#58409Comment by loudej on Avoiding first chance exception messages when the exception is safely handledloudej2009-07-09T06:45:50Z2009-07-09T06:45:50ZSure it does. "Is there a way to hide these first chance exception messages?" - the first chance exceptions would not appear with this loop. :)http://stackoverflow.com/questions/1041027/what-are-the-benefits-of-using-an-alternate-asp-net-mvc-view-engine/1042613#1042613Comment by loudej on What are the benefits of using an alternate ASP.NET MVC view engine?loudej2009-06-27T06:39:31Z2009-06-27T06:39:31ZSomething giving the sugar more than empty calories would be the fact the scope of the each="" and if="" is tied to the start and end tags of the element. As your html is well-formed so is your code, avoiding the <% } } %> scavenger hunts. There are more features as you look further, but in seven lines this gives you a pretty reasonable first impression.
http://stackoverflow.com/questions/200256/is-asp-net-webforms-swept-under-the-rug-to-make-room-for-mvc/898841#898841Comment by loudej on Is asp.net webforms swept under the rug to make room for mvc?loudej2009-06-17T05:17:44Z2009-06-17T05:17:44ZYou can also cut a tin can with a Ginsu knife, but that doesn't make it a good ideahttp://stackoverflow.com/questions/779430/asp-net-mvc-how-to-get-view-to-generate-pdfComment by loudej on Asp.Net MVC how to get view to generate PDF.loudej2009-05-28T18:03:16Z2009-05-28T18:03:16ZUsing the Spark view engine is a downside? I'm wounded. :)http://stackoverflow.com/questions/739483/visual-studio-language-service-with-c-intellisenseComment by loudej on Visual Studio Language Service with C# intellisenseloudej2009-05-10T09:10:36Z2009-05-10T09:10:36ZYeah, downshifting to ATL COM was helpful for getting a handle on the situation because you could trace QueryInterface calls on your objects to gather hints about what expectations VS was having. There's also another nice trick where you take an object reference and call QI for every IID in the registry to discover as many of it's exposed interfaces as you can. I'm not aware of a way to do that type of COM-level exploration in c#.http://stackoverflow.com/questions/173207/best-template-engine-for-asp-net-mvc/183618#183618Comment by loudej on Best Template Engine for ASP.NET MVCloudej2008-10-12T04:33:13Z2008-10-12T04:33:13ZSpark won't collide with jQuery because $ is only recognized directly in front of an {expression}. There's no valid jQuery statement that starts with "${".http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow/181508#181508Comment by loudej on Is there a better way to find midnight tomorrow?loudej2008-10-08T06:12:33Z2008-10-08T06:12:33Zawww c'mon. that was funny!http://stackoverflow.com/questions/54963/how-would-you-refactor-this-linq-code/142688#142688Comment by loudej on How would you refactor this LINQ code?loudej2008-10-01T05:33:51Z2008-10-01T05:33:51Z Ah! -1 on this approach then.http://stackoverflow.com/questions/134648/is-there-any-code-documentation-for-asp-net-mvc-preview-5/142654#142654Comment by loudej on Is there any code documentation for ASP.NET MVC preview 5?loudej2008-10-01T05:25:38Z2008-10-01T05:25:38ZI would miss the ability to browse inward and outward all known callers crossing asp.net and asp.net mvc boundaries. Fastest way I know of how to build a mental model of how a system is designed.