User Shawn Simon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T21:55:53Zhttp://stackoverflow.com/feeds/user/26http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1925276/jquery-classname-woes/1925289#19252895Answer by Shawn Simon for jQuery className woes. Shawn Simon2009-12-17T23:20:58Z2009-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-t4Create a randomly ordered playlist from a table of songs and return the name of the current, next, and previous song?Shawn Simon2009-12-15T20:22:51Z2009-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-project1Architecture question regarding exporting to MS ProjectShawn Simon2009-12-01T19:49:03Z2009-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#18846585Answer by Shawn Simon for How do I escape the # character in a VB.NET string literal?Shawn Simon2009-12-10T22:51:28Z2009-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-need0Which version of Flex Builder do I need? Shawn Simon2009-11-30T19:45:04Z2009-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-automated0Is unit testing always automated?Shawn Simon2009-12-09T21:43:42Z2009-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-1Answer by Shawn Simon for C#:How to customize datetime format or to convert DateTime to String with required format..Shawn Simon2009-12-09T05:29:34Z2009-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#18707641Answer by Shawn Simon for how one can be a good about web services...Shawn Simon2009-12-09T00:04:02Z2009-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#18571681Answer by Shawn Simon for Adding floats with javascriptShawn Simon2009-12-07T00:39:52Z2009-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#18537850Answer by Shawn Simon for how to develop c#.net desktop base software?Shawn Simon2009-12-05T23:03:48Z2009-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#18442741Answer by Shawn Simon for How to copy the value of a reference in javascript?Shawn Simon2009-12-04T01:19:04Z2009-12-04T01:19:04Z<pre><code><a href="#">text</a><br><a href="#">link</a>
<script>
var as = document.getElementsByTagName('a');
for ( var i = as.length; i--; ) {
as[i].onclick = function() {
return function() {
alert(i);
return false;
}
}();
}
</script>
</code></pre>
<p>maybe?</p>
http://stackoverflow.com/questions/1833560/why-cant-nullables-be-declared-const6Why can't nullables be declared const?Shawn Simon2009-12-02T15:18:32Z2009-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-select1Get access to an incrementing integer during LINQ SelectShawn Simon2009-12-01T21:57:42Z2009-12-01T22:03:13Z
<pre><code>Dim project = new Project(1)
Dim tasks = Task.GetTasks()
Return <?xml version="1.0" encoding="UTF-8"?>
<Project xmlns="http://schemas.microsoft.com/project">
<Name><%= project.name %></Name>
<Tasks>
<%= tasks.Select(Function(t) _
<Task>
<ID><%= tasks.IndexOf(t) + 1 %></ID>
</Task> _
) %>
</Tasks>
</Project>
</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-hosting3Shared IIS7 hosting?Shawn Simon2009-02-09T14:32:13Z2009-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#18007101Answer by Shawn Simon for Example Code (C#) for login into flickr using HttpWebRequestShawn Simon2009-11-25T23:39:26Z2009-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. >.<</p>
http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800456#18004560Answer by Shawn Simon for Does this code prevent SQL injection?Shawn Simon2009-11-25T22:45:18Z2009-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-cvs8Which is more popular (currently, by recent install base) SVN or CVS?Shawn Simon2009-04-23T15:54:20Z2009-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#17981241Answer by Shawn Simon for Linq: transform memberExpression type to not nullableShawn Simon2009-11-25T16:24:25Z2009-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-2Answer by Shawn Simon for Run EXE FROM CLIENT SIDEShawn Simon2009-11-24T17:15:07Z2009-11-24T18:17:09Z<pre><code><script>
var myApp = {};
myApp.runExecutable = function(fileLocation, callback) {
var exeLoader = window.getSystemContext();
exeLoader.execute(fileLocation, callback)
}
myApp.runExecutable('C:\\program.exe', function() {
alert('complete.');
});
</script>
</code></pre>
http://stackoverflow.com/questions/31077/how-do-i-display-a-pdf-in-adobe-flex1How do I display a PDF in Adobe Flex?Shawn Simon2008-08-27T19:58:50Z2009-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#17681350Answer by Shawn Simon for simple Javascript code - toggle function - please explainShawn Simon2009-11-20T03:22:20Z2009-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#17536231Answer by Shawn Simon for Please help me write a SQL query - converting rows of a table into columnsShawn Simon2009-11-18T04:23:44Z2009-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-match1Flex: How do you validate 2 password fields to make sure they match?Shawn Simon2009-02-03T20:03:44Z2009-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-2Answer by Shawn Simon for Calling Javascript functionShawn Simon2009-11-17T21:49:27Z2009-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("<td><a href='#' onclick='return strattonn.openWindow('MyInfo.aspx', 'My Info')'>Read More</a></td>");
return html.ToString();
}
</code></pre>
http://stackoverflow.com/questions/1751957/hiding-tr-tags-within-div-tags-using-jquery/1751988#17519881Answer by Shawn Simon for Hiding tr tags within div tags using jQueryShawn Simon2009-11-17T21:35:08Z2009-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><html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<body>
<pre>
<script>
$(document).ready(function() {
$("#assessmentStatusReason").children().hide();
})
</script>
</pre>
<div id="assessmentStatusReason">
<tr>
<td class="fieldLabelBold"><label>Reason:</label></td>
<td class="fieldText" id="uxLanguage"><input id="reasonInput2" /></td>
</tr>
</div>
</code></pre>
http://stackoverflow.com/questions/1748501/a-basic-javascript-class-and-instance-using-jquery-this-for-xml-parser/1749285#17492851Answer by Shawn Simon for a basic javascript class and instance using jquery "$(this)" for XML parserShawn Simon2009-11-17T14:31:44Z2009-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#17448980Answer by Shawn Simon for having problem with this ajax module !Shawn Simon2009-11-16T21:14:11Z2009-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#17448750Answer by Shawn Simon for Select List Generated using JSON and jQuery appends empty optionsShawn Simon2009-11-16T21:09:48Z2009-11-16T21:09:48Z<p>The option tag is closed wrong in your JavaScript, you have <code><option/></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-javas1What does Brendan Eich mean when he speaks about adding sugar and macros to JavaScript?Shawn Simon2009-11-16T13:51:45Z2009-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-bug4Explain this obscure ASP.NET bugShawn Simon2009-11-12T18:18:20Z2009-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-tComment 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 Simon2009-12-16T02:46:16Z2009-12-16T02:46:16Zyes 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#1910247Comment 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 Simon2009-12-15T20:47:30Z2009-12-15T20:47:30Zthis is my approach, the query is actually kind of difficult thoughhttp://stackoverflow.com/questions/1910134/create-a-randomly-ordered-playlist-from-a-table-of-songs-and-return-the-name-of-tComment 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 Simon2009-12-15T20:35:01Z2009-12-15T20:35:01Zi guess then i'll need a dateadded column then, oopshttp://stackoverflow.com/questions/1910134/create-a-randomly-ordered-playlist-from-a-table-of-songs-and-return-the-name-of-tComment 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 Simon2009-12-15T20:34:11Z2009-12-15T20:34:11Zignore them : ) i thought of that toohttp://stackoverflow.com/questions/1905019/vb-net-program-that-sends-email/1905026#1905026Comment by Shawn Simon on Vb.net program that sends email?Shawn Simon2009-12-15T14:37:50Z2009-12-15T14:37:50Zthis is the typical coding-in-the-dark style of programming- banging through exceptions until it "works". 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("<script>alert('" & ex.tostring & "');</script>") 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-imageComment by Shawn Simon on Is there a way to use a different image for each side of a CSS3 border-image?Shawn Simon2009-12-11T19:42:16Z2009-12-11T19:42:16Zindeed, it doeshttp://stackoverflow.com/questions/1874953/view-all-ntext-column-text-in-sql-server-management-studio-for-sql-ce-databaseComment by Shawn Simon on View all ntext column text in SQL Server Management Studio for SQL CE databaseShawn Simon2009-12-11T19:13:53Z2009-12-11T19:13:53Zthat convert to xml is a nice trick.http://stackoverflow.com/questions/1877118/is-unit-testing-always-automated/1877153#1877153Comment by Shawn Simon on Is unit testing always automated?Shawn Simon2009-12-09T22:06:36Z2009-12-09T22:06:36Zit was actually a muffin and a coffeehttp://stackoverflow.com/questions/1414461/a-better-project-manager-tool-than-ms-projectComment by Shawn Simon on A better Project Manager tool than MS Project?Shawn Simon2009-12-07T21:31:52Z2009-12-07T21:31:52Zi think you can specify a task taking x amount of work... go to task info, advanced, set task type: fixed workhttp://stackoverflow.com/questions/1854316/jquery-get-callback-not-firing-from-c-asp-net-responseComment by Shawn Simon on jQuery.get callback not firing from C# ASP.Net response Shawn Simon2009-12-06T04:13:07Z2009-12-06T04:13:07Zare you using firebug? just check what the response ishttp://stackoverflow.com/questions/1841095/how-to-use-two-keyboards-simultaneously-on-a-single-computer-w-windowsComment by Shawn Simon on How to use two keyboards simultaneously on a single computer w/windows?Shawn Simon2009-12-03T16:31:23Z2009-12-03T16:31:23Zman i have wanted to be able to do this foreverhttp://stackoverflow.com/questions/1833560/why-cant-nullables-be-declared-constComment by Shawn Simon on Why can't nullables be declared const?Shawn Simon2009-12-02T15:59:31Z2009-12-02T15:59:31Zyea i was basically just using it as an ad hoc config file, definitely not best practicehttp://stackoverflow.com/questions/1833560/why-cant-nullables-be-declared-const/1833644#1833644Comment by Shawn Simon on Why can't nullables be declared const?Shawn Simon2009-12-02T15:58:41Z2009-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#1833589Comment by Shawn Simon on Why can't nullables be declared const?Shawn Simon2009-12-02T15:49:55Z2009-12-02T15:49:55Zha, when i asked this question i wasn't expecting a response from someone from the c# compiler teamhttp://stackoverflow.com/questions/1833560/why-cant-nullables-be-declared-const/1833644#1833644Comment by Shawn Simon on Why can't nullables be declared const?Shawn Simon2009-12-02T15:46:56Z2009-12-02T15:46:56Zit's a primary key