User Andrew - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:24:51Z http://stackoverflow.com/feeds/user/20118 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/376380/hosting-user-videos 2 Hosting user videos Andrew 2008-12-17T23:03:39Z 2008-12-17T23:33:30Z <p>My client would like website visitors to embed videos in their profiles. We've suggested that we use YouTube for a quick and cost-effective (free) solution. However he is not keen that YouTube would control access to the videos which are an important part of his service. It seems unlikely that YouTube would suddenly pull the plug but to do so would be a very bad look for his business. </p> <p>Any recommendations or suggestions for alternative solutions or services? A lot of sites do use YouTube in this way. Do you feel his concerns are valid? </p> <p>This is a small business so large upfront development or service costs are out. The website is built in ASP.NET 3.5 using C# and SQL Server 2005.</p> <p>Thanks for your time!</p> http://stackoverflow.com/questions/332697/asp-net-application-exhibits-strange-behaviour-through-firewall 1 ASP.NET application exhibits strange behaviour through firewall Andrew 2008-12-02T00:39:48Z 2008-12-03T01:01:18Z <p><strong>This problem has been solved thanks to your suggestions.</strong> See the bottom for details. Thanks very much for your help!</p> <p>Our ASP.NET website is accessed from several specific and highly secure international locations. It has been operating fine, but we have added another client location which is exhibiting very strange behaviour.</p> <p>In particular, when the user enters search criteria and clicks the search button the result list returns empty. It doesn't even show the '0 results returned' text, so it is as if the Repeater control did not bind at all. Similar behaviour appears in some, but not all, other parts of the site. The user is able to log in to the site fine and their profile information is displayed. </p> <p>I have logged in to the site locally using exactly the same credentials as them and the site works well from here. We have gone through the steps carefully so I am confident it is not a user issue.</p> <p>I bind the search results in the Page_Load of the search results page the first time it is loaded (the criteria is in the query string). i.e.</p> <pre><code>if (!IsPostBack) { BindResults(); } </code></pre> <p>I can replicate exactly the same behaviour locally by commenting out the BindResults() method call. </p> <p>Does anybody know how the value of IsPostBack is calculated? Is it possible that their highly-secure firewall setup would cause IsPostBack to always return true, even when it is a redirect from another page? That could be a red herring as the problem might be elsewhere. It does exactly replicate the result though.</p> <p>I have no access to the site, so troubleshooting is restricted to giving them instructions and asking for them to tell me the result.</p> <p>Thanks for your time!</p> <p>Appended info: Client is behind a Microsoft ISA 2006 firewall running default rules. The site has been added to the Internet Explorer trusted sites list and tried in FireFox and Google Chrome, all with the same result.</p> <p><strong>SOLUTION</strong>: The winner for me was the suggestion to use Fiddler. What an excellent tool that no web developer should be without. Using this I was able to strip various headers from the request until I reproduced the problem. There were actually two factors that caused this bug, as is so often the case with such confusing issues.</p> <p>Factor one – Where possible the web application uses GZIP compression as supported by all major browsers. The firewall was stripping off the header that specifies GZIP decompression support (Accept-Encoding: gzip, deflate). </p> <p>Factor two – A bug in my code meant that some processing was bypassed when the content was being sent uncompressed. This problem was not noticed before because the application is used by a limited audience, all of which supported GZIP decompression.</p> http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf/170225#170225 37 Answer by Andrew for "Must Have" Books on Your Bookshelf Andrew 2008-10-04T12:10:38Z 2008-10-22T23:34:25Z <p><a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete</a> by Steve McConnell</p> http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf/170218#170218 6 Answer by Andrew for "Must Have" Books on Your Bookshelf Andrew 2008-10-04T12:07:42Z 2008-10-22T23:34:25Z <p>Martin Fowler's <a href="http://rads.stackoverflow.com/amzn/click/0321127420" rel="nofollow">Patterns of Enterprise Application Architecture</a></p> http://stackoverflow.com/questions/180178/how-did-you-find-your-dream-job-or-great-place-to-work/180423#180423 8 Answer by Andrew for How did you find your "dream job" (or great place to work)? Andrew 2008-10-07T21:06:22Z 2008-10-07T21:06:22Z <p>I quit and started working as an independant consultant. It can be hard work but I'd never go back. </p> <ul> <li>I make my own decisions about my work environment and the tools I use. </li> <li>Negotiations happen on equal terms instead of being dictated to me. </li> <li>People treat me with more respect even though I'm doing the same work. They know I'm free to pick and choose my projects.</li> <li>Corporate politics are amusing instead of frustrating when you are not an employee of the company.</li> </ul> http://stackoverflow.com/questions/131729/best-it-programming-technology-related-acronym/165608#165608 3 Answer by Andrew for Best IT/Programming/Technology related Acronym Andrew 2008-10-03T03:43:08Z 2008-10-03T03:43:08Z <p>I like SAX = Simple API XML. So its a three letter acronym for "Simple Application Programming Interface Extensible Markup Language".</p> http://stackoverflow.com/questions/150208/how-do-i-convert-html-to-rtf-rich-text-in-net-without-paying-for-a-component/155112#155112 3 Answer by Andrew for How do I convert HTML to RTF (Rich Text) in .NET without paying for a component? Andrew 2008-09-30T21:11:35Z 2008-09-30T21:11:35Z <p>It is not perfect of course, but here is the code I use to convert HTML to plain text.</p> <p>(I was not the original author, I adapted it from code found on the web)</p> <pre><code>public static string ConvertHtmlToText(string source) { string result; // Remove HTML Development formatting // Replace line breaks with space // because browsers inserts space result = source.Replace("\r", " "); // Replace line breaks with space // because browsers inserts space result = result.Replace("\n", " "); // Remove step-formatting result = result.Replace("\t", string.Empty); // Remove repeating speces becuase browsers ignore them result = System.Text.RegularExpressions.Regex.Replace(result, @"( )+", " "); // Remove the header (prepare first by clearing attributes) result = System.Text.RegularExpressions.Regex.Replace(result, @"&lt;( )*head([^&gt;])*&gt;", "&lt;head&gt;", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"(&lt;( )*(/)( )*head( )*&gt;)", "&lt;/head&gt;", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, "(&lt;head&gt;).*(&lt;/head&gt;)", string.Empty, System.Text.RegularExpressions.RegexOptions.IgnoreCase); // remove all scripts (prepare first by clearing attributes) result = System.Text.RegularExpressions.Regex.Replace(result, @"&lt;( )*script([^&gt;])*&gt;", "&lt;script&gt;", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"(&lt;( )*(/)( )*script( )*&gt;)", "&lt;/script&gt;", System.Text.RegularExpressions.RegexOptions.IgnoreCase); //result = System.Text.RegularExpressions.Regex.Replace(result, // @"(&lt;script&gt;)([^(&lt;script&gt;\.&lt;/script&gt;)])*(&lt;/script&gt;)", // string.Empty, // System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"(&lt;script&gt;).*(&lt;/script&gt;)", string.Empty, System.Text.RegularExpressions.RegexOptions.IgnoreCase); // remove all styles (prepare first by clearing attributes) result = System.Text.RegularExpressions.Regex.Replace(result, @"&lt;( )*style([^&gt;])*&gt;", "&lt;style&gt;", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"(&lt;( )*(/)( )*style( )*&gt;)", "&lt;/style&gt;", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, "(&lt;style&gt;).*(&lt;/style&gt;)", string.Empty, System.Text.RegularExpressions.RegexOptions.IgnoreCase); // insert tabs in spaces of &lt;td&gt; tags result = System.Text.RegularExpressions.Regex.Replace(result, @"&lt;( )*td([^&gt;])*&gt;", "\t", System.Text.RegularExpressions.RegexOptions.IgnoreCase); // insert line breaks in places of &lt;BR&gt; and &lt;LI&gt; tags result = System.Text.RegularExpressions.Regex.Replace(result, @"&lt;( )*br( )*&gt;", "\r", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"&lt;( )*li( )*&gt;", "\r", System.Text.RegularExpressions.RegexOptions.IgnoreCase); // insert line paragraphs (double line breaks) in place // if &lt;P&gt;, &lt;DIV&gt; and &lt;TR&gt; tags result = System.Text.RegularExpressions.Regex.Replace(result, @"&lt;( )*div([^&gt;])*&gt;", "\r\r", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"&lt;( )*tr([^&gt;])*&gt;", "\r\r", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"&lt;( )*p([^&gt;])*&gt;", "\r\r", System.Text.RegularExpressions.RegexOptions.IgnoreCase); // Remove remaining tags like &lt;a&gt;, links, images, // comments etc - anything thats enclosed inside &lt; &gt; result = System.Text.RegularExpressions.Regex.Replace(result, @"&lt;[^&gt;]*&gt;", string.Empty, System.Text.RegularExpressions.RegexOptions.IgnoreCase); // replace special characters: result = System.Text.RegularExpressions.Regex.Replace(result, @"&amp;nbsp;", " ", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"&amp;bull;", " * ", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"&amp;lsaquo;", "&lt;", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"&amp;rsaquo;", "&gt;", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"&amp;trade;", "(tm)", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"&amp;frasl;", "/", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"&lt;", "&lt;", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"&gt;", "&gt;", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"&amp;copy;", "(c)", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, @"&amp;reg;", "(r)", System.Text.RegularExpressions.RegexOptions.IgnoreCase); // Remove all others. More can be added, see // http://hotwired.lycos.com/webmonkey/reference/special_characters/ result = System.Text.RegularExpressions.Regex.Replace(result, @"&amp;(.{2,6});", string.Empty, System.Text.RegularExpressions.RegexOptions.IgnoreCase); // make line breaking consistent result = result.Replace("\n", "\r"); // Remove extra line breaks and tabs: // replace over 2 breaks with 2 and over 4 tabs with 4. // Prepare first to remove any whitespaces inbetween // the escaped characters and remove redundant tabs inbetween linebreaks result = System.Text.RegularExpressions.Regex.Replace(result, "(\r)( )+(\r)", "\r\r", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, "(\t)( )+(\t)", "\t\t", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, "(\t)( )+(\r)", "\t\r", System.Text.RegularExpressions.RegexOptions.IgnoreCase); result = System.Text.RegularExpressions.Regex.Replace(result, "(\r)( )+(\t)", "\r\t", System.Text.RegularExpressions.RegexOptions.IgnoreCase); // Remove redundant tabs result = System.Text.RegularExpressions.Regex.Replace(result, "(\r)(\t)+(\r)", "\r\r", System.Text.RegularExpressions.RegexOptions.IgnoreCase); // Remove multible tabs followind a linebreak with just one tab result = System.Text.RegularExpressions.Regex.Replace(result, "(\r)(\t)+", "\r\t", System.Text.RegularExpressions.RegexOptions.IgnoreCase); // Initial replacement target string for linebreaks string breaks = "\r\r\r"; // Initial replacement target string for tabs string tabs = "\t\t\t\t\t"; for (int index = 0; index &lt; result.Length; index++) { result = result.Replace(breaks, "\r\r"); result = result.Replace(tabs, "\t\t\t\t"); breaks = breaks + "\r"; tabs = tabs + "\t"; } // Thats it. return result; } </code></pre> http://stackoverflow.com/questions/151056/how-does-someone-elevate-themselves-from-good-to-great-in-development/151387#151387 3 Answer by Andrew for How does someone elevate themselves from "good" to "great" in development Andrew 2008-09-30T01:08:58Z 2008-09-30T01:08:58Z <p>Work in a job where you are surrounded by other great programmers. You will learn directly from them and your natural drive to be competitive will grow your skills quickly.</p> <p>Before you know it you'll find you have an edge over most other programmers in the industry.</p> http://stackoverflow.com/questions/131571/recommended-books-for-software-engineering/131646#131646 0 Answer by Andrew for Recommended Books for Software Engineering Andrew 2008-09-25T05:49:27Z 2008-09-25T05:49:27Z <p>The excellent <a href="http://rads.stackoverflow.com/amzn/click/0321127420" rel="nofollow">Patterns of Enterprise Application Architecture</a> by Martin Fowler.</p> http://stackoverflow.com/questions/131598/integrated-version-control-for-visual-studio/131632#131632 0 Answer by Andrew for Integrated Version Control for Visual Studio Andrew 2008-09-25T05:41:57Z 2008-09-25T05:41:57Z <p>I used to use SourceSafe, but have made the switch to Subversion and will never go back.</p> <p>I use <a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a> with <a href="http://www.visualsvn.com" rel="nofollow">VisualSVN</a>. VisualSVN provides the IDE integration with Visual Studio so it feels much like SourceSafe. </p> <p>The first big benefit is that it works very well over HTTP so I can work with a distributed team. I host my files with <a href="http://www.cvsdude.com" rel="nofollow">CVSDude</a>. </p> <p>Secondly, the fact that you don't need to check out a file before editing is a huge benefit, particularly when working with files that sit outside the Visual Studio project. </p> <p>Thirdly, my source code actually feels safe. Ironically it never did with SourceSafe...</p> http://stackoverflow.com/questions/680448/asp-net-mvc-how-to-add-a-code-behind-page-to-a-view/680499#680499 Comment by Andrew on ASP.net MVC - How to add a Code-Behind page to a View Andrew 2009-10-10T19:43:20Z 2009-10-10T19:43:20Z Thanks for that. I've found a quicker way to associate the two files together is to right-click them, choose Exclude From Project, then with 'Show All Files' selected right-click them again and re-include them. http://stackoverflow.com/questions/376380/hosting-user-videos/376451#376451 Comment by Andrew on Hosting user videos Andrew 2008-12-18T01:13:54Z 2008-12-18T01:13:54Z Looks excellent, thanks! http://stackoverflow.com/questions/332697/asp-net-application-exhibits-strange-behaviour-through-firewall/332937#332937 Comment by Andrew on ASP.NET application exhibits strange behaviour through firewall Andrew 2008-12-02T03:53:11Z 2008-12-02T03:53:11Z Thanks for the suggestion. I've tried using the site with Javascript turned off and it is working ok (at least that part of the site is). Also they added the domain to their Internet Explorer Trusted Sites list and tried Firefox and Chrome, so Javascript should have been enabled.