User jdelator - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T12:41:40Z http://stackoverflow.com/feeds/user/438 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1854352/when-to-use-a-property-vs-a-method 5 When to use a property vs a method? [closed] jdelator 2009-12-06T04:25:17Z 2009-12-06T05:58:50Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/601621/properties-vs-methods">Properties vs Methods</a> </p> </blockquote> <p>Is there any rule or general best practice as to when to use a property vs a method? Technically any parameterless method can be made in a property and any property can be made a method, but sometimes when to decide when to use one of the other can be blurred.</p> <p>I was hoping to get some rules you guys kept in mind when deciding between the two.</p> http://stackoverflow.com/questions/203377/getting-the-max-value-of-an-enum 8 Getting the max value of an enum jdelator 2008-10-15T00:59:33Z 2009-11-03T08:19:49Z <p>How do you get the max value of an enum?</p> http://stackoverflow.com/questions/1633971/no-horizontal-scroll-bar-on-float-right 1 No horizontal scroll bar on float right jdelator 2009-10-27T22:12:28Z 2009-10-27T23:40:56Z <pre><code>&lt;html&gt; &lt;head&gt; &lt;style type="text/css" rel="stylesheet"&gt; * {margin:0;padding:0;} div#box {background-color:green;width:1000px;} /* #box {position:absolute;top:0;right:0;} */ /* #box {position:absolute;top:0;left:0;} */ /* #box {float:right;} */ #box {float:left;} .clearer {clear:both;} &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="box"&gt; asdafdsf &lt;/div&gt; &lt;div class="clearer"&gt;&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Uncomment the first float left id with the float right one and you will see. I left my tried solutions commented out as well.</p> <p>You should have a full repro from a copy and paste.</p> http://stackoverflow.com/questions/497030/how-can-i-test-if-iirf-works 1 How can I test if IIRF works? jdelator 2009-01-30T20:06:54Z 2009-10-25T22:48:08Z <p><a href="http://www.codeplex.com/IIRF/Thread/List.aspx" rel="nofollow">http://www.codeplex.com/IIRF/Thread/List.aspx</a></p> <p>My webhost installed IIRF for me and I am convinced that they did not do it correctly. I've tried numerous examples including one that I know works with apache's mod_rewrite but I can't get anything to work with IIRF. Is there rule or configuration option that you guys have that you know of that will show whether or not the thing is working correctly?</p> <p>Even something like rewrite all urls to anothersite.com will will help me right now. I hope you guys realize the reason I came for your help. I can figure out how to do the rewrite rules on my own but I don't know if the errors are because of me or the webhost. I have limited options as well since I am on a shared webhost.</p> http://stackoverflow.com/questions/1592608/what-is-safest-method-to-store-passwords-in-a-table/1592611#1592611 1 Answer by jdelator for What is safest method to store passwords in a table? jdelator 2009-10-20T05:20:27Z 2009-10-20T05:20:27Z <p>You need to salt the password.</p> <p>vBulletin does a pretty good job at storing passwords. md5(md5(password) + salt);</p> http://stackoverflow.com/questions/46837/anyone-have-any-interesting-er-diagrams-to-learn-from 0 Anyone have any interesting ER diagrams to learn from? jdelator 2008-09-05T20:32:25Z 2009-10-07T10:11:56Z <p>Maybe stackoverflow can release theirs?</p> <p>:)</p> http://stackoverflow.com/questions/1451861/creating-an-array-of-zero-width-and-zero-height/1451866#1451866 1 Answer by jdelator for Creating an array of zero width and zero height!? jdelator 2009-09-20T19:58:54Z 2009-09-20T19:58:54Z <p>You should ask your professor. I doubt he will see this here. He might just mean to initialize it to null.</p> http://stackoverflow.com/questions/1436077/how-to-split-a-string-while-ignoring-the-case-of-the-delimiter 3 How to split a string while ignoring the case of the delimiter? jdelator 2009-09-16T23:51:26Z 2009-09-17T17:19:18Z <p>I need to split a string let's say "asdf aA asdfget aa uoiu AA" split using "aa" ignoring the case. to</p> <pre><code>"asdf " "asdfget " "uoiu " </code></pre> http://stackoverflow.com/questions/1438111/changing-the-sign-of-a-number-in-php/1438184#1438184 1 Answer by jdelator for Changing the sign of a number in PHP? jdelator 2009-09-17T11:10:49Z 2009-09-17T11:10:49Z <p>This was a popular funny question on reddit a couple of weeks back. Some people post ridiculous answers involving for loops and such. I was tempted at post a solution like that here but I think some may not have seen the humor in it and I would have gotten down votted fairly quick.</p> http://stackoverflow.com/questions/1376552/how-to-save-query-result-using-t-sql-in-a-csv-file/1376735#1376735 0 Answer by jdelator for How to save query result using T-SQL in a csv file? jdelator 2009-09-04T00:55:09Z 2009-09-04T00:55:09Z <p>Here is an example I found from google. Play around with the parameters.</p> <pre><code>EXEC master..xp_cmdshell 'sqlcmd -X -S server -q "SET NOCOUNT ON Select 'department','FundCode','Month' SELECT * FROM pubs.dbo.test" -s , -w 255 -u -o "\\server\output.csv" -h-1' </code></pre> http://stackoverflow.com/questions/352234/what-to-do-with-unused-useful-code 3 What to do with unused, useful, code? jdelator 2008-12-09T09:43:34Z 2009-09-02T11:27:49Z <p>You when you spend all day getting a function to work just right, but then an architecture change causes the function to no longer be used? But you know that the code is useful enough that if the architecture ever sways back, that function will be again useful?</p> <p>It seems wrong to delete the function before you do the check in but then again it takes up space as a unused function if you check it in.</p> http://stackoverflow.com/questions/1351830/exited-with-code-9009/1351843#1351843 0 Answer by jdelator for Exited with code 9009 jdelator 2009-08-29T16:36:55Z 2009-08-29T20:42:47Z <p>On a more serious note, we need more to go on. On google I'm getting results that "is not recognized as an internal or external command, operable program or batch file" to its not an executable program to compiler errors.</p> http://stackoverflow.com/questions/1351830/exited-with-code-9009/1351833#1351833 2 Answer by jdelator for Exited with code 9009 jdelator 2009-08-29T16:32:49Z 2009-08-29T16:32:49Z <p>It means that the error is over 9000</p> http://stackoverflow.com/questions/1326812/rename-user-name-isql-plus/1326828#1326828 0 Answer by jdelator for Rename user name iSQL plus jdelator 2009-08-25T08:30:21Z 2009-08-25T08:30:21Z <p>Assuming you have one table (which is a terrible assumption)</p> <p>The sql query is UPDATE USER SET username=newuser WHERE username=oldusername</p> http://stackoverflow.com/questions/1309400/list-of-good-jquery-blogs 1 List of good jquery blogs? jdelator 2009-08-20T23:29:35Z 2009-08-20T23:33:53Z <p>I tend to just read the last questions on stackoverflow with the jQuery tag to learn more about jQuery. I'm looking for something more in depth though.</p> http://stackoverflow.com/questions/1030118/update-a-column-of-a-table-to-be-a-sequence 0 Update a column of a table to be a sequence jdelator 2009-06-23T00:51:47Z 2009-08-18T16:10:08Z <p>I want to update a table's column using the results of a stored procedure</p> <pre><code>create procedure seq as DECLARE @NextValue INT; INSERT SequencesTable DEFAULT VALUES; DELETE SequencesTable WITH(READPAST); SELECT SCOPE_IDENTITY(); go </code></pre> <p>I can't use a UDF since it is nodeterministic. Something like this won't work</p> <pre><code>UPDATE [dbo].[t1] SET [c1] = seq </code></pre> <p>I have a feeling I am approaching this the wrong way.</p> <p>I just want to do update a table that looks like this</p> <p>1 1<br /> 2 2<br /> 1 4<br /> 1 4<br /> 5 5<br /> 1 2 </p> <p>To look like this</p> <p>1 1<br /> 2 2<br /> 3 4<br /> 4 4<br /> 5 5<br /> 6 2 </p> http://stackoverflow.com/questions/1280372/html-helpers-available-in-asp-net-mvc-controller/1280380#1280380 1 Answer by jdelator for Html Helpers Available in ASP.NET MVC controller? jdelator 2009-08-14T21:46:26Z 2009-08-14T21:46:26Z <p>I don't think you should be using the html helper methods in your controller. This stuff is best left in the view</p> http://stackoverflow.com/questions/1270801/how-to-get-the-value-of-the-input-element-of-live-of-value/1270815#1270815 0 Answer by jdelator for How to get the value of the input element of live of Value jdelator 2009-08-13T08:39:49Z 2009-08-13T08:39:49Z <p>Try var FORMID=$("#FormID").val()</p> http://stackoverflow.com/questions/613146/computing-the-difference-between-images 9 Computing the difference between images jdelator 2009-03-05T00:33:25Z 2009-08-06T22:25:24Z <p>Do you guys know of any algorithms that can be used to compute difference between images?</p> <p>Take this webpage for example <a href="http://tineye.com/" rel="nofollow">http://tineye.com/</a> You give it a link or upload an image and it finds similiar images. I doubt that it compares the image in question against all of them (or maybe it does).</p> <p>By compute I mean like what the <a href="http://en.wikipedia.org/wiki/Levenshtein%5Fdistance" rel="nofollow">Levenshtein_distance</a> or the <a href="http://en.wikipedia.org/wiki/Hamming%5Fdistance" rel="nofollow">Hamming distance</a> is for strings.</p> <p>By no means do I need to the correct answer for a project or anything, I just found the website and got very curious. I know digg pays for a similiar service for their website.</p> http://stackoverflow.com/questions/1219594/linq-to-sql-causing-foreign-key-constraint-errors 0 Linq to sql causing foreign key constraint errors jdelator 2009-08-02T19:20:08Z 2009-08-02T19:26:44Z <p>Here is the revelant code.</p> <pre><code> TournamentTeam newTeam = new TournamentTeam(); TournamentTeams.InsertOnSubmit(newTeam); SubmitChanges(); TournamentParticipant newSignup = new TournamentParticipant { CheckedIn = false, TournamentID = tournamentId, UserID = participant.UserID, TeamID = newTeam.TeamId }; TournamentParticipants.InsertOnSubmit(newSignup); SubmitChanges(); </code></pre> <p>TournamentParticipants.TeamId has a fk relationship on TournamentTeam.TeamID, TeamID is an identity column</p> <p>What I don't understand is that when TournamentTeam gets inserts, it grabs the new identity value. Even when I debug the code new Signup is recieving the new team id. But when it comes to generating the insert, it avoids this value completely and does the insert before the select statement where it grabs the new identity column.</p> <pre><code>exec sp_executesql N'INSERT INTO [dbo].[TournamentParticipants]([UserID], [TournamentID], [CheckedIn]) VALUES (@p0, @p1, @p2) SELECT [t0].[TeamID] FROM [dbo].[TournamentParticipants] AS [t0] WHERE ([t0].[UserID] = @p3) AND ([t0].[TournamentID] = @p4)',N'@p0 int,@p1 int,@p2 bit,@p3 int,@p4 int',@p0=29805,@p1=247,@p2=0,@p3=29805,@p4=247 </code></pre> <p>How can I either make linq to sql use the value for team id that I have specified or make the select statement be generated before the insert statement?</p> http://stackoverflow.com/questions/1089849/how-to-create-a-dedicated-task-for-background-tasks-in-net-mvc 0 How to create a dedicated task for background tasks in .NET MVC? jdelator 2009-07-07T00:32:50Z 2009-07-07T00:47:56Z <p>This question is in regards to this blog entry. <a href="http://blog.stackoverflow.com/2008/07/easy-background-tasks-in-aspnet/" rel="nofollow">http://blog.stackoverflow.com/2008/07/easy-background-tasks-in-aspnet/</a></p> <p>All the way at the bottom Jeff mentions he uses a dedicated task to solve this.</p> <p>I searched on SO and found this solution <a href="http://stackoverflow.com/questions/733643/scheduled-jobs-in-asp-net-website-without-buying-dedicated-servers">http://stackoverflow.com/questions/733643/scheduled-jobs-in-asp-net-website-without-buying-dedicated-servers</a> I'm not entirely sure if this what Jeff meant. If that is the procedure he meant, I can just close this question.</p> http://stackoverflow.com/questions/942583/how-does-youtube-sign-you-in-with-your-gmail-account 1 How does youtube sign you in with your gmail account? jdelator 2009-06-03T00:35:21Z 2009-06-03T00:43:32Z <p>I have an idea of how they would do this but it seems very hacky way about going about it.</p> <p>The problem I see from this is that youtube needs to grab gmail or google cookies.</p> <p>The way I would do this would be to open another frame from the gmail domain that reads the gmail cookies and forwards this information to a youtube url. This youtube url would then authenticate based on the forwarded information. Like I said before it seems very hacky way about doing this and probably not the way they are doing it.</p> <p>If anyone knows how they do it or has any other ways to go about doing this I would like to hear it.</p> http://stackoverflow.com/questions/922998/jgrowl-not-working-with-masterpage/923087#923087 0 Answer by jdelator for jGrowl not working with MasterPage jdelator 2009-05-28T20:46:26Z 2009-05-28T20:46:26Z <p>Might be obvious, but can you check if you are correctly referencing the library? You might have the wrong path.</p> http://stackoverflow.com/questions/813835/how-to-get-a-dynamic-top-number-of-rows 0 How to get a dynamic top number of rows? jdelator 2009-05-02T00:40:02Z 2009-05-02T01:39:41Z <p>I want to get the top #nr_of_rows - (int)(#nr_of_rows / 10 - 1) of a table. So like if you have 63 rows, it would return 3 rows, 90 rows would return 10, 85 would return 5, etc.. Of course this can be done in two queries, just wondering if it can be done in one query.</p> <p>If you guys know of a straight sql query, it would be great but ideally I would like a linq to sql answer.</p> http://stackoverflow.com/questions/813770/database-auto-increment-column/813838#813838 0 Answer by jdelator for Database auto-increment column jdelator 2009-05-02T00:44:02Z 2009-05-02T00:44:02Z <p>Oracle and DB2 have sequence but I think you are looking for identity and all major dbms (mysql, sql server, db2, oracle) support it.</p> http://stackoverflow.com/questions/238793/how-to-store-xml-files-in-an-xml-column-using-linq-to-sql 1 How to store xml files in an xml column using linq to sql? jdelator 2008-10-26T23:30:41Z 2009-04-26T08:29:19Z <p>I have xml files I want to read in and store in the database. Linq to sql requires the data to be sent in using an xelement, but if I send in the data this</p> <pre><code>new XElement("build", BuildNode.InnerXml) </code></pre> <p>I end up with data looking like this in the database lt;..gt;.. It converts the brackets into lt; and gt; which then makes the data useless from a xml standpoint.</p> <p>Any ideas on how to get the xml data inside the xml column?</p> http://stackoverflow.com/questions/779644/how-to-catch-javascript-exceptions-errors 1 How to catch javascript exceptions/errors? jdelator 2009-04-22T23:21:36Z 2009-04-22T23:27:09Z <h3>Duplicate:</h3> <blockquote> <ul> <li><a href="http://stackoverflow.com/questions/546990/automatic-feedback-on-javascript-error">Automatic feedback on JavaScript error</a></li> <li><a href="http://stackoverflow.com/questions/119432/logging-javascript-errors-on-server">Logging JavaScript-Errors on Server</a></li> </ul> </blockquote> <p><hr /></p> <p>How would I go about logging errors in javascript? I can't wrap every line of javascript in try catch block.</p> <p>I talking about the errors that for example in IE, would show an Error On page message and have the line and char the caused the error. If I can just figure out how to catch this error on the client side, I can just log the error on the server using an ajax call.</p> http://stackoverflow.com/questions/711493/how-did-you-put-the-magnifying-glass-and-search-in-the-search-box-in-stackoverf/711518#711518 1 Answer by jdelator for how did you put the magnifying glass and "search" in the search box in stackoverflow? jdelator 2009-04-02T20:36:30Z 2009-04-02T20:36:30Z <p>If you look at with firebug you would see the image is not inside the search field. </p> <p>This can explain it better than me. <a href="http://blog.reindel.com/2007/08/13/howto-spruce-up-your-search-box-with-css-and-a-background-image/" rel="nofollow">http://blog.reindel.com/2007/08/13/howto-spruce-up-your-search-box-with-css-and-a-background-image/</a></p> http://stackoverflow.com/questions/44899/how-to-find-the-current-name-of-the-test-being-executing 1 How to find the current name of the test being executing? jdelator 2008-09-04T22:25:34Z 2009-03-25T16:46:21Z <p>I know I can figure out the name of the method as its being executed, just wondering if there is a way from the setup method. I guess an attribute method would work but from the setup method it would be the best.</p> <p>EDIT NUnit</p> http://stackoverflow.com/questions/649593/using-default-namespaces-in-net-mvc-for-views-without-using-import 1 Using default namespaces in .NET MVC for views without using import? jdelator 2009-03-16T08:02:06Z 2009-03-16T08:20:38Z <p>How do you configure the views to able to reference a namespace like System.Web.Mvc without having to do &lt;%@ Import Namespace="System.Web.Mvc" %>? I remember seeing this somewhere but my google skills are failing me at the moment.</p> http://stackoverflow.com/questions/1800377/is-it-bad-practice-to-change-state-inside-of-an-if-statement/1800393#1800393 Comment by jdelator on Is it bad practice to change state inside of an if statement? jdelator 2009-11-25T22:35:38Z 2009-11-25T22:35:38Z He means inside the boolean statement of the if statement not the inside the if statement http://stackoverflow.com/questions/1633971/no-horizontal-scroll-bar-on-float-right Comment by jdelator on No horizontal scroll bar on float right jdelator 2009-10-27T22:47:22Z 2009-10-27T22:47:22Z I'm not specifying one. What should I be? http://stackoverflow.com/questions/1592608/what-is-safest-method-to-store-passwords-in-a-table/1592611#1592611 Comment by jdelator on What is safest method to store passwords in a table? jdelator 2009-10-20T06:23:35Z 2009-10-20T06:23:35Z A rainbow attack gets really hard to crack. It's now 32 characters plus the three salt. http://stackoverflow.com/questions/1436077/how-to-split-a-string-while-ignoring-the-case-of-the-delimiter/1436083#1436083 Comment by jdelator on How to split a string while ignoring the case of the delimiter? jdelator 2009-09-16T23:56:30Z 2009-09-16T23:56:30Z So there is no way to take advantage of String.Split? http://stackoverflow.com/questions/1384811/code-golf-mathematical-expression-evaluator-full-pemdas/1386492#1386492 Comment by jdelator on Code Golf: Mathematical expression evaluator (full PEMDAS) jdelator 2009-09-07T01:46:18Z 2009-09-07T01:46:18Z This wins. This is so much better than all the other answers where you can't understand a thing taking place. http://stackoverflow.com/questions/1376077/code-golf-the-wave Comment by jdelator on Code Golf: The wave jdelator 2009-09-03T23:40:31Z 2009-09-03T23:40:31Z Just curious what does the rosetta-stone have to do with this? http://stackoverflow.com/questions/1371608/c-pointer-to-class Comment by jdelator on C++ pointer to class jdelator 2009-09-03T06:16:48Z 2009-09-03T06:16:48Z No, your question is not &quot;smelly&quot;. Keep asking your questions and we will keep answering it. :) http://stackoverflow.com/questions/1320358/is-there-anyway-to-find-unused-css-in-a-website Comment by jdelator on is there anyway to find unused css in a website. jdelator 2009-08-24T03:33:59Z 2009-08-24T03:33:59Z How do you have 6,648 points? http://stackoverflow.com/questions/1274296/select-data-from-sql-db-per-day/1274306#1274306 Comment by jdelator on Select data from SQL DB per day jdelator 2009-08-13T20:17:05Z 2009-08-13T20:17:05Z Just add a where clause for the last 30 days http://stackoverflow.com/questions/1256105/what-is-the-best-jquery-autocomplete-suggest/1256126#1256126 Comment by jdelator on What is the best jQuery Autocomplete/Suggest? jdelator 2009-08-11T07:46:14Z 2009-08-11T07:46:14Z Very nice plugin, adding comment to save a link :) http://stackoverflow.com/questions/1219594/linq-to-sql-causing-foreign-key-constraint-errors/1219605#1219605 Comment by jdelator on Linq to sql causing foreign key constraint errors jdelator 2009-08-02T20:13:17Z 2009-08-02T20:13:17Z Nevermind for some reason I had TeamID on the TournamentParticipant as an identity column. Giving you the answer though because I think this will still improve my code. http://stackoverflow.com/questions/1219594/linq-to-sql-causing-foreign-key-constraint-errors/1219605#1219605 Comment by jdelator on Linq to sql causing foreign key constraint errors jdelator 2009-08-02T20:05:29Z 2009-08-02T20:05:29Z I've changed it to that and I am still seeing the INSERT without TeamID occur before the select statement that grabs the identity column. http://stackoverflow.com/questions/445033/use-linq-to-generate-direct-update-without-select/445106#445106 Comment by jdelator on Use linq to generate direct update without select jdelator 2009-07-09T06:20:19Z 2009-07-09T06:20:19Z This is really stupid, linq to sql should have an update field http://stackoverflow.com/questions/1030118/update-a-column-of-a-table-to-be-a-sequence/1030131#1030131 Comment by jdelator on Update a column of a table to be a sequence jdelator 2009-06-23T07:01:16Z 2009-06-23T07:01:16Z Very nice answer. http://stackoverflow.com/questions/1030118/update-a-column-of-a-table-to-be-a-sequence Comment by jdelator on Update a column of a table to be a sequence jdelator 2009-06-23T06:59:30Z 2009-06-23T06:59:30Z This is for 2008