User Shawn Simon - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T21:55:53Z http://stackoverflow.com/feeds/user/26 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1925276/jquery-classname-woes/1925289#1925289 5 Answer by Shawn Simon for jQuery className woes. Shawn Simon 2009-12-17T23:20:58Z 2009-12-17T23:20:58Z <p>You can call the attr method to get any underlying attributes on the element you need.</p> <pre><code>$('.toggle:checked').attr('class').match(/toggle\-.+?\b/); </code></pre> http://stackoverflow.com/questions/1910134/create-a-randomly-ordered-playlist-from-a-table-of-songs-and-return-the-name-of-t 4 Create a randomly ordered playlist from a table of songs and return the name of the current, next, and previous song? Shawn Simon 2009-12-15T20:22:51Z 2009-12-16T06:00:23Z <p>Consider the following table:</p> <pre><code>Song ---- SongID GUID Primary Key Name Varchar dateAdded DateTime </code></pre> <p>I am creating a website that plays songs from the Song table. I want to generate a randomly ordered playlist for each visitor of the site that persists across requests without using any server-side storage (no session-style or database storage.) The player has Play, Next Song, and Previous Song buttons. What is the most efficient way to persist this data across requests? What is the most efficient query for this information? I have a solution (in mySql) that works, but I am looking to see if something more efficient works. Also, I don't want to bias the answers into using my solution. Please include a query in your answer.</p> http://stackoverflow.com/questions/1828433/architecture-question-regarding-exporting-to-ms-project 1 Architecture question regarding exporting to MS Project Shawn Simon 2009-12-01T19:49:03Z 2009-12-13T18:36:34Z <p>I have a small asp.net web application that allows you to create Projects and Tasks and apply estimates, work, etc to them. I am writing an export feature to allow you to download them as an MS Project file. It's really just an XML file.</p> <p>I will be writing an import feature afterwards, which allows you to reschedule Task start and stop dates, the assigned resources, etc, but not modify estimates or applied hours. That will be handled solely by the web application.</p> <p>I am trying to figure out the best architecture to do this. Here are a couple ideas I'm toying with.</p> <ol> <li>Add an ExportToProject function on my Project class, and create the XML on the fly.</li> <li>Take the existing class structure and add XML serializer attributes, and serialize the object right into a Project file. However, this leaves me with a few questions. What happens to all of the other Properties I'm not using. How reusble would the serialized object even be if it doesn't include all of the data, and is formatted for MS Project. Can I have multiple serialize views, so to speak?</li> <li>Create a new XmlExport class that gets serialized instead, which would be similar to the above strategy, but with an additional layer of abstraction.</li> <li>Pirate a copy of FogBugz, install it, and move to Costa Rica.</li> </ol> <p>Thanks, any help is appreciated.</p> http://stackoverflow.com/questions/1884650/how-do-i-escape-the-character-in-a-vb-net-string-literal/1884658#1884658 5 Answer by Shawn Simon for How do I escape the # character in a VB.NET string literal? Shawn Simon 2009-12-10T22:51:28Z 2009-12-10T22:51:28Z <p><code>#</code> is not a reserved character in a VB.NET string literal.</p> <pre><code>Dim test = "#" ' no error </code></pre> http://stackoverflow.com/questions/1821969/which-version-of-flex-builder-do-i-need 0 Which version of Flex Builder do I need? Shawn Simon 2009-11-30T19:45:04Z 2009-12-10T01:37:59Z <p>I have a Flex project that I need to work on that using some mxml elements which I believe are charting related: Pie Chart, and some LineGraphs. Do I need to buy Flex Builder Professional to compile the project, or will Standard work? On a related side-note, the Adobe website is brutal.</p> <p>I was going to use Eclipse with the SDK but the increased setup time and lack of code completion makes it not a contender in my situation.</p> http://stackoverflow.com/questions/1877118/is-unit-testing-always-automated 0 Is unit testing always automated? Shawn Simon 2009-12-09T21:43:42Z 2009-12-09T21:49:01Z <p>Can anyone provide an source that says that unit testing is not always done in an automated or programmatic way? I always assumed it meant testing code through code. I have a bet on this, so I need solid sources.</p> http://stackoverflow.com/questions/1871736/chow-to-customize-datetime-format-or-to-convert-datetime-to-string-with-require/1871775#1871775 -1 Answer by Shawn Simon for C#:How to customize datetime format or to convert DateTime to String with required format.. Shawn Simon 2009-12-09T05:29:34Z 2009-12-09T05:34:37Z <p>It's something like this: <code>XmlConvert.ToDateTime(yourDate, "yyyy-MM-dd\Thh:mm:ss").ToString("MM/dd/yyyy HH:MM:SS")</code></p> <p>Check here for more info: </p> <p><a href="http://msdn.microsoft.com/en-us/library/kzk5c6y9.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/kzk5c6y9.aspx</a></p> http://stackoverflow.com/questions/1870755/how-one-can-be-a-good-about-web-services/1870764#1870764 1 Answer by Shawn Simon for how one can be a good about web services... Shawn Simon 2009-12-09T00:04:02Z 2009-12-09T00:04:02Z <p><code> one who can be good at web services one must advance the basic things to be a master in web services...</code></p> http://stackoverflow.com/questions/1857158/adding-floats-with-javascript/1857168#1857168 1 Answer by Shawn Simon for Adding floats with javascript Shawn Simon 2009-12-07T00:39:52Z 2009-12-07T00:39:52Z <p>Looks like it's doing a string add. Try setting var totals = 0; </p> http://stackoverflow.com/questions/1853716/how-to-develop-c-net-desktop-base-software/1853785#1853785 0 Answer by Shawn Simon for how to develop c#.net desktop base software? Shawn Simon 2009-12-05T23:03:48Z 2009-12-05T23:03:48Z <p>I would use an encrypted SQLite file.</p> http://stackoverflow.com/questions/1844262/how-to-copy-the-value-of-a-reference-in-javascript/1844274#1844274 1 Answer by Shawn Simon for How to copy the value of a reference in javascript? Shawn Simon 2009-12-04T01:19:04Z 2009-12-04T01:19:04Z <pre><code>&lt;a href="#"&gt;text&lt;/a&gt;&lt;br&gt;&lt;a href="#"&gt;link&lt;/a&gt; &lt;script&gt; var as = document.getElementsByTagName('a'); for ( var i = as.length; i--; ) { as[i].onclick = function() { return function() { alert(i); return false; } }(); } &lt;/script&gt; </code></pre> <p>maybe?</p> http://stackoverflow.com/questions/1833560/why-cant-nullables-be-declared-const 6 Why can't nullables be declared const? Shawn Simon 2009-12-02T15:18:32Z 2009-12-02T19:47:24Z <pre><code>[TestClass] public class MsProjectIntegration { const int? projectID = null; // The type 'int?' cannot be declared const </code></pre> <p>Why can't I have a <code>const int?</code>?</p> <p><em>Edit:</em> The reason I wanted a nullable int as a const is because I'm just using it for loading some sample data from a database. If it's null I was just going to initialize sample data at runtime. It's a really quick test project and obviously I could use 0 or -1 but <code>int?</code> just felt like the write data structure for what I wanted to do. readonly seems like the way to go : )</p> http://stackoverflow.com/questions/1829226/get-access-to-an-incrementing-integer-during-linq-select 1 Get access to an incrementing integer during LINQ Select Shawn Simon 2009-12-01T21:57:42Z 2009-12-01T22:03:13Z <pre><code>Dim project = new Project(1) Dim tasks = Task.GetTasks() Return &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;Project xmlns="http://schemas.microsoft.com/project"&gt; &lt;Name&gt;&lt;%= project.name %&gt;&lt;/Name&gt; &lt;Tasks&gt; &lt;%= tasks.Select(Function(t) _ &lt;Task&gt; &lt;ID&gt;&lt;%= tasks.IndexOf(t) + 1 %&gt;&lt;/ID&gt; &lt;/Task&gt; _ ) %&gt; &lt;/Tasks&gt; &lt;/Project&gt; </code></pre> <p>I am trying to replace <code> tasks.IndexOf(t) + 1</code> with something a little simpler. Is there any built in functionality for this?</p> <p>Hrmm xml literals do not seem to translate well on here....</p> http://stackoverflow.com/questions/528345/shared-iis7-hosting 3 Shared IIS7 hosting? Shawn Simon 2009-02-09T14:32:13Z 2009-11-29T20:56:19Z <p>I am looking to host a MVC app with IIS7 style routing, and can't find any affordable hosting. CrystalTech uses IIS6 for their shared plans...</p> http://stackoverflow.com/questions/1800661/example-code-c-for-login-into-flickr-using-httpwebrequest/1800710#1800710 1 Answer by Shawn Simon for Example Code (C#) for login into flickr using HttpWebRequest Shawn Simon 2009-11-25T23:39:26Z 2009-11-25T23:39:26Z <p>Make sure you set <code>http.AllowAutoRedirect = false;</code> That was the source of 2 hours of head banging for me. Sometimes the post request returns a redirect to the home page once you've been logged in. .NET auto follows the redirect, but doesn't submit the newly acquired cookies. >.&lt;</p> http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800456#1800456 0 Answer by Shawn Simon for Does this code prevent SQL injection? Shawn Simon 2009-11-25T22:45:18Z 2009-11-25T22:45:18Z <p>I think it is unhackable if you just replace ' with ''. I have heard that it is possible to change the escape quote character, which could potentially break this, however I am not sure. I think you are safe though.</p> http://stackoverflow.com/questions/782375/which-is-more-popular-currently-by-recent-install-base-svn-or-cvs 8 Which is more popular (currently, by recent install base) SVN or CVS? Shawn Simon 2009-04-23T15:54:20Z 2009-11-25T21:38:20Z <p>We are considering switching our source control repository at my work from Perforce to either CVS or SVN. I said that I didn't think CVS was as popular as SVN recently, and was met with a lot of blank stares. My boss told me that I must be still stuck inside the Windows-programming world if I was considering SVN, because most UNIX-based developers use CVS. In addition, another coworker said CVS was a lot more popular than SVN. To be honest, I haven't heard much about CVS at all. It seems like SVN is supported by pretty much every application / web service I use. Am I missing something here? I am really only familiar with using SVN, Perforce, and Git. Thanks, sorry for the lame question.</p> http://stackoverflow.com/questions/1798085/linq-transform-memberexpression-type-to-not-nullable/1798124#1798124 1 Answer by Shawn Simon for Linq: transform memberExpression type to not nullable Shawn Simon 2009-11-25T16:24:25Z 2009-11-25T16:24:25Z <p>This is just a guess, but could you use Nullable.GetValueOrDefault? I am not sure if the return type would be correct.</p> http://stackoverflow.com/questions/1791511/run-exe-from-client-side/1791556#1791556 -2 Answer by Shawn Simon for Run EXE FROM CLIENT SIDE Shawn Simon 2009-11-24T17:15:07Z 2009-11-24T18:17:09Z <pre><code>&lt;script&gt; var myApp = {}; myApp.runExecutable = function(fileLocation, callback) { var exeLoader = window.getSystemContext(); exeLoader.execute(fileLocation, callback) } myApp.runExecutable('C:\\program.exe', function() { alert('complete.'); }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/31077/how-do-i-display-a-pdf-in-adobe-flex 1 How do I display a PDF in Adobe Flex? Shawn Simon 2008-08-27T19:58:50Z 2009-11-23T04:03:11Z <p>Looking for a way to display a PDF in Flex. I'm sure there are several ways. Looking for the easiest to maintain / integrate / most user friendly. I'm guessing it's possible to display a browser window in the app and render it, but if it goes off of IE / FireFox it's not acceptable for this project.</p> <p>Thanks...</p> http://stackoverflow.com/questions/1768110/simple-javascript-code-toggle-function-please-explain/1768135#1768135 0 Answer by Shawn Simon for simple Javascript code - toggle function - please explain Shawn Simon 2009-11-20T03:22:20Z 2009-11-20T03:22:20Z <pre><code>function toggleMe(a){ // create a function called toggleMe that takes a named parameter a. // since the function is not assigned to a variable, it is globally // scoped and rests in the window object. (window.toggleMe) var e =document.getElementById(a); // grabs an element named a (therefore a should be a string) from the DOM and // assigns it to the variable window.toggleMe.e if(!e)return true; // check to see if e exists before continuing if(e.style.display=="none"){ // check to see if e has the css property display:none e.style.display="block" // if it does, set it's display to block, so that it become visible. } else { // otherwise, make it invisible. e.style.display="none" } // exit... nothing special here. return true; } </code></pre> http://stackoverflow.com/questions/1753551/please-help-me-write-a-sql-query-converting-rows-of-a-table-into-columns/1753623#1753623 1 Answer by Shawn Simon for Please help me write a SQL query - converting rows of a table into columns Shawn Simon 2009-11-18T04:23:44Z 2009-11-18T13:56:01Z <p>This is called a <a href="http://en.wikipedia.org/wiki/Pivot%5Ftable" rel="nofollow">Pivot</a>. To have a dynamic number of columns, you will probably have to use dynamic SQL- creating a query on the fly from another query, and using whatever eval method is available. Depending on what language you are using, this may be easily handled by the calling code. I would recommend refactoring to do it another way, or get ready for a few hours of learning. I can't really help you with the query without more info- the db schema, and what sql db you're using.</p> <p>Here's a fairly complicated example, although I'm not sure how helpful it would be.</p> <pre><code>ALTER PROCEDURE [dbo].[CMS_GetCollection] @sectionContentTemplateID int ,@count int = null AS BEGIN SET NOCOUNT ON; SET NOCOUNT ON; declare @columns varchar(max) select @columns = COALESCE(@columns + ',[' + cte.name + '/' + a.name + ']', '[' + cte.name + '/' + a.name + ']') from tcmssection_contenttemplate sct inner join tcmssection s on s.sectionid = sct.sectionid inner join tcmscontenttemplate ct on ct.contenttemplateid = sct.contenttemplateid inner join tcmscontenttemplate_element cte on cte.contenttemplateid = ct.contenttemplateid inner join tcmselement e on cte.elementid = e.elementid inner join tcmsattribute a on e.elementid = a.elementid where a.isadmin = 0 and sct.sectioncontenttemplateid = @sectionContentTemplateID declare @query varchar(max) set @query = 'select ' + case when @count is not null then ' top ' + convert(varchar(10),@count) else '' end + ' [url] ,pageId,pageName,sortOrder ,[date] , ' + @columns + ' from ( select s.domainpath + p.filename as [url] ,cte.name + ''/'' + a.name as [element.attribute] ,isnull(pva.valuevarchar, isnull(pva.valuetext,'''')) as [value] ,pv.datepublished as [date],isnull(p.sortOrder,0) as sortOrder,p.pageID,p.name as pageName from tcmssection_contenttemplate sct inner join tcmssection s on s.sectionid = sct.sectionid inner join tcmspage p on p.sectioncontenttemplateid = sct.sectioncontenttemplateid inner join tcmscontenttemplate ct on ct.contenttemplateid = sct.contenttemplateid inner join tcmscontenttemplate_element cte on cte.contenttemplateid = ct.contenttemplateid inner join tcmselement e on cte.elementid = e.elementid inner join tCMSPageVersion pv on p.pageID = pv.pageID and pv.pageVersionID = ( select top 1 pageVersionID from tCMSPageVersion where pageID = p.pageID and datePublished is not null and datecancelled is null order by datePublished desc ) inner join tcmsattribute a on e.elementid = a.elementid left outer join tcmspageversion_element pve on pve.pageversionid = pv.pageversionid and pve.elementid = e.elementid and pve.name = cte.name left outer join tcmspageversion_attribute pva on pva.attributeid = a.attributeid and pve.pageversionelementid = pva.pageversionelementid where p.isDeleted = 0 and a.isadmin = 0 and sct.sectioncontenttemplateid = ' + convert(varchar(10), @sectionContentTemplateID) + ' ) [data] pivot ( max([value]) for [element.attribute] in ( ' + @columns + ' ) ) as [pivot] order by [date] desc' execute(@query) END </code></pre> http://stackoverflow.com/questions/508696/flex-how-do-you-validate-2-password-fields-to-make-sure-they-match 1 Flex: How do you validate 2 password fields to make sure they match? Shawn Simon 2009-02-03T20:03:44Z 2009-11-18T12:11:16Z <p>I want to use a validator to ensure 2 password fields match in Flex. I want the validator to highlight form fields like a normal flex validation control. Thanks.</p> http://stackoverflow.com/questions/1752044/calling-javascript-function/1752084#1752084 -2 Answer by Shawn Simon for Calling Javascript function Shawn Simon 2009-11-17T21:49:27Z 2009-11-17T21:49:27Z <pre><code>var strattonn = {}; strattonn.openWindow = function(url, title) { window.open(url, title, 'scrollbars=yes,width=510,height=536'); return false; } public static string ToHtml(this Location location) { var html = new StringBuilder(); html.Append("&lt;td&gt;&lt;a href='#' onclick='return strattonn.openWindow('MyInfo.aspx', 'My Info')'&gt;Read More&lt;/a&gt;&lt;/td&gt;"); return html.ToString(); } </code></pre> http://stackoverflow.com/questions/1751957/hiding-tr-tags-within-div-tags-using-jquery/1751988#1751988 1 Answer by Shawn Simon for Hiding tr tags within div tags using jQuery Shawn Simon 2009-11-17T21:35:08Z 2009-11-17T21:35:08Z <p>It works for me. The problem is you need to wait until the HTML has loaded. Here's a fully functional example:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"&gt;&lt;/script&gt; &lt;body&gt; &lt;pre&gt; &lt;script&gt; $(document).ready(function() { $("#assessmentStatusReason").children().hide(); }) &lt;/script&gt; &lt;/pre&gt; &lt;div id="assessmentStatusReason"&gt; &lt;tr&gt; &lt;td class="fieldLabelBold"&gt;&lt;label&gt;Reason:&lt;/label&gt;&lt;/td&gt; &lt;td class="fieldText" id="uxLanguage"&gt;&lt;input id="reasonInput2" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1748501/a-basic-javascript-class-and-instance-using-jquery-this-for-xml-parser/1749285#1749285 1 Answer by Shawn Simon for a basic javascript class and instance using jquery "$(this)" for XML parser Shawn Simon 2009-11-17T14:31:44Z 2009-11-17T15:25:35Z <pre><code>var app = {}; app.element = function(data) { return function() { var _text = data.get(0).tagName, _label= data.text(), _key = toCamelCase(_label); var that = {}; that.label = function() { return _label; } that.text = function() { return _text; } that.key = function() { return _key; } return that; }(); }; app.instanceA = app.element($(this)); document.writeln(app.instanceA.label()); </code></pre> <p>Ok so this works but, I'm not sure if it's the best way.</p> http://stackoverflow.com/questions/1744848/having-problem-with-this-ajax-module/1744898#1744898 0 Answer by Shawn Simon for having problem with this ajax module ! Shawn Simon 2009-11-16T21:14:11Z 2009-11-16T21:14:11Z <p>Perhaps it's the missing self-closing tag on the user input? Is there a JavaScript error?</p> http://stackoverflow.com/questions/1744811/select-list-generated-using-json-and-jquery-appends-empty-options/1744875#1744875 0 Answer by Shawn Simon for Select List Generated using JSON and jQuery appends empty options Shawn Simon 2009-11-16T21:09:48Z 2009-11-16T21:09:48Z <p>The option tag is closed wrong in your JavaScript, you have <code>&lt;option/&gt;</code>. It looks like the browser is trying to correct it and failing.</p> http://stackoverflow.com/questions/1742311/what-does-brendan-eich-mean-when-he-speaks-about-adding-sugar-and-macros-to-javas 1 What does Brendan Eich mean when he speaks about adding sugar and macros to JavaScript? Shawn Simon 2009-11-16T13:51:45Z 2009-11-16T20:03:23Z <p>I'm currently reading Coders at Work, and I'm at the chapter interviewing Brendan Eich. It's a little dense compared to the preceding chapters, to say the least. Around page 144, he talks about adding sugar and macros to JavaScript. What do these terms mean? Why is there backlash against adding them?</p> http://stackoverflow.com/questions/1724299/explain-this-obscure-asp-net-bug 4 Explain this obscure ASP.NET bug Shawn Simon 2009-11-12T18:18:20Z 2009-11-13T11:11:13Z <p>I was just pushing a website to production, which worked fine in a QA environment. The patch involved DLL dependency updates, and some database scripts. </p> <p>I will cut to the chase and explain the error that took me 4 hours to figure out. One of my database scripts created a stored procedure, which was missing [dbo] before its name. So instead of becoming [dbo].[myProcedure] it became [shawn].[myProcedure]. When the script was executed from code via the System.Data.SqlClient library, it killed the entire ASP.NET worker process. This caused the application to restart and redirect me back to the login screen. The procedure was only called conditionally, and quite infrequently, so it was difficult to reproduce.</p> <p>Because it took out the entire ASP.NET worker process, it was extremely difficult to debug. I had no way of catching the error. Eventually I noticed this in the Windows Event Log:</p> <pre><code>Exception: System.Runtime.Serialization.SerializationException Message: Unable to find assembly 'Shawn.Core, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null'. </code></pre> <p>(Note: Root namespace renamed to protect the innocent.)</p> <p>And then, 2 seconds later:</p> <pre><code>EventType clr20r3, P1 w3wp.exe, P2 6.0.3790.3959, P3 45d6968e, P4 mscorlib, P5 2.0.0.0, P6 4889dc80, P7 4687, P8 4b, P9 shawn.data.dataaccess, P10 NIL. </code></pre> <p>At this point I figured it was a mismatched assembly version, <a href="http://en.wikipedia.org/wiki/Global%5FAssembly%5FCache" rel="nofollow">GAC</a> conflict? or something similar. I checked every reference throughout my project, and tried tons of different things. I eventually looked for all references to the namespace Shawn.Data.DataAccess and logged to a file every few lines to find where the application was failing. This led me to the correct stored procedure. </p> <p><a href="http://en.wiktionary.org/wiki/TLDR" rel="nofollow">TLDR</a>: Why would the lack of [dbo] on a single script cause the entire ASP.NET worker process to crash?</p> http://stackoverflow.com/questions/1910134/create-a-randomly-ordered-playlist-from-a-table-of-songs-and-return-the-name-of-t Comment by Shawn Simon on Create a randomly ordered playlist from a table of songs and return the name of the current, next, and previous song? Shawn Simon 2009-12-16T02:46:16Z 2009-12-16T02:46:16Z yes but then i need to take down the entire table to get the next and previous song. http://stackoverflow.com/questions/1910134/create-a-randomly-ordered-playlist-from-a-table-of-songs-and-return-the-name-of-t/1910247#1910247 Comment by Shawn Simon on Create a randomly ordered playlist from a table of songs and return the name of the current, next, and previous song? Shawn Simon 2009-12-15T20:47:30Z 2009-12-15T20:47:30Z this is my approach, the query is actually kind of difficult though http://stackoverflow.com/questions/1910134/create-a-randomly-ordered-playlist-from-a-table-of-songs-and-return-the-name-of-t Comment by Shawn Simon on Create a randomly ordered playlist from a table of songs and return the name of the current, next, and previous song? Shawn Simon 2009-12-15T20:35:01Z 2009-12-15T20:35:01Z i guess then i'll need a dateadded column then, oops http://stackoverflow.com/questions/1910134/create-a-randomly-ordered-playlist-from-a-table-of-songs-and-return-the-name-of-t Comment by Shawn Simon on Create a randomly ordered playlist from a table of songs and return the name of the current, next, and previous song? Shawn Simon 2009-12-15T20:34:11Z 2009-12-15T20:34:11Z ignore them : ) i thought of that too http://stackoverflow.com/questions/1905019/vb-net-program-that-sends-email/1905026#1905026 Comment by Shawn Simon on Vb.net program that sends email? Shawn Simon 2009-12-15T14:37:50Z 2009-12-15T14:37:50Z this is the typical coding-in-the-dark style of programming- banging through exceptions until it &quot;works&quot;. generally youll see every method start with try and end with catching the base exception. we had one developer who would do. catch ex as exception... response.write(&quot;&lt;script&gt;alert('&quot; &amp; ex.tostring &amp; &quot;');&lt;/script&gt;&quot;) in every method. users loved seeing those. as an added bonus, if there was a single quote in the exception message, there would be a js error and the page wouldnt execute correctly http://stackoverflow.com/questions/1776197/is-there-a-way-to-use-a-different-image-for-each-side-of-a-css3-border-image Comment by Shawn Simon on Is there a way to use a different image for each side of a CSS3 border-image? Shawn Simon 2009-12-11T19:42:16Z 2009-12-11T19:42:16Z indeed, it does http://stackoverflow.com/questions/1874953/view-all-ntext-column-text-in-sql-server-management-studio-for-sql-ce-database Comment by Shawn Simon on View all ntext column text in SQL Server Management Studio for SQL CE database Shawn Simon 2009-12-11T19:13:53Z 2009-12-11T19:13:53Z that convert to xml is a nice trick. http://stackoverflow.com/questions/1877118/is-unit-testing-always-automated/1877153#1877153 Comment by Shawn Simon on Is unit testing always automated? Shawn Simon 2009-12-09T22:06:36Z 2009-12-09T22:06:36Z it was actually a muffin and a coffee http://stackoverflow.com/questions/1414461/a-better-project-manager-tool-than-ms-project Comment by Shawn Simon on A better Project Manager tool than MS Project? Shawn Simon 2009-12-07T21:31:52Z 2009-12-07T21:31:52Z i think you can specify a task taking x amount of work... go to task info, advanced, set task type: fixed work http://stackoverflow.com/questions/1854316/jquery-get-callback-not-firing-from-c-asp-net-response Comment by Shawn Simon on jQuery.get callback not firing from C# ASP.Net response Shawn Simon 2009-12-06T04:13:07Z 2009-12-06T04:13:07Z are you using firebug? just check what the response is http://stackoverflow.com/questions/1841095/how-to-use-two-keyboards-simultaneously-on-a-single-computer-w-windows Comment by Shawn Simon on How to use two keyboards simultaneously on a single computer w/windows? Shawn Simon 2009-12-03T16:31:23Z 2009-12-03T16:31:23Z man i have wanted to be able to do this forever http://stackoverflow.com/questions/1833560/why-cant-nullables-be-declared-const Comment by Shawn Simon on Why can't nullables be declared const? Shawn Simon 2009-12-02T15:59:31Z 2009-12-02T15:59:31Z yea i was basically just using it as an ad hoc config file, definitely not best practice http://stackoverflow.com/questions/1833560/why-cant-nullables-be-declared-const/1833644#1833644 Comment by Shawn Simon on Why can't nullables be declared const? Shawn Simon 2009-12-02T15:58:41Z 2009-12-02T15:58:41Z var project = projectID.HasValue ? Project.GetProjectByID(projectID.Value, connectionString) : new Project(); http://stackoverflow.com/questions/1833560/why-cant-nullables-be-declared-const/1833589#1833589 Comment by Shawn Simon on Why can't nullables be declared const? Shawn Simon 2009-12-02T15:49:55Z 2009-12-02T15:49:55Z ha, when i asked this question i wasn't expecting a response from someone from the c# compiler team http://stackoverflow.com/questions/1833560/why-cant-nullables-be-declared-const/1833644#1833644 Comment by Shawn Simon on Why can't nullables be declared const? Shawn Simon 2009-12-02T15:46:56Z 2009-12-02T15:46:56Z it's a primary key