User Godeke - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T10:01:02Z http://stackoverflow.com/feeds/user/28006 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/250845/leveraging-soap-in-classic-asp 1 Leveraging SOAP in Classic ASP Godeke 2008-10-30T16:34:24Z 2009-11-17T15:20:58Z <blockquote> <p>Clarification: this is not about <em>user agent</em> calls to pages, but Classic ASP calling ASP.NET!</p> </blockquote> <p>I have applications that are midway through a transition from Classic ASP to ASP.NET. There are a half million lines of code, so a complete rewrite of everything at once was simply not plausible, or frankly prudent considering that the vast majority of Classic ASP pages work just fine. We translate pages and functionality as they come up for revision <em>anyway</em>, not just because it is "cool".</p> <p>Now that about half the pages have been converted we have moved some of the key functionality over to ASP.NET. Instead of keeping the legacy versions of this functionality (which means two places to maintain instead of one) I have been moving towards using SOAP to expose this functionality.</p> <p>Well... not really. Instead, we have been using what I used to call "Poor Man's SOAP", although today it is trendy to call it REST. I have been using ServerXMLHTTP to contact the destination page, bundling up a ball of XML and POSTing it over to the ASP.NET side. For the result I have been bundling up some XML and using XPATH to tear it down into variables.</p> <p>All of this works surprisingly well. However, I have been contemplating the built in ASP.NET SOAP features, which would seem to remove the need to custom write landing pages for my cross platform calls... but when I look at consuming SOAP from Classic ASP most suggest using the seemingly depreciated Soap Toolkit. </p> <p>The question is; do any of you have experience with this kind of setup and if so are there any better ways to do it than custom REST pages or Soap Toolkit? I think being able to expose more of the ASP.NET functionality quicker would help with the migration, but I don't want to get myself mired in legacy technology like Soap Toolkit unnecessarily.</p> http://stackoverflow.com/questions/1731395/calculating-a-product-recursively-only-using-addition/1743920#1743920 0 Answer by Godeke for Calculating a product recursively only using addition Godeke 2009-11-16T18:18:00Z 2009-11-16T18:18:00Z <p>Wouldn't a more complete solution (one that can handle negative numbers) be:</p> <pre><code>mult2 :: Int -&gt; Int -&gt; Int mult2 n m | m == 0 = 0 | m &gt; 0 = n + mult2 n (m-1) | m &lt; 0 = mult2 (-n) (-m) </code></pre> http://stackoverflow.com/questions/1732266/non-exponential-formatted-float/1732323#1732323 3 Answer by Godeke for Non-exponential formatted float Godeke 2009-11-13T22:33:57Z 2009-11-14T00:41:23Z <pre><code>string test = "1.85783-16"; char[] signs = { '+', '-' }; int decimalPos = test.IndexOf('.'); int signPos = test.LastIndexOfAny(signs); string result = (signPos &gt; decimalPos) ? string.Concat( test.Substring(0, signPos), "E", test.Substring(signPos)) : test; float.Parse(result).Dump(); //1.85783E-16 </code></pre> <p>The ideas I'm using here ensure the decimal comes before the sign (thus avoiding any problems if the exponent is missing) as well as using LastIndexOf() to work from the back (ensuring we have the exponent if one existed). If there is a possibility of a prefix "+" the first if would need to include <code> || signPos &lt; decimalPos</code>.</p> <p>Other results: </p> <pre><code>"1.85783" =&gt; "1.85783"; //Missing exponent is returned clean "-1.85783" =&gt; "-1.85783"; //Sign prefix returned clean "-1.85783-3" =&gt; "-1.85783e-3" //Sign prefix and exponent coexist peacefully. </code></pre> <p>According to the comments a test of this method shows only a 5% performance hit (after avoiding the String.Format(), which I should have remembered was awful). I think the code is much clearer: only one decision to make.</p> http://stackoverflow.com/questions/1730285/simple-xna-2d-physics-library/1730431#1730431 2 Answer by Godeke for Simple XNA 2d physics library Godeke 2009-11-13T16:44:00Z 2009-11-13T16:44:00Z <p>I have been using Farseer for 2D. It comes with good demos and does what it needs to well enough. It is extensible easily enough thanks to the source being both provided and clearly written.</p> <p>If you outgrow it you will at least know far better what your requirements are. It only took me an afternoon to learn it and start extending it.</p> http://stackoverflow.com/questions/1719886/why-doesnt-ctrl-d-send-eof-in-mono/1719921#1719921 1 Answer by Godeke for Why doesn't CTRL-D send EOF in mono? Godeke 2009-11-12T04:40:23Z 2009-11-12T04:40:23Z <p>CTRL-D is the unix style end of file... because Mono derives from the Microsoft realm does it perhaps use CTRL-Z? (I don't have Mono installed, so I'm taking a shot in the dark here).</p> http://stackoverflow.com/questions/1688465/resharper-warning-access-to-modified-closure/1688478#1688478 6 Answer by Godeke for ReSharper Warning - Access to Modified Closure Godeke 2009-11-06T15:55:16Z 2009-11-06T16:01:04Z <p>The reason for the warning is that inside a loop you might be accessing a variable that is changing. However, the "fix" isn't really doing anything for you in this non-loop context.</p> <p>Imagine that you had a FOR loop and the if was inside it and the string declaration was outside it. In that case the error would be correctly identifying the problem of grabbing a reference to something unstable. </p> <p>An example of what you don't want: </p> <pre><code>string acctStatus foreach(...) { acctStatus = account.AccountStatus[...].ToString(); if (!SettableStatuses().Any(status =&gt; status == acctStatus)) acctStatus = ACCOUNTSTATUS.Pending.ToString(); } </code></pre> <p>The problem is that the closure will grab a reference to acctStatus, but each loop iteration will change that value. In <em>that</em> case it would be better:</p> <pre><code>foreach(...) { string acctStatus = account.AccountStatus[...].ToString(); if (!SettableStatuses().Any(status =&gt; status == acctStatus)) acctStatus = ACCOUNTSTATUS.Pending.ToString(); } </code></pre> <p>As the variable's context is the loop, a new instance will be created each time because we have moved the variable inside the local context (the for loop).</p> <p>The recommendation sounds like a bug in Resharper's parsing of that code. However, in many cases this is a valid concern (such as the first example, where the reference is changing despite its capture in a closure).</p> <p>My rule of thumb is, when in doubt make a local.</p> <p>Here is a real world example I was bitten by:</p> <pre><code> menu.MenuItems.Clear(); HistoryItem[] crumbs = policyTree.Crumbs.GetCrumbs(nodeType); for (int i = crumbs.Length - 1; i &gt; -1; i--) //Run through items backwards. { HistoryItem crumb = crumbs[i]; NodeType type = nodeType; //Local to capture type. MenuItem menuItem = new MenuItem(crumb.MenuText); menuItem.Click += (s, e) =&gt; NavigateToRecord(crumb.ItemGuid, type); menu.MenuItems.Add(menuItem); } </code></pre> <p>Note that I capture the NodeType type local, note nodeType, and HistoryItem crumb.ItemGuid, not crumbs[i].ItemGuid. This ensures that my closure will not have references to items that will change.</p> <p>Prior to using the locals, the events would trigger with the current values, not the captured values I expected. </p> http://stackoverflow.com/questions/1677021/is-r-language-interpreted/1677048#1677048 1 Answer by Godeke for Is R language interpreted? Godeke 2009-11-04T22:14:14Z 2009-11-04T22:14:14Z <p>R doesn't compile. There are projects that try to get it compiled: <a href="http://www.hipersoft.rice.edu/rcc/" rel="nofollow">http://www.hipersoft.rice.edu/rcc/</a> , <a href="http://www.rforge.net/r2c/" rel="nofollow">http://www.rforge.net/r2c/</a> but I can't find any currently supported.</p> <p>That said, the performance on modern hardware seems reasonable for even larger workloads I have thrown at it (millions of records).</p> http://stackoverflow.com/questions/1674390/architecture-and-patterns-for-developing-a-custom-gui-designer-via-c-winforms/1674452#1674452 0 Answer by Godeke for Architecture and patterns for developing a custom GUI designer via C# & WinForms. Godeke 2009-11-04T15:16:53Z 2009-11-04T15:16:53Z <p>If you are looking to leverage "existing artefacts", wouldn't the existing Visual Studio WinForms designer count as the predominate one? Even if they don't have a budget, the Express Edition would seem quite reasonable (it is free) for designing the kinds of flows I have seen in CBT and would avoid a custom solution which will require endless feature enhancement which probably end up being the same as the existing tool.</p> <p>Instead you could focus on the quiz controls and other custom elements, leaving the form layout to a battle tested tool.</p> <p>I don't say this to be sarcastic... quite the opposite, I have lived this road once when we designed our own web forms generation system in Classic ASP many years ago. We thought we could make a simple system, but 12 years later it is as complex as a "real" editor and no where near as polished. I don't regret doing so (there was only Visual Interdev when we started) but I wouldn't do it today.</p> http://stackoverflow.com/questions/1674384/access-denied-when-loading-dependancy-dll-net/1674417#1674417 1 Answer by Godeke for Access denied when loading dependancy .dll .NET Godeke 2009-11-04T15:12:05Z 2009-11-04T15:12:05Z <p>Several possible problems, some detailed here: <a href="http://msdn.microsoft.com/en-us/library/ab4eace3.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ab4eace3.aspx</a></p> <p>You may be asking to load an assembly that makes security demands that are larger than your main application. (Requesting permissions: <a href="http://msdn.microsoft.com/en-us/library/yd267cce.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/yd267cce.aspx</a> )</p> <p>If you are running full trust this is unlikely, but if the DLL you are loading is on the network make sure you have that location trusted by .NET: (trusting a share: <a href="http://blogs.msdn.com/shawnfa/archive/2004/12/30/344554.aspx" rel="nofollow">http://blogs.msdn.com/shawnfa/archive/2004/12/30/344554.aspx</a> )</p> http://stackoverflow.com/questions/1671259/utility-classes-good-or-bad/1671307#1671307 1 Answer by Godeke for Utility classes.. Good or Bad? Godeke 2009-11-04T01:59:02Z 2009-11-04T02:04:07Z <p>I really, really try to avoid them, but who are we kidding... they creep into every system. Nevertheless, in the example given I would use a URL object which would then expose various attributes of the URL (protocol, domain, path and query-string parameters). <em>Nearly</em> every time I want to create a utility class of statics, I can get more value by creating an object that does this kind of work.</p> <p>In a similar way I have created a lot of custom controls that have built in validation for things like percentages, currency, phone numbers and the like. Prior to doing this I had a Parser utility class that had all of these rules, but it makes it so much cleaner to just drop a control on the page that already knows the basic rules (and thus requires only <em>business logic</em> validation to be added).</p> <p>I still keep the parser utility class and these controls <em>hide</em> that static class, but use it extensively (keeping all the parsing in one easy to find place). In that regard I consider it acceptable to have the utility class because it allows me to apply "Don't Repeat Yourself", while I get the benefit of instanced classes with the controls or other objects that use the utilities.</p> http://stackoverflow.com/questions/1616235/using-sqrt-in-a-linq-ef-query/1619022#1619022 1 Answer by Godeke for Using SQRT in a Linq EF Query Godeke 2009-10-24T20:36:47Z 2009-10-24T20:36:47Z <p>I'm using Linq Entities and was able to do this: </p> <pre><code> testEntities entities = new testEntities (); ObjectQuery&lt;Fees&gt; fees = entities.Fees; return from f in fees let s = Math.Sqrt((double)f.FeeAmount) where s &gt; 1.0 select f ; </code></pre> <p>When I check the generated SQL, I get </p> <pre><code>SELECT [t1].[TestTriggerID] FROM ( SELECT [t0].[TestTriggerID], SQRT(CONVERT(Float,[t0].[TestTriggerID])) AS [value] FROM [TestTrigger2] AS [t0] ) AS [t1] WHERE [t1].[value] &gt; @p0 </code></pre> <p>This seems reasonable. I was unable to use the .Where string format to reproduce the same code, but I'm probably missing something obvious.</p> http://stackoverflow.com/questions/1603013/easier-way-to-prevent-numbers-from-showing-in-exponent-notation/1603026#1603026 3 Answer by Godeke for Easier way to prevent numbers from showing in exponent notation Godeke 2009-10-21T19:22:47Z 2009-10-21T19:22:47Z <p>Make your format string a constant (say in your resource file) and use it by name. You avoid seeing the ugly format and gain consistency from control to control in your format (i.e., if you change your mind, all controls will gain the new look).</p> <p>As an alternative (or in conjunction), derive a custom control from the text box and have properties that invoke the different formatting strings you wish to use in an easier syntax.</p> <p>Either way your goal should be not repeat yourself... by placing the configuration in one place you avoid mistyping it eventually and having to track down a strange formatting bug.</p> <p>We do something similar by creating "percent" and "currency" text controls that encapsulate all the formatting and parsing requirements. They work just like text controls otherwise.</p> http://stackoverflow.com/questions/1578670/c-callback-problems/1578955#1578955 1 Answer by Godeke for C# Callback problems Godeke 2009-10-16T16:02:19Z 2009-10-16T16:02:19Z <p>The fact that you have multiple forms operating on the same data means that a better option is to encapsulate that data in a set of "model" classes that can handle both handing out information to your forms and persisting any changes to storage as necessary.</p> <p>The advantage of this is when you have multiple forms that need to deal with the same data, you can publish callbacks on the model objects for change notification. Each form subscribes to the events in the model that it cares about and it means any number of forms can manipulate your model and all the forms can maintain current state by reacting to notifications.</p> <p>When does this way you don't care about which forms are manipulating the data and you don't need to pass anything more than the model class when launching a new form. Likewise, when a form requests a save, all the forms can update the state so they don't show the pending change.</p> http://stackoverflow.com/questions/1572179/linq-using-a-pivot-table-in-linq/1574401#1574401 2 Answer by Godeke for LINQ: Using a pivot table in linq Godeke 2009-10-15T19:08:53Z 2009-10-15T23:20:44Z <p>Think about how you would solve this kind of query in SQL and I think you can apply that reasoning. There are two primary ways of writing this kind of join: the first is to use inner joins from the main table to the join table and again to the result table, with appropriate filters in place. If you are not careful to filter the join correctly you would get multiple rows per main table (which is effectively why you are getting an EntitySet. If you use .FirstOrDefault() against that entity set you will get the Entity you are looking for (assuming that you have filtered down to a single result: if not you will get some random result).</p> <p>An alternative would be to write a subquery, such as </p> <pre><code>Price = (from t in v.StructureGroup.StructureGroupTariffs.Tariffs where t.StructionGroupID = v.StructureGroupID and t.IdTariff = *not sure where this filter comes from* select t.Price).First() </code></pre> <p>The missing filter above is likewise a problem for the first approach: either way you need to uniquely identify the t.Price you want.</p> <p>Here is an example of inner joins (simplified from a schema of mine where Docs are many to many with DocTags via the Doc_DocTag table.</p> <pre><code>from d in Docs join ddt in Doc_DocTags on d.DocGuid equals ddt.DocGuid join dt in DocTags on ddt.DocTagID equals dt.DocTagID select new { d.DocName, dt.DocTagName } </code></pre> <p>If I wanted only one tag:</p> <pre><code>from d in Docs join ddt in Doc_DocTags on d.DocGuid equals ddt.DocGuid join dt in DocTags on ddt.DocTagID equals dt.DocTagID where dt.DocTagName == "Target" select new { d.DocName, dt.DocTagName } </code></pre> <p>This would find only docs with a tag of Target (which would further ensure that multiple DocTags are not possible).</p> http://stackoverflow.com/questions/1568306/display-lookup-value-based-on-foreign-key-in-bindingsource/1568453#1568453 0 Answer by Godeke for Display lookup value based on foreign-key in bindingsource Godeke 2009-10-14T19:28:13Z 2009-10-15T15:28:41Z <p>This kind of read-only lookup happens so often that I created a custom control for this. The code isn't public (built for a client), but the idea is simply to have a data source like a combo box, but only display the item the current bound ID looks up. I inherited from a textbox and added the lookup datasource and forced the readonly.</p> <p>By using the same interface as a combo box I can just drop a combo box in and then swap the combo box with my custom control when I want to clean up the UI. Note that if you have a <em>lot</em> of rows that this will have more overhead than using a view or other flattening of the tables up front.</p> http://stackoverflow.com/questions/1568511/how-do-i-sort-one-vector-based-on-values-of-another/1568670#1568670 1 Answer by Godeke for How do I sort one vector based on values of another Godeke 2009-10-14T20:07:51Z 2009-10-14T20:07:51Z <pre><code>x &lt;- c(2, 2, 3, 4, 1, 4, 4, 3, 3) y &lt;- c(4, 2, 1, 3) for(i in y) { z &lt;- c(z, rep(i, sum(x==i))) } </code></pre> <p>The result in z: 4 4 4 2 2 1 3 3 3</p> <p>The important steps:</p> <ol> <li><p>for(i in y) -- Loops over the elements of interest.</p></li> <li><p>z &lt;- c(z, ...) -- Concatenates each subexpression in turn</p></li> <li><p>rep(i, sum(x==i)) -- Repeats i (the current element of interest) sum(x==i) times (the number of times we found i in x).</p></li> </ol> http://stackoverflow.com/questions/1568216/c-bitwise-or-needs-casting-with-byte-sometimes/1568279#1568279 1 Answer by Godeke for C# Bitwise OR needs casting with byte *sometimes* Godeke 2009-10-14T18:54:21Z 2009-10-14T19:02:22Z <pre><code> b = (byte)(b | BIT_TWO_SET); </code></pre> <p>is all you need to cast to make it compile, at least in Visual Studio 2008 against 2.0. It appears that | promotes the byte to int and you have to demote it again by hand.</p> <p>Yep... a quick run past the standard shows that | returns int (or uint or long or ulong). </p> http://stackoverflow.com/questions/1538534/fetch-rows-before-and-after-the-actual-item-using-linq/1538688#1538688 1 Answer by Godeke for Fetch rows before and after the actual item using LINQ Godeke 2009-10-08T15:51:55Z 2009-10-08T16:06:10Z <p>Using a table I had handy (as you provided no schema), using 5 as a placeholder for an actual variable in <a href="http://www.linqpad.net/" rel="nofollow">LINQPad</a>:</p> <pre><code>var pabove = (from p in PolicyStatuses where p.PolicyStatusID &gt;= 5 orderby p.PolicyStatusID ascending select p).Take(2); var pbelow = (from p in PolicyStatuses where p.PolicyStatusID &lt;= 5 orderby p.PolicyStatusID descending select p).Take(2); pabove.Union(pbelow).Dump(); </code></pre> <p>This will grab one above and one below. Note however that returning null doesn't happen here when you don't find a row above or below, it simply excludes such results. If you actually care, you can take the count of pabove and pbelow to detect if such a record was found.</p> <p>The result (obviously again from my schema):</p> <pre><code>IOrderedQueryable&lt;PolicyStatus&gt; (3 items) PolicyStatusID Status RecordCreated 4 Unknown 8/26/2007 11:06:11 PM 5 Expired 8/26/2007 11:06:11 PM 6 Cancelled 8/26/2007 11:06:11 PM </code></pre> <p>Note that 4, 5 and 6 were found. This has an advantage over loading the entire table and then picking the results near the one you want. Using Take(2) only 3 records should go across the wire from your SQL server to you web server. If your table is small enough, simply query the table with a sort and filter what you need.</p> <p>Here is the SQL produced by LINQ (some fields omitted):</p> <pre><code>SELECT [t2].[PolicyStatusID], [t2].[Status], [t2].[RecordCreated] FROM ( SELECT TOP (2) [t0].[PolicyStatusID], [t0].[Status], [t0].[RecordCreated] FROM [PolicyStatus] AS [t0] WHERE [t0].[PolicyStatusID] &gt;= @p0 ORDER BY [t0].[PolicyStatusID] UNION SELECT TOP (2) [t1].[PolicyStatusID], [t1].[Status], [t1].[RecordCreated] FROM [PolicyStatus] AS [t1] WHERE [t1].[PolicyStatusID] &lt;= @p1 ORDER BY [t1].[PolicyStatusID] DESC ) AS [t2] </code></pre> http://stackoverflow.com/questions/1533082/can-linq-to-sql-be-aware-of-similarities-of-two-tables/1533129#1533129 2 Answer by Godeke for Can Linq-To-Sql be aware of similarities of two tables? Godeke 2009-10-07T17:44:23Z 2009-10-07T19:14:01Z <p>The UNION and CONCAT operator can be used across different tables as easily as a single table multiple times. A link to the UNION and CONCAT operators: <a href="http://blog.benhall.me.uk/2007/08/linq-to-sql-difference-between-concat.html" rel="nofollow">http://blog.benhall.me.uk/2007/08/linq-to-sql-difference-between-concat.html</a></p> <p>If you have slight differences, you can hide them by creating a wrapper object that only exposes the fields that are the same (and renames any mismatches). </p> <p>Here is a LINQPAD example I whipped up using two mismatched tables. It worked fine (merging a fake row I added to the second as expected):</p> <pre><code>var set1 = from t in TestTriggers select new {t.TestTriggerID} ; var set2 = from t in TestTrigger2s select new {t.TestTriggerID} ; set1.Dump(); set2.Dump(); set1.Union(set2).Dump(); set1.Concat(set2).Dump(); </code></pre> <p>Both tables had other columns, but the anonymous type hides that. The results:</p> <pre><code>IOrderedQueryable&lt;&gt; (1 item) TestTriggerID 1 IOrderedQueryable&lt;&gt; (2 items) TestTriggerID 1 2 IOrderedQueryable&lt;&gt; (2 items) TestTriggerID 1 2 IOrderedQueryable&lt;&gt; (3 items) TestTriggerID 1 1 2 </code></pre> <p>You can see that the CONCAT duplicated the 1 row from both tables, while the UNION discards duplicates.</p> http://stackoverflow.com/questions/1478988/dilemma-regarding-database-design-for-a-discussion-board-using-mysql/1479037#1479037 1 Answer by Godeke for Dilemma regarding database design for a discussion board using MySQL Godeke 2009-09-25T19:03:24Z 2009-09-25T19:03:24Z <p>It depends on what features your headlines share with the posts. It may be that headlines are distinct enough that it is better to keep them independent. Additionally, consider that you can use your headline rows as a denormalized performance improvement (update "most recent post" time, user and preview to the headline and you don't need to dig for that on the front page queries). </p> http://stackoverflow.com/questions/1474653/preventing-spamming-of-the-functionality-of-a-php-page/1474694#1474694 7 Answer by Godeke for Preventing spamming of the functionality of a php page. Godeke 2009-09-24T23:29:46Z 2009-09-24T23:35:48Z <p>Although womp's Post-Redirect-Get pattern will solve some problems, if they are deliberately gaming the submission process then I doubt it will prevent the problem except against the lazy (as noted in the linked article, submissions prior to the 302 response will be multiple as the redirect hasn't happened yet).</p> <p>Instead you are probably better putting some information token on the attack page that is not easily reproduced. When you accept the attack, push the attack into a database queue table. Specifically, store the information token sent to the attack page when queuing and check to see if that token has already been used before queuing the attack. </p> <p>A simple source of tokens would be the results of running a random number generator and putting them into a table. Pull the next number for each attack page load and verify that that number had been distributed recently. You can repopulate the tokens on attack page loads and expire any "unused" tokens based on your policy for how long a page should be available before going "stale".</p> <p>In this way you generate a finite set of "valid" tokens, you publish those tokens on the attack page (one per page) and you verify that they token hasn't already been used on the attack processing page. To create repeat attacks the player would have to determine what tokens are valid... repeating the same post will fail because the token has been consumed. Use a BigInt and a decent pseudo-random number generator and the search space makes it unlikely to be easy to circumvent. (Note, you will need a transaction around the token validation and updates to ensure success with this method.)</p> <p>If you have user accounts that require a login, you can generate and store these tokens on the user table (again, using a database transaction wrapped around these steps). Then each user would have a single valid token at a time and multiple submissions would be caught in a similar way.</p> http://stackoverflow.com/questions/1435742/is-programming-trending-towards-complexity/1435770#1435770 7 Answer by Godeke for Is Programming Trending Towards Complexity? Godeke 2009-09-16T22:11:27Z 2009-09-16T22:35:40Z <p>Things are more complex <em>and</em> greatly simplified. Yes, both are possible at the same time.</p> <p>The simplification is that easy thing are now easier. This is what all of the prebuilt toolchains bring to the table. If all you want to do is display some data in CRUD form, you can use Dynamic Data, LINQ to Entities (pointed at your data source) and you are ready to go.</p> <p>The problem is that most people want to go beyond the basics and all the infrastructure can easily <em>get in the way</em> of doing what you actually want to do. Even if it doesn't actively get in the way, there is a large learning curve where the prebuilt toolchain is concerned.</p> <p>This means that the "unwashed masses" programmers have it easier, while those who are doing complex things... are still doing complex things and have to do those things while also learning a much larger infrastructure. </p> <p>The good news is that a lot of what the frameworks allow us to do easily was once upon a time "hard work". A lot of the complex programming we are doing today would have been even <em>more</em> complex as we would have had to developed large swaths of code that we now can simply reference and use. The taller the tool chain, the more complex the project that we can <em>contemplate</em> and <em>successfully implement</em> becomes with one major limitation. </p> <p>Relying on a tall tower of infrastructure takes the control away from the programmer, which means that in high reliability situations you are at the mercy of the framework. There is a reason that highly sensitive systems (say, where lives are at risk) are not built on teetering towers of infrastructure. </p> http://stackoverflow.com/questions/1430631/sql-injection-simplest-solution/1430655#1430655 16 Answer by Godeke for SQL Injection, simplest solution. Godeke 2009-09-16T02:36:38Z 2009-09-16T03:38:28Z <p>Parameterize your variables. Seriously. All modern environments have facilities to do so and you don't have to worry about escape sequences like \' which will turn into \'' with your scheme (in Oracle) which becomes an escaped quote and a regular (terminating) quote.</p> <p>There are plenty of other tricks to pull this off which I'm not enumerating as they aren't helpful.</p> <p>Again: Parameterize your variables. Seriously. If you won't learn how to use the parameterization you <em>will</em> become another hacked statistic.</p> <p>EDIT: Read the links in Paul's answer and here is another: <a href="http://unixwiz.net/techtips/sql-injection.html" rel="nofollow">http://unixwiz.net/techtips/sql-injection.html</a></p> <p>No matter how clever you think your sanitation of strings is, you are doing it wrong. <em>Especially</em> if you have to handle multiple back ends.</p> <p>Composing queries out of strings is one of the few things I will flat out fire people for... the risk such a programmer poses to the company is greater than just about anything else they bring to the table (especially after we make it very clear we won't accept such code on day one and provide an entity framework that makes such things unnecessary).</p> http://stackoverflow.com/questions/1427422/cheap-algorithm-to-find-measure-of-angle-between-vectors/1427461#1427461 8 Answer by Godeke for Cheap algorithm to find measure of angle between vectors Godeke 2009-09-15T14:16:42Z 2009-09-15T14:16:42Z <p>Back in the day of a few K of RAM and machines with limited mathematical capabilities I used lookup tables and linear interpolation. The basic idea is simple: create an array with as much resolution as you need (more elements reduce the error created by interpolation). Then interpolate between lookup values.</p> <p>Here is an example in processing: <a href="http://processing.org/hacks/hacks%3Asincoslookup" rel="nofollow">http://processing.org/hacks/hacks%3Asincoslookup</a></p> <p>You can do this with your other trig functions as well. On the 6502 processor this allowed for full 3D wire frame graphics to be computed with an order of magnitude speed increase.</p> http://stackoverflow.com/questions/1381118/sql-server-2005-trigger-to-hash-password-at-insertion/1381164#1381164 3 Answer by Godeke for sql server 2005 - trigger to hash password at insertion Godeke 2009-09-04T19:37:57Z 2009-09-04T20:00:04Z <p>SQL 2005 has HASHBYTES which will do what you want: <a href="http://msdn.microsoft.com/en-us/library/ms174415.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms174415.aspx</a></p> <p>Just fire a trigger on UPDATE and INSERT using that function around your password and you have avoided storing plain text passwords. Better: write a stored procedure that does the hash and is used to update passwords. (This avoids the overhead of a trigger, which I avoid like the plague unless nothing else will do.)</p> <p>Here is an example I just hacked up:</p> <pre><code>create table TestTrigger2 ( TestTriggerID int not null identity(1,1), Hashed binary(50), PasswordProxy nvarchar(50) ) --select HashBytes('MD5', N'This string') create trigger HashPass2 on TestTrigger2 instead of insert as begin insert into TestTrigger2 (Hashed) select HashBytes('MD5', '@!98ABc'+PasswordProxy) from inserted end insert into TestTrigger2 (PasswordProxy) values ('My password' ) select * from TestTrigger2 </code></pre> <p>When you look at the result of the final query, you will note that PasswordProxy is NULL (it is just there to make a string usable for input) and the Hashed with have the hashed value. The garbage prepended to the PasswordProxy is a salt to avoid the rainbow attack mentioned (it will make your password hashes different from just hashing the base string). Pick something longer and of your own creation.</p> http://stackoverflow.com/questions/1380066/is-there-a-proper-place-for-a-staging-database/1380096#1380096 2 Answer by Godeke for Is there a proper place for a staging database? Godeke 2009-09-04T15:54:28Z 2009-09-04T15:59:39Z <p>In my book a staging environment should be independent because it lets you rehearse the roll-out procedures for a new release. If you are on the same box or same virtual machine you aren't getting the "full" experience of library updates and the like.</p> <p>Personally I like virtual machines because I can pull production back to stage and then update it. This means that my update is <em>very</em> realistic, because all of the edge case data, libraries and such are being reproduced. This is a good thing... I can't count the number of times over the 9 year history of our major product that a library module wasn't included or some update script for the database hit edge cases that weren't detected in development and testing environments.</p> <p>As far as touching the production environment... I would say <em>never</em> do this if there is an alternative. Update a shared library in staging that also impacts production and you will feel the pain. Update the code and cause your web server to go into a tizzy and you brought (at least part of) your live environment down.</p> <p>If you have to fake it, I would recommend sharing with the development environments and just realize that updating production make cause unexpected downtime during the update as you validate everything works. We had to do that for the first few years for budgetary reasons and it can work as long as you don't just update production and walk away.</p> <p>In summary</p> <ul> <li>Production is sacrosanct: don't share any non-production aspects if you can avoid it.</li> <li>Virtual machines are your friend: they let you clone working environments and update them with nearly zero risk (just copy the VM file over any botched update attempts). </li> <li>Staging should be isolated from development to avoid overconfidence with your update routine.</li> </ul> http://stackoverflow.com/questions/1363790/balancing-mac-experience-with-apple-patents/1363861#1363861 1 Answer by Godeke for Balancing Mac Experience with Apple Patents Godeke 2009-09-01T18:17:01Z 2009-09-01T19:03:45Z <p>It would seem to be awfully poor form to go after their own developer base, but companies have acted in stupid ways in the past. The question this is if there is a way to license the patents and/or get a statement of intent? </p> <p>Whatever your opinion of the company, Microsoft at least did something right with the Open Specification <a href="http://www.microsoft.com/Interop/osp/default.mspx" rel="nofollow">http://www.microsoft.com/Interop/osp/default.mspx</a></p> <p>It isn't ironclad, but it at least sets the standard by which they plan to operate in plain view. If Apple has something similar it would definately clear the air. Perhaps in the dev kit there is some clue (I don't do Macintosh development these days, but I don't recall anything like it in the past). </p> http://stackoverflow.com/questions/1363761/entity-framework-entity-sql-vs-linq-to-entities/1363913#1363913 2 Answer by Godeke for entity framework entity sql vs linq to entities Godeke 2009-09-01T18:28:17Z 2009-09-01T18:28:17Z <p>LINQ to Entities does not allow you access to every feature of your database. Being able to "reach into" the database is sometimes necessary for advanced queries, either to pull them off in the first place or to improve the sometimes horrible choices that the LINQ to Entities system will make about your query.</p> <p>That said, I believe that LINQ to Entities should be the first tool reached for. If the performance becomes a problem, or you have something more complex I would then encapsulate that problem piece in a stored procedure and call that. There is no reason for strings being used as the basis of queries these days.</p> http://stackoverflow.com/questions/1354060/mysql-count-and-nulls/1354071#1354071 6 Answer by Godeke for MySQL COUNT() and nulls Godeke 2009-08-30T15:07:26Z 2009-08-30T15:07:26Z <p>Correct. COUNT(*) is all rows in the table, COUNT(Expression) is where the expression is non-null only. </p> <p>If all columns are NULL (which indicates you don't have a primary key, so this shouldn't happen in a normalized database) COUNT(*) <em>still</em> returns all of the rows inserted. Just don't do that. </p> <p>You can think of the * symbol as meaning "in the table" and not "in any column".</p> http://stackoverflow.com/questions/1347944/where-can-i-find-examples-of-procedural-code-converted-to-object-code/1348099#1348099 9 Answer by Godeke for Where Can I Find Examples of Procedural Code Converted to Object Code.... Godeke 2009-08-28T16:26:11Z 2009-08-28T16:33:35Z <p>The reality is that such conversions wouldn't generally be good object oriented code. Why? Because object oriented code isn't simply moving functions into methods and data into members.</p> <p>Instead, a good object should be responsible for all of its data and only take method parameters where those parameters are defining the data that will be operated on.</p> <p>This means there isn't a 1:1 mapping from procedural functions and procedural data structures to the object oriented ones. </p> <p>Having taking a look around I didn't find any examples I cared for online, so I will simply give my refactoring rules for converting procedural code to OOP.</p> <p>The first step is to simply package each module as an object. In other words, just create an object that holds the data and the functions. This is horrible to a purist, but you have to start somewhere. For example, if you had a BankAccount module, you will now have a BankAccount object.</p> <p>Obviously the functions were having the data passed into them from external calls. Here you are looking for how to internalize that data and make it private as much as possible. The goal should be that you get your data in your constructor (at least the starting point) and remove the parameters that used to receive the data manually and replace them with references to that now private data. Using the BankAccount object, all access to the account is now via methods on the object and the actual account data has been internalized.</p> <p>Many of your functions probably returned modified versions of the data structures: stop returning that data directly and have these modifications stay within the private structures. Create accessor properties that return your now private data where necessary and mark them "obsolete" (your goal is to make the object the master of its data and only return <em>results</em> not the internal data). With the BankAccount object, we no longer return the actual account data, but we have properties for CurrentBalance and methods such as AverageBalance(int days) to see the account.</p> <p>Eventually you will have a set of self contained objects which still bear little resemblance to what you would have done if you started with objects in your design, but at least you can continue your refactoring with your new objects. My next step usually to discover that the objects created from such refactoring have way to many responsibilities. At this point some common threads probably have been detected and you should create objects to refactor these common ideas into. If we have BankAccount, we probably have other account types and if we align the methods of all of these account types we can make Account as a base class that implements all the shared features while BackAccount, SavingsAccount and others implement the details.</p> <p>Once the class structure starts to take shape it is time to feel better about the conversion. Refactoring is a process, not an endpoint, so I generally find that my class structure continues to evolve. One of the nice things about having gotten this far is that your data is private and manipulated through methods, so you can refactor the internals more and more freely as you progress.</p> <p>One thing that makes this plausible to do is having good unit tests. When doing procedural to OOP conversions, I often keep the old code around as the "baseline" so I can test against it. I.e., the test can verify against the old procedural system's results. If you don't match up, it is a good idea to find out why. I find that often there is a bug... but sometimes your new cleaner code is actually doing something right that was wrong in the past.</p> <p>Regarding creating "too deep" of object trees: that can be the result of getting too obsessive about inheritance. I find that composites often are a better idea, where you implemented the interfaces for <em>multiple</em> objects rather than trying to get all those features into a single parent object. If you are finding yourself creating parent objects that simply are blends of feature sets, consider simplifying by making an interface for each feature set and implementing those interfaces.</p> http://stackoverflow.com/questions/480775/programmatically-obtaining-big-o-efficiency-of-code/480803#480803 Comment by Godeke on Programmatically obtaining Big-O efficiency of code Godeke 2009-12-09T15:13:30Z 2009-12-09T15:13:30Z As an aside, I have often found that the algorithmically superior solution is actually slower in practice because of that pesky constant that reflects implementation efficiency. The best sorting algorithms, for example, are hybrids that use a simple approach until they reach a specific depth of recursion at which point they use the more &quot;expensive&quot; but &quot;algorithmically better&quot; solution. http://stackoverflow.com/questions/480775/programmatically-obtaining-big-o-efficiency-of-code/480803#480803 Comment by Godeke on Programmatically obtaining Big-O efficiency of code Godeke 2009-12-09T15:08:17Z 2009-12-09T15:08:17Z The poster asked for an &quot;automatic way&quot; to make such determinations. Unless you have solved the halting problem (please share!) there is no automated method. I suggested curve fitting as the closest to automated, especially as you can graph your various algorithmic choices over the problem sizes you expect to handle and expand to handle. I made this suggestion because the original poster was not interested in the analytical approach but an automated one. http://stackoverflow.com/questions/1739675/efficient-queue-in-haskell Comment by Godeke on Efficient queue in Haskell. Godeke 2009-11-16T20:22:14Z 2009-11-16T20:22:14Z I <i>highly</i> recommend Purely Functional Datastructures mentioned by Apocalisp. There are quite a few &quot;aha&quot; moments in that book. http://stackoverflow.com/questions/1732266/non-exponential-formatted-float/1732323#1732323 Comment by Godeke on Non-exponential formatted float Godeke 2009-11-14T00:39:59Z 2009-11-14T00:39:59Z True. I whipped it up in LINQPad and didn't make it a function. To be honest I think it would read better as result = (signPos &gt; decimalPos) ? string.Concat(...) : test; http://stackoverflow.com/questions/1732266/non-exponential-formatted-float/1732323#1732323 Comment by Godeke on Non-exponential formatted float Godeke 2009-11-13T23:44:27Z 2009-11-13T23:44:27Z Cleaned up the sample to use LastIndexOfAny. I was expecting that to slow it down to be honest. http://stackoverflow.com/questions/1732266/non-exponential-formatted-float/1732323#1732323 Comment by Godeke on Non-exponential formatted float Godeke 2009-11-13T23:02:03Z 2009-11-13T23:02:03Z Hmmm. I'm not seeing anything close to that much slowdown vs standard concatenation, although it is slower. Nevertheless, edited to concatenation. http://stackoverflow.com/questions/1719886/why-doesnt-ctrl-d-send-eof-in-mono/1719921#1719921 Comment by Godeke on Why doesn't CTRL-D send EOF in mono? Godeke 2009-11-12T05:18:23Z 2009-11-12T05:18:23Z Hmmm, I never made that distinction... ending input on each operating system was just D (in *nix) or Z (in DOS and Win). This link seems to think CTRL-D is EOF in *nix as well: <a href="http://www.uwyo.edu/askit/displaydoc.asp?askitdocid=259&amp;parentid=1" rel="nofollow">uwyo.edu/askit/&hellip;</a> http://stackoverflow.com/questions/1712487/when-to-use-or-not-lambda-expressions/1712499#1712499 Comment by Godeke on when to use or not Lambda Expressions. Godeke 2009-11-11T02:21:31Z 2009-11-11T02:21:31Z True... I'm not being total clear here. There is a special relationship between lambda's and threads though in that it is very easy (especially in C# 4.0) to spin up a large number of threads using lambdas and as long as you don't share state you make doing so very easy to utilize all those cores we will <i>eventually</i> have. To do so today is premature. http://stackoverflow.com/questions/1677021/is-r-language-interpreted/1677048#1677048 Comment by Godeke on Is R language interpreted? Godeke 2009-11-09T16:17:08Z 2009-11-09T16:17:08Z Two downvotes for providing links to incomplete compilers (which make the point that it is interpreted pretty clear)? Is &quot;read the FAQ&quot; <i>really</i> the new gold standard round here? http://stackoverflow.com/questions/1689674/is-it-ok-for-a-process-to-be-cpu-intensive-for-a-prolonged-period-of-time Comment by Godeke on Is it OK for a process to be CPU intensive for a prolonged period of time? Godeke 2009-11-06T19:26:58Z 2009-11-06T19:26:58Z What kind of processor are we talking about: is it a modern multicore? If so, are you generating threads to tie down all of the cores? Jurily is correct that CPU-bound processes (unless they are heavily treaded and raising priority) tend to be handled just fine by the operating system. http://stackoverflow.com/questions/1689674/is-it-ok-for-a-process-to-be-cpu-intensive-for-a-prolonged-period-of-time/1689695#1689695 Comment by Godeke on Is it OK for a process to be CPU intensive for a prolonged period of time? Godeke 2009-11-06T19:24:15Z 2009-11-06T19:24:15Z Another agreement: when I see someone claim they are CPU bound <i>and</i> slowing the operating system down, I have to wonder if they haven't already been playing with priority <i>OR</i> something else is the cause. In general I have found that modern machines have far more chances of becoming I/O bound (either through direct file activity or swapping). http://stackoverflow.com/questions/517417/is-there-ever-a-time-where-using-a-database-11-relationship-makes-sense/517452#517452 Comment by Godeke on Is there ever a time where using a database 1:1 relationship makes sense? Godeke 2009-10-30T23:19:43Z 2009-10-30T23:19:43Z Yes. It depends on the database (modern designs are storing blobs in the filesystem just by using the correct type) and even with such support one has to be careful to exclude the columns (in SQL explicit column lists are normal, but some ORMs want to drag the entire record). The trick is to know your use pattern: if most of the time the actual data is ignored I would use a 1:1 blob table. If most accesses are downloads of the data I would use the native storage mechanism. http://stackoverflow.com/questions/1639059/invoke-exewith-gui-on-remote-machine/1639209#1639209 Comment by Godeke on invoke exe(with GUI) on remote machine Godeke 2009-10-28T18:35:21Z 2009-10-28T18:35:21Z If you really need to invoke a GUI remotely your best bet is to create a notification tray application (as is common with Virus Scanners and other long running background tools). As the tray application is running the the user's interactive session already, you can launch windows and even other executables. http://stackoverflow.com/questions/1634261/csharp-not-all-code-paths-return-a-value/1634267#1634267 Comment by Godeke on CSharp: Not all code paths return a value. Godeke 2009-10-27T23:28:04Z 2009-10-27T23:28:04Z The code checker doesn't know that... you are giving it credit for understanding algorithms. It only understands code paths (one of which was left out as pointed out by Karim). http://stackoverflow.com/questions/1616235/using-sqrt-in-a-linq-ef-query/1619022#1619022 Comment by Godeke on Using SQRT in a Linq EF Query Godeke 2009-10-27T15:30:33Z 2009-10-27T15:30:33Z LINQ queries actually operate in the sequence they are constructed. FROM defines the source, which the LET augments with a computed value. The WHERE clause now has the item it needs (via the sub-query constructed from the FROM+let) to filter and finally the SELECT feeds values on as the result. Putting the computation in the SELECT would be &quot;too late&quot; for the WHERE clause to act upon without explicitly using that result as a sub-query).