User JoshJordan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T06:18:31Zhttp://stackoverflow.com/feeds/user/80633http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/700205/what-is-your-best-friend-as-a-programmer81What is your "best friend" as a programmer?JoshJordan2009-03-31T06:10:30Z2009-12-01T20:13:13Z
<p>What is the one "thing" (physical object, tool, software package, person, etc.) that is most indispensable to you as a programmer?</p>
<p>I will get the ball rolling by stating that I have long considered a whiteboard to be a programmer's best friend.</p>
http://stackoverflow.com/questions/1790991/books-on-programming-aspects-of-seo0Books on programming aspects of SEO?JoshJordan2009-11-24T15:56:41Z2009-11-29T20:45:11Z
<p>I'm looking to pick up a book that discusses search engine optimization from the programmer's perspective. Any ideas?</p>
http://stackoverflow.com/questions/1795043/autocomplete-filling-out-email-website-address-in-forms-in-flash/1795051#17950514Answer by JoshJordan for Autocomplete filling out Email/Website/Address in Forms in Flash?JoshJordan2009-11-25T06:36:14Z2009-11-25T06:36:14Z<p>Its not the site - its your browser. Generally, browsers look at the name of the form field you're in, and show data they've seen entered in that field before.</p>
<p>It would be a huge security hole if a site were able to look at things you've entered in other sites!</p>
http://stackoverflow.com/questions/1787069/how-to-use-asp-net-mvc-masterpage-with-asp-net-form/1787091#17870910Answer by JoshJordan for How to use ASP.NET MVC MasterPage with asp.net form?JoshJordan2009-11-24T00:41:46Z2009-11-24T00:41:46Z<p>Yes, you can do that.</p>
http://stackoverflow.com/questions/1775943/use-case-diagram-question/1775956#17759561Answer by JoshJordan for Use case diagram questionJoshJordan2009-11-21T16:35:24Z2009-11-21T16:35:24Z<p>I would include them. Your assumption makes sense, and since they do have a direct interaction that causes the system to execute some functionality, I believe that is a legitimate use case that should be modeled lest it be forgotten at some point downstream.</p>
http://stackoverflow.com/questions/1775931/redirect-to-new-blog-using-jquery-or-javascript/1775949#17759490Answer by JoshJordan for Redirect to new blog using jquery or javascriptJoshJordan2009-11-21T16:32:05Z2009-11-21T16:32:05Z<p>The code you've posted is not an AJAX redirect (which really doesn't exist, anyway). That Javascript redirect works fine for me. I don't see any Flash on your page, but the Silverlight is working fine.</p>
http://stackoverflow.com/questions/1746231/which-language-has-better-performance-in-asp-net-vb-net-or-c/1746234#174623412Answer by JoshJordan for Which language has better performance in ASP.NET, VB.NET or C#?JoshJordan2009-11-17T02:33:11Z2009-11-17T02:33:11Z<p>They are both .NET languages, which means that the compile to the same thing: MSIL code. Thus, performance is identical between the two.</p>
http://stackoverflow.com/questions/1616392/why-does-an-empty-loop-use-so-much-processor-time/1616409#161640930Answer by JoshJordan for Why does an empty loop use so much processor time?JoshJordan2009-10-23T23:20:50Z2009-10-23T23:20:50Z<p>With the former, the condition <code>true</code> must be checked by the processor as often as the application can possibly get focus. As soon as the application gets processor attention, it checks <code>true</code>, just like any other loop condition, to see if the next instruction in the loop can be executed. Of course, the next instruction in the loop is also <code>true</code>. Basically, you are forcing the processor to constantly determine whether or not <code>true</code> is true, which, although trivial, when performed constantly bogs the processor down.</p>
<p>In the latter, the processor checks <code>true</code> once, and then executes the next statement. In this case, that is a 1ms wait. Since 1 ms is far greater than the amount of time required to check <code>true</code>, and the processor knows it can do other things during this wait, you free up a lot of power.</p>
http://stackoverflow.com/questions/1517796/how-can-we-tell-what-language-technology-was-used-to-render-an-html-document1How can we tell what language/technology was used to render an HTML document?JoshJordan2009-10-05T00:40:37Z2009-10-05T01:57:14Z
<p>In general, a web application can render any HTML it likes. Therefore, in theory, any language could render identical HTML output.</p>
<p>However, there are some ways we can try to deduce what is running server-side. For instance, file extensions are usually a dead giveaway (although they could technically be faked). Due to my experience with ASP.NET, I know that one way we can identify an ASP.NET application is by the presence of VIEWSTATE in the rendered document, although the lack of viewstate does not necessarily mean that the application is <em>not</em> running on ASP.NET</p>
<p>We could run some OS/server fingerprinting on the server, but in general that would not help much - these days, even Windows servers can run quite a few application platforms. </p>
<p>What other analysis techniques are available that can help us determine what's running on the server? What other clues do certain languages leave?</p>
<p>If we can better understand the artifacts our applications are leaving, perhaps so small that we haven't noticed them, we can begin to better our security by removing them from the output.</p>
http://stackoverflow.com/questions/1512088/how-to-get-all-records-from-thisa-year-onwards-from-linq-to-sql-model/1512106#15121061Answer by JoshJordan for How to get all records from thisa year onwards from LINQ to SQL model? JoshJordan2009-10-02T22:31:33Z2009-10-02T22:31:33Z<pre><code>var allPricesFiltered = allPrices.Where(p => p.Date.Year >= DateTime.Now.Year);
</code></pre>
http://stackoverflow.com/questions/1495782/convert-t-sql-to-linq-to-sql/1495797#14957971Answer by JoshJordan for Convert T-SQL to LINQ-to-SQLJoshJordan2009-09-30T02:04:45Z2009-09-30T02:04:45Z<p>I know this is not exactly what you're looking for, but Linq to SQL has full support for stored procedures. When you're in the DBML designer, you can drag your sproc in and have LTS create strongly-typed methods for you.</p>
http://stackoverflow.com/questions/1484759/quality-of-a-saved-jpg-in-c/1484785#14847852Answer by JoshJordan for Quality of a saved JPG in C#JoshJordan2009-09-27T23:33:57Z2009-09-27T23:33:57Z<p>Check out MSDN's article on <a href="http://msdn.microsoft.com/en-us/library/bb882583.aspx" rel="nofollow">how to set JPEG Compression level</a>.</p>
<p>You need to use the other Save() overload that takes an ImageEncoder and its parameters.</p>
http://stackoverflow.com/questions/1484542/when-unit-testing-do-you-have-to-use-a-database-to-test-crud-operations/1484550#14845500Answer by JoshJordan for When unit testing, do you have to use a database to test CRUD operations?JoshJordan2009-09-27T21:36:53Z2009-09-27T21:36:53Z<p>Really, if you are writing a test that connects to a database, you are doing <em>integration testing,</em> not unit testing.</p>
<p>For unit testing such operations, consider using some typed of mock-database object. For instance, if you have a class that encapsulates your database interaction, extract an interface from it and then create an inheriting class that uses simple in-memory objects instead of actually connecting to the database.</p>
http://stackoverflow.com/questions/1483075/find-out-instantiating-object-in-the-constructor-of-a-class/1483083#14830830Answer by JoshJordan for find out instantiating object in the constructor of a classJoshJordan2009-09-27T08:10:28Z2009-09-27T08:10:28Z<p>Intercepting method calls (including constructors) without changing a ton of existing code is one thing <a href="http://en.wikipedia.org/wiki/Aspect-oriented%5Fprogramming" rel="nofollow">Aspect-oriented programming</a> was made for.</p>
<p>Check out <a href="http://www.eclipse.org/aspectj/" rel="nofollow">AspectJ</a> for a start.</p>
<p>With AspectJ, you can define a "pointcut" that specifies that you want to intercept constructor calls for a certain object or set of objects (using wildcards if need be), and within the interception code ("advice"), you will be given method context, which includes information about the both the calling method and object.</p>
<p>You can even use AspectJ to add fields to your object's to store the parent reference without modifying their existing code (this is called "introduction").</p>
http://stackoverflow.com/questions/1482637/how-can-i-factor-out-the-code-duplication-here/1482641#14826411Answer by JoshJordan for How can I factor out the code duplication here?JoshJordan2009-09-27T02:30:19Z2009-09-27T02:30:19Z<p>Sounds like you need to insert the new abstract class into the inheritance tree at whatever point those three paths come together, but there really isn't enough information to tell. If you could post some of your inheritance tree, that would help a lot.</p>
http://stackoverflow.com/questions/1482394/another-game-of-life-question-infinite-grid/1482410#14824101Answer by JoshJordan for another Game of Life question (infinite grid) ?JoshJordan2009-09-26T23:32:42Z2009-09-26T23:32:42Z<p>It is possible to represent living nodes with some type of sparse matrix in this situation. For instance, if we store a list of <code>(LivingNode, Coordinate)</code> pairs instead of an array of <code>Nodes</code> where each is either living or dead, we are simply changing the <code>Coordinates</code> rather than increasing an array's size. Thus, the space required for this is proportional to the number of <code>LivingNodes</code>.</p>
<p>This solution doesn't work for states where the number of living nodes is constantly increasing, but it works very well for gliders.</p>
<p><strong>EDIT:</strong> So that was off the top of my head. Turns out Wikipedia has an article that shows a much more well-thought out solution. Oh well! :) Enjoy.</p>
http://stackoverflow.com/questions/1481678/how-to-decide-what-radiobutton-is-on-in-a-view/1482360#14823601Answer by JoshJordan for How to decide what radioButton is on in a View?JoshJordan2009-09-26T22:54:22Z2009-09-26T23:01:28Z<p>I haven't looked in to this particular problem at all, but thought I would lend a hand in compacting the code a bit.</p>
<p>To make the follow a bit less verbose:</p>
<pre><code> <% if (ViewData[item.Name] == null)
{ %>
<%= Html.RadioButton("defaultNAME", item.Name)%>
<% }
else
{%>
<%= Html.RadioButton("defaultNAME", item.Name,
(bool)ViewData[item.Name])%>
<% } %>
</code></pre>
<p>You can do this:</p>
<pre><code><%= ViewData[item.Name] == null ? Html.RadioButton("defaultNAME", item.Name) : Html.RadioButton("defaultNAME", item.Name, (bool)ViewData[item.Name]) %>
</code></pre>
<p>I know this doesn't help your question any, but since this is fairly straightforeward code, I think this is a good candidate for squeezing these eight or nine lines down into one.</p>
<p>Good luck!</p>
<p><strong>EDIT:</strong></p>
<p>I realized after submitting that this can be made shorter still. Only one call to <code>Html.RadioButton()</code> is necessary.</p>
<pre><code><% bool defaultValue = false; %>
<%= Html.RadioButton("defaultNAME", item.Name, (bool) (ViewData[item.Name] ?? defaultValue)) %>
</code></pre>
<p>Using the null coalescing operator, we can just grab some default value if ViewData[item.Name] is null. Feel free to hardcode your default value instead of specifying it in a variable. I did that just to make the example clearer. All three code blocks are semantically equivalent (although should produce fairly different IL, considering that the first block drops in and out of ASP markup).</p>
http://stackoverflow.com/questions/1475209/what-to-think-about-when-making-a-project-open-source/1475225#14752259Answer by JoshJordan for What to think about when making a project open source?JoshJordan2009-09-25T03:02:08Z2009-09-25T03:02:08Z<p>In my very humble opinion:</p>
<p>1) If you're set on going open source, be proud of your code. We all know there are mistakes and bugs along the way. There are going to be more, too, so don't feel like you can't display those publically. You can!</p>
<p>2) Definitely. Probably in that, order, too, because that's the order that people using your product are going to read them. They'll have to use your software before they decide to work on it.</p>
<p>3) The best advice I can give is to have clear build instructions, hopefully with scripts to help people configure the environment. A common plague with open source software is requiring new developers to download tons of libraries and configure their box to work <em>just right</em> in order to be able to build the software. That, to me, is very frustrating and can put me off very quickly.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/1474329/asp-net-how-would-i-determine-the-length-of-time-a-user-has-been-on-the-site/1474353#14743531Answer by JoshJordan for (ASP.NET) How would I determine the length of time a user has been on the site?JoshJordan2009-09-24T21:49:25Z2009-09-24T21:49:25Z<p>The answer does lie in Globals.asax, but Application_Start is not it. That is used for when the ASP.NET application actually starts.</p>
<p>I would add DateTime.Now to the session in the Session_Start method in Globals.asax. Then, you can either check it on each page load (for instance, in a base page or Master page's onload event), or use Ajax to poll the server.</p>
http://stackoverflow.com/questions/1457810/error-cs0161-not-all-code-paths-return-a-value/1457827#14578270Answer by JoshJordan for Error CS0161: Not all code paths return a valueJoshJordan2009-09-22T02:13:56Z2009-09-22T02:13:56Z<p>You appear not to be returning <code>myDT</code> at the end of <code>MergeTA().</code></p>
<p>That method is of type <code>DataTable</code>, so all code paths through it must return a <code>DataTable</code>.</p>
http://stackoverflow.com/questions/1452687/asp-net-user-roles-management-where-to-begin/1452698#14526982Answer by JoshJordan for Asp.net User Roles Management: Where to BeginJoshJordan2009-09-21T03:01:59Z2009-09-21T03:01:59Z<p>I would open up Visual Studio, create a new ASP.NET Web Application project, and click the "Configure ASP.NET" button on the top-right hand corner of the Solution Explorer. If you navigate to the Security section, you can start creating Users and Roles. The tool basically describes exactly how they work to you.</p>
http://stackoverflow.com/questions/1452581/why-dont-the-html-helpers-output-anything-in-this-asp-mvc-view/1452600#14526001Answer by JoshJordan for Why don't the HTML helpers output anything in this ASP MVC view?JoshJordan2009-09-21T02:23:53Z2009-09-21T02:23:53Z<p>It is important to check the return types of the <code>HtmlHelper</code> methods. Some, such as <code>RenderPartial</code>, return <code>void</code>. These internally used <code>Response.Write()</code> or another method to output some HTML directly to the response steream.</p>
<p>Thus, they can be used in an ASP code block, which executes any inline code, like so:</p>
<pre><code><% Html.RenderPartial("SubsciberProfile") %>
</code></pre>
<p>However, most of the built-in form methods, such as <code>Html.TextBox</code>, return a <code>string</code>. In these cases, you must execute the code <em>and</em> send it to the response. If you used</p>
<pre><code><% Html.TextBox("subscriberEmail") %>
</code></pre>
<p>then the TextBox HTML would be returned as a <code>string</code> and promptly discarded. It is the equivalent of doing something like this:</p>
<pre><code>string name = "John Doe";
name.Replace("Doe","Smith");
</code></pre>
<p>Note that the value returned by <code>Replace</code> is never assigned to anything, so the evaluation of the method is performed but its return value never used.</p>
<p>Instead, we must use something like this:</p>
<pre><code><%= Html.TextBox("subscriberEmail") %>
</code></pre>
<p>Note the equals sign! This means the code block should evaluate <em>and output</em> the result of the method. As pointed out above, <code><%= someString %></code> is shorthand for <code><% Response.Write(someString) %></code>. This is subtle, but very important to remember.</p>
http://stackoverflow.com/questions/1430481/how-to-test-if-web-site-written-in-asp-net-still-alive/1430508#14305082Answer by JoshJordan for How to test if web site written in ASP.Net still alive?JoshJordan2009-09-16T01:46:52Z2009-09-16T01:46:52Z<p>In the essence of Papuccino's answer: you can actually create web services that are embedded in the C# code-behind of your WebForms pages by marking them with the <code>[WebMethod]</code> attribute. Those will reside within the web application, not just the server.</p>
http://stackoverflow.com/questions/1415653/asp-net-mvc-turn-keywords-tokens-in-view-to-html-helper-code/1415731#14157310Answer by JoshJordan for ASP.NET MVC Turn "Keywords/Tokens" in View to Html Helper CodeJoshJordan2009-09-12T17:54:07Z2009-09-12T17:54:07Z<p>Cool. Sounds like a useful feature. Have fun coding it, and do let us know if you have any questions.</p>
http://stackoverflow.com/questions/1413367/website-in-pure-c/1413383#14133836Answer by JoshJordan for Website in pure C#JoshJordan2009-09-11T21:31:47Z2009-09-11T22:33:20Z<p>Yes, you can use HttpHanders to handle all your requests. An HttpHandler is a class that can receive a request directly, and handle it all with code. It is often used to catch a request for an image, and serve it for a database, but you could certainly use it to do what you want.</p>
<p>Check out the <a href="http://msdn.microsoft.com/en-us/library/ms227675%28VS.80%29.aspx" rel="nofollow">MSDN introduction to using HttpHandlers</a>. Please post a comment if you have any more questions about it.</p>
<p>ASP.NET MVC is another option, but that still uses ASPX markup by default. You could, potentially, find another view engine that you like more. I don't know anything about that, though. (<em>edited - thanks Joel!</em>)</p>
<p><strong>Edit:</strong> Keep in mind that you are technically still within an ASP.NET project when using HttpHandlers, but that's just to get the Request/Response/Server Context/etc Framework running around you. You can still work 100% with C# code.</p>
http://stackoverflow.com/questions/1408846/development-experience-with-netsuite/1408894#14088940Answer by JoshJordan for Development experience with NetSuiteJoshJordan2009-09-11T03:54:35Z2009-09-11T03:54:35Z<p>I really don't have much input for you, but if you're looking for a fresh perspective...</p>
<p>The first answer to the SO question you linked would be more than enough for me to want to decline this opportunity. Hearing that much frustration vented by a (former) employee of NetSuite is scary stuff.</p>
http://stackoverflow.com/questions/1408785/how-would-you-convert-this-php-code-to-asp-net-mvc/1408793#14087937Answer by JoshJordan for how would you convert this php code to asp.net mvc?JoshJordan2009-09-11T03:11:40Z2009-09-11T03:11:40Z<p>With my keyboard, and maybe an IDE.</p>
http://stackoverflow.com/questions/1408746/url-rewriting-temporary-solution-asp-net-3-5/1408773#14087731Answer by JoshJordan for URL Rewriting, Temporary Solution, ASP.Net 3.5JoshJordan2009-09-11T03:01:12Z2009-09-11T03:01:12Z<p>I wrote up an introduction to <a href="http://www.joshjordan.com/how-to-use-url-rewriting-in-aspnet-332" rel="nofollow">URL Rewriting in ASP.NET</a> on my blog, for what its worth. Feel free to post more questions here to clarify any specific issues you have.</p>
http://stackoverflow.com/questions/1408009/software-engineering-application-development-contests0Software Engineering/Application Development ContestsJoshJordan2009-09-10T22:11:45Z2009-09-10T22:23:18Z
<p>There are a few threads on SO that discuss coding contents & competitions. Unfortunately, many of them are either contrived problems, or based entirely on theory, math, and/or algorithms. Where can I find some contests that focus on the application development process, wherein the competetitors deliver an entire, functional & usable product as their submission?</p>
http://stackoverflow.com/questions/1403318/protocol-development-to-programming-image-processing-algorithms/1403335#14033353Answer by JoshJordan for protocol development to programming image processing algorithmsJoshJordan2009-09-10T04:21:12Z2009-09-10T04:21:12Z<p>Just wanted to confirm that the Gonzalez and Woods text is considered by many to be <strong>the</strong> fundamental literature on the subject. Its breadth will get you started on whatever you're working on, and its examples are very solid. I read it cover to cover and really learned a lot from it.</p>
http://stackoverflow.com/questions/1882065/how-to-display-none-through-code-behindComment by JoshJordan on how to display none through code behindJoshJordan2009-12-10T16:14:27Z2009-12-10T16:14:27Z@earlz: It won't display <i>initially</i>, but it can be changed with Javascript.http://stackoverflow.com/questions/1806994/is-there-any-server-configaurations-needs-to-change-for-session-managementComment by JoshJordan on is there any server configaurations needs to change for session management JoshJordan2009-11-27T06:09:56Z2009-11-27T06:09:56ZPlease accept some answers to your previous questions.http://stackoverflow.com/questions/1795043/autocomplete-filling-out-email-website-address-in-forms-in-flash/1795051#1795051Comment by JoshJordan on Autocomplete filling out Email/Website/Address in Forms in Flash?JoshJordan2009-11-25T06:38:47Z2009-11-25T06:38:47ZDepends on what you mean by "control." The idea of the feature is that developers should name their form fields meaningfully, like "firstname", "email", and so forth, so that the browser can suggest useful autocomplete values.http://stackoverflow.com/questions/1790991/books-on-programming-aspects-of-seo/1791139#1791139Comment by JoshJordan on Books on programming aspects of SEO?JoshJordan2009-11-24T20:48:03Z2009-11-24T20:48:03ZWell, all I had to go on was the title and the reviews, since you didn't post any text in you answer.http://stackoverflow.com/questions/1790991/books-on-programming-aspects-of-seo/1791139#1791139Comment by JoshJordan on Books on programming aspects of SEO?JoshJordan2009-11-24T16:39:04Z2009-11-24T16:39:04ZSounds like its centered on marketinghttp://stackoverflow.com/questions/762033/is-it-practical-to-program-with-your-feet/1234131#1234131Comment by JoshJordan on Is it practical to program with your feet?JoshJordan2009-11-20T16:41:22Z2009-11-20T16:41:22Z+1 for "jumped"http://stackoverflow.com/questions/1768609/how-i-make-jquery-month-event-calender-from-scratchComment by JoshJordan on How i make jquery month event calender from scratch?JoshJordan2009-11-20T06:02:24Z2009-11-20T06:02:24ZOkay. Let us know if you have any questions.http://stackoverflow.com/questions/1760748/why-do-i-lately-have-to-be-a-master-of-big-o-sorting-searching-trees-graphsComment by JoshJordan on Why do I lately have to be a master of big-O, sorting, searching, trees, graphs, large scale efficient data processing algorithms?JoshJordan2009-11-19T04:04:29Z2009-11-19T04:04:29ZRealization != a questionhttp://stackoverflow.com/questions/1760748/why-do-i-lately-have-to-be-a-master-of-big-o-sorting-searching-trees-graphsComment by JoshJordan on Why do I lately have to be a master of big-O, sorting, searching, trees, graphs, large scale efficient data processing algorithms?JoshJordan2009-11-19T03:43:42Z2009-11-19T03:43:42ZIs this a rhetorical question?http://stackoverflow.com/questions/360887/using-version-control-for-home-development/360955#360955Comment by JoshJordan on Using Version Control for Home Development?JoshJordan2009-11-18T01:10:13Z2009-11-18T01:10:13ZIn Russia, source controls you!http://stackoverflow.com/questions/1584322/how-to-redirect-to-new-page-with-javascript-after-submit-html-form/1584330#1584330Comment by JoshJordan on how to redirect to new page with javascript , after submit html form ?JoshJordan2009-11-17T03:01:54Z2009-11-17T03:01:54ZEspecially since his answer does not answer the question.http://stackoverflow.com/questions/1746302/c-or-operatorComment by JoshJordan on C# 'or' operator?JoshJordan2009-11-17T03:00:24Z2009-11-17T03:00:24ZTo be clear, "or" is an operator and not a statement.http://stackoverflow.com/questions/1746231/which-language-has-better-performance-in-asp-net-vb-net-or-c/1746234#1746234Comment by JoshJordan on Which language has better performance in ASP.NET, VB.NET or C#?JoshJordan2009-11-17T02:36:53Z2009-11-17T02:36:53ZYep. There are tools to do it as well.http://stackoverflow.com/questions/1705008/simple-proof-that-guid-is-not-unique/1705038#1705038Comment by JoshJordan on simple proof that GUID is not uniqueJoshJordan2009-11-10T05:04:27Z2009-11-10T05:04:27Z@tylerl: You'll run out of memory long before you find a collision. You don't want your program to run for days and then get an OutOfMemory excep :)http://stackoverflow.com/questions/1705008/simple-proof-that-guid-is-not-uniqueComment by JoshJordan on simple proof that GUID is not uniqueJoshJordan2009-11-10T00:57:10Z2009-11-10T00:57:10ZAs a software developer, what would you say if a user came to you and said "it's not working"?