User Jarrod Dixon - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T17:24:43Z http://stackoverflow.com/feeds/user/3 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/526890/best-openid-api-for-asp-net-mvc-application/526897#526897 13 Answer by Jarrod Dixon for Best OpenId API for ASP.NET MVC application Jarrod Dixon 2009-02-09T01:40:42Z 2009-10-16T01:14:14Z <p>We use the excellent DotNetOpenId library here on Stack Overflow:</p> <blockquote> <p><a href="http://code.google.com/p/dotnetopenid/" rel="nofollow">http://code.google.com/p/dotnetopenid/</a></p> </blockquote> <p>Our <em>original</em> login UI was provided by <a href="http://www.idselector.com/" rel="nofollow">ID Selector</a>, but we've since rolled our own minimalist version.</p> http://stackoverflow.com/questions/676326/how-does-stackoverflow-optimise-the-performance-for-the-display-of-the-questions/1464847#1464847 7 Answer by Jarrod Dixon for how does StackOverflow optimise the performance for the display of the questions? Jarrod Dixon 2009-09-23T09:04:54Z 2009-09-23T09:10:08Z <p>Here on Stack Overflow, we try to use aggressive caching on many levels:</p> <ul> <li>pages entirely cached by IIS' output cache, regardless of user authentication</li> <li>pages cached only for anonymous users; registered users see the most recent content</li> <li>portions of pages' html cached for everyone; <code>HttpRuntime.Cache</code> is used for this</li> </ul> <p>The <strong>home page</strong> is made up of three cached html pieces - recent questions, recent tags, recent badges - each with a different duration.</p> <p>A <strong>questions list page</strong> will cache the ids (<code>Int32[]</code>) of all questions for a particular sort/tag filter, making paging trivial. Further caching on the stats (e.g. question count, related tag counts) is done, as well.</p> <p>A <strong>question detail page</strong> will be entirely cached for anonymous users, while registered users see the latest goods. Also, the related questions on the side are cached to disk for a longer duration.</p> <p>While we try to cache entire pages wherever possible, we do show user information at the page top - some parts just cannot be cached. </p> <p>So look at caching like a puzzle - what parts can be safely shared between all my requests? Based on expense, what parts MUST be shared across all my requests?</p> http://stackoverflow.com/questions/1286359/why-does-cache-add-return-an-object-that-represents-the-cached-item/1376985#1376985 4 Answer by Jarrod Dixon for Why does Cache.Add return an object that represents the cached item? Jarrod Dixon 2009-09-04T02:46:15Z 2009-09-04T02:59:41Z <p>To make this even clearer, here's a console app that demonstrates the <strong>exact</strong> behavior:</p> <pre><code>static void Main(string[] args) { string key = "key"; HttpRuntime.Cache.Add(key, "first", null/*no depends*/, Cache.NoAbsoluteExpiration, Cache.NoSlidingExpiration, CacheItemPriority.NotRemovable, null/*no callback*/); var addResult = HttpRuntime.Cache.Add(key, "second", null/*no depends*/, Cache.NoAbsoluteExpiration, Cache.NoSlidingExpiration, CacheItemPriority.NotRemovable, null/*no callback*/); Console.WriteLine("addResult = {0}", addResult); Console.WriteLine("Cache[key] = {0}", HttpRuntime.Cache[key]); } </code></pre> <p>And the console output:</p> <pre> addResult = first Cache[key] = first </pre> <p>The "second" call to <code>.Add</code> returns what is currently in the Cache under our key and <strong>fails to update the entry!</strong></p> http://stackoverflow.com/questions/33969/best-way-to-implement-request-throttling-in-asp-net-mvc 18 Best way to implement request throttling in ASP.NET MVC? Jarrod Dixon 2008-08-29T04:50:50Z 2009-08-23T08:25:28Z <p>We're experimenting with various ways to throttle user actions in a <strong>given time period</strong>:</p> <ul> <li>Limit question/answer posts</li> <li>Limit edits</li> <li>Limit feed retrievals</li> </ul> <p>For the time being, we're using the Cache to simply insert a record of user activity - if that record exists if/when the user does the same activity, we throttle.</p> <p>Using the Cache automatically gives us stale data cleaning and sliding activity windows of users, but how it will scale could be a problem.</p> <p>What are some other ways of ensuring that requests/user actions can be effectively throttled (emphasis on stability)?</p> http://stackoverflow.com/questions/33969/best-way-to-implement-request-throttling-in-asp-net-mvc/1318059#1318059 4 Answer by Jarrod Dixon for Best way to implement request throttling in ASP.NET MVC? Jarrod Dixon 2009-08-23T08:21:56Z 2009-08-23T08:21:56Z <p>Here's a generic version of what we've been using on Stack Overflow for the past year:</p> <pre><code>/// &lt;summary&gt; /// Decorates any MVC route that needs to have client requests limited by time. /// &lt;/summary&gt; /// &lt;remarks&gt; /// Uses the current System.Web.Caching.Cache to store each client request to the decorated route. /// &lt;/remarks&gt; [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)] public class ThrottleAttribute : ActionFilterAttribute { /// &lt;summary&gt; /// A unique name for this Throttle. /// &lt;/summary&gt; /// &lt;remarks&gt; /// We'll be inserting a Cache record based on this name and client IP, e.g. "Name-192.168.0.1" /// &lt;/remarks&gt; public string Name { get; set; } /// &lt;summary&gt; /// The number of seconds clients must wait before executing this decorated route again. /// &lt;/summary&gt; public int Seconds { get; set; } /// &lt;summary&gt; /// A text message that will be sent to the client upon throttling. You can include the token {n} to /// show this.Seconds in the message, e.g. "Wait {n} seconds before trying again". /// &lt;/summary&gt; public string Message { get; set; } public override void OnActionExecuting(ActionExecutingContext c) { var key = string.Concat(Name, "-", c.HttpContext.Request.UserHostAddress); var allowExecute = false; if (HttpRuntime.Cache[key] == null) { HttpRuntime.Cache.Add(key, true, // is this the smallest data we can have? null, // no dependencies DateTime.Now.AddSeconds(Seconds), // absolute expiration Cache.NoSlidingExpiration, CacheItemPriority.Low, null); // no callback allowExecute = true; } if (!allowExecute) { if (String.IsNullOrEmpty(Message)) Message = "You may only perform this action every {n} seconds."; c.Result = new ContentResult { Content = Message.Replace("{n}", Seconds.ToString()) }; // see 409 - http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html c.HttpContext.Response.StatusCode = (int)HttpStatusCode.Conflict; } } } </code></pre> <p>Sample usage:</p> <pre><code>[Throttle(Name="TestThrottle", Message = "You must wait {n} seconds before accessing this url again.", Seconds = 5)] public ActionResult TestThrottle() { return Content("TestThrottle executed"); } </code></pre> <p>The ASP.NET Cache works like a champ here - by using it, you get automatic clean-up of your throttle entries. And with our growing traffic, we're not seeing that this is an issue on the server.</p> <p>Feel free to give feedback on this method; when we make Stack Overflow better, you get your <a href="http://blog.stackoverflow.com/2009/05/the-stack-overflow-trilogy/" rel="nofollow">Ewok fix</a> even faster :)</p> http://stackoverflow.com/questions/486408/can-a-pages-validaterequest-setting-be-overridden/1315153#1315153 1 Answer by Jarrod Dixon for Can a page's ValidateRequest setting be overridden? Jarrod Dixon 2009-08-22T04:38:29Z 2009-08-22T04:38:29Z <p>We have a base controller that our controllers inherit from, allowing us to globally disable intrinsic ASP.NET request validation:</p> <pre><code> protected override void Initialize(RequestContext requestContext) { // no client input will be checked on any controllers ValidateRequest = false; base.Initialize(requestContext); } </code></pre> <p>Just make sure that you <strong>validate all input</strong> from the client!</p> http://stackoverflow.com/questions/1021274/linqtosql-mapping-exception-when-using-abstract-base-classes 9 LinqToSql - mapping exception when using abstract base classes Jarrod Dixon 2009-06-20T09:03:30Z 2009-07-23T02:50:23Z <p>Problem: I would like to share code between multiple assemblies. This shared code will need to work with LinqToSql-mapped classes.</p> <p>I've encountered the same issue found <a href="http://stackoverflow.com/questions/156113/linqtosql-and-abstract-base-classes">here</a>, but I've also found a work-around that I find troubling (I'm not going so far as to say "bug").</p> <p><b>All the following code can be downloaded in <a href="http://www.filehosting.org/file/details/40226/TestLinq2Sql.zip" rel="nofollow">this solution</a>.</b></p> <p>Given this table:</p> <pre><code>create table Users ( Id int identity(1,1) not null constraint PK_Users primary key , Name nvarchar(40) not null , Email nvarchar(100) not null ) </code></pre> <p>and this DBML mapping:</p> <pre><code>&lt;Table Name="dbo.Users" Member="Users"&gt; &lt;Type Name="User"&gt; &lt;Column Name="Id" Modifier="Override" Type="System.Int32" DbType="Int NOT NULL IDENTITY" IsPrimaryKey="true" IsDbGenerated="true" CanBeNull="false" /&gt; &lt;Column Name="Name" Modifier="Override" Type="System.String" DbType="NVarChar(40) NOT NULL" CanBeNull="false" /&gt; &lt;Column Name="Email" Modifier="Override" Type="System.String" DbType="NVarChar(100) NOT NULL" CanBeNull="false" /&gt; &lt;/Type&gt; &lt;/Table&gt; </code></pre> <p>I've created the following base classes in one assembly "Shared":</p> <pre><code>namespace TestLinq2Sql.Shared { public abstract class UserBase { public abstract int Id { get; set; } public abstract string Name { get; set; } public abstract string Email { get; set; } } public abstract class UserBase&lt;TUser&gt; : UserBase where TUser : UserBase { public static TUser FindByName_Broken(DataContext db, string name) { return db.GetTable&lt;TUser&gt;().FirstOrDefault(u =&gt; u.Name == name); } public static TUser FindByName_Works(DataContext db, string name) { return db.GetTable&lt;TUser&gt;().FirstOrDefault(u =&gt; u.Name == name &amp;&amp; 1 == 1); } public static TUser FindByNameEmail_Works(DataContext db, string name, string email) { return db.GetTable&lt;TUser&gt;().FirstOrDefault(u =&gt; u.Name == name || u.Email == email); } } } </code></pre> <p>These classes are referenced in another assembly "Main", like so:</p> <pre><code>namespace TestLinq2Sql { partial class User : TestLinq2Sql.Shared.UserBase&lt;User&gt; { } } </code></pre> <p>The DBML file is located in the "Main" assembly, as well.</p> <p>When calling <code>User.FindByName_Broken(db, "test")</code>, an exception is thrown:</p> <blockquote> <p>System.InvalidOperationException: Class member UserBase.Name is unmapped.</p> </blockquote> <p>However, the other two base static methods work. </p> <p>Furthermore, the SQL generated by calling <code>User.FindByName_Works(db, "test")</code> is what we were hoping for in the broken call:</p> <pre><code>SELECT TOP (1) [t0].[Id], [t0].[Name], [t0].[Email] FROM [dbo].[Users] AS [t0] WHERE [t0].[Name] = @p0 -- @p0: Input NVarChar (Size = 4; Prec = 0; Scale = 0) [test] </code></pre> <p>While I am willing to use this <code>1 == 1</code> "hack" for single predicate queries, I'm interested to know if anyone else has a better way of sharing LinqToSql-aware code in a base/shared/core assembly.</p> http://stackoverflow.com/questions/771491/can-linq-to-sql-fill-non-columnattribute-marked-properties-when-using-datacontext 6 Can LINQ-to-SQL fill non-ColumnAttribute-marked properties when using DataContext.ExecuteQuery? Jarrod Dixon 2009-04-21T07:45:58Z 2009-04-22T03:03:01Z <p>Given this table:</p> <pre><code>CREATE TABLE [Comments] ( [Id] [int] IDENTITY(1, 1) NOT NULL, [Text] [nvarchar](600) NOT NULL ) </code></pre> <p>With this model class:</p> <pre><code>[Table(Name="Comments")] public class Comment { [Column(AutoSync = AutoSync.OnInsert, DbType = "Int NOT NULL IDENTITY", IsPrimaryKey = true, IsDbGenerated = true)] public int Id { get; set; } [Column(DbType = "NVarChar(600) NOT NULL", CanBeNull = false)] public string Text { get; set; } public string ArbitraryText { get; set; } } </code></pre> <p>Is it possible for a DataContext to fill the <code>ArbitraryText</code> property when using the <code>ExecuteQuery</code> method:</p> <pre><code>var comments = db.ExecuteQuery&lt;Comment&gt;("select Id, [Text], 'hello' [ArbitraryText] from Comments"); </code></pre> <p>It seems that the entity mapping algorithm ignores any property not marked with <code>ColumnAttribute</code>, but does anyone know another way of doing this?</p> <p>I'd prefer not having to do the mapping myself, but this looks like my only option.</p> <p><hr> Edit: What's annoying is that the DataContext.ExecuteQuery function will fill a "POCO" object from a query:</p> <pre><code>public class PlainOldCSharpObject { public int Id { get; set; } public string Text { get; set; } public string ArbitraryText { get; set; } } ... // DataContext correctly fills these objects var pocos = db.ExecuteQuery&lt;PlainOldCSharpObject&gt;("select Id, [Text]... </code></pre> <p>So my current solution is to have an inner class on my LINQ-mapped object that holds the extra data my aggregate query returns. This is sub-optimal, as some properties are duplicated (e.g. Id, Text).</p> http://stackoverflow.com/questions/441792/diagnosing-request-timed-out-httpexceptions 3 Diagnosing "Request timed out" HttpExceptions Jarrod Dixon 2009-01-14T03:16:08Z 2009-04-02T14:05:28Z <p>Here on StackOverflow, we're seeing a few "Request timed out" exceptions every day.</p> <p>The facts:</p> <ul> <li>Request timeout is the default 90 seconds</li> <li>Occurs only on POSTs</li> <li>Data posted is text, usually small (&lt; 1KB), but can range to a few KB</li> <li>No Form data is captured in server variables</li> <li>Client UAs are diverse: IE5.5 - 7, Firefox 3.0.5, iPhone, Chrome</li> <li>Client locations are diverse: UK, France, USA - NC, OH, NE, IN</li> </ul> <p>We've tested a server-based timeout (i.e. using Thread.Sleep) and <strong>all form variables are correctly captured</strong> in the exception log - this leads us to believe the client is having issues sending the request in the allotted time.</p> <p>Any thoughts on how to trap/debug this condition are very welcome!</p> http://stackoverflow.com/questions/670685/can-asp-net-mvc-views-aspx-be-reused-in-multiple-asp-net-mvc-projects/670695#670695 2 Answer by Jarrod Dixon for Can ASP.Net MVC Views (*.aspx) be reused in multiple ASP.net MVC projects? Jarrod Dixon 2009-03-22T08:27:33Z 2009-03-22T08:32:46Z <p>One idea you could try would be to:</p> <ol> <li>Create a project (class library) for your shared Views</li> <li>Add and set any *.aspx markup pages to <a href="http://dotnet.org.za/craign/archive/2007/05/05/how-to-access-resources-embedded-in-an-assembly.aspx" rel="nofollow">Embedded Resources</a> in the Properties pane</li> <li>Add a class "EmbeddedViewResult" that inherits from ActionResult - this would contain logic to ensure the embedded .aspx files are extracted and available on disk when called at the end of a controller action.</li> </ol> <p>So in the projects that you wanted to use the shared Views, the controller actions could return something like</p> <pre><code>public ActionResult Shared() { return new EmbeddedViewResult("SharedLib.SharedPage"); } </code></pre> <p>I've done something similar with WebForms pages, so it should be possible.</p> http://stackoverflow.com/questions/492346/asp-net-mvc-and-httpruntime-executiontimeout/645454#645454 4 Answer by Jarrod Dixon for ASP.NET MVC and httpRuntime executionTimeout Jarrod Dixon 2009-03-14T05:33:57Z 2009-03-15T04:21:54Z <p>Chris Hynes solution works! Just be sure to not include ~/ in your path.</p> <p><a href="http://stackoverflow.com/questions/29686/set-asp-net-executiontimeout-in-code-refresh-request/29754#29754">This answer</a> details another way - simply set the <code>ScriptTimeout</code> within your action code:</p> <pre><code>public ActionResult NoTimeout() { HttpContext.Server.ScriptTimeout = 60 * 10; // Ten minutes.. System.Threading.Thread.Sleep(1000 * 60 * 5); // Five minutes.. return Content("NoTimeout complete", "text/plain"); // This will return.. } </code></pre> http://stackoverflow.com/questions/406076/gwt-resizable-panel/406116#406116 1 Answer by Jarrod Dixon for GWT resizable panel. Jarrod Dixon 2009-01-02T05:36:55Z 2009-03-11T09:28:28Z <p>It looks like the <a href="http://code.google.com/p/gwt-ext/" rel="nofollow">GWT-Ext</a> widget extensions contains what you want in its <a href="http://gwt-ext.com/demo/#resizablePanel" rel="nofollow">Resizable Panel</a></p> http://stackoverflow.com/questions/540349/change-image-source-using-jquery/540355#540355 9 Answer by Jarrod Dixon for Change Image Source using JQuery Jarrod Dixon 2009-02-12T07:31:48Z 2009-02-12T07:51:55Z <p>To set up on ready:</p> <pre><code>$(function() { $("img") .mouseover(function() { var src = $(this).attr("src").match(/[^\.]+/) + "over.gif"; $(this).attr("src", src); }) .mouseout(function() { var src = $(this).attr("src").replace("over", ""); $(this).attr("src", src); }); }); </code></pre> http://stackoverflow.com/questions/523415/jquery-ajax-request-not-firing-on-subsequent-events/523448#523448 1 Answer by Jarrod Dixon for jQuery ajax request not firing on subsequent events Jarrod Dixon 2009-02-07T08:26:52Z 2009-02-07T08:56:56Z <p>I had no problems executing your code locally. Each GET would return, even after setting a Thread.Sleep on the server.</p> <p>Does your "/Tasks/Complete/" url return anything? HTML, plain-text, json?</p> <p>What browser are you using? Does this problem persist across all browsers? I would try using FireFox with the <a href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow">FireBug add-on</a> to see in its Console what is returned.</p> <p>Let us know what you find!</p> http://stackoverflow.com/questions/510207/sql-server-2008-management-studio-running-parameterized-query 0 SQL Server 2008 Management Studio - Running Parameterized Query Jarrod Dixon 2009-02-04T05:46:58Z 2009-02-04T05:50:20Z <p>I'd like to be able to run an already parameterized query from within the SSMS:</p> <pre><code>select name from aTable where id = @id </code></pre> <p>I know that other IDEs (e.g. TOAD) allow for parameter binding - is this available in SSMS 2008?</p> <p>Thanks!</p> http://stackoverflow.com/questions/456366/need-help-with-onclick-syntax-in-classic-asp-environment/456396#456396 3 Answer by Jarrod Dixon for Need help with onclick syntax in classic asp environment Jarrod Dixon 2009-01-19T02:48:18Z 2009-01-19T02:48:18Z <p>I haven't done VBScript in 8+ years, but you might want to try:</p> <pre><code>Response.Write "&lt;td class=""alt""&gt;&lt;input type=""button"" onclick=""deleteRecordAtt(AttID) value=""remove"" /&gt;&lt;/td&gt;" </code></pre> <p>This would give you the more accepted html attribute quoting.</p> <p>Also, your AttID variable is a client script variable? If not, you'd need to concat the server variable inline, e.g.</p> <pre><code>...onclick=""deleteRecordAtt(" &amp; AttID &amp; ")""... </code></pre> http://stackoverflow.com/questions/442258/getting-trace-messages-into-failed-request-tracing-from-controllers 0 Getting Trace messages into Failed Request Tracing from Controllers Jarrod Dixon 2009-01-14T08:16:13Z 2009-01-15T17:50:10Z <p>On ASP.NET MVC Preview 5, we're having trouble getting any trace messages from Global or Controllers to appear in either a page (View) or Failed Request Tracing (FREB).</p> <p>Neither of these calls work in a Controller Action:</p> <pre><code>HttpContext.Trace.Write("hello"); System.Diagnostics.Trace.WriteLine("world"); </code></pre> <p>There are no issues with trace statements in a Page's code-behind; those messages appear correctly.</p> http://stackoverflow.com/questions/267030/why-doesnt-msbuild-copy-as-i-would-expect/434742#434742 2 Answer by Jarrod Dixon for Why doesn't MSBuild copy as I would expect Jarrod Dixon 2009-01-12T07:53:53Z 2009-01-12T08:00:47Z <p>Just a gem we found as we were debugging MSBuild issues around copying:</p> <p><a href="http://blog.scrappydog.com/2008/06/subtle-msbuild-bug-feature.html" rel="nofollow">http://blog.scrappydog.com/2008/06/subtle-msbuild-bug-feature.html</a></p> <p>ItemGroups are parsed before Targets, so any Targets that create new files (e.g. compiles!) won't be picked up when an ItemGroup is referenced further along the script.</p> <p>Eric Bowen also describes a work-around for this "feature", the <strong>CreateItem</strong> task:</p> <pre><code>&lt;Target Name="Copy" &gt; &lt;CreateItem Include="..\Source\**\bin\**\*.exe" Exclude="..\Source\**\bin\**\*.vshost.exe"&gt; &lt;Output TaskParameter="Include" ItemName="CompileOutput" /&gt; &lt;/CreateItem&gt; &lt;Copy SourceFiles="@(CompileOutput)" DestinationFolder="$(OutputDirectory)"&gt;&lt;/Copy&gt; &lt;/Target&gt; </code></pre> <p>Many kudos to him!</p> http://stackoverflow.com/questions/431777/funny-interesting-software-limitations-due-to-design-choices/431808#431808 11 Answer by Jarrod Dixon for Funny/Interesting software limitations due to design choices Jarrod Dixon 2009-01-10T21:31:35Z 2009-01-10T21:31:35Z <p>Here on StackOverflow, we decided to only use one database table (aptly named EL_GORDO), so just about every new feature is a complete pain to code.</p> http://stackoverflow.com/questions/431738/displaying-a-django-query-result-in-html-table-list-css-divs/431798#431798 3 Answer by Jarrod Dixon for Displaying a Django query result in HTML - table, list, css divs? Jarrod Dixon 2009-01-10T21:24:28Z 2009-01-10T21:24:28Z <p>If the information you're trying to display is tabular (as it appears to be), then go with tables.</p> <p>Also, see these questions for even more debate!</p> <ul> <li><a href="http://stackoverflow.com/questions/30251/tables-instead-of-divs">http://stackoverflow.com/questions/30251/tables-instead-of-divs</a></li> <li><a href="http://stackoverflow.com/questions/83073/div-vs-table">http://stackoverflow.com/questions/83073/div-vs-table</a></li> </ul> http://stackoverflow.com/questions/431644/how-can-i-hook-into-the-current-formsauthenticationmodule-in-a-medium-trust-envir/431707#431707 2 Answer by Jarrod Dixon for How can I hook into the current FormsAuthenticationModule in a Medium Trust environment? Jarrod Dixon 2009-01-10T20:39:07Z 2009-01-10T20:39:07Z <p>That's a tough one - you can't even access the Modules collection from within your Global application file.</p> <p>You could try calling your custom code from the AuthenticateRequest handler in Global:</p> <pre><code>protected void Application_AuthenticateRequest(object sender, EventArgs e) { // Call your module's code here.. } </code></pre> <p>You can't grab your custom module from the collection, either, so you'd need a static reference to your module's library.</p> <p>Other than granting the AspNetHostingPermission (<a href="http://msdn.microsoft.com/en-us/library/ms998341.aspx#paght000020_oledbpermission" rel="nofollow">as detailed for other permissions here</a>) to your site in the machine level web.config, I'm out of ideas!</p> http://stackoverflow.com/questions/427217/proper-variable-declaration-in-c/427231#427231 17 Answer by Jarrod Dixon for Proper Variable Declaration in C# Jarrod Dixon 2009-01-09T06:20:24Z 2009-01-09T06:20:24Z <p>Your second example won't compile, as the getter's value variable doesn't exist. Also, the setter would result in the eponymous StackOverflow exception!</p> <p>In C# 3.0, you can use the following syntax to have the compiler create the private backing variable:</p> <pre><code>public string MyVariable { get; set; } </code></pre> <p>This wouldn't give you the extra null checking your first example has, though. You'd probably have to stick with your first example's method if you need custom logic in the setter.</p> http://stackoverflow.com/questions/278890/script-minification-and-continuous-integration-with-msbuild/427163#427163 4 Answer by Jarrod Dixon for Script Minification and Continuous Integration with MSBuild Jarrod Dixon 2009-01-09T05:33:06Z 2009-01-09T05:33:06Z <p>Another JS (and CSS!) compression library for MSBuild:</p> <p><a href="http://www.codeplex.com/YUICompressor" rel="nofollow">http://www.codeplex.com/YUICompressor</a></p> <p>This is a .NET port of the java-based <a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">Yahoo! compressor</a>.</p> http://stackoverflow.com/questions/292830/how-best-can-i-isolate-my-application-from-an-unreliable-database/293331#293331 0 Answer by Jarrod Dixon for How best can I isolate my application from an unreliable database? Jarrod Dixon 2008-11-16T01:21:28Z 2008-11-16T01:21:28Z <p>Get the other internal team to tune that database, so everyone using the app benefits. I do love me some indexes!</p> http://stackoverflow.com/questions/289137/visual-studio-2008-dll-disappearing-issues/289161#289161 0 Answer by Jarrod Dixon for Visual Studio 2008 .dll disappearing issues Jarrod Dixon 2008-11-14T03:30:03Z 2008-11-14T03:30:03Z <p>I've seen this before when using Rebuild - I fixed it by marking those reference dll's as ReadOnly in their Explorer attributes.</p> <p>Yeah, it's hacky, but it kept VS's paws off my dlls!</p> http://stackoverflow.com/questions/289071/in-visual-studio-2008-how-can-i-add-a-using-blah-myblah-to-all-new-page-codeb/289151#289151 1 Answer by Jarrod Dixon for In Visual Studio 2008, how can I add a 'using blah.myblah;' to all new page codebehinds? Jarrod Dixon 2008-11-14T03:22:39Z 2008-11-14T03:22:39Z <p>From <a href="http://blogs.msdn.com/steve/archive/2007/04/10/changing-the-default-using-directives-in-visual-studio.aspx" rel="nofollow">Steve's blog</a>, it suggests that you edit the Class.cs file located in:</p> <pre><code>%Program Files%\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\Code\1033\Class.zip </code></pre> <p>Be sure to regenerate the template cache by running:</p> <pre><code>%Program Files%\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe /setup </code></pre> <p>Make sure you wait for the process to exit (watch your task manager!).</p> <p><br /> Web templates are in a different zip:</p> <pre><code>%Program Files%\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\Web\1033\WebForm.zip </code></pre> http://stackoverflow.com/questions/286117/looking-for-a-configurable-pretty-printer-for-c-code/286136#286136 1 Answer by Jarrod Dixon for Looking for a configurable pretty printer for C# code. Jarrod Dixon 2008-11-13T02:56:02Z 2008-11-13T02:56:02Z <p>The easiest solution is for the team lead to mandate a format and everyone use it. The VS defaults are pretty good.</p> <p>Jeff Atwood did that to us here on Stack Overflow and while I rebelled at first, I got over it :) Makes everything much easier!</p> http://stackoverflow.com/questions/212763/password-hashing-in-a-c-windows-app-absent-asp-nets-formsauthentication/212815#212815 2 Answer by Jarrod Dixon for Password hashing in a C# Windows app, absent ASP.NET's FormsAuthentication? Jarrod Dixon 2008-10-17T16:15:49Z 2008-10-17T16:23:50Z <p>Or you could roll your own hashing; GO GO SHA POWER!</p> <p>This will return a nice, big, hex-encoded string for you - just make sure you import the System.Security.Cryptography namespace.</p> <pre><code>public static string ToSha256Hash(string s) { if (String.IsNullOrEmpty(s)) return ""; byte[] hash; // SHA256 returns a 32 byte hash.. using (var sha = SHA256.Create()) { hash = sha.ComputeHash(Encoding.UTF8.GetBytes(s)); } var result = new StringBuilder(64); foreach (byte b in hash) { result.Append(b.ToString("x2")); } return result.ToString(); } </code></pre> <p>I personally don't like mixing the web and winforms worlds :)</p> http://stackoverflow.com/questions/172735/create-use-user-defined-functions-in-system-data-sqlite/172845#172845 6 Answer by Jarrod Dixon for Create/Use User-defined functions in System.Data.SQLite? Jarrod Dixon 2008-10-05T23:33:44Z 2008-10-05T23:33:44Z <p>Here's a <a href="http://sqlite.phxsoftware.com/forums/p/348/1457.aspx#1457" rel="nofollow">great example</a> by Robert Simpson on a REGEX function you can use in your sqlite queries.</p> http://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords/61204#61204 3 Answer by Jarrod Dixon for Best way to handle user account authentication and passwords Jarrod Dixon 2008-09-14T08:37:14Z 2008-09-14T08:37:14Z <p>Jeff Atwood has some good posts concerning hashing, if you decide to go that route:</p> <ul> <li><a href="http://www.codinghorror.com/blog/archives/000949.html" rel="nofollow">Rainbow Hash Cracking</a></li> <li><a href="http://www.codinghorror.com/blog/archives/000953.html" rel="nofollow">You're Probably Storing Passwords Incorrectly</a></li> </ul> http://stackoverflow.com/questions/441502/stop-the-jquery-autocomplete-plugin-from-forgetting-text-when-the-user-clicks-bac/1500105#1500105 Comment by Jarrod Dixon on Stop the jQuery autocomplete plugin from forgetting text when the user clicks back Jarrod Dixon 2009-12-01T04:20:39Z 2009-12-01T04:20:39Z Nice work-around! To be even more jQuery-ish, you could use <code>$('#location').removeAttr('autocomplete');</code> - this gives you null reference protection if there was ever a case that <code>#location</code> isn't in the form's html. http://stackoverflow.com/questions/1614390/how-to-get-jquery-tablesorter-to-sort-descending-by-default/1614934#1614934 Comment by Jarrod Dixon on How to get jQuery Tablesorter to sort descending by default? Jarrod Dixon 2009-11-25T12:14:47Z 2009-11-25T12:14:47Z Excellent - needed to do this on some admin tools here on the site :) http://stackoverflow.com/questions/707444/nunit-vs-team-system-unit-test/708659#708659 Comment by Jarrod Dixon on NUnit vs Team System Unit Test Jarrod Dixon 2009-10-30T04:55:00Z 2009-10-30T04:55:00Z I'm looking at CHESS now for some sync testing, but all our unit tests here on Stack Overflow are in NUnit; I guess the threading tests must be with MSTest. http://stackoverflow.com/questions/393687/how-can-i-add-my-attributes-to-code-generated-linq2sql-classes-properties/667119#667119 Comment by Jarrod Dixon on How can I add my attributes to Code-Generated Linq2Sql classes properties? Jarrod Dixon 2009-10-16T08:50:27Z 2009-10-16T08:50:27Z Yeah, this is the bomb - great answer! http://stackoverflow.com/questions/441792/diagnosing-request-timed-out-httpexceptions/709858#709858 Comment by Jarrod Dixon on Diagnosing "Request timed out" HttpExceptions Jarrod Dixon 2009-10-16T01:18:37Z 2009-10-16T01:18:37Z It also looks like a lot of the unfinished requests are from &quot;spammy&quot; sources. http://stackoverflow.com/questions/1574113/looping-through-xml-with-jquery Comment by Jarrod Dixon on Looping through XML with jQuery Jarrod Dixon 2009-10-16T00:52:06Z 2009-10-16T00:52:06Z Regardless, glad you found a solution - NOW ACCEPT KEITH'S ANSWER :) http://stackoverflow.com/questions/1574113/looping-through-xml-with-jquery Comment by Jarrod Dixon on Looping through XML with jQuery Jarrod Dixon 2009-10-16T00:50:30Z 2009-10-16T00:50:30Z Just curious - why must this be done on the client? Why not apply an XSLT transformation on the server and send down the html? Is the xml dynamic? Could the transformed html not be cached on the server? http://stackoverflow.com/questions/1340643/how-to-enable-ip-address-logging-with-log4net/1340717#1340717 Comment by Jarrod Dixon on How to enable IP address logging with Log4Net Jarrod Dixon 2009-10-07T09:12:49Z 2009-10-07T09:12:49Z Nice - I had done this in a previous life, but had forgotten how. +1 http://stackoverflow.com/questions/160218/to-ternary-or-not-to-ternary/162525#162525 Comment by Jarrod Dixon on To ternary or not to ternary? Jarrod Dixon 2009-10-02T02:32:03Z 2009-10-02T02:32:03Z Yeah, I love that one as well - it's <code>??</code> in C#, the null coalesce operator: <a href="http://stackoverflow.com/questions/278703/unique-ways-to-use-the-null-coalescing-operator" rel="nofollow" title="unique ways to use the null coalescing operator">stackoverflow.com/questions/278703/&hellip;</a> http://stackoverflow.com/questions/441792/diagnosing-request-timed-out-httpexceptions/709858#709858 Comment by Jarrod Dixon on Diagnosing "Request timed out" HttpExceptions Jarrod Dixon 2009-08-23T08:31:57Z 2009-08-23T08:31:57Z This is really all we've been able to determine - complete requests are not making it to the server. It's troubling, as you want to serve every request, especially POSTs for voting and asking/answering questions! http://stackoverflow.com/questions/805816/svn-colleague-checked-in-a-folder-into-repository-but-i-cant-update-my-version/806322#806322 Comment by Jarrod Dixon on SVN: Colleague checked in a folder into repository, but I can't Update my version to it Jarrod Dixon 2009-08-19T19:39:36Z 2009-08-19T19:39:36Z Excellent - running into this right now - nice answer! http://stackoverflow.com/questions/837285/how-to-utilize-webdev-webserver-exe-vs-web-server-in-x64 Comment by Jarrod Dixon on How to utilize WebDev.WebServer.exe (VS Web Server) in x64? Jarrod Dixon 2009-08-13T02:16:16Z 2009-08-13T02:16:16Z Did you find an answer to this question outside of Stack Overflow? http://stackoverflow.com/questions/1220847/background-animation-problem-with-jquery Comment by Jarrod Dixon on Background animation problem with jQuery Jarrod Dixon 2009-08-12T01:52:49Z 2009-08-12T01:52:49Z We have issues here on Stack Overflow with jQuery animating a background color - when direct linking to an answer, we'll fade the background to highlight which answer you linked to. Sometimes, the animation will not work, so we just hacked a callback to set the background color if it didn't animate properly. Probably not what you're looking for, in this case. http://stackoverflow.com/questions/1147225/how-to-create-magic-quadrant-style-chart-using-asp-net Comment by Jarrod Dixon on How to create 'magic quadrant' style chart using ASP.Net? Jarrod Dixon 2009-07-30T22:19:28Z 2009-07-30T22:19:28Z SWEET MANGO CHUTNEY! http://stackoverflow.com/questions/1198838/is-it-a-code-smell-for-one-method-to-depend-on-another/1198871#1198871 Comment by Jarrod Dixon on Is it a code smell for one method to depend on another? Jarrod Dixon 2009-07-29T08:59:29Z 2009-07-29T08:59:29Z Excellent point!