User Michael Haren - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T00:52:07Zhttp://stackoverflow.com/feeds/user/29http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1908064/how-do-i-represent-workday-shifts-in-a-database1How do I represent workday shifts in a database?Michael Haren2009-12-15T15:05:49Z2009-12-15T18:11:55Z
<p>I have some business data I'm trying to model in a SQL Server database.</p>
<p>I'll try to break it down with approximate counts to aid in discussion:</p>
<ul>
<li>I have 1000 resources. </li>
<li>Each resource has an average of three shifts per day (e.g. A, B, C)</li>
<li>The shifts can be different each day of the week, week of the year, year to year</li>
<li>Shift data are pretty light (Start/End time offset, some text values like A-B-C, ordering, etc.)</li>
</ul>
<p>Some resources are simple with the same shifts every day. Some resources are more complicated, like this:</p>
<ol>
<li>Sun: A, B, C, D (6 hour shifts) </li>
<li>Mon: A, C (12 hour shifts)</li>
<li>Tue: B, D (12 hour shifts)</li>
<li>Wed: A, C (12 hour shifts)</li>
<li>Thu: B, D (12 hour shifts)</li>
<li>Fri: A, C (12 hour shifts)</li>
<li>Sat: B, D (12 hour shifts)</li>
</ol>
<p>Even worse, sometimes they alternate things each week or each month.</p>
<p>The current model in use works and is storage-efficient because we store the rules or patterns and calculate the shifts as needed. Unfortunately, this has two problems:</p>
<ul>
<li>it is difficult to maintain because the rules can be complicated </li>
<li>it is slow because computing shift-related data is very expensive, even to figure out simple things like the current shift, or given a resource/date/time, what shift was active</li>
</ul>
<p>At the other end of the spectrum is a storage heavy approach where we use a spreadsheet to figure out every shift for every day for every resource (perhaps aided by a tool) and save the results to a larger table. This approach is basically denormalizing the data from the first approach. This has the following attributes:</p>
<ul>
<li>It's fast to query because simple operations are easy lookups</li>
<li>It's arguably easy to update because the data you put in matches what you get out and the user no longer has to figure out how to represent business rules in the database model</li>
<li>It'll be a big table (1.3MM rows) which will require some careful indexes to insure it's fast</li>
</ul>
<p><hr></p>
<p>I'm looking for any experiences or references you might have dealing with data like these. I'm not hoping for a full solution; rather I would love some discussion around various techniques in the area between the two extremes I've outlined.</p>
<p><hr></p>
<p>Update: Wiki-ed, by request.</p>
http://stackoverflow.com/questions/1877946/string-to-multidimensional-arrays/1877980#18779801Answer by Michael Haren for String to Multidimensional ArraysMichael Haren2009-12-10T00:51:44Z2009-12-10T00:51:44Z<p>If you have control over the serialized string, I strongly suggest you look into <a href="http://json.org/fatfree.html" rel="nofollow">JSON</a>. It's an awesome format for things like this. It's lightweight, easy to read, and portable. </p>
<p>For example, from the <a href="http://json.org/fatfree.html" rel="nofollow">link</a> (note: the whitespace is not significant--this could all be on one line):</p>
<pre><code>[
[0, -1, 0],
[1, 0, 0],
[0, 0, 1]
]
</code></pre>
<p>JSON provides a clean and safe mechanism for encoding strings in there, too. Click through for a lot of examples.</p>
http://stackoverflow.com/questions/1601050/how-should-this-content-be-rendered-when-h-scrolling-is-introduced1How *should* this content be rendered when h-scrolling is introduced?Michael Haren2009-10-21T14:06:54Z2009-12-04T16:21:41Z
<p>Given markup <a href="http://jsbin.com/asaza" rel="nofollow">like this</a>:</p>
<pre><code><body>
<div style='text-align:center'>header</div>
<table>
<tr><td>
really_wide_table................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
</td></tr>
</table>
</body>
</code></pre>
<p>How should it be rendered if the table is so wide that horizontal scrollbars are introduced?</p>
<p>Should the header div be centered in the left-most visible screen, or centered above the table? Or something else?</p>
<p>Note: I know what <a href="http://jsbin.com/asaza" rel="nofollow"><em>does</em></a> happen, what I'm looking for is an official reference that defines what <em>should</em> happen (I ran into <a href="http://stackoverflow.com/questions/1595995/how-do-i-keep-divs-from-resizing-in-ie6">an issue</a>).</p>
http://stackoverflow.com/questions/1844452/computed-column-based-on-another-computed-column/1844463#18444633Answer by Michael Haren for Computed column based on another computed column?Michael Haren2009-12-04T02:11:48Z2009-12-04T02:11:48Z<p>Computed columns cannot reference other computed columns. Though you ought to be able to just repeat the expression you would like to reference. <a href="http://msdn.microsoft.com/en-us/library/ms191250.aspx" rel="nofollow">From MSDN</a>:</p>
<blockquote>
<p>A computed column is computed from an expression that can use other columns in the same table. The expression can be a <strong>noncomputed</strong> column name, constant, function, and any combination of these connected by one or more operators. The expression cannot be a subquery. </p>
</blockquote>
http://stackoverflow.com/questions/44376/add-alternating-row-color-to-sql-server-reporting-services-report10Add alternating row color to SQL Server Reporting services reportMichael Haren2008-09-04T18:18:32Z2009-12-03T04:00:01Z
<p>How do you shade alternating rows in a SQL Server Reporting Services report?</p>
<p><hr /></p>
<p><strong>Edit:</strong> There are a bunch of good answers listed below--from <a href="http://stackoverflow.com/questions/44376/add-alternating-row-color-to-sql-server-reporting-services-report#44378">quick</a> and <a href="http://stackoverflow.com/questions/44376/add-alternating-row-color-to-sql-server-reporting-services-report#345935">simple</a> to <a href="http://stackoverflow.com/questions/44376/add-alternating-row-color-to-sql-server-reporting-services-report#83832">complex and comprehensive</a>. Alas, I can choose only one...</p>
http://stackoverflow.com/questions/44376/add-alternating-row-color-to-sql-server-reporting-services-report/44378#4437813Answer by Michael Haren for Add alternating row color to SQL Server Reporting services reportMichael Haren2008-09-04T18:19:32Z2009-12-03T04:00:01Z<p>Go to the table row's BackgroundColor property and choose "Expression..."</p>
<p>Use this expression: </p>
<pre><code>= IIf(RowNumber(Nothing) Mod 2 = 0, "Silver", "Transparent")
</code></pre>
<p>This trick can be applied to many areas of the report.</p>
<p>And in .NET 3.5+ You could use:</p>
<pre><code>= If(RowNumber(Nothing) Mod 2 = 0, "Silver", "Transparent")
</code></pre>
<p>Not looking for rep--I just researched this question myself and thought I'd share.</p>
http://stackoverflow.com/questions/1837475/sql-insert-trigger-to-update-inserted-table-values/1837486#18374862Answer by Michael Haren for SQL Insert trigger to update INSERTED table valuesMichael Haren2009-12-03T03:40:02Z2009-12-03T03:40:02Z<p>You need to update the destination table, not the logical table. You join with the logical table, though, to figure out which rows to update:</p>
<pre><code>UPDATE YourTable
SET TheColumnToBeUpdated =
(
SELECT TheValueCol FROM AnotherTable.ValueCol
WHERE AnotherTable.ValudCol1 = INSERTED.ValueCol1
)
FROM YourTable Y
JOIN Inserted I ON Y.Key = I.Key
WHERE I.ValueCol IS NULL
</code></pre>
http://stackoverflow.com/questions/18082/validate-numbers-in-javascript-isnumeric14Validate numbers in Javascript - IsNumeric()Michael Haren2008-08-20T14:21:13Z2009-12-02T05:36:22Z
<p>What's the cleanest, most effective way to validate decimal numbers in javascript?</p>
<p>Bonus points for:</p>
<ol>
<li>Clarity--solution should be clean and simple</li>
<li>Cross-platform</li>
</ol>
<p>Test cases:</p>
<pre><code> 1. IsNumeric('-1') => true
2. IsNumeric('-1.5') => true
3. IsNumeric('0') => true
4. IsNumeric('0.42') => true
5. Isnumeric('.42') => true
6. IsNUmeric('99,999') => *false*
7. IsNumeric('0x89f') => *false*
8. IsNumeric('#abcdef')=> *false*
9. IsNumeric('1.2.3') => *false*
10. IsNumeric('') => *false*
11. IsNumeric('blah') => *false*
</code></pre>
http://stackoverflow.com/questions/57530/any-tool-to-migrate-repo-from-vault-to-subversion6Any tool to migrate repo from Vault to Subversion?Michael Haren2008-09-11T20:26:49Z2009-11-30T18:45:14Z
<p>Are there any <strong>tools</strong> to facilitate a migration from <a href="http://www.sourcegear.com/vault/index.html" rel="nofollow">Sourcegear's Vault</a> to <a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a>?</p>
<p>I'd really prefer an existing tool or project (I'll buy!).</p>
<p><strong>Requirements:</strong></p>
<ol>
<li>One-time migration only</li>
<li>Full history with comments</li>
</ol>
<p><strong>Optional:</strong></p>
<ol>
<li>Some support for labels/branches/tags</li>
<li>Relatively speedy. It can take hours but not days.</li>
<li>Cost if available</li>
</ol>
<p>Bonus points if you can share personal experience related to this process.</p>
<p><hr /></p>
<p>One of the reasons I'd like to do this is because we have lots of projects spread between Vault and Subversion (we're finally away from sourcesafe). It'd be helpful in some situations to be able to consolidate a particular customer's repos to SVN.</p>
<p>Additionally, SVN is better supported among third party tools. For example, <a href="http://hudson.dev.java.net/" rel="nofollow">Hudson</a> and <a href="http://www.redmine.org/" rel="nofollow">Redmine</a>.</p>
<p>Again, though: we're not abandoning vault altogether.</p>
http://stackoverflow.com/questions/1806816/java-finding-the-highest-value-in-an-array/1806824#18068241Answer by Michael Haren for Java: Finding the highest value in an arrayMichael Haren2009-11-27T04:57:23Z2009-11-27T04:57:23Z<p>You need to print out the max <em>after</em> you've scanned all of them:</p>
<pre><code>for (int counter = 1; counter < decMax.length; counter++)
{
if (decMax[counter] > max)
{
max = decMax[counter];
// not here: System.out.println("The highest maximum for the December is: " + max);
}
}
System.out.println("The highest maximum for the December is: " + max);
</code></pre>
http://stackoverflow.com/questions/1806774/datetime-how-to/1806808#18068083Answer by Michael Haren for DateTime How ToMichael Haren2009-11-27T04:51:50Z2009-11-27T04:51:50Z<p>If you want a date object, with class-controlled formatting, you need two properties:</p>
<pre><code>public DateTime DateField { get; set; }
// a read only string
public String DateFieldString {
get { return DateField.ToString(/* your format */); }
}
</code></pre>
http://stackoverflow.com/questions/1790975/format-decimal-for-percentage-values/1790987#17909875Answer by Michael Haren for Format decimal for percentage values?Michael Haren2009-11-24T15:56:01Z2009-11-24T15:56:01Z<p>Use the <a href="http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx" rel="nofollow"><code>P</code> format string</a>. This will vary by culture:</p>
<pre><code>String.Format("Value: {0:P2}.", 0.8526) // formats as 85.26 % (varies by culture)
</code></pre>
http://stackoverflow.com/questions/1414117/any-experience-with-a-continuous-integration-appliance4Any experience with a Continuous Integration Appliance?Michael Haren2009-09-12T02:50:02Z2009-11-22T17:27:07Z
<p>We have a continuous integration server running <a href="https://hudson.dev.java.net/" rel="nofollow">Hudson CI</a>. I'm thinking about putting up an LCD display in the office with various build stats and am curious what others have put together. </p>
<p>I'm currently thinking about buying a WIFI-enabled digital picture frame that I can send generated images to. Or repurposing an old laptop...</p>
<p>Thoughts? Experiences? </p>
http://stackoverflow.com/questions/1739175/whats-the-difference-between-a-parser-and-a-scanner/1739201#17392010Answer by Michael Haren for What's the difference between a parser and a scanner?Michael Haren2009-11-15T23:04:53Z2009-11-15T23:04:53Z<p>A scanner turns some input into tokens (breaks it up by some delimeter). Then a parser figures out what the tokens mean. </p>
<p>e.g., your scanner might turn this:</p>
<pre><code>body { color: #000; }
</code></pre>
<p>into</p>
<ol>
<li><code>body</code></li>
<li><code>{</code></li>
<li><code>color</code></li>
<li><code>:</code></li>
<li><code>#ooo</code></li>
<li><code>;</code></li>
<li><code>}</code></li>
</ol>
<p>Your parser would then try to make sense of that (usually the hard part :)).</p>
http://stackoverflow.com/questions/1595995/how-do-i-keep-divs-from-resizing-in-ie60How do I keep divs from resizing in IE6?Michael Haren2009-10-20T17:01:03Z2009-11-13T20:47:06Z
<p>Here's my markup (<strong><a href="http://jsbin.com/iqova" rel="nofollow">live repro</a></strong>):</p>
<pre><code><body>
<div style="text-align:center">header <input class='datepicker'/></div>
<table><tr><td>really wide table.....................</td></tr></table>
</body>
</code></pre>
<p>When the datepicker is activated, the header div's width changes from the width of the screen to the width of the table (larger). This causes the header's centered contents to shift to its new center...which is very annoying. </p>
<p>This occurs in IE6 but not in FF3.5, IE8, or IE8-compat-mode.</p>
<p>What's the best way to fix the width of the header div to the width of the window (not the content)?</p>
<p>Note: there is probably a much simpler example than the datepicker--probably something that doesn't involve jQuery--that's just the trigger that hit me so I'm posting it that way. Here's <a href="http://jsbin.com/oyohu3" rel="nofollow">an example</a> that adds a dom element without triggering this problem.</p>
http://stackoverflow.com/questions/1731615/selecting-a-random-button-and-modifying-its-text-vb-net/1731626#17316264Answer by Michael Haren for Selecting a random button and modifying its text (VB.NET)Michael Haren2009-11-13T20:17:22Z2009-11-13T20:21:41Z<p>You should create an array of actual buttons (not their names). Then when you grab a random button into a button object, it'll actually be a button so you can change it's text property.</p>
<p>Since you're just passing around references to the actual buttons, this should work pretty well.</p>
<pre><code>Dim buttons(8) As Button
buttons(0) = tl
buttons(1) = tc
''# ...
</code></pre>
http://stackoverflow.com/questions/1719815/prevent-directory-browsing-and-file-retrieval-without-querystring-token/1719885#17198852Answer by Michael Haren for Prevent Directory browsing and file retrieval without querystring tokenMichael Haren2009-11-12T04:30:42Z2009-11-12T04:30:42Z<p>You could check for the query token and redirect to the file if it matches:</p>
<pre><code><?php
if(isset($_GET['token']) && $_GET['token'] == 42){
header('Location: http://example.com/file.blah');
}
else{
die('sorry!');
}
?>
</code></pre>
<p>Please note that this is really week security by obscurity. It won't take much for a user to notice the redirect and hit the file directly. </p>
<p>A better solution would require that you stream the file...as @Ciaran describes (thanks for posting it better and more clearly than I was just about to!). </p>
<p>As @Ciran notes, this isn't very secure, either. If the file isn't very sensitive, it might be "good enough" to just have it expire after some period of time.</p>
http://stackoverflow.com/questions/1719294/how-to-create-an-email-mailing-list/1719811#17198110Answer by Michael Haren for How to create an email mailing listMichael Haren2009-11-12T04:05:18Z2009-11-12T04:05:18Z<p>Google Docs (Spreadsheets) offers a very easy to use <a href="http://docs.google.com/support/bin/answer.py?hl=en&answer=87809" rel="nofollow">form builder</a>. You create your form and embed it on your site. Then when users fill out the form, the data show up in a Google Doc. It's very slick.</p>
<p>You'll need something else to actually send the emails when you're ready.</p>
http://stackoverflow.com/questions/1719370/do-kronos-time-attendance-clocks-have-an-accessible-api0Do Kronos time/attendance clocks have an accessible API?Michael Haren2009-11-12T01:49:54Z2009-11-12T01:49:54Z
<p>I'd like to extract a few pieces of system information from a Kronos clock programatically. I can scrape the web-based interface but there's got to be a cleaner interface. </p>
<p>Does anyone have experience querying a Kronos 4500 clock for status info?</p>
http://stackoverflow.com/questions/1719211/jquery-to-hide-all-classes-that-start-with-row-except-row2-only-when-the-pare/1719221#17192212Answer by Michael Haren for jQuery to hide all classes that start with 'row' except ‘row2’ only when the parent class is viewContainerTopMichael Haren2009-11-12T01:09:13Z2009-11-12T01:14:15Z<p>If I understand you correctly, try this:</p>
<pre><code>$('#viewContainerTop > [class^=row]').not('.row2').hide();
</code></pre>
<p>The <code>></code> is optional--it excludes matching of any deeper objects that start with <code>row</code>.</p>
<p>Here's a <a href="http://jsbin.com/ohoto" rel="nofollow">live example</a> that shows this, too (hit refresh to see the selector dim the desired elements).</p>
http://stackoverflow.com/questions/1710027/can-should-i-put-3rd-party-libraries-in-version-control/1710046#171004612Answer by Michael Haren for Can (Should) I put 3rd party libraries in version control?Michael Haren2009-11-10T18:15:48Z2009-11-10T18:15:48Z<p>Yes you should (when feasible). </p>
<p>You should be able to take a fresh machine and build your project with as few steps as possible. For me, it's:</p>
<ol>
<li>Install IDE (e.g. Visual Studio)</li>
<li>Install VCS (e.g. SVN)</li>
<li>Checkout</li>
<li>Build</li>
</ol>
<p>Anything more has to have very good justification.</p>
<p>Here's an example: I have a project that uses Yahoo's YUI compressor to minify JS and CSS. The YUI .jar files go in source control into a <code>tools</code> directory alongside the project. The Java runtime however, does not--that has become a prereq for the project much like the IDE. Considering how popular JRE is, it seems like a reasonable requirement.</p>
http://stackoverflow.com/questions/1705102/c-passing-nullable-variable-to-method-that-only-accepts-nonnull-vars/1705108#17051086Answer by Michael Haren for C#: passing nullable variable to method that only accepts nonnull varsMichael Haren2009-11-10T01:27:45Z2009-11-10T01:38:31Z<p>You can cast the <code>int?</code> to an <code>int</code> or use <code>a.Value</code>:</p>
<pre><code>if (a.HasValue)
{
blah = DoSomething((int)a);
// or without a cast as others noted:
blah = DoSomething(a.Value);
}
</code></pre>
<p>If this is followed by an else that passes in a default value, you can handle that all in one line, too:</p>
<pre><code>// using coalesce
blah = DoSomething(a?? 0 /* default value */);
// or using ternary
blah = DoSomething(a.HasValue? a.Value : 0 /* default value */);
// or (thanks @Guffa)
blah = DoSomething(a.GetValueOrDefault(/* optional default val */));
</code></pre>
http://stackoverflow.com/questions/602656/how-does-sharepointrtwebparts-handle-timezones2How does Sharepoint+RtWebParts handle timezones?Michael Haren2009-03-02T15:03:45Z2009-11-08T13:16:56Z
<p>I want to add some OSIsoft RtWebParts to a Sharepoint page. I want these trends to be shown in different timezones for different users. What I'm finding is that they are always shown in EDT. </p>
<p>Ideally, I want a solution for configuring the presented timezone by page or by user.</p>
http://stackoverflow.com/questions/1664445/command-line-grep-for-a-string-with-in-it/1664456#16644562Answer by Michael Haren for command-line grep for a string with '$' in it?Michael Haren2009-11-02T23:53:44Z2009-11-03T00:05:55Z<p>Put it in single quotes, with the escaping slash:</p>
<pre><code>grep -lire '\$DATA_PATH . \$AWARDS_YEAR' *
</code></pre>
<p>Also note, that the dot (.) is a regex character. If you don't want it to be, escape it, too (or don't use the -e option).</p>
<p>Here's a <a href="http://www.selectorweb.com/grep%5Ftutorial.html" rel="nofollow">nice reference</a> with more general info.</p>
http://stackoverflow.com/questions/1664282/javascript-refer-to-a-variable-using-a-string-containing-its-name/1664298#16642981Answer by Michael Haren for Javascript, refer to a variable using a string containing it's name?Michael Haren2009-11-02T23:02:49Z2009-11-02T23:02:49Z<p><code>eval</code> will do that:</p>
<pre><code>var myText = 'hello world!!';
var someString = eval('myText');
document.getElementById('hello').innerHTML = someString;
</code></pre>
<p>As <a href="http://jsbin.com/oyoqa" rel="nofollow">demonstrated here</a>.</p>
http://stackoverflow.com/questions/1664266/replace-default-null-values-returned-from-left-outer-join/1664268#16642685Answer by Michael Haren for Replace Default Null Values Returned From Left Outer JoinMichael Haren2009-11-02T22:56:58Z2009-11-02T22:56:58Z<p>That's as easy as </p>
<pre><code>IsNull(FieldName, 0)
</code></pre>
<p>Or more completely:</p>
<pre><code>SELECT iar.Description,
ISNULL(iai.Quantity,0) as Quantity,
ISNULL(iai.Quantity * rpl.RegularPrice,0) as 'Retail',
iar.Compliance
FROM InventoryAdjustmentReason iar
LEFT OUTER JOIN InventoryAdjustmentItem iai on (iar.Id = iai.InventoryAdjustmentReasonId)
LEFT OUTER JOIN Item i on (i.Id = iai.ItemId)
LEFT OUTER JOIN ReportPriceLookup rpl on (rpl.SkuNumber = i.SkuNo)
WHERE iar.StoreUse = 'yes'
</code></pre>
http://stackoverflow.com/questions/1662695/delete-help-for-my-script/1662701#16627010Answer by Michael Haren for Delete help for my scriptMichael Haren2009-11-02T17:52:04Z2009-11-02T17:52:04Z<p>If ID is numeric, you shouldn't wrap it in quotes:</p>
<pre><code>$query = "UPDATE ProfileComments SET status = 'dead' WHERE id = {$prof->id}";
</code></pre>
<p><strong>BUT</strong>: you absolutely should use <a href="http://us2.php.net/manual/en/security.database.sql-injection.php" rel="nofollow">parameterized or escaped queries</a>. Please think of the children and use safer queries!</p>
http://stackoverflow.com/questions/1654565/simulating-latency-when-developing-on-a-local-webserver/1659340#16593404Answer by Michael Haren for Simulating latency when developing on a local webserverMichael Haren2009-11-02T03:47:26Z2009-11-02T03:47:26Z<p><a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler2</a> can <a href="http://mrentropy.blogspot.com/2008/12/using-fiddler-to-simulate-dsl-speeds.html" rel="nofollow">do this</a> very easily. Plus, it does so much more that is useful when doing development.</p>
http://stackoverflow.com/questions/1659298/small-stop-sign-at-the-right-bottom-of-the-file-solution-explorer-vs2005/1659303#16593030Answer by Michael Haren for small stop sign at the right bottom of the file (solution explorer VS2005)Michael Haren2009-11-02T03:29:07Z2009-11-02T03:29:07Z<p>This question screams for a screenshot. Are you seeing <a href="http://msdn.microsoft.com/en-us/library/ms181372%28VS.80%29.aspx" rel="nofollow">one of these</a>? </p>
http://stackoverflow.com/questions/1659242/what-is-this-iphone-ui-technique-called/1659247#16592471Answer by Michael Haren for what is this iPhone UI technique called?Michael Haren2009-11-02T03:02:05Z2009-11-02T03:02:05Z<p>I would call that <code>hover</code>...but I don't know if there's a standard or built in way to do it (sorry). Or for an OS9 throw back you could call it <code>click and hold</code>.</p>
http://stackoverflow.com/questions/1878143/is-there-any-best-way-to-implement-version-control-for-database-content/1878300#1878300Comment by Michael Haren on Is there any best way to implement version control for database content?Michael Haren2009-12-10T03:06:34Z2009-12-10T03:06:34ZThis is a common and valid approach. I suggest that if you are anticipating a lot of data that you go with something else, though. I've found that SQL Server can run into performance problems with this model. This may be different with filtered indexes in SQL Server 2008, though...http://stackoverflow.com/questions/1876070/how-to-specify-to-only-apply-jquery-effect-parameters-based-on-div/1876097#1876097Comment by Michael Haren on how to specify to only apply jquery effect parameters based on div?Michael Haren2009-12-09T19:12:52Z2009-12-09T19:12:52ZIf you use this approach (which I like), I suggest using a <code>data-</code> prefix on your custom attributes. That makes it future compatible with HTML5 <a href="http://ejohn.org/blog/html-5-data-attributes/" rel="nofollow">ejohn.org/blog/html-5-data-attributes</a>http://stackoverflow.com/questions/1844452/computed-column-based-on-another-computed-column/1844462#1844462Comment by Michael Haren on Computed column based on another computed column?Michael Haren2009-12-04T02:12:34Z2009-12-04T02:12:34ZI think @OP is trying to define an additional column in the table with that definitionhttp://stackoverflow.com/questions/1840979/given-disk-is-slow-and-multiple-cores-does-on-the-fly-decompression-make-sense-foComment by Michael Haren on Given disk is slow and multiple cores does on the fly decompression make sense for performance?Michael Haren2009-12-03T18:39:02Z2009-12-03T18:39:02ZThis is an interesting idea--references to benchmarks would be greathttp://stackoverflow.com/questions/1841902/enable-c-parallel-class/1841930#1841930Comment by Michael Haren on enable c# parallel classMichael Haren2009-12-03T18:35:52Z2009-12-03T18:35:52Z+1--more complete (and correct) than my answer washttp://stackoverflow.com/questions/1841902/enable-c-parallel-class/1841913#1841913Comment by Michael Haren on enable c# parallel classMichael Haren2009-12-03T18:35:21Z2009-12-03T18:35:21Z@Reed, Nice catch--+1 to youhttp://stackoverflow.com/questions/1837296/datetime-binding-default-error-message-using-linq-to-sqlComment by Michael Haren on DateTime binding default error message using Linq to SQLMichael Haren2009-12-03T03:07:30Z2009-12-03T03:07:30ZPlease post your codehttp://stackoverflow.com/questions/1837296/datetime-binding-default-error-message-using-linq-to-sqlComment by Michael Haren on DateTime binding default error message using Linq to SQLMichael Haren2009-12-03T02:39:19Z2009-12-03T02:39:19ZWhat's the custom validation layer? http://stackoverflow.com/questions/1806774/datetime-how-to/1806805#1806805Comment by Michael Haren on DateTime How ToMichael Haren2009-11-28T02:20:30Z2009-11-28T02:20:30Z+1 -- this is the proper way to handle your requirementshttp://stackoverflow.com/questions/1797777/should-i-support-unicode-in-passwordsComment by Michael Haren on Should I support Unicode in passwords?Michael Haren2009-11-26T03:37:28Z2009-11-26T03:37:28ZWhat's your source for google/ms password requirements?http://stackoverflow.com/questions/1801391/what-is-the-best-algorithm-for-checking-if-a-number-is-primeComment by Michael Haren on What is the best algorithm for checking if a number is prime?Michael Haren2009-11-26T03:35:38Z2009-11-26T03:35:38ZYour request is a little vague. You give a signature that tests a single number but then ask for a data structure of (1,N]. Do you want an algorithm that generates a dictionary<int,bool> or just a one-shot function that checks if a single number is prime?http://stackoverflow.com/questions/1794349/applicationstart-event-in-global-asax/1794356#1794356Comment by Michael Haren on Application_Start() event in global.asax Michael Haren2009-11-25T02:59:04Z2009-11-25T02:59:04ZMaybe OP is thinking of _BeginRequest?http://stackoverflow.com/questions/1783534/not-enough-storage-space-available-to-process-this-commandComment by Michael Haren on not enough storage space available to process this command Michael Haren2009-11-23T14:42:44Z2009-11-23T14:42:44ZHow much disk space do you have free (Look in My Computer) http://stackoverflow.com/questions/1760575/jquery-javascript-show-hide-id-if-current-url-contains-foo/1760578#1760578Comment by Michael Haren on jQuery / Javascript - Show / hide ID if current url contains /foo/Michael Haren2009-11-19T02:50:18Z2009-11-19T02:50:18Zmissing the <code>]</code>?http://stackoverflow.com/questions/1760575/jquery-javascript-show-hide-id-if-current-url-contains-fooComment by Michael Haren on jQuery / Javascript - Show / hide ID if current url contains /foo/Michael Haren2009-11-19T02:46:40Z2009-11-19T02:46:40Zhide...what? A div? The entire page? Do you want notified so you can hide yourself in a closet...?