User FlySwat - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:54:00Z http://stackoverflow.com/feeds/user/1965 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/124975/windows-forms-textbox-that-has-line-numbers 4 Windows Forms textbox that has line numbers? FlySwat 2008-09-24T01:58:08Z 2009-12-17T16:02:59Z <p>I'm looking for a free winforms component for an application I'm writing. I basicly need a textbox that contains line numbers in a side column. Being able to tabulate data within it would be a major plus too.</p> <p>Does anyone know of a premade component that could do this?</p> http://stackoverflow.com/questions/168586/where-to-learn-actionscript-3-0 4 Where to learn ActionScript 3.0? FlySwat 2008-10-03T19:47:33Z 2009-12-14T01:50:06Z <p>I was just informed that I need to learn Actionscript for a project. I don't even have flash on my machine yet and I need to give a presentation on tuesday on how we will be building this.</p> <p>So, its time for a little cramming, where can I study up on some actionscript?</p> http://stackoverflow.com/questions/146020/making-eclipse-behave-like-visual-studio 8 Making Eclipse behave like Visual Studio FlySwat 2008-09-28T14:53:56Z 2009-12-13T14:52:37Z <p>I'm doing some Android dev, and I much prefer Visual Studio, but I'll have to use Eclipse for this.</p> <p>Has anyone made a tool that switches Eclipse to look and behave more like visual studio? I mainly can't stand its clippyesqe suggestions on how I should program (Yes, I know I have not yet used that private field! Thanks Eclipse!), or its incredibly lousy intellisense.</p> <p>For example, in eclipse, if I don't type "this" first, its intellisense won't realize I want to look for locally scoped members. Also, the TAB to complete VS convention is drilled into my head, and Eclipse is ENTER to complete, I could switch everything by hand but that would take hours, and I was hoping someone had some sort of theme or something that has already done it :)</p> http://stackoverflow.com/questions/47827/html-compression-and-seo 3 HTML Compression and SEO? FlySwat 2008-09-06T20:56:18Z 2009-12-09T00:39:04Z <p>At work, we have a dedicated SEO Analyst who's job is to pour over lots of data (KeyNote/Compete etc) and generate up fancy reports for the executives so they can see how we are doing against our competitors in organic search ranking. He also leads initiatives to improve the SEO rankings on our sites by optimizing things as best we can.</p> <p>We also have a longstanding mission to decrease our page load time, which right now is pretty shoddy on some pages.</p> <p>The SEO guy mentioned that semantic, valid HTML gets more points by crawlers than jumbled messy HTML. I've been working on a real time HTML compressor that will decrease our page sizes my a pretty good chunk. Will compressing the HTML hurt us in site rankings?</p> http://stackoverflow.com/questions/990799/best-practices-for-combining-lucene-net-and-a-relational-database 1 Best practices for combining Lucene.NET and a relational database? FlySwat 2009-06-13T14:48:01Z 2009-12-08T15:00:05Z <p>I'm working on a project where I will have a LOT of data, and it will be searchable by several forms that are very efficiently expressed as SQL Queries, but it also needs to be searched via natural language processing.</p> <p>My plan is to build an index using Lucene for this form of search.</p> <p>My question is that if I do this, and perform a search, Lucene will then return the ID's of matching documents in the index, I then have to lookup these entities from the relational database.</p> <p>This could be done in two ways (That I can think of so far):</p> <ul> <li>N amount of queries (Horrible)</li> <li>Pass all the ID's to a stored procedure at once (Perhaps as a comma delimited parameter). This has the downside of being limited to the max parameter size, and the slow performance of a UDF to split the string into a temporary table.</li> </ul> <p>I'm almost tempted to mirror everything into lucenes index, so that I can periodicly generate the index from the backing store, but only need to access it for the frontend.</p> <p>Advice? </p> http://stackoverflow.com/questions/799981/document-ready-equivalent-without-jquery 6 $(document).ready equivalent without jQuery FlySwat 2009-04-28T21:51:11Z 2009-12-07T16:46:49Z <p>I have a script that uses $(document).ready, but doesn't use anything else from jQuery. I'd like to lighten it up by removing the jquery dependency.</p> <p>How can I implement that functionality without it? It does more than window.onload.</p> http://stackoverflow.com/questions/19201/accurev-scm 2 Accurev SCM FlySwat 2008-08-21T01:45:23Z 2009-12-07T02:21:42Z <p>Does anyone use Accurev for Source Control Management? We are switching (eventually) from StarTeam to Accurev.</p> <p>My initial impression is that the GUI tool is severely lacking, however the underlying engine, and the branches as streams concept is incredible.</p> <p>The biggest difficulty we are facing is assessing our own DIY tools that interfaced with starteam, and either replacing them with DIY new tools, or finding and purchasing appropriate replacements.</p> <p>Additionally, is anyone using the AccuWork component for Issue management? Starteam had a very nice change request system, and AccuWork does not come close to matching it. We are evaluating either using Accuwork, or buying a 3rd party package such as JIRA.</p> <p>Opinions?</p> http://stackoverflow.com/questions/1838083/android-how-do-i-know-if-activity-onstop-is-being-called-because-the-user-is-g 0 Android: How do I know if Activity.onStop() is being called because the user is going back to Home? FlySwat 2009-12-03T06:34:43Z 2009-12-04T12:19:20Z <p>I need be able to tell if Activity.onStop() was called because my application is moving to a new activity, or if it was closed because the user pressed the "Home" key or hit the back button from the bottom of the activity stack.</p> <p>The reason is because I need to know when it is appropriate to shut off music that is playing in my application (A game). There is nothing more annoying than hitting home and having something playing music in the background.</p> <p>However, Activity.OnStop() is called for each activity change, and I don't want to suspend music when moving between multiple activities in my app. I just can't find a way to differentiate between going home and going to a internal activity.</p> <p>Am I perhaps hooking into the wrong events?</p> <p>Any advice?</p> http://stackoverflow.com/questions/1843911/android-detect-when-another-activity-is-launched-or-your-activity-loses-focus 1 Android: Detect when another Activity is launched (or your activity loses focus) FlySwat 2009-12-03T23:44:59Z 2009-12-04T12:10:27Z <p>Like the title says, I need to detect when my app loses focus because another app is launched (Phone call comes in, or user hits Home etc).</p> <p>Overriding Activity.OnStop does not work because that is called even when switching activities within my app.</p> http://stackoverflow.com/questions/1845162/inaccessible-due-to-its-protection-level/1845191#1845191 2 Answer by FlySwat for inaccessible due to its protection level FlySwat 2009-12-04T06:15:35Z 2009-12-04T06:15:35Z <p>You can't add:</p> <pre><code> ResourcePolicyAvailSystemsLVI.m_nullString </code></pre> <p>because the scope of that member is either private or internal.</p> <p>You need to make it public (or ideally, expose it via a property).</p> http://stackoverflow.com/questions/1845152/how-to-get-result-back-from-cgic-to-the-same-html-page/1845157#1845157 0 Answer by FlySwat for How to get result back from CGI(C) to the same HTML page? FlySwat 2009-12-04T06:06:10Z 2009-12-04T06:06:10Z <p>No, HTTP does not work that way.</p> <p>You would have to make a asyncronious request (using JavaScript, this is commonly known as AJAX) instead.</p> <p>In a nutshell, you can spawn a background HTTP request to your CGI process, instead of posting the browser to it in the main HTTP request.</p> <p>See this: <a href="http://en.wikipedia.org/wiki/XMLHttpRequest" rel="nofollow">http://en.wikipedia.org/wiki/XMLHttpRequest</a></p> http://stackoverflow.com/questions/1845066/concatenating-string-in-sql-server-2005/1845120#1845120 3 Answer by FlySwat for Concatenating String in SQL Server 2005 FlySwat 2009-12-04T05:54:57Z 2009-12-04T05:54:57Z <p>In T-SQL:</p> <pre><code> UPDATE table SET col = col + 'B' WHERE (PREDICATE THAT IDENTIFIES ROW) </code></pre> <p>If you were using Oracle it would be:</p> <pre><code> UPDATE table SET col = col || 'B' WHERE (PREDICATE THAT IDENTIFIES ROW) </code></pre> http://stackoverflow.com/questions/1845072/c-any-way-to-repeat-this-process-twice-using-a-loop/1845086#1845086 4 Answer by FlySwat for C# Any way to repeat this process twice using a loop? FlySwat 2009-12-04T05:44:11Z 2009-12-04T05:44:11Z <p>Local scoping within the for loop keeps us from needing unique variables each time.</p> <pre><code>ComplexNumber[] complexNumbers = new ComplexNumber[2]; for (int i = 0; i &lt; complexNumbers.Length; i++) { Console.Write("Real part: "); double realValue = double.Parse(Console.ReadLine()); Console.Write("Complex part: "); double complexValue = double.Parse(Console.ReadLine()); complexNumbers[i] = new ComplexNumber(realValue, complexValue); } </code></pre> http://stackoverflow.com/questions/1837962/asynchronous-delegates-vs-thread-threadpool/1838113#1838113 2 Answer by FlySwat for Asynchronous Delegates Vs Thread/ThreadPool? FlySwat 2009-12-03T06:41:07Z 2009-12-03T06:41:07Z <p>A async method essentially abstracts away the way the work is actually being processed. It may be spawned out into a new process, it may be executed in a separate thread...It doesn't matter.</p> <p>All that matters is you are saying:</p> <ol> <li>Run this code when you start.</li> <li>And run this code when you finish.</li> </ol> <p>If given the choice, I'll use a API async method over implementing my own threading mechanism every-time. The framework developers did the hard work for you, why reinvent the wheel.</p> http://stackoverflow.com/questions/175554/how-to-convert-milliseconds-into-human-readable-form 6 How to convert milliseconds into human readable form? FlySwat 2008-10-06T18:23:25Z 2009-11-26T13:25:07Z <p>I need to convert an arbitrary amount of milliseconds into Days, Hours, Minutes Second.</p> <p>For example:</p> <p>10 Days, 5 hours, 13 minutes, 1 second.</p> <p>I'm pretty sure that the trick is fairly simple, but I'm slammed today so I thought I'd reach out to SO's geniuses for a quick fix.</p> <p>Thanks :)</p> <p>EDIT: The language I'm using does not have this built in, otherwise I'd use it.</p> <p>EDIT 2: Not homework, I've been out of school for many years.</p> http://stackoverflow.com/questions/250468/why-call-sqlclient-sqldatareader-close-method-anyway/250535#250535 8 Answer by FlySwat for Why call SqlClient.SqlDataReader Close() method anyway? FlySwat 2008-10-30T15:13:18Z 2009-11-26T00:52:20Z <p>@Lieutenant Frost</p> <blockquote> <p>As a rule in our shop, we explicitly wrap all database calls in a Try...Finally block, with the finally section catching and closing the data connections. It's worth the tiny bit of effort to save yourself a major troubleshooting headache.</p> </blockquote> <p>I have a similar rule, but I require that objects implementing IDisposable use the 'using' block.</p> <pre><code>using (SqlConnection conn = new SqlConnection(conStr)) { using (SqlCommand command = new SqlCommand()) { // ETC } } </code></pre> <p>The using block calls Dispose immediately when leaving the scope, even with an exception. </p> http://stackoverflow.com/questions/38709/switching-from-java-to-c/38745#38745 2 Answer by FlySwat for Switching from Java to C# FlySwat 2008-09-02T02:56:09Z 2009-11-24T17:02:28Z <p><a href="http://rads.stackoverflow.com/amzn/click/0735621632" rel="nofollow">CLR via C#</a> gives a great nitty gritty under the hood explanation on the CLR, using C# as the context.</p> <p>Definitely a good read.</p> http://stackoverflow.com/questions/463800/jquery-document-ready-failing-in-ie6 0 jQuery $(document).ready() failing in IE6 FlySwat 2009-01-21T01:16:33Z 2009-11-23T15:04:09Z <p>I have the following code:</p> <pre><code>// Creates a timer to check for elements popping into the dom timer = setInterval(function () { for (p in pixelTypes) { checkElems(pixelTypes[p]); } }, 10); // Add Document finished callback. $(document).ready(function () { // Document is loaded, so stop trying to find new pixels clearInterval(timer); }); </code></pre> <p>In Firefox, it works great, but in IE6, I get a "Object Expected" error on the $(document).ready line.</p> <p>I can't figure out what would cause IE6 to not recognize it, jquery is fully loaded by this point.</p> <p>Is this a known issue?</p> http://stackoverflow.com/questions/134253/how-many-of-you-do-3-tier-design 1 How many of you do 3-tier design? FlySwat 2008-09-25T16:10:32Z 2009-11-22T17:11:53Z <p>3-Tier design has been my standard design philosophy for years for database driven applications, and it has never failed me. For those who practice it, describe your layers.</p> <p>I've found that many people muddle up the business tier and the data access tier, making it more like a 2.5-Tier design.</p> <p>I prefer to move the data tier almost entirely into the database using stored procedures, and just have a very lightweight data tier in code that wraps sproc calls into business objects.</p> <p>How do you approach it?</p> <p>EDIT: If all you are going to do is define what 3-tier is, don't waste your time replying. I am looking for how specific people implemented it, did you use stored procedures or an ORM, how did you handle circular dependancies between the DAL and the BLL? Theres a lot of depth to this topic besides saying</p> <ul> <li>UI</li> <li>Business</li> <li>Data</li> </ul> http://stackoverflow.com/questions/1450243/doubleclick-yieldmanager-ad-com-tracking-pixels-what-exactly-do-they-track 1 DoubleClick/YieldManager/Ad.com Tracking Pixels - What exactly do they track? FlySwat 2009-09-20T03:40:56Z 2009-11-21T02:00:03Z <p>Our marketing team has placed a lot of these tracking pixels on our site. Most of them just make a simple HTTP GET to a URL, usually by using a IMG tag, but some document.write in an iframe/script node as well.</p> <p>What I would like to know, is what exactly these track. Source IP? What if you are behind a proxy? </p> http://stackoverflow.com/questions/288867/how-to-code-a-javascript-modal-popup-to-replace-ajax/289000#289000 0 Answer by FlySwat for How to code a JavaScript modal popup (to replace Ajax)? FlySwat 2008-11-14T01:44:56Z 2009-11-19T21:56:29Z <p>Take a look at <a href="http://jquery.com/demo/thickbox/" rel="nofollow">ThickBox</a>.</p> http://stackoverflow.com/questions/125109/winforms-datagridview-binding-to-a-listt 4 winForms + DataGridView binding to a List<T> FlySwat 2008-09-24T02:40:43Z 2009-11-13T12:36:20Z <p>So, every few months I write something in WinForms to remind myself why I hate it.</p> <p>Today is the day.</p> <p>I'm trying to bind a List&lt;T&gt; to a DataGridView control, and I'm not having any luck creating custom bindings (Ugh at all the late bound crap).</p> <p>I tried:</p> <pre><code>gvProgramCode.DataBindings.Add(new Binding("Opcode",code,"Opcode")); </code></pre> <p>It throws an exception, saying that nothing was found by that propertyname.</p> <p>The name of the column in question is "Opcode". The name of the property in the List&lt;T&gt; is Opcode.</p> <p>I'm getting angry at winforms again.</p> <p>EDIT: the problem was that I did not have the bindable fields in my object as properties, just public fields...Apparently it doesn't reflect on fields, just properties.</p> http://stackoverflow.com/questions/1697716/exposing-wcf-services-via-http-when-not-hosted-in-iis 0 Exposing WCF Services Via HTTP when not hosted in IIS FlySwat 2009-11-08T19:58:20Z 2009-11-08T22:44:09Z <p>Like the title says, we need to set up WCF services between a .NET app, and a Adobe AIR app. We don't want to run IIS on the machine, and would much prefer to install and run the WCF services hosted within a windows service.</p> <p>However, I am uncertain of doing that will let us use HTTP as the transport, of does that only work within IIS? I was able to set things up to use the TCP transport, but that doesn't interop with AIR nearly as nice as using HTTP.</p> <p>EDIT: Some test code I've been using to see if this works:</p> <p>Regular console app:</p> <pre><code> static void Main() { using (ServiceHost host = new ServiceHost(typeof(TestService))) { host.Open(); } Console.WriteLine("Waiting..."); Console.ReadLine(); } </code></pre> <p>TestService is a simple HelloWorld type service.</p> <p>In the App.Config:</p> <pre><code>&lt;configuration&gt; &lt;system.serviceModel&gt; &lt;services&gt; &lt;service name="WCFExample2.TestService" behaviorConfiguration="WCFExample2.TestServiceBehavior"&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress = "http://localhost:8731/Design_Time_Addresses/WCFExample2/Service1/" /&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;!-- Service Endpoints --&gt; &lt;!-- Unless fully qualified, address is relative to base address supplied above --&gt; &lt;endpoint address ="" binding="wsHttpBinding" contract="WCFExample2.ITestService"&gt; &lt;!-- Upon deployment, the following identity element should be removed or replaced to reflect the identity under which the deployed service runs. If removed, WCF will infer an appropriate identity automatically. --&gt; &lt;identity&gt; &lt;dns value="localhost"/&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;!-- Metadata Endpoints --&gt; &lt;!-- The Metadata Exchange endpoint is used by the service to describe itself to clients. --&gt; &lt;!-- This endpoint does not use a secure binding and should be secured or removed before deployment --&gt; &lt;endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/&gt; &lt;/service&gt; &lt;/services&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="WCFExample2.TestServiceBehavior"&gt; &lt;!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment --&gt; &lt;serviceMetadata httpGetEnabled="True"/&gt; &lt;!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information --&gt; &lt;serviceDebug includeExceptionDetailInFaults="False" /&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;/system.serviceModel&gt; &lt;/configuration&gt; </code></pre> http://stackoverflow.com/questions/392397/arrays-whats-the-point/392426#392426 395 Answer by FlySwat for Arrays, What's the point? FlySwat 2008-12-25T01:51:44Z 2009-11-04T19:17:19Z <p>Time to go back in time for a lesson. While we don't think about these things much in our fancy managed languages today, they are built on the same foundation, so let's look at how memory is managed in C.</p> <p>Before I dive in, a quick explanation of what the term "pointer" means. A pointer is simply a variable that "points" to a location in memory. It doesn't contain the actual value at this area of memory, it contains the memory address to it. Think oOkay, insertion time is somewhat slower when inserting into an array than into a tree. But if you use pointer-arrays and the elements itself are big enough then you should get the best compromise in comparison of look-up time, random-access and insertion time. Think of a block of memory as a mailbox. The pointer would be the address to that mailbox.</p> <p>In C, an array is simply a pointer with an offset, the offset specifies how far in memory to look. This provides O(1) access time. </p> <pre><code> MyArray [5] ^ ^ Pointer Offset </code></pre> <p>All other data structures either build upon this, or do not use adjacent memory for storage, resulting in poor random access look up time (Though there are other benefits to not using sequential memory).</p> <p>For example, let's say we have an array with 6 numbers (6,4,2,3,1,5) in it, in memory it would look like this:</p> <pre><code>===================================== | 6 | 4 | 2 | 3 | 1 | 5 | ===================================== </code></pre> <p>In an array, we know that each element is next to each other in memory. A C array (Called MyArray here) is simply a pointer to the first element:</p> <pre><code>===================================== | 6 | 4 | 2 | 3 | 1 | 5 | ===================================== ^ MyArray </code></pre> <p>If we wanted to look up MyArray[4], internally it would be accessed like this:</p> <pre><code> 0 1 2 3 4 ===================================== | 6 | 4 | 2 | 3 | 1 | 5 | ===================================== ^ MyArray + 4 ---------------/ (Pointer + Offset) </code></pre> <p>Because we can directly access any element in the array by adding the offset to the pointer, we can look up any element in the same amount of time, regardless of the size of the array. This means that getting MyArray[1000] would take the same amount of time as getting MyArray[5].</p> <p>An alternative data structure is a linked list. This is a linear list of pointers, each pointing to the next node</p> <pre><code>======== ======== ======== ======== ======== | Data | | Data | | Data | | Data | | Data | | | -&gt; | | -&gt; | | -&gt; | | -&gt; | | | P1 | | P2 | | P3 | | P4 | | P5 | ======== ======== ======== ======== ======== P(X) stands for Pointer to next node. </code></pre> <p>Note that I made each "node" into its own block. This is because they are not guaranteed to be (and most likely won't be) adjacent in memory.</p> <p>If I want to access P3, I can't directly access it, because I don't know where it is in memory. All I know is where the root (P1) is, so instead I have to start at P1, and follow each pointer to the desired node. </p> <p>This is a O(N) look up time (The look up cost increases as each element is added). It is much more expensive to get to P1000 compared to getting to P4.</p> <p>Higher level data structures, such as hashtables, stacks and queues, all may use an array (or multiple arrays) internally, while Linked Lists and Binary Trees usually use nodes and pointers.</p> <p>You might wonder why anyone would use a data structure that requires linear traversal to look up a value instead of just using an array, but they have their uses.</p> <p>Take our array again. This time, I want to find the array element that holds the value '5'.</p> <pre><code>===================================== | 6 | 4 | 2 | 3 | 1 | 5 | ===================================== ^ ^ ^ ^ ^ FOUND! </code></pre> <p>In this situation, I don't know what offset to add to the pointer to find it, so I have to start at 0, and work my way up until I find it. This means I have to perform 6 checks.</p> <p>Because of this, searching for a value in an array is considered O(N). The cost of searching increases as the array gets larger. </p> <p>Remember up above where I said that sometimes using a non sequential data structure can have advantages? Searching for data is one of these advantages and one of the best examples is the Binary Tree.</p> <p>A Binary Tree is a data structure similar to a linked list, however instead of linking to a single node, each node can link to two children nodes.</p> <pre><code> ========== | Root | ========== / \ ========= ========= | Child | | Child | ========= ========= / \ ========= ========= | Child | | Child | ========= ========= Assume that each connector is really a Pointer </code></pre> <p>When data is inserted into a binary tree, it uses a several rules to decide where to place the new node. The basic concept is that if the new value is greater than the parents, it inserts it to the left, if it is lower, it inserts it to the right.</p> <p>This means that the values in a binary tree could look like this:</p> <pre><code> ========== | 100 | ========== / \ ========= ========= | 200 | | 50 | ========= ========= / \ ========= ========= | 75 | | 25 | ========= ========= </code></pre> <p>When searching a binary tree for the value of 75, we only need to visit 3 nodes because of this structure:</p> <ul> <li>Is 75 less than 100? Look at Right Node</li> <li>Is 75 greater than 50? Look at Left Node</li> <li>There is the 75!</li> </ul> <p>Even though there is 5 nodes in our tree, we did not need to look at the remaining two, because we knew that they (and their children) could not possibly contain the value we were looking for. This gives us a search time that at worst case means we have to visit every node, but in the best case we only have to visit a small portion of the nodes.</p> <p>That is where arrays get beat, they provide a constant O(N) search time, despite O(1) access time.</p> <p>This is an incredibly high level overview on data structures in memory, skipping over a lot of details, but hopefully it illustrates an array's strength and weakness compared to other data structures.</p> http://stackoverflow.com/questions/237496/code-golf-factorials 2 Code Golf: Factorials FlySwat 2008-10-26T03:46:27Z 2009-10-31T09:33:21Z <p>Since the palindrome code golf was a big hit, here is one that doesn't rely on built in functions.</p> <p>What is the shortest (in characters) way to write a factorial function?</p> http://stackoverflow.com/questions/154112/c-potential-interview-questiontoo-hard 4 C# Potential Interview Question…Too hard? FlySwat 2008-09-30T17:31:34Z 2009-10-23T08:24:33Z <p>Without running this code, identify which <code>Foo</code> method will be called:</p> <pre><code>class A { public void Foo( int n ) { Console.WriteLine( "A::Foo" ); } } class B : A { /* note that A::Foo and B::Foo are not related at all */ public void Foo( double n ) { Console.WriteLine( "B::Foo" ); } } static void Main( string[] args ) { B b = new B(); /* which Foo is chosen? */ b.Foo( 5 ); } </code></pre> <p>Which method? And why? No cheating by running the code.</p> <p>I found this puzzle on the web; I like it and I think I'm going to use it as an interview question...Opinions?</p> <p>EDIT: I wouldn't judge a candidate on getting this wrong, I'd use it as a way to open a fuller discussion about the C# and CLR itself, so I can get a good understanding of the candidates abilities.</p> <p><strong>Source:</strong> <a href="http://netpl.blogspot.com/2008/06/c-puzzle-no8-beginner.html" rel="nofollow">http://netpl.blogspot.com/2008/06/c-puzzle-no8-beginner.html</a></p> http://stackoverflow.com/questions/342106/programmaticly-use-gmail-to-receive-e-mail 3 Programmaticly use Gmail to receive e-mail? FlySwat 2008-12-04T21:15:09Z 2009-10-21T21:59:36Z <p>I'd like to use a C# program to poll a gmail account and automatically download new messages. I know you can use gmail as an outbound SMTP server, but is there any way to access new messages sent to the account?</p> <p><strong>EDIT:</strong> Thanks for the rapid feedback....so I have two options, POP or IMAP. </p> <p>Which one should I use? And why?</p> <p><strong>EDIT #2:</strong> Looks like IMAP allows me to not have to poll. Looks like the way to go.</p> http://stackoverflow.com/questions/244345/how-do-you-unit-test-a-unit-test 36 How do you unit test a unit test? FlySwat 2008-10-28T18:37:05Z 2009-10-15T10:42:21Z <p>I was watching Rob Connerys webcasts on the MVCStoreFront App, and I noticed he was unit testing even the most mundane things, things like:</p> <pre><code>public Decimal DiscountPrice { get { return this.Price - this.Discount; } } </code></pre> <p>Would have a test like:</p> <pre><code>[TestMethod] public void Test_DiscountPrice { Product p = new Product(); p.Price = 100; p.Discount = 20; Assert.IsEqual(p.DiscountPrice,80); } </code></pre> <p>While, I am all for unit testing, I sometimes wonder if this form of test first development is really beneficial, for example, in a real process, you have 3-4 layers above your code (Business Request, Requirements Document, Architecture Document), where the actual defined business rule (Discount Price is Price - Discount) could be misdefined.</p> <p>If that's the situation, your unit test means nothing to you.</p> <p>Additionally, your unit test is another point of failure:</p> <pre><code>[TestMethod] public void Test_DiscountPrice { Product p = new Product(); p.Price = 100; p.Discount = 20; Assert.IsEqual(p.DiscountPrice,90); } </code></pre> <p>Now the test is flawed. Obviously in a simple test, it's no big deal, but say we were testing a complicated business rule. What do we gain here?</p> <p>Fast forward two years into the application's life, when maintenance developers are maintaining it. Now the business changes its rule, and the test breaks again, some rookie developer then fixes the test incorrectly...we now have another point of failure.</p> <p>All I see is more possible points of failure, with no real beneficial return, if the discount price is wrong, the test team will still find the issue, how did unit testing save any work?</p> <p>What am I missing here? Please teach me to love TDD, as I'm having a hard time accepting it as useful so far. I want too, because I want to stay progressive, but it just doesn't make sense to me.</p> <p>EDIT: A couple people keep mentioned that testing helps enforce the spec. It has been my experience that the spec has been wrong as well, more often than not, but maybe I'm doomed to work in an organization where the specs are written by people who shouldn't be writing specs.</p> http://stackoverflow.com/questions/1365027/asp-net-user-control-with-underlying-control-editor-functionality/1365036#1365036 0 Answer by FlySwat for Asp.net User Control with underlying control editor functionality FlySwat 2009-09-01T22:51:19Z 2009-10-13T13:35:46Z <p>You'll need to use the <a href="http://en.wikipedia.org/wiki/Facade%5Fpattern" rel="nofollow">Facade pattern</a> to delegate the exposed designer properties to the composed inner controls.</p> <p>In my opinion it's honestly not worth the effort it would take to wire up nicely.</p> http://stackoverflow.com/questions/802854/why-is-document-write-considered-a-bad-practice 8 Why is document.write considered a 'bad practice'? FlySwat 2009-04-29T15:18:16Z 2009-10-13T13:23:21Z <p>I know <code>document.write</code> is considered bad practice; and I'm hoping to compile a list of reasons to submit to a 3rd party vendor as to why they shouldn't use <code>document.write</code> in implementations of their analytics code.</p> <p>Please include your reason for claiming <code>document.write</code> as a bad practice below.</p> http://stackoverflow.com/questions/1843911/android-detect-when-another-activity-is-launched-or-your-activity-loses-focus/1846576#1846576 Comment by FlySwat on Android: Detect when another Activity is launched (or your activity loses focus) FlySwat 2009-12-04T14:25:54Z 2009-12-04T14:25:54Z After days of trying to figure how to get the tasks, this is perfect. Massive thanks. http://stackoverflow.com/questions/1845066/concatenating-string-in-sql-server-2005/1845120#1845120 Comment by FlySwat on Concatenating String in SQL Server 2005 FlySwat 2009-12-04T07:16:13Z 2009-12-04T07:16:13Z Oracles pipe operators are unique enough that it was worth mentioning for other people who search for this. http://stackoverflow.com/questions/1845152/how-to-get-result-back-from-cgic-to-the-same-html-page/1845157#1845157 Comment by FlySwat on How to get result back from CGI(C) to the same HTML page? FlySwat 2009-12-04T06:17:59Z 2009-12-04T06:17:59Z No. Google for &quot;ajax&quot; http://stackoverflow.com/questions/1844336/compilers-for-dos32/1844385#1844385 Comment by FlySwat on Compilers for DOS32? FlySwat 2009-12-04T06:04:33Z 2009-12-04T06:04:33Z This is the definite answer. I spent many happy years using DJGPP back in the day. http://stackoverflow.com/questions/1845066/concatenating-string-in-sql-server-2005/1845075#1845075 Comment by FlySwat on Concatenating String in SQL Server 2005 FlySwat 2009-12-04T05:55:36Z 2009-12-04T05:55:36Z Needlessly complex. http://stackoverflow.com/questions/1845072/c-any-way-to-repeat-this-process-twice-using-a-loop/1845086#1845086 Comment by FlySwat on C# Any way to repeat this process twice using a loop? FlySwat 2009-12-04T05:47:30Z 2009-12-04T05:47:30Z Well, sorry for helping then. http://stackoverflow.com/questions/1843911/android-detect-when-another-activity-is-launched-or-your-activity-loses-focus/1844906#1844906 Comment by FlySwat on Android: Detect when another Activity is launched (or your activity loses focus) FlySwat 2009-12-04T04:45:09Z 2009-12-04T04:45:09Z I tried that, but the problem is that onStop is actually fired about 15 seconds after the new activities onStart. http://stackoverflow.com/questions/1838083/android-how-do-i-know-if-activity-onstop-is-being-called-because-the-user-is-g/1843982#1843982 Comment by FlySwat on Android: How do I know if Activity.onStop() is being called because the user is going back to Home? FlySwat 2009-12-04T01:07:03Z 2009-12-04T01:07:03Z KeyListeners don't bubble up the system keys. http://stackoverflow.com/questions/1837962/asynchronous-delegates-vs-thread-threadpool/1838360#1838360 Comment by FlySwat on Asynchronous Delegates Vs Thread/ThreadPool? FlySwat 2009-12-03T16:15:31Z 2009-12-03T16:15:31Z To elaborate, there are built in classes for most of examples in .NET that handle these without needing to use a threadpool manually. http://stackoverflow.com/questions/1837962/asynchronous-delegates-vs-thread-threadpool/1838360#1838360 Comment by FlySwat on Asynchronous Delegates Vs Thread/ThreadPool? FlySwat 2009-12-03T15:59:09Z 2009-12-03T15:59:09Z This is actually pretty wrong. http://stackoverflow.com/questions/1838083/android-how-do-i-know-if-activity-onstop-is-being-called-because-the-user-is-g/1839563#1839563 Comment by FlySwat on Android: How do I know if Activity.onStop() is being called because the user is going back to Home? FlySwat 2009-12-03T15:56:27Z 2009-12-03T15:56:27Z Doh, I meant onStop, I just wrote this rather late. http://stackoverflow.com/questions/1838196/write-a-function-int-mystrlenchar-s-that-returns-the-number-of-characters-in-a Comment by FlySwat on Write a function int mystrlen(char *s) that returns the number of characters in a string wuthout strlen func. FlySwat 2009-12-03T07:11:37Z 2009-12-03T07:11:37Z Your missing a closing } http://stackoverflow.com/questions/1838072/c-cannot-convert-from-out-t-to-out-component/1838155#1838155 Comment by FlySwat on [C#] cannot convert from 'out T' to 'out Component' FlySwat 2009-12-03T06:58:49Z 2009-12-03T06:58:49Z you beat me to it :( http://stackoverflow.com/questions/1838055/pause-music-player-on-a-phone-call-and-again-resume-it-after-phone-call-in-androi/1838099#1838099 Comment by FlySwat on Pause music player on a phone call and again resume it after phone call in android FlySwat 2009-12-03T06:55:30Z 2009-12-03T06:55:30Z The problem with this is that if the user changes activities within the application it will also pause the music. http://stackoverflow.com/questions/1697716/exposing-wcf-services-via-http-when-not-hosted-in-iis/1697803#1697803 Comment by FlySwat on Exposing WCF Services Via HTTP when not hosted in IIS FlySwat 2009-11-08T20:22:16Z 2009-11-08T20:22:16Z It seems to work, but browsing to the endpoint gives me a &quot;Cannot connect to this website&quot; error, instead of pulling up service information.