User David Alpert - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T08:27:09Zhttp://stackoverflow.com/feeds/user/8997http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1174640/is-there-an-easy-way-to-add-to-a-filename-when-you-find-a-duplicate-filename/1174752#11747520Answer by David Alpert for Is there an easy way to add (#) to a filename when you find a duplicate filename?David Alpert2009-07-23T22:03:00Z2009-07-23T22:03:00Z<p>For a LINQ-ish solution to this, check out Keith Dahlby's recent blog post, "<a href="http://www.lostechies.com/blogs/dahlbyk/archive/2009/07/23/improve-your-code-golf-game-with-linq.aspx" rel="nofollow">Improve Your Code Golf Game with LINQ</a>" He covers this same issue quite elegantly.</p>
http://stackoverflow.com/questions/488121/extend-xunit-net-to-use-custom-code-when-processing-a-class-and-locating-test-met/966753#9667530Answer by David Alpert for Extend xUnit.NET to use custom code when processing a class and locating test methodsDavid Alpert2009-06-08T20:13:17Z2009-06-08T20:13:17Z<p>So it turns out that I was looking for the ITestClassCommand.EnumerateTestMethods() method. </p>
<ol>
<li>The default xUnit.NET test runner
will iterate over all the classes in
your test assembly. </li>
<li>For each one it will check for a RunWithAttribute;
that's your chance to override the
ITestClassCommand implementation
that is used to identify methods
containing tests. (RunWithNUnit is a good example)</li>
<li>ITestClassCommand.EnumerateTestMethods() is called to process the test class and return an IEnumerable of test methods.</li>
<li>each test IMethodInfo is then passed to ITestClassCommand.EnumerateTestCommands(IMethodInfo testMethod) to get the IEnumerable of ITestCommands</li>
<li>each ITestCommand is then executed and given the opportunity to return a result.</li>
</ol>
<p>In the case of my example above, I would need something like:</p>
<pre><code>[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public class RunWithMyTestClassCommandAttribute : RunWithAttribute
{
public RunWithMyTestClassCommandAttribute()
: base(typeof(MyTestClassCommand)) {}
}
</code></pre>
<p>Then I could decorate my above example with:</p>
<pre><code>[RunWithMyTestClassCommand]
public class AdditionSpecification
{
static int result;
public void Because()
{
result = 2 + 2;
}
public void Result_is_non_zero()
{
Assert.True(result <> 0);
}
public void Result_is_correct()
{
Assert.Equal(4, result);
}
}
</code></pre>
<p>Finally, in MyTestClassCommand, I get to opportunity between EnumerateTestMethods() and EnumerateTestCommands(IMethodInfo testMethod) to use whatever logic I want to locate and construct ITestCommand instances that get executed as individual tests.</p>
<p>BTW, in the process of researching this issue, I ran into a small bug in the xUnit.NET framework where a custom IMethodInfo generated by EnumerateTestMethods() never showed up in EnumerateTestCommands(..) because it was being unwrapped and rewrapped by the test runner or one of it's factories. </p>
<p>I submitted <a href="http://xunit.codeplex.com/WorkItem/View.aspx?WorkItemId=7788" rel="nofollow">this issue</a> to the xUnit project on codeplex and it was <a href="http://xunit.codeplex.com/Thread/View.aspx?ThreadId=57985" rel="nofollow">corrected on May 30th</a>, 2009 for xUnit.NET 1.5 CTP 2</p>
http://stackoverflow.com/questions/488121/extend-xunit-net-to-use-custom-code-when-processing-a-class-and-locating-test-met2Extend xUnit.NET to use custom code when processing a class and locating test methodsDavid Alpert2009-01-28T15:46:41Z2009-06-08T20:13:17Z
<p>I'm a big fan of the xUnit.NET framework; I find it light, simple, clean, and extensible.</p>
<p>Now let's say that I have a class like so:</p>
<pre><code>public class AdditionSpecification
{
static int result;
public void Because()
{
result = 2 + 2;
}
public void Result_is_non_zero()
{
Assert.True(result <> 0);
}
public void Result_is_correct()
{
Assert.Equal(4, result);
}
}
</code></pre>
<p>With the test class above I want xUnit.NET to see 2 test cases and to run the Because() method before each of them. </p>
<p>Leaving aside any issues you may have with my class or method names, the structure of this test/specification, the xUnit.NET framework, or BDD, here's my question:</p>
<p><strong>How can I tell xUnit.NET that I want to customize how it identifies and executes test methods out of this class <em>without</em> using a custom [Fact]-like attribute on each target test method?</strong></p>
<p>I know that I can derive from BeforeAfterAttribute to decorate each test method with custom before and after execution. How can i do this at the class level? Do i have to write a custom runner?</p>
http://stackoverflow.com/questions/667387/use-reflection-to-find-the-name-of-a-delegate-field0Use reflection to find the name of a delegate fieldDavid Alpert2009-03-20T18:30:20Z2009-03-20T18:49:05Z
<p>Let's say that I have the following delegate:</p>
<pre><code>public delegate void Example();
</code></pre>
<p>and a class such as the following:</p>
<pre><code>public class TestClass {
Example FailingTest = () => Assert.Equal(0,1);
}
</code></pre>
<p>How can I use reflection to get the name "FailingTest"?</p>
<p>So far I have tried:</p>
<pre><code>var possibleFields = typeof(TestClass).GetFields(relevant_binding_flags)
.Where(x => x.FieldType.Equals(typeof(Example)));
foreach(FieldInfo oneField in possibleFields) {
// HERE I am able to access the declaring type name
var className = oneField.ReflectedType.Name; // == "TestClass"
// but I am not able to access the field
// name "FailingTest" because:
var fieldName = oneField.Name; // == "CS$<>9__CachedAnonymousMethodDelegate1"
}
</code></pre>
<p>Stepping through in the debugger, I am unable to find a path to the name of the declared field, "FailingTest".</p>
<p>Is that info retained at runtime or is it lost when the anonymous delegate is assigned?</p>
http://stackoverflow.com/questions/547791/why-use-finally-in-c/547800#5478005Answer by David Alpert for Why use finally in C#?David Alpert2009-02-13T21:38:46Z2009-02-13T21:38:46Z<p>finally, as in:</p>
<pre><code>try {
// do something risky
} catch (Exception ex) {
// handle an exception
} finally {
// do any required cleanup
}
</code></pre>
<p>is a garunteed opportunity to execute code after your try..catch block, regardless of whether or not your try block threw an exception.</p>
<p>That makes it perfect for things like releasing resources, db connections, file handles, etc.</p>
http://stackoverflow.com/questions/504261/acceptable-css-hacks-fixes/505181#5051810Answer by David Alpert for Acceptable CSS hacks/fixesDavid Alpert2009-02-02T22:16:11Z2009-02-02T22:16:11Z<p>I prefer the <a href="http://www.positioniseverything.net/articles/cc-plus.html" rel="nofollow">global conditional comment</a> technique described by Hiroki Chalfant; </p>
<p>I find it helpful to keep my IE-targeted rules side-by-side with my standards-targeted rules in a single valid stylesheet.</p>
http://stackoverflow.com/questions/504931/is-there-a-website-that-compiles-css-knowledge/505034#5050342Answer by David Alpert for is there a website that compiles css knowledge?David Alpert2009-02-02T21:31:43Z2009-02-02T21:39:43Z<p>um, StackOverflow?</p>
<p>EDIT: this answer was intended to be humorous but is also serious. StackOverflow is a great place to find solutions to specific CSS scenarios.</p>
http://stackoverflow.com/questions/504931/is-there-a-website-that-compiles-css-knowledge/505049#5050495Answer by David Alpert for is there a website that compiles css knowledge?David Alpert2009-02-02T21:34:57Z2009-02-02T21:34:57Z<p><a href="http://www.positioniseverything.net/" rel="nofollow">Position is Everything</a></p>
<p>This is a great site for tracking down known IE rendering quirks/bugs.</p>
http://stackoverflow.com/questions/284388/is-there-a-test-runner-for-net-tests-that-can-run-multi-threaded-to-take-advanta/488077#4880771Answer by David Alpert for Is there a test runner for .NET tests that can run multi-threaded to take advantage of multi-core machines?David Alpert2009-01-28T15:37:26Z2009-01-28T15:37:26Z<p>Just yesterday i came across this post by Damon Payne:</p>
<p><a href="http://www.damonpayne.com/2008/05/09/ConcurrentUnitTestingWithXUnitNet1.aspx" rel="nofollow">http://www.damonpayne.com/2008/05/09/ConcurrentUnitTestingWithXUnitNet1.aspx</a></p>
<p>where he walks through writing a custom test runner for xUnit.NET that explicitly distributes test cases using the class as the unit of concurrency in order to take advantage of multiple cores.</p>
http://stackoverflow.com/questions/487904/what-advantages-of-extension-methods-have-you-found/487996#48799613Answer by David Alpert for What Advantages of Extension Methods have you found?David Alpert2009-01-28T15:18:03Z2009-01-28T15:18:03Z<p>Two more benefits of extension methods that i have come across:</p>
<ul>
<li>a fluent interface can be encapsulated in a static class of extension methods, thereby achieving a separation of concerns between the core class and it's fluent extensions; i've seen that achieve greater maintainability</li>
<li>extension methods can be hung off of interfaces, thereby allowing you to specify a contract (via an interface) and an associated series of interface-based behaviors (via extension methods), again offering a separation of concerns.</li>
</ul>
http://stackoverflow.com/questions/263129/javascript-problem/263161#2631610Answer by David Alpert for javascript problemDavid Alpert2008-11-04T19:41:03Z2008-11-04T19:41:03Z<p>when i see HTML and & and problem, i look to make sure that my character encoding is all properly specified. </p>
<p>also, the code in your PHP script may be choking on an un/escaped '&' character.</p>
http://stackoverflow.com/questions/251814/jquery-and-organized-code/251864#25186412Answer by David Alpert for jQuery and "Organized Code"David Alpert2008-10-30T21:37:48Z2008-10-30T21:37:48Z<p>So far, I do it like this:</p>
<pre><code>// initial description of this code block
$(function() {
var container = $("#inputContainer");
for(var i=0; i < 5; i++) {
$("<input/>").changed(inputChanged).appendTo(container);
};
function inputChanged() {
$.ajax({
success: inputChanged_onSuccess
});
}
function inputChanged_onSuccess(data) {
$.each(container.children(), function(j,w) {
$(w).unbind().changed(function() {
//replace the insanity with another refactored function
});
});
}
});
</code></pre>
<p>In JavaScript, functions are first-class objects and can thus be used as variables.</p>
http://stackoverflow.com/questions/251541/why-does-this-generic-method-require-t-to-have-a-public-parameterless-constructo/251561#2515613Answer by David Alpert for Why does this generic method require T to have a public, parameterless constructor?David Alpert2008-10-30T20:04:23Z2008-10-30T20:21:16Z<p>Your revised question passes in dataItem as an object of type T and then tries to use it as a type argument to GetList(). Perhaps you pass dataItem in only as a way to specify T? </p>
<p>If so, the you may want something like so:</p>
<pre><code>public IList<T> GetRecords<T>() {
return Populate.GetList<T>();
}
</code></pre>
<p>Then you call that like so:</p>
<pre><code>IList<int> result = GetRecords<int>();
</code></pre>
http://stackoverflow.com/questions/249692/jquery-wont-parse-my-json-from-ajax-query/250309#2503090Answer by David Alpert for jQuery won't parse my JSON from AJAX queryDavid Alpert2008-10-30T14:17:19Z2008-10-30T14:17:19Z<p>If returning an array works and returning a single object doesn't, you might also try returning your single object as an array containing that single object:</p>
<pre><code>[ { title: "One", key: "1" } ]
</code></pre>
<p>that way you are returning a consistent data structure, an array of objects, no matter the data payload.</p>
<p>i see that you've tried wrapping your single object in "parenthesis", and suggest this with example because of course JavaScript treats [ .. ] differently than ( .. )</p>
http://stackoverflow.com/questions/244631/structuring-large-web-application-for-multiple-developers/244700#2447001Answer by David Alpert for structuring large web application for multiple developersDavid Alpert2008-10-28T20:20:16Z2008-10-28T20:20:16Z<p>Factor out pieces of your target page markup into server-side includes or other composable pieces, each one wrapped in a DIV (or other appropriate tag) with a unique ID, then add separate CSS and JS references for the CSS styles and jQuery bits that style and animate each piece.</p>
<p>While CSS rules do cascade and jQuery queries can collide (as they are CSS-selector-based), careful use of IDs and Classes can go a long way towards creating rough "sandboxes" on your final page in which each front-end developer can work relatively independently.</p>
<p>At the same time (or as the individual pieces begin to stabilize) you can devote some energy towards developing an integration strategy for deployment that includes concatenating your separate CSS and JS files into single resources (wherever possible) and gzipping, minifying, etc.</p>
<p>You'll want to watch out for the order in which you concatenate your CSS files due to the inherent cascade, but if you isolate them well by confining all your style selectors to within a given ID'd tag for each piece, you should be fine.</p>
http://stackoverflow.com/questions/240394/asp-net-mvc-url-auto-resolution-in-css-files/240637#2406372Answer by David Alpert for ASP.NET MVC URL auto-resolution in CSS filesDavid Alpert2008-10-27T17:04:31Z2008-10-27T17:04:31Z<p><a href="http://msdn.microsoft.com/en-us/library/aa719858(VS.71).aspx" rel="nofollow">Here</a> <a href="http://www.15seconds.com/issue/020417.htm" rel="nofollow">are</a> <a href="http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=268" rel="nofollow">some</a> <a href="http://support.microsoft.com/kb/307996" rel="nofollow">resources</a> on implementing IHttpModule to intercept web requests to your app...</p>
<p>Write/adapt one to check for filetype (e.g. pseudocode: if (request ends with ".css") ...)</p>
<p>then use a regular expression to replace all instances of "~/" with System.Web.VirtualPathUtility.ToAbsolute("~/")</p>
<p>I don't know what this will do to performance, running every request through this kind of a filter, but you can probably fiddle with your web.config file and/or your MVC URL routes to funnel all .css requests through this kind of a filter while skipping past it for other files. </p>
<p>Come to think of it, you can probably achieve the same effect inside an ASP.NET MVC app by pointing all your CSS refrences at a special controller.action that performs this kind of preprocessing for you. i doubt that would be as performant as an IHttpModule though.</p>
http://stackoverflow.com/questions/207837/adding-functonality-to-linq-to-sql-objects-to-perform-common-selections/210106#2101060Answer by David Alpert for Adding functonality to Linq-to-SQL objects to perform common selectionsDavid Alpert2008-10-16T20:14:32Z2008-10-16T20:14:32Z<p>Check out my answer to "switch statement in linq" and see if that points you in the right direction... </p>
<p>The technique i demonstrate there is the one that got me past the scary "no translation to SQL" error. </p>
http://stackoverflow.com/questions/209924/switch-statement-in-linq/210051#2100511Answer by David Alpert for switch statement in linqDavid Alpert2008-10-16T19:59:50Z2008-10-16T20:05:38Z<pre><code>static Func<int?, string> MapSqlIntToArbitraryLabel = (i =>
{
// for performance, abstract this reference
// dictionary out to a static property
Dictionary<int, string> labels = new Dictionary<int, string>();
labels.Add(1, "logon");
labels.Add(2, "logoff");
labels.Add(...);
if (i == null) throw new ArgumentNullException();
if (i < 1 || i > labels.Count) throw new ArgumentOutOfRangeException();
return labels.Where(x => x.Key == i.Value)
.Select(x.Value)
.Single();
}
</code></pre>
<p>that return statement can also be expressed as:</p>
<pre><code>return (from kvp in labels
where kvp.Key == i.Value
select kvp.Value).Single();
</code></pre>
<p>Then you can use call that function from your linq query like so:</p>
<pre><code>var query1 = from u in dc.Usage_Computers
where u.DomainUser == s3
select {
Operation = MapSqlIntToArbitraryLabel(u.Operation)
// add other properties to this anonymous type as needed
};
</code></pre>
<p>I've tried every suggested method of fooling Linq2Sql into running my code and this method is the only one that i've found that allows me to run code as part of a deferred-execution projection.</p>
http://stackoverflow.com/questions/209211/best-xslt-editor-debugger/209298#2092983Answer by David Alpert for Best XSLT Editor &| DebuggerDavid Alpert2008-10-16T16:20:15Z2008-10-16T16:20:15Z<p><a href="http://www.liquid-technologies.com/Download.aspx" rel="nofollow">Liquid XML Studio</a> is pretty good at real-time interpretation of your XPATH queries.</p>
<p><a href="http://www.xmlcooktop.com/" rel="nofollow">Cooktop</a> also lets me run my XPATH queries and shows me the XML and HTML generated by running the XSLT against a given XML.</p>
<p>Also, a colleague tells me that newer versions of <a href="http://www.adobe.com/products/dreamweaver/" rel="nofollow">Adobe Dreamweaver</a> allows you to associate an XML file with an XSLT file and run the transformation.</p>
<p>Whenever possible i use <a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a> for change-tracking.</p>
<p>And for navigation, i most often use <a href="http://www.vim.org/" rel="nofollow">VIM</a> (or <a href="http://www.viemu.com/" rel="nofollow">VIEmu</a>) and sometimes a custom Visual Studio extension that builds an index of the current document's xsl:template and xsl:variable nodes to provide one-click navigation to the root entries.</p>
http://stackoverflow.com/questions/192203/whats-the-linq-to-sql-equivalent-to-top/192209#1922095Answer by David Alpert for What's the Linq to SQL equivalent to TOP?David Alpert2008-10-10T16:45:20Z2008-10-10T16:45:20Z<pre><code>from m in MyTable
take 10
select m.Foo
</code></pre>
<p>This assumes that MyTable implements IQueryable. You may have to access that through a DataContext or some other provider.</p>
<p>It also assumes that Foo is a column in MyTable that gets mapped to a property name.</p>
<p>See <a href="http://blogs.msdn.com/vbteam/archive/2008/01/08/converting-sql-to-linq-part-7-union-top-subqueries-bill-horst.aspx" rel="nofollow">http://blogs.msdn.com/vbteam/archive/2008/01/08/converting-sql-to-linq-part-7-union-top-subqueries-bill-horst.aspx</a> for more detail.</p>
http://stackoverflow.com/questions/167079/moving-existing-code-to-test-driven-development/167118#1671188Answer by David Alpert for Moving existing code to Test Driven DevelopmentDavid Alpert2008-10-03T14:24:26Z2008-10-03T14:24:26Z<p><a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively with Legacy Code</a> is my bible when it comes to migrating code without tests into a unit-tested environment, and it also provides a lot of insight into what makes code easy to test and how to test it.</p>
<p>I also found <a href="http://rads.stackoverflow.com/amzn/click/0321146530" rel="nofollow">Test Driven Development by Example</a> and <a href="http://rads.stackoverflow.com/amzn/click/0321146530" rel="nofollow">Pragmatic Unit Testing: in C# with NUnit</a> to be a decent introduction to unit testing in that environment.</p>
<p>One simple approach to starting TDD is to start writing tests first from this day forward and make sure that whenever you need to touch your existing (un-unit-tested) code, you write passing tests that verify existing behavior of the system before you change it so that you can re-run those tests after to increase your confidence that you haven't broken anything.</p>
http://stackoverflow.com/questions/164425/determining-if-enum-value-is-in-list-c/164459#1644590Answer by David Alpert for Determining if enum value is in list (C#)David Alpert2008-10-02T20:35:41Z2008-10-02T20:35:41Z<p>You need to use the [Flags] attribute (<a href="http://weblogs.asp.net/wim/archive/2004/04/07/109095.aspx" rel="nofollow">check here</a>) on your enum; then you can use bitwise and to check for individual matches.</p>
http://stackoverflow.com/questions/148839/asp-net-mvc-with-ajax/148927#1489272Answer by David Alpert for ASP.net MVC with AjaxDavid Alpert2008-09-29T14:32:30Z2008-09-29T14:32:30Z<p>Stephen Walter's post "<a href="http://weblogs.asp.net/stephenwalther/archive/2008/09/22/asp-net-mvc-application-building-forums-6-ajax.aspx" rel="nofollow">ASP.NET MVC Application Building: Forums #6 – Ajax</a>" seems to be focused on Microsoft ASP.NET AJAX.</p>
<p>A quick search on google for "<a href="http://www.google.ca/search?q=asp.net+mvc+jquery&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a" rel="nofollow">ASP.NET MVC jquery</a>" brings up several resources on non-MS javascript.</p>
<p>I lean towards the non-MS AJAX demos & tutorials as they show platform-agnostic patterns and practices.</p>
http://stackoverflow.com/questions/135451/can-i-use-a-listt-as-a-collection-of-method-pointers-c/135476#1354763Answer by David Alpert for Can I use a List<T> as a collection of method pointers? (C#)David Alpert2008-09-25T19:32:31Z2008-09-25T19:32:31Z<p>Using .NET 3.0 (or 3.5?) you have generic delegates.</p>
<p>Try this:</p>
<pre><code>List<Func<int, int, int>> methodsToExecute = new List<Func<int, int, int>>();
methodsToExecute.Add(Subtract);
methodsToExecute.Add[0](1,2); // equivalent to Subtract(1,2)
</code></pre>
http://stackoverflow.com/questions/135361/subversion-and-shared-files-across-repositories-projects/135441#1354410Answer by David Alpert for Subversion and shared files across repositories/projects?David Alpert2008-09-25T19:26:02Z2008-09-25T19:26:02Z<p>In my experience it is problematic to have two independent projects referencing the same source files because i may add or change code in the shared file to meet the needs of one project only to break the other build.</p>
<p>It seems that the trick here is to allow each project to advance independently, so however you set up your repositories you want to stabilize the shared code such that it only changes when you want it to.</p>
<p>For example, if the shared code lives in two branches/folders of the same repository or if it is checked seperately into two distinct repositories, or if it lives in a third repository all by itself, you want the step of upgrading that piece of code to be a manual one that does not have side effects, that you can isolate, debug, and bugfix against.</p>
<p>I have factored this code out into a third repository and then i periodically migrate that code into my dependent project repositories as internal release and upgrade steps; My individual projects then have a revision that looks like "Upgraded to v4.3.345 of Shared.App.dll" which includes all changes needed to work against that version. </p>
<p>If the shared code is part of the same repository as the two dependent projects, then have a separate copy of it in each project and use repository merges to propagate your changes.</p>
http://stackoverflow.com/questions/122239/floated-divs-obeying-not-obeying-vertical-align/122279#1222791Answer by David Alpert for Floated Divs Obeying/Not Obeying Vertical-AlignDavid Alpert2008-09-23T16:56:06Z2008-09-23T16:56:06Z<p>i've found this article to be extremely useful in understanding and troubleshooting vertical-align:</p>
<p><a href="http://phrogz.net/CSS/vertical-align/index.html" rel="nofollow">Understanding vertical-align, or "How (Not) To Vertically Center Content"</a></p>
http://stackoverflow.com/questions/116949/what-is-your-preferred-tool-stack-for-php-development-in-the-windows-environment/117017#1170173Answer by David Alpert for What is your preferred tool stack for PHP development in the Windows Environment?David Alpert2008-09-22T19:36:45Z2008-09-22T19:36:45Z<p><a href="http://www.aptana.com/" rel="nofollow">Aptana</a> does pretty well, and i use a straight Apache install.</p>
http://stackoverflow.com/questions/102911/whats-a-good-functional-language-to-learn-first/103604#1036042Answer by David Alpert for What's a good Functional language to learn first?David Alpert2008-09-19T16:46:16Z2008-09-19T16:46:16Z<p>XSLT is another doorway of insight into functional programming.</p>
<p>While XSLT is arguably not actually a programming language per-se, it certainly provides several of the functional idioms such as variables are immutable after creation, functions/templates cannot have side effects, etc.</p>
http://stackoverflow.com/questions/103174/figuring-out-the-right-language-for-the-job-branching-out-from-c/103586#1035860Answer by David Alpert for Figuring out the right language for the job: branching out from C#David Alpert2008-09-19T16:43:56Z2008-09-19T16:43:56Z<p>As a web developer by trade, you might look into the XSLT/XPath family as for certain types of XML processing they can be very powerful tools.</p>
<p>Granted, in C# 3.x Linq2Xml exposes some similar functionality inline.</p>
<p>XSLT, however, can be a powerful way to separate data from presentation in your apps.</p>
http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers/86329#863290Answer by David Alpert for What is the easiest or fastest way to make CSS render the same in all browsersDavid Alpert2008-09-17T18:50:34Z2008-09-17T18:50:34Z<p>css frameworks certainly help, although they can easily be heavy due to a heap of styles that you won't need or use.</p>
<p>check out
<a href="http://www.positioniseverything.net/articles/cc-plus.html" rel="nofollow">Targeting IE Using Conditional Comments and Just One Stylesheet</a> over at Position is Everything for a great technique to feed IE version-specific styles without using CSS hacks; this allows you to keep style rules together by selector rather than by browser.</p>
http://stackoverflow.com/questions/107464/is-javascript-object-oriented/107489#107489Comment by David Alpert on Is JavaScript object-oriented?David Alpert2009-10-29T21:45:33Z2009-10-29T21:45:33ZI thought that everything in Javascript is an associative array.
http://stackoverflow.com/questions/102911/whats-a-good-functional-language-to-learn-first/103604#103604Comment by David Alpert on What's a good Functional language to learn first?David Alpert2009-09-04T18:43:39Z2009-09-04T18:43:39ZI have found that wrapping my brain around the immutable and side-effect-free parts of XSL has had a huge impact on how I think about structuring code and writing methods.http://stackoverflow.com/questions/488121/extend-xunit-net-to-use-custom-code-when-processing-a-class-and-locating-test-met/936874#936874Comment by David Alpert on Extend xUnit.NET to use custom code when processing a class and locating test methodsDavid Alpert2009-06-08T20:15:12Z2009-06-08T20:15:12ZTo remove some ceremony from the writing of test fixtures; if I follow a convention for coding my test fixtures then I can code that logic into the runner (or into a custom ITestClassCommand and RunWithAttribute, as it happens) and remove all the [Fact] attributes, thus making my tests a bit more readable and faster to code.http://stackoverflow.com/questions/488121/extend-xunit-net-to-use-custom-code-when-processing-a-class-and-locating-test-met/936874#936874Comment by David Alpert on Extend xUnit.NET to use custom code when processing a class and locating test methodsDavid Alpert2009-06-08T19:14:56Z2009-06-08T19:14:56ZThank you for trying to help, but this response does not answer the question that I asked; how do I tell xUnit.NET which methods I want to execute based on some convention without using the [Fact] attribute at all.
http://stackoverflow.com/questions/84422/xslt-performance-call-template-vs-apply-template/85514#85514Comment by David Alpert on XSLT performance: call-template vs apply-templateDavid Alpert2009-04-27T18:39:27Z2009-04-27T18:39:27Zthank you for explaining that <xsl:call-template> operates on the current context nodehttp://stackoverflow.com/questions/227711/how-to-select-unique-nodes-in-xslt/230028#230028Comment by David Alpert on How to select unique nodes in XSLTDavid Alpert2009-04-24T22:37:16Z2009-04-24T22:37:16Zwith a little tweaking of the match and use parameters this worked like a charm inside a for-each element; thanks!
http://stackoverflow.com/questions/227711/how-to-select-unique-nodes-in-xsltComment by David Alpert on How to select unique nodes in XSLTDavid Alpert2009-04-24T22:36:25Z2009-04-24T22:36:25Zthank you for this question, it was exactly what I neededhttp://stackoverflow.com/questions/244631/structuring-large-web-application-for-multiple-developers/244700#244700Comment by David Alpert on structuring large web application for multiple developersDavid Alpert2009-04-03T16:45:53Z2009-04-03T16:45:53Zmy team has done this a lot lately and is doing more of it right now. my response is real-world experience talking.
http://stackoverflow.com/questions/244631/structuring-large-web-application-for-multiple-developers/244648#244648Comment by David Alpert on structuring large web application for multiple developersDavid Alpert2009-04-03T16:44:43Z2009-04-03T16:44:43Zit looks like you didn't quite read the question; aeryn71 appears to be asking how to manage multiple webdevs working on decomposed modules that are destined to appear on a single page. He specifically states a focus on the UI: "There is already another team working on the back end."http://stackoverflow.com/questions/667387/use-reflection-to-find-the-name-of-a-delegate-field/667456#667456Comment by David Alpert on Use reflection to find the name of a delegate fieldDavid Alpert2009-03-20T19:50:15Z2009-03-20T19:50:15ZThat worked for me; somehow I missed BindingFlags.Instance and was trying to get this info from the Type then read the anonymous method value from ; using an instance did the trick. Thanks!http://stackoverflow.com/questions/591269/settimeout-and-this-in-javascriptComment by David Alpert on setTimeout and "this" in JavaScriptDavid Alpert2009-02-26T16:22:53Z2009-02-26T16:22:53Zplease add the definition and scope of method2
http://stackoverflow.com/questions/504261/acceptable-css-hacks-fixes/505181#505181Comment by David Alpert on Acceptable CSS hacks/fixesDavid Alpert2009-02-03T20:03:19Z2009-02-03T20:03:19Zi don't let bugs dictate my layout; i design for standards and use conditional comments to feed IE-version-specific overrides where IE falls down on compliance. e.g. #someElement {someRule} ... #ie6 #someElement {someRule-overridden-for-ie-6}
http://stackoverflow.com/questions/504931/is-there-a-website-that-compiles-css-knowledge/505034#505034Comment by David Alpert on is there a website that compiles css knowledge?David Alpert2009-02-02T21:37:24Z2009-02-02T21:37:24Zit was meant with humor - if this is offensive i'll happily remove it.http://stackoverflow.com/questions/487904/what-advantages-of-extension-methods-have-you-found/487948#487948Comment by David Alpert on What Advantages of Extension Methods have you found?David Alpert2009-01-28T17:46:11Z2009-01-28T17:46:11Zpoint made, though. when i read fileSize.ToFileSize() i ask why the duplication? what's it actually doing? i know that it's only an example, but descriptive names help make it clean and simple. http://stackoverflow.com/questions/487904/what-advantages-of-extension-methods-have-you-found/487948#487948Comment by David Alpert on What Advantages of Extension Methods have you found?David Alpert2009-01-28T15:19:10Z2009-01-28T15:19:10Za more descriptive name for your extension method would make it cleaner still. e.g. fileSize.ToFormattedString();