User LFSR Consulting - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:33:37Z http://stackoverflow.com/feeds/user/33226 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/761204/what-resources-exist-for-database-performance-tuning 45 What resources exist for Database performance-tuning? LFSR Consulting 2009-04-17T16:45:17Z 2009-12-12T13:50:45Z <p>What good resources exist for understanding database tuning on the major engines and advancing your knowledge in that area?</p> <p>The idea of this question is to collect the shed load of resources that invariably exist, so that people can have a "one stop" knowledge shop of the good, peer approved resources.</p> <p><hr /></p> <p><strong>General SQL</strong></p> <ul> <li><a href="http://books.google.com/books?id=3H9CC54qYeEC&amp;dq=sql+performance+tuning&amp;printsec=frontcover&amp;source=bn&amp;hl=en&amp;ei=1dDoSYmjMOrlnQfX-bSYBw&amp;sa=X&amp;oi=book%5Fresult&amp;ct=result&amp;resnum=4" rel="nofollow">Book: SQL Performance Tuning</a></li> <li><a href="http://books.google.com/books?id=pKXF7UU0gBYC&amp;printsec=frontcover&amp;dq=sql%2Btuning" rel="nofollow">Book: SQL Tuning</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0596008945" rel="nofollow">Book: The Art of SQL</a></li> </ul> <p><strong>PostgreSQL</strong> (<a href="http://wiki.postgresql.org/" rel="nofollow">wiki</a>) (<a href="http://www.pgsql.ru/db/pgsearch/" rel="nofollow">search postgre</a>)</p> <ul> <li><a href="http://wiki.postgresql.org/wiki/Performance%5FOptimization" rel="nofollow">Performance Optimization</a></li> <li><a href="http://www.mohawksoft.org/?q=node/56" rel="nofollow">Quick PostgreSQL Optimization</a></li> <li><a href="http://explain-analyze.info/" rel="nofollow">Explain Analyze Interpreter</a></li> <li><a href="http://www.postgresql.org/docs/current/static/performance-tips.html" rel="nofollow">PostgreSQL Performance Tips</a></li> </ul> <p><strong>MySQL</strong></p> <ul> <li><a href="http://stackoverflow.com/questions/368858/hidden-features-of-mysql">Hidden Features of MySQL</a></li> <li><a href="http://oreilly.com/catalog/9780596101718/" rel="nofollow">Book: High Performance MySQL</a> / <a href="http://www.mysqlperformanceblog.com/" rel="nofollow">Blog: High Performance MySQL</a></li> <li><a href="http://www.xaprb.com/blog/" rel="nofollow">Blog: Xaprb (for MySQL DBAs)</a></li> </ul> <p><strong>Oracle</strong></p> <ul> <li><a href="http://stackoverflow.com/questions/79266/how-do-you-interpret-a-querys-explain-plan">How do you interpret a query's explain plan?</a></li> <li><a href="http://www.ixora.com.au/scripts/" rel="nofollow">Oracle Advanced Tuning Scripts</a></li> <li><a href="http://download.oracle.com/docs/cd/B28359%5F01/server.111/b28274/toc.htm" rel="nofollow">Oracle Database Performance Tuning Guide</a></li> <li><a href="http://asktom.oracle.com" rel="nofollow">Ask Tom</a></li> <li><a href="http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14200/toc.htm" rel="nofollow">Oracle Database SQL Reference</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/1590599179" rel="nofollow">Book: Understanding Oracle Performance</a></li> </ul> <p><strong>MS SQL Server</strong></p> <ul> <li><a href="http://www.sql-server-performance.com/index.aspx" rel="nofollow">SQL Server Performance</a> </li> <li><a href="http://downloads.red-gate.com/ebooks/HighPerformanceSQL%5Febook.zip" rel="nofollow">eBook: High Performance SQL Server</a></li> <li><a href="http://stackoverflow.com/questions/103423/what-are-the-best-sql-server-performance-optimization-techniques">SO Question: What are the best SQL Server performance optimization techniques?</a></li> <li><a href="http://www.brentozar.com/sql-server-performance-tuning/" rel="nofollow">Brent Ozar's Perf Tuning Page</a></li> <li><a href="http://sqlserverpedia.com/wiki/Performance%5FTuning" rel="nofollow">SqlServerPedia's Perf Tuning Page</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0735626243" rel="nofollow">Book: Sql Server 2008 Internals</a></li> <li><a href="http://www.simple-talk.com/sql/performance/how-to-identify-slow-running-queries-with-sql-profiler/" rel="nofollow">How to Identify Slow Running Queries with SQL Profiler</a></li> </ul> <p><strong>Sybase SQL Anywhere</strong></p> <ul> <li><a href="http://sqlanywhere.blogspot.com/" rel="nofollow">Blog: SQL Anywhere</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/1556225067" rel="nofollow">Book: SQL Anywhere Studio 9 Developer's Guide</a></li> </ul> <p><strong>JDBC</strong></p> <ul> <li><a href="http://www.javaperformancetuning.com/tips/jdbc.shtml" rel="nofollow">JDBC Performance Tips</a></li> </ul> http://stackoverflow.com/questions/1889229/the-logic-behind-macoss-expose/1889268#1889268 2 Answer by LFSR Consulting for The logic behind MacOS's Exposé LFSR Consulting 2009-12-11T16:41:22Z 2009-12-11T16:47:51Z <p>The generalized idea of what you're looking for is called <a href="http://en.wikipedia.org/wiki/Graph%5Fdrawing" rel="nofollow">Graph Drawing</a>:</p> <blockquote> <p>[The] drawing of a graph is basically a pictorial representation of an embedding of the graph in the plane, usually aimed at a convenient visualization of certain properties of the graph in question or of the object modeled by the graph.</p> </blockquote> <p>Exposé would use an algorithm out of this, or a similar family to derive it's window layout functions. You can also have a look at the source code for the <a href="http://www.graphviz.org/" rel="nofollow">Graphviz project</a>. It has algorithms for laying out graph nodes much the same way Exposé would.</p> <p>As to shuffling windows off to the side. It's likely a "dumb" algorithm that takes the windows position and moves it to the closest side.</p> http://stackoverflow.com/questions/1821989/why-do-designers-use-lorem-ipsum-dolor-to-fill-space/1822034#1822034 1 Answer by LFSR Consulting for Why do designers use "Lorem Ipsum Dolor" to fill space? LFSR Consulting 2009-11-30T19:56:13Z 2009-11-30T19:56:13Z <p>I like <a href="https://gettingreal.37signals.com/ch11%5FUse%5FReal%5FWords.php" rel="nofollow">37 Signals</a> take on Ipsum text, from <a href="https://gettingreal.37signals.com/index.php" rel="nofollow">Getting Real</a>:</p> <blockquote> <p>Insert actual text instead of lorem ipsum</p> <p>Lorem ipsum dolor is a trusted friend of designers. Dummy text helps people get what the design will look like once it's fleshed out. But dummy text can be dangerous too.</p> <p>Lorem ipsum changes the way copy is viewed. It reduces text-based content to a visual design element — a shape of text — instead of what it should be: valuable information someone is going to have to enter and/or read. Dummy text means you won't see the inevitable variations that show up once real information is entered. It means you won't know what it's like to fill out forms on your site. Dummy text is a veil between you and reality.</p> </blockquote> http://stackoverflow.com/questions/1294407/understanding-the-asp-net-application-folders 2 Understanding the ASP.NET application folders LFSR Consulting 2009-08-18T14:53:31Z 2009-11-26T03:03:26Z <p>The application folders in ASP.NET are used for storing various elements critical to running a website. I want to get a handle on understanding these folders in more depth, specifically the folder accessibility. According to the article on <a href="http://msdn.microsoft.com/en-us/library/ex526337.aspx" rel="nofollow">ASP.NET Web Site Layout</a>:</p> <blockquote> <p>The content of application folders, except for the App_Themes folder, is not served in response to Web requests, but it can be accessed from application code.</p> </blockquote> <p>Any browser request to these folders results in a "404 - Page Not Found." </p> <p>So what prevents folders like <code>App_Code</code>, <code>App_Data</code>, <code>App_WebReferences</code>, <code>bin</code>, etc. from being served to users? Is it an IIS hard coded <em>"don't serve this folder?"</em> Is it a permissions configuration? And is there anyway to knowingly/unknowingly circumvent this?</p> http://stackoverflow.com/questions/1773090/regular-expression-for-asp-net-id-using-javascript/1773115#1773115 1 Answer by LFSR Consulting for Regular Expression for ASP.NET ID Using Javascript LFSR Consulting 2009-11-20T20:40:06Z 2009-11-20T20:40:06Z <p>This will accomplish what you're looking for:</p> <pre><code>__(.*)(?=Dont) </code></pre> <p>You seem to be mixing up what a <a href="http://www.regular-expressions.info/charclass.html" rel="nofollow">character class</a> - square brackets <code>[]</code> - does, instead you should be using regular brackets <code>()</code>.</p> <p>In your regex <code>[__]</code> will only match a single underscore <code>_</code> and <code>[.]</code> will match a single period. </p> http://stackoverflow.com/questions/1759809/security-weak-link/1759823#1759823 4 Answer by LFSR Consulting for Security weak link LFSR Consulting 2009-11-18T23:17:48Z 2009-11-18T23:22:58Z <p>One reason is that most users have the same password for multiple accounts. An unhashed password means my accounts on other sites could become compromised - especially since email is a common field for logins. By hashing passwords, if a site has their db stolen I'm protected from having my email account compromised at the same time.</p> http://stackoverflow.com/questions/1757892/current-common-practices-in-web-application-architecture/1757924#1757924 1 Answer by LFSR Consulting for Current common practices in web application architecture LFSR Consulting 2009-11-18T18:04:27Z 2009-11-18T18:04:27Z <p><a href="http://en.wikipedia.org/wiki/Model-view-presenter" rel="nofollow">Model-View-Presenter (MVP)</a> is a derivative of the MVC pattern. Application of MVP is similar to MVC; it's worth taking a look at and having in your bag of tricks. </p> http://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years/753969#753969 5 Answer by LFSR Consulting for What made programming easier in the last couple of years? LFSR Consulting 2009-04-15T22:21:42Z 2009-11-16T15:53:44Z <p><a href="http://blogs.msdn.com/innovation/archive/2009/03/26/launching-low-bandwidth-loband-beta-for-long-haul.aspx" rel="nofollow">Loband MSDN!</a></p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/system.xml.linq.xelement%28classic%29.aspx" rel="nofollow">XElement (Hi)</a> </li> <li><a href="http://msdn.microsoft.com/en-us/library/system.xml.linq.xelement%28lightweight%29.aspx" rel="nofollow">XElement (Mid)</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/system.xml.linq.xelement%28loband%29.aspx" rel="nofollow">XElement (Lo)</a></li> </ul> <p>Seriously, you <strong>need</strong> to look at this if you use MSDN! Props to Frank Krueger for <a href="http://stackoverflow.com/questions/753871/how-do-see-the-loband-version-of-msdn-affecting-your-own-web-development-closed">pointing this out</a></p> http://stackoverflow.com/questions/1722896/vb-to-c-functions/1722914#1722914 8 Answer by LFSR Consulting for VB to C# Functions LFSR Consulting 2009-11-12T15:14:18Z 2009-11-12T19:10:51Z <pre><code>VB C# UBound() = yourArray.GetUpperBound(0) or yourArray.Length for one-dimesional arrays LBound() = yourArray.GetLowerBound(0) IsNothing() = Object.ReferenceEquals(obj,null) Chr() = Convert.ToChar() Len() = "string".Length UCase() = "string".ToUpper() LCase() = "string".ToLower() Left() = "string".Substring(0, length) Right() = "string".Substring("string".Length - desiredLength) RTrim() = "string".TrimEnd() LTrim() = "string".TrimStart() Trim() = "string".Trim() Mid() = "string".Substring(start, length) Replace() = "string".Replace() Split() = "string".Split() Join() = String.Join() MsgBox() = MessageBox.Show() IIF() = (boolean_condition ? "true" : "false") </code></pre> <p><strong>Notes</strong></p> <ul> <li><code>yourArray.GetUpperBound(0)</code> vs <code>yourArray.Length</code>: if the array is zero-length, GetUpperBound will return -1, while Length will return 0. <code>UBound()</code> in VB.NET will return -1 for zero-length arrays.</li> <li>The VB string functions uses a one based index, while the .NET method uses a zero based index. I.e. <code>Mid("asdf",2,2)</code> corresponds to <code>"asdf".SubString(1,2)</code>.</li> <li><code>?</code> is not the exact equivalent of <code>IIf</code> because <code>IIf</code> always evaluates <em>both</em> arguments, and <code>?</code> only evaluates the one it needs. This could matter if there are side effects of the evaluation ~ <em>shudder!</em></li> </ul> http://stackoverflow.com/questions/1718994/list-of-cdns-for-common-components-files 1 List of CDN's for common components/files LFSR Consulting 2009-11-12T00:13:35Z 2009-11-12T00:19:05Z <p>It seems that the popularity of jQuery and MS AJAX, as well as tools like YSlow &amp; Google Page Speed have given rise to common components being hosted on <a href="http://en.wikipedia.org/wiki/Content%5Fdelivery%5Fnetwork" rel="nofollow">Content Delivery Networks (CDN)</a>.</p> <p>So which CDN's exist and what files do they serve?</p> http://stackoverflow.com/questions/1718994/list-of-cdns-for-common-components-files/1718995#1718995 1 Answer by LFSR Consulting for List of CDN's for common components/files LFSR Consulting 2009-11-12T00:14:12Z 2009-11-12T00:14:12Z <p><a href="http://code.google.com/apis/ajaxlibs/" rel="nofollow">Google</a> offers a CDN for:</p> <ul> <li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery" rel="nofollow">jQuery</a></li> <li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#jqueryUI" rel="nofollow">jQuery UI</a></li> <li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#prototype" rel="nofollow">Prototype</a></li> <li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#script%5Faculo%5Fus" rel="nofollow">script.aculo.us</a></li> <li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#mootools" rel="nofollow">MooTools</a></li> <li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#dojo" rel="nofollow">Dojo</a></li> <li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#swfobject" rel="nofollow">SWFObject</a></li> <li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#yui" rel="nofollow">Yahoo! User Interface Library (YUI)</a></li> <li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#ext-core" rel="nofollow">Ext Core</a></li> <li><a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#chrome-frame" rel="nofollow">Chrome Frame</a></li> </ul> http://stackoverflow.com/questions/1688771/how-does-the-iis-7-asp-net-pipeline-work/1688810#1688810 4 Answer by LFSR Consulting for How does the IIS 7 / ASP.Net pipeline work? LFSR Consulting 2009-11-06T16:42:40Z 2009-11-06T16:49:35Z <p>Here's an image describing the IIS 6 &amp; ASP.NET pipeline from <a href="http://learn.iis.net/page.aspx/243/aspnet-integration-with-iis7/" rel="nofollow">Learn IIS.NET</a>:</p> <p><img src="http://learn.iis.net/Content%5FCache/243/fig1.jpg" alt="IIS 6 pipeline"></p> <p>Here's an image describing the IIS 7 &amp; ASP.NET pipeline from <a href="http://learn.iis.net/page.aspx/243/aspnet-integration-with-iis7/" rel="nofollow">Learn IIS.NET</a>: <img src="http://learn.iis.net/Content%5FCache/243/fig2.jpg" alt="IIS 7 pipeline"></p> <p>And finally here's an image for the MVC pipeline that Red-Gate put together:</p> <p><img src="http://imgur.com/yL9vG.png" alt="RedGate ASP.NET MVC request handling pipeline poster"></p> <p><a href="http://www.red-gate.com/products/ants%5Fperformance%5Fprofiler/be%5Fahead%5Fof%5Fthe%5Fgame%5Fposter1.htm?utm%5Fsource=infoq&amp;utm%5Fmedium=textad&amp;utm%5Fterm=2230&amp;utm%5Fcontent=nlv-aheadgame-poster-vrc&amp;utm%5Fcampaign=antsperformanceprofiler" rel="nofollow">The pdf can be downloaded from RedGate</a></p> http://stackoverflow.com/questions/1669825/how-come-my-ie-conditional-statements-do-not-work-inside-style-tags/1669859#1669859 9 Answer by LFSR Consulting for how come my IE conditional statements do not work inside style tags? LFSR Consulting 2009-11-03T20:12:46Z 2009-11-03T20:12:46Z <p>Firstly your code doesn't work - you should have the css read <code>.color</code> not <code>.class</code></p> <p>Second the conditional statements just don't work inside css. So instead write your code such that the conditional is around the IE specific styling. </p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;style type="text/css"&gt; .color{ color:red; } &lt;/style&gt; &lt;!--[if IE]&gt; &lt;style type="text/css"&gt; .color{ color:blue; } &lt;/style&gt; &lt;![endif]--&gt; &lt;/head&gt; &lt;body&gt; &lt;!--[if IE]&gt; This browser is IE &lt;![endif]--&gt; &lt;p class="color"&gt;Color changing text based on browser&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1669541/replacing-do-while-loops/1669586#1669586 5 Answer by LFSR Consulting for Replacing Do ... While Loops LFSR Consulting 2009-11-03T19:24:10Z 2009-11-03T19:24:10Z <p><code>Do..While</code> loops are near exact to <code>While</code> loops, except that they ensure the code within the <code>Do..While</code> loop executes <em>at least</em> once. So the simple way to convert <code>Do..While</code> loops is to pull out the code from the <code>Do..While</code> so that it executes once and convert to <code>While</code>.</p> <pre><code>do { action(); } while(...) </code></pre> <p>is equivalent to:</p> <pre><code>action(); while(...) { action(); } </code></pre> <p>So applied to your code the change would look like:</p> <pre><code>$active = null; $process = curl_multi_exec($curl, $active); while ($process === CURLM_CALL_MULTI_PERFORM) { $process = curl_multi_exec($curl, $active); } while (($active &gt;= 1) &amp;&amp; ($process === CURLM_OK)) { if (curl_multi_select($curl, 3) != -1) { $process = curl_multi_exec($curl, $active); while ($process === CURLM_CALL_MULTI_PERFORM) { $process = curl_multi_exec($curl, $active); }; } } </code></pre> <p>With that said, there's nothing wrong with <code>Do..While</code> loops and you should use them if you need to.</p> http://stackoverflow.com/questions/1669156/making-a-vb-net-winform-button-look-pressed-from-code-behind/1669237#1669237 1 Answer by LFSR Consulting for Making a VB.net winform button look pressed from code behind LFSR Consulting 2009-11-03T18:24:44Z 2009-11-03T18:24:44Z <p>You want to set the <code>FlatStyle</code> of the button. So your code will look like this:</p> <pre><code>Private Sub getField_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtGetKey.KeyDown If e.KeyCode = Keys.Enter Then e.Handled = True btnGet.FlatStyle = FlatStyle.Flat End If End Sub </code></pre> <p>This will change the button appearance - Don't forget to change it back to <code>FlatStyle.Standard</code></p> http://stackoverflow.com/questions/1663958/codeigniter-simple-url-routing-question/1664024#1664024 0 Answer by LFSR Consulting for CodeIgniter: Simple URL routing question LFSR Consulting 2009-11-02T22:05:48Z 2009-11-03T15:19:01Z <p>If <code>popular</code> and <code>recent</code> are actual pages in your application, as opposed to functions, you ought to move those to their own controllers, as opposed to keeping them under main.</p> http://stackoverflow.com/questions/296978/when-is-it-better-to-use-string-format-vs-string-concatenation 6 When is it better to use String.Format vs string concatenation? LFSR Consulting 2008-11-17T21:20:32Z 2009-10-30T16:08:01Z <p>I've got a small piece of code that is parsing an index value to determine a cell input into Excel. It's got me thinking...</p> <p>What's the difference between </p> <pre><code>xlsSheet.Write("C" + rowIndex.ToString(), null, title); </code></pre> <p>and</p> <pre><code>xlsSheet.Write(string.Format("C{0}", rowIndex), null, title); </code></pre> <p>Is one "better" than the other? And why?</p> http://stackoverflow.com/questions/1650365/net-class-design-question/1650411#1650411 12 Answer by LFSR Consulting for .NET class design question LFSR Consulting 2009-10-30T15:14:33Z 2009-10-30T15:14:33Z <p>Generally speaking, whenever you see switches on a Type or Enum, it means you can substitute in objects as the "Type" - said differently, a case for <a href="http://en.wikipedia.org/wiki/Polymorphism%5Fin%5Fobject-oriented%5Fprogramming" rel="nofollow">polymorphism</a>.</p> <p>What this means practically is that you'll create a different class for each Question type and override the <code>RenderHTML()</code> function. Each Question object will be responsible for knowing what input type it ought to output.</p> <p>The benefits are that you remove the switch statement as well as produce good OO based code. The draw backs are that you add a class for every Question type (in this case minimal impact.)</p> http://stackoverflow.com/questions/1644930/merge-msaccess-tables/1644992#1644992 3 Answer by LFSR Consulting for merge msaccess tables LFSR Consulting 2009-10-29T16:36:24Z 2009-10-29T16:36:24Z <p>The datatype for the ID field appears to be an autonumber. As such you can do the following:</p> <pre><code>INSERT INTO db1...table1 SELECT Name FROM db2...table1 </code></pre> http://stackoverflow.com/questions/1639443/vb-net-weird-behavior-with-getting-position-of-string/1639525#1639525 2 Answer by LFSR Consulting for vb.net: weird behavior with getting position of string LFSR Consulting 2009-10-28T19:25:11Z 2009-10-28T19:25:11Z <p>Since you don't have Option Explicit turned on - do it. Your code works on my machine, so this is the only thing I can see as being a problem.</p> <p>Option Explicit tells the compiler to throw an error when a variable is not declared. It could be that you're using <code>lot__no</code> and the variable is actually named <code>lot_no</code>.</p> http://stackoverflow.com/questions/1639080/vb-net-extract-string-from-a123-to-b123/1639104#1639104 6 Answer by LFSR Consulting for vb.net: extract string from "a123" to "b123" LFSR Consulting 2009-10-28T18:18:14Z 2009-10-28T18:18:14Z <p>If your patterns are going to be as simple as <code>a123</code> then simple string operations will suffice:</p> <pre><code>Dim s As String = "sodjfoisdfsdf sdofij sodiosifosf fsdi a123 sdfoi sdofi osdi foi sdofd oi b123 sdfoijsfdoifsdiosfdoifsoifsdofjssfdoji" Dim startIndex As Integer = s.IndexOf("a123") + "a123".Length Dim endIndex As Integer = s.IndexOf("b123") Dim result = s.Substring(startIndex, endIndex - startIndex) </code></pre> http://stackoverflow.com/questions/1631328/minimal-good-citizen-c-console-application-boilerplate/1631882#1631882 1 Answer by LFSR Consulting for Minimal, good-citizen, C# console application boilerplate LFSR Consulting 2009-10-27T16:06:35Z 2009-10-27T16:06:35Z <p>To me I would want to see <code>Run(args)</code> replaced with the instantiation of a class. Something like:</p> <p><strong>Main Try:</strong></p> <pre><code>try { // Process args to get parameters for AClass AClass program = new AClass(a, b); return program.Run(); } </code></pre> <p><strong>AClass:</strong></p> <pre><code>public class AClass { AClass(string a, string b) { ... } public int Run() { ... return Environment.ExitCode; } } </code></pre> <p>Something like this is going to discourage procedural code and encourage creating an object oriented approach.</p> <p>In regards to the <code>AClass()</code> constructor, I think the arguments should be processed prior to being passed into <code>AClass()</code> instead of <code>AClass()</code> having to know that it's created via a Console app.</p> http://stackoverflow.com/questions/1627403/email-body-regex-search/1627421#1627421 4 Answer by LFSR Consulting for Email body regex search LFSR Consulting 2009-10-26T21:25:43Z 2009-10-26T21:25:43Z <p>To match on the end of line:</p> <pre><code>Store Locator:\s*([^\r\n]*) </code></pre> http://stackoverflow.com/questions/1625716/page-cycle-and-viewstate-problem/1625821#1625821 2 Answer by LFSR Consulting for Page cycle and viewstate problem LFSR Consulting 2009-10-26T16:38:55Z 2009-10-26T17:21:44Z <p>So the page load events flow as:</p> <ol> <li>Action on form causes Postback</li> <li>Page_Load Event</li> <li>Button Click Event</li> <li>Render/Unload Event</li> </ol> <p>At step 2 you are reading a variable from the viewstate and setting a label. At step 3 you're setting the value in the viewstate.</p> <p>As you've observed you're using the events in incorrect order. There are two ways you can solve this: Place your label setter code in Render/Unload event. The other is to refactor your code such that the label is set via the Button Click Event instead of in the Page_Load event; which I would recommend as the proper course of action.</p> <p>You may want to checkout <a href="http://stackoverflow.com/questions/597042/what-is-the-page-lifecycle-of-an-asp-net-webform">What is the ‘page lifecycle’ of an ASP.NET WebForm?</a> to get a better handle on page lifecycle.</p> <p><hr /> In response to the comment: If there's multiple labels to set you can look at inline code to set your labels. The code would look like this:</p> <p><strong>CodePage</strong></p> <pre><code>&lt;asp:Label id="id1" runat="server" text="&lt;%=Label1Text%&gt;" /&gt; </code></pre> <p><strong>CodeBehind</strong></p> <pre><code>private string m_Label1Text; public property string Label1Text { get { return m_Label1Text; } set { m_Label1Text = value; } } </code></pre> <p>This way, you set your text via the Label1Text property and it gets transfered to the form when it's rendered. You can try this <a href="http://www.808.dk/?code-aspnet-inline" rel="nofollow">Tutorial</a> here if you need more information on inlining code.</p> http://stackoverflow.com/questions/1610383/why-does-this-improve-performance/1610400#1610400 15 Answer by LFSR Consulting for Why Does This Improve Performance? LFSR Consulting 2009-10-22T22:39:20Z 2009-10-22T22:55:17Z <p>It's a data arrangement thing. Think of memory as a single dimension array. That's how things are actually arranged on disk (as far as the computer is concerned.) So when creating multi-dimension arrays, when you change loop order you change how the array is traversed. Instead of reading in order, you're jumping from position to position.</p> <p><hr /></p> <p>A multi-dimension array looks like this to you:</p> <p><img src="http://imgur.com/N0Vbu.png" alt="3x3 matrix" /></p> <p>And like this to the computer. The optimal way of traversing has the indexes following the arrow below: <img src="http://imgur.com/9aoqc.png" alt="Linear traversed array" /></p> <p>So when you change you array looping the array is traversed like this: <img src="http://imgur.com/EEIJL.png" alt="Array traversed by switched array loops" /></p> <p>Thus you get more cache misses and a poorer performing algorithm.</p> http://stackoverflow.com/questions/1608370/asp-net-sanitizing-user-input/1608388#1608388 1 Answer by LFSR Consulting for asp.net sanitizing user input LFSR Consulting 2009-10-22T16:22:49Z 2009-10-22T16:22:49Z <p>You'll want to look at the <a href="http://msdn.microsoft.com/en-us/library/aa973813.aspx" rel="nofollow">AntiXSS</a> library for that. It's a dll so it's easy to drop in and start using it.</p> <p>The download is at <a href="http://antixss.codeplex.com/" rel="nofollow">CodePlex</a>.</p> http://stackoverflow.com/questions/1604036/get-all-tweets-that-are-all-caps/1604086#1604086 2 Answer by LFSR Consulting for Get all tweets that are all caps LFSR Consulting 2009-10-21T22:45:44Z 2009-10-21T22:45:44Z <p>Building pseudo code from SilentGhost's comment:</p> <pre><code>1. Retrieve all tweets 2. foreach tweet 3. if (tweet.ToUpper() == tweet) then 4. Tweet Is All Caps </code></pre> <p>Use string matching instead of regex with this type of problem.</p> http://stackoverflow.com/questions/1602776/what-is-password-hashing/1602981#1602981 4 Answer by LFSR Consulting for What is password hashing? LFSR Consulting 2009-10-21T19:15:40Z 2009-10-21T19:37:21Z <p><strong>Definition:</strong><br /> <a href="http://en.wikipedia.org/wiki/Hash%5Ffunction" rel="nofollow">Hashing</a> is the application of a function <code>f()</code> to a variable sized input to produce a constant sized output.</p> <pre><code>A =&gt; f() =&gt; X B =&gt; f() =&gt; Y C =&gt; f() =&gt; Z </code></pre> <p>A hash is also a one-way function which means that there isn't a function to reverse or undo a hash. As well re-applying the hash <code>f(f(x))</code> isn't going to product <code>x</code> again.</p> <p><strong>The Details:</strong></p> <p>A hash function can be as simple as "add 13 to the input" or complex like a <a href="http://en.wikipedia.org/wiki/Cryptographic%5Fhash%5Ffunction" rel="nofollow">Cryptographic Hash</a> such as <a href="http://en.wikipedia.org/wiki/MD5" rel="nofollow">MD5</a> or <a href="http://en.wikipedia.org/wiki/SHA1" rel="nofollow">SHA1</a>. There are many things that constitute a good hash function like:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Hash%5Ffunction#Low%5Fcost" rel="nofollow">Low Cost</a>: Easy to compute</li> <li><a href="http://en.wikipedia.org/wiki/Hash%5Ffunction#Determinism" rel="nofollow">Deterministic</a>: if I hash the input <code>a</code> multiple times, I am going to get the same output each time</li> <li><a href="http://en.wikipedia.org/wiki/Hash%5Ffunction#Uniformity" rel="nofollow">Uniformity</a>: The input will be evenly distributed among the possible outputs. This falls in line with something called the <a href="http://en.wikipedia.org/wiki/Pigeonhole%5Fprinciple" rel="nofollow">Pigeonhole Principle</a>. Since there are a limited number of outputs we want <code>f()</code> to place those outputs evenly instead of in the same bucket. When two inputs compute to the same output this is known as a collision. It's a good thing for a hash function to produce fewer collisions.</li> </ul> <p><strong>Hashing applied to Passwords:</strong></p> <p>The hashing of passwords is the same process as described above, however it comes with some special considerations. Many of the properties that make up a good hash function are not beneficial when it comes to passwords.</p> <p>Take for example <em>determinism</em>, because hashes produce a deterministic result when two people use the same password the hash is going to look the same in the password store. This is a bad thing! However this is mitigated by something called a <a href="http://en.wikipedia.org/wiki/Salt%5F%28cryptography%29" rel="nofollow">salt</a>.</p> <p><em>Uniformity</em> on the other hand is beneficial because the desire is for the algorithm to limit collisions. </p> <p>Because a hash is <em>One-Way</em> means the input cannot be determined from the output, which is why hashing is great for passwords!</p> http://stackoverflow.com/questions/1600874/radiobutton-checked-not-working-for-first-button-in-group/1600964#1600964 0 Answer by LFSR Consulting for Radiobutton.Checked not working for first button in group LFSR Consulting 2009-10-21T13:51:28Z 2009-10-21T13:51:28Z <p>My dollars are that you're setting the button state during <code>Page_Load</code> and forgetting to check whether <code>IsPostBack</code> is true/false. Your code likely looks like this:</p> <pre><code>Page_Load(...) { SetFormState() } </code></pre> <p>When it should look like this:</p> <pre><code>Page_Load(...) { if (!IsPostBack) { SetFormState() } } </code></pre> http://stackoverflow.com/questions/1596348/question-about-seo/1596389#1596389 0 Answer by LFSR Consulting for Question about SEO LFSR Consulting 2009-10-20T18:12:16Z 2009-10-20T18:18:50Z <p>Yes - Any search engine bot is going to pick it up because it is rendered to the page (IE not AJAX'd content.)</p> <p>Your method is using CSS to show/hide the content which means that it is going to be visible to a spider. If you want to get a good idea of what search engines see, load up the page without any stylesheets or javascript.</p> <p><hr /></p> <p>As an aside, the "Banana Fall Line" image is loading really poorly because you're using a large image and scaling it down with width/height in the image tag.</p> http://stackoverflow.com/questions/1718994/list-of-cdns-for-common-components-files/1718995#1718995 Comment by LFSR Consulting on List of CDN's for common components/files LFSR Consulting 2009-11-30T15:10:56Z 2009-11-30T15:10:56Z Currently Google has no documented support for their CDN over SSL, so if that's a requirement MS is a better choice. http://stackoverflow.com/questions/1718994/list-of-cdns-for-common-components-files/1719015#1719015 Comment by LFSR Consulting on List of CDN's for common components/files LFSR Consulting 2009-11-30T15:08:30Z 2009-11-30T15:08:30Z MS's CDN also has the ability to serve over SSL http://stackoverflow.com/questions/1294407/understanding-the-asp-net-application-folders/1801323#1801323 Comment by LFSR Consulting on Understanding the ASP.NET application folders LFSR Consulting 2009-11-26T15:39:25Z 2009-11-26T15:39:25Z Good find! I run IIS6 so I dug around and <code>applicationHost.config</code> doesn't exist. The IIS6 metabase can be found at: _systemroot_\System32\Inetsr\MetaBase.xml; unfortunately there is no hiddenSegments element. http://stackoverflow.com/questions/1757950/how-can-i-use-perl-to-validate-this-data-containing-balanced-text Comment by LFSR Consulting on How can I use Perl to validate this data containing balanced text? LFSR Consulting 2009-11-18T18:13:19Z 2009-11-18T18:13:19Z Your post doesn't make sense. And I don't know what your question is. http://stackoverflow.com/questions/1722896/vb-to-c-functions/1722914#1722914 Comment by LFSR Consulting on VB to C# Functions LFSR Consulting 2009-11-12T18:43:43Z 2009-11-12T18:43:43Z @MarkJ - Thanks for pointing that out. http://stackoverflow.com/questions/1722896/vb-to-c-functions/1722914#1722914 Comment by LFSR Consulting on VB to C# Functions LFSR Consulting 2009-11-12T15:16:38Z 2009-11-12T15:16:38Z It's CW so feel free to correct/modify/add http://stackoverflow.com/questions/1717746/can-user-disable-javascript-at-client-side-is-it-possible Comment by LFSR Consulting on Can User disable javascript at client side ? is it possible ? LFSR Consulting 2009-11-11T20:12:41Z 2009-11-11T20:12:41Z Can you elaborate on what you're trying to do. http://stackoverflow.com/questions/1710185/how-to-create-an-omp-parallel-for-with-synchronization-barrier-of-all-threa/1710230#1710230 Comment by LFSR Consulting on How to create an `omp parallel for` with synchronization (`barrier`) of all threads in the middle with OpenMP LFSR Consulting 2009-11-10T19:31:38Z 2009-11-10T19:31:38Z The end of a parallel for has an implicit block on it. That is, the master thread waits for all threads to complete. I'm just thinking that this version would incur the overhead of creating the threads a second time <i>if</i> OMP doesn't maintain the threads. Whether that makes a difference depends upon the implementation of <code>do&#95;step&#95;one()</code> and <code>do&#95;step&#95;two()</code> http://stackoverflow.com/questions/1710185/how-to-create-an-omp-parallel-for-with-synchronization-barrier-of-all-threa/1710230#1710230 Comment by LFSR Consulting on How to create an `omp parallel for` with synchronization (`barrier`) of all threads in the middle with OpenMP LFSR Consulting 2009-11-10T18:47:13Z 2009-11-10T18:47:13Z I have forgotten most of my OMP work - does this method still maintain the threads or does it need to recreate them for the second <code>parallel for</code>? http://stackoverflow.com/questions/1710185/how-to-create-an-omp-parallel-for-with-synchronization-barrier-of-all-threa Comment by LFSR Consulting on How to create an `omp parallel for` with synchronization (`barrier`) of all threads in the middle with OpenMP LFSR Consulting 2009-11-10T18:42:52Z 2009-11-10T18:42:52Z Your openMP syntax looks wrong - For both calls you seem to be missing the <code>#pragma</code> - did you omit it or is it not there? http://stackoverflow.com/questions/1703066/asp-net-hyperlink-and-download-directly/1703090#1703090 Comment by LFSR Consulting on ASP.Net HyperLink and Download directly? LFSR Consulting 2009-11-09T19:12:49Z 2009-11-09T19:12:49Z Yes it ought to work for grid views too http://stackoverflow.com/questions/1690740/who-are-some-famous-black-programmers Comment by LFSR Consulting on Who are some famous black programmers? LFSR Consulting 2009-11-06T21:55:26Z 2009-11-06T21:55:26Z Similarly: <a href="http://stackoverflow.com/questions/1669041/who-are-some-well-known-african-american-software-engineers-closed" rel="nofollow" title="who are some well known african american software engineers closed">stackoverflow.com/questions/1669041/&hellip;</a> http://stackoverflow.com/questions/1688771/how-does-the-iis-7-asp-net-pipeline-work/1688810#1688810 Comment by LFSR Consulting on How does the IIS 7 / ASP.Net pipeline work? LFSR Consulting 2009-11-06T16:47:25Z 2009-11-06T16:47:25Z Snap! Back to the drawing board http://stackoverflow.com/questions/1669825/how-come-my-ie-conditional-statements-do-not-work-inside-style-tags/1669859#1669859 Comment by LFSR Consulting on how come my IE conditional statements do not work inside style tags? LFSR Consulting 2009-11-03T20:24:59Z 2009-11-03T20:24:59Z @payling - didn't know if it was a mistype or if that's how you had actually written it http://stackoverflow.com/questions/1663958/codeigniter-simple-url-routing-question/1664024#1664024 Comment by LFSR Consulting on CodeIgniter: Simple URL routing question LFSR Consulting 2009-11-03T15:19:33Z 2009-11-03T15:19:33Z Thanks Mark I wasn't aware of the router in CI.