Shawn Simon

5,653
reputation
1498 views

Registered User

name Shawn Simon
member for 1 year
seen 3 hours ago
website
location Philadelphia
age 25
16h
comment Create a randomly ordered playlist from a table of songs and return the name of the current, next, and previous song?
yes but then i need to take down the entire table to get the next and previous song.
22h
comment Create a randomly ordered playlist from a table of songs and return the name of the current, next, and previous song?
this is my approach, the query is actually kind of difficult though
22h
comment Create a randomly ordered playlist from a table of songs and return the name of the current, next, and previous song?
i guess then i'll need a dateadded column then, oops
22h
revised Create a randomly ordered playlist from a table of songs and return the name of the current, next, and previous song?
added 24 characters in body
22h
comment Create a randomly ordered playlist from a table of songs and return the name of the current, next, and previous song?
ignore them : ) i thought of that too
22h
asked Create a randomly ordered playlist from a table of songs and return the name of the current, next, and previous song?
1d
comment Vb.net program that sends email?
this 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
2d
awarded  
Dec
11
comment Is there a way to use a different image for each side of a CSS3 border-image?
indeed, it does
Dec
11
comment View all ntext column text in SQL Server Management Studio for SQL CE database
that convert to xml is a nice trick.
Dec
10
accepted How do I escape the # character in a VB.NET string literal?
Dec
10
answered How do I escape the # character in a VB.NET string literal?
Dec
9
comment Is unit testing always automated?
it was actually a muffin and a coffee
Dec
9
asked Is unit testing always automated?
Dec
9
revised C#:How to customize datetime format or to convert DateTime to String with required format..
added 65 characters in body
Dec
9
answered C#:How to customize datetime format or to convert DateTime to String with required format..
Dec
9
answered how one can be a good about web services…
Dec
7
comment A better Project Manager tool than MS Project?
i think you can specify a task taking x amount of work... go to task info, advanced, set task type: fixed work
Dec
7
answered Adding floats with javascript
Dec
6
awarded  Mortarboard
Dec
6
comment jQuery.get callback not firing from C# ASP.Net response
are you using firebug? just check what the response is
Dec
5
answered how to develop c#.net desktop base software?
Dec
4
answered How to copy the value of a reference in javascript?
Dec
3
comment How to use two keyboards simultaneously on a single computer w/windows?
man i have wanted to be able to do this forever
Dec
2
comment Why can’t nullables be declared const?
yea i was basically just using it as an ad hoc config file, definitely not best practice
Dec
2
comment Why can’t nullables be declared const?
var project = projectID.HasValue ? Project.GetProjectByID(projectID.Value, connectionString) : new Project();
Dec
2
comment Why can’t nullables be declared const?
ha, when i asked this question i wasn't expecting a response from someone from the c# compiler team
Dec
2
comment Why can’t nullables be declared const?
it's a primary key
Dec
2
comment Why can’t nullables be declared const?
thanks, the assembly part was enlightening and made this the best answer (to me)
Dec
2
revised Why can’t nullables be declared const?
added 381 characters in body
Dec
2
comment Why can’t nullables be declared const?
because its a config setting that could be null and i would rather not code around a magic number.... say -1
Dec
2
asked Why can’t nullables be declared const?
Dec
1
asked Get access to an incrementing integer during LINQ Select
Dec
1
asked Architecture question regarding exporting to MS Project
Nov
30
revised Which version of Flex Builder do I need?
added 94 characters in body; edited title
Nov
30
asked Which version of Flex Builder do I need?
Nov
30
comment .NET development in OS X, fastest version of Windows for Parallels?
When I tried this about a year ago, VMWare Fusion worked A LOT better.
Nov
25
answered Example Code (C#) for login into flickr using HttpWebRequest
Nov
25
answered Does this code prevent SQL injection?
Nov
25
comment Linq: transform memberExpression type to not nullable
nice, was looking for something like that : )
Nov
25
answered Linq: transform memberExpression type to not nullable
Nov
24
comment Run EXE FROM CLIENT SIDE
nothing bad about that, imo. its run at your own risk in your own environment.
Nov
24
revised Run EXE FROM CLIENT SIDE
added 1 characters in body
Nov
24
revised Run EXE FROM CLIENT SIDE
BUG FIXES THX SLAK
Nov
24
answered Run EXE FROM CLIENT SIDE
Nov
23
comment Visual Studio local project setting best-practices?
I believe VS 2010 handles this quite nicely. You can have multiple configuration files (release.web.config, qa.web.config) and choose which to run / deploy with.
Nov
23
comment How do I display a PDF in Adobe Flex?
awesome, thanks
Nov
21
comment Installing PHP on a server, what does that mean?
i disagree, the question asked how can a programming language be installed, and the answer is it cant
Nov
20
answered simple Javascript code - toggle function - please explain
Nov
19
comment Javascript: Write Console.debug() output to browser?
argh i just had about half of that written.