User C. Dragon 76 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T13:30:53Z http://stackoverflow.com/feeds/user/5682 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1329546/whats-a-good-algorithm-for-calculating-the-area-of-a-quadrilateral 2 What's a good algorithm for calculating the area of a quadrilateral? C. Dragon 76 2009-08-25T16:52:52Z 2009-08-25T22:12:25Z <p>I see there's a good question already for general polygons <a href="http://stackoverflow.com/questions/451426/how-do-i-calculate-the-surface-area-of-a-2d-polygon">here</a>. Are there any simpler or more efficient algorithms specific to quadrilaterals?</p> http://stackoverflow.com/questions/1319066/forcing-unit-testing-on-developers/1319088#1319088 -2 Answer by C. Dragon 76 for Forcing Unit Testing on Developers C. Dragon 76 2009-08-23T17:36:30Z 2009-08-23T17:36:30Z <p>No. In my experience, TDD isn't all that useful in practice. I sometimes use it for really general fundamental classes (like geometry or generic data structures) that lend themselves naturally to automated tests. But for UI components or business logic, I find it's more trouble than it's worth.</p> http://stackoverflow.com/questions/1208447/do-you-think-vs-and-intellisense-make-us-dumber/1209353#1209353 0 Answer by C. Dragon 76 for Do you think VS and Intellisense make us dumber? C. Dragon 76 2009-07-30T21:02:29Z 2009-07-30T21:02:29Z <p>Yes, I agree with the author. Intellisense (and many other Visual Studio features) is indeed "making us dumber" for the reasons mentioned in the article.</p> <p>That's not always a bad thing. Sometimes it's more desirable to <em>be productive</em> than it is to <em>get smarter</em>. The challenge is striking the right balance. :)</p> http://stackoverflow.com/questions/1165967/opaque-dictionary-key-pattern-in-c/1209283#1209283 0 Answer by C. Dragon 76 for Opaque dictionary key pattern in C# C. Dragon 76 2009-07-30T20:46:19Z 2009-07-30T20:46:19Z <p>The drawbacks I see are:</p> <ol> <li>Storing the key data twice (once in fields First and Second and once again in m_Key) as Guillaume pointed out.</li> <li>Arguably, the code readability decreases. (Keys are rather verbose and new developers will need to familiarize themselves with the OpaqueKey class and concepts.)</li> <li>Future versions of the C# compiler may change the default GetHashCode implementation for anonymous types. Although you're satisfied with the current results, I don't think that logic is guaranteed to never change.</li> </ol> <p>I suppose it's not simpler, but I think in most cases it's better to just create a specific class (or struct) for each type of key you'll need. That way:</p> <ol> <li>You're not wasting memory like you do with OpaqueKey.</li> <li>It's more explicit, so the code readability is better and you're not taking a dependency on the C# compilers anonymous type creation logic for the important Equals and GetHashCode methods.</li> <li>You can optimize for each type of composite key. (For example, some composite keys might have fields that are case insensitive for the purposes of equality and other composite keys might lend themselves to more optimal hash code algorithm than whatever the compiler chooses for anonymous types).</li> </ol> http://stackoverflow.com/questions/1209016/can-i-use-net-4-0-beta-without-having-vs2010/1209062#1209062 0 Answer by C. Dragon 76 for Can I use .net 4.0 beta without having vs2010? C. Dragon 76 2009-07-30T20:14:15Z 2009-07-30T20:14:15Z <p>You can use the compilers (like csc.exe or vbc.exe) directly. They should be installed at: C:\Windows\Microsoft.NET\Framework\v4.0 or something close to that.</p> <p>But if you want to do 4.0 development in Visual Studio, you'll probably need to install VS 2010.</p> http://stackoverflow.com/questions/1208939/what-is-possible-with-silverlight/1209019#1209019 1 Answer by C. Dragon 76 for What is possible with Silverlight? C. Dragon 76 2009-07-30T20:06:10Z 2009-07-30T20:06:10Z <p>Yes, it supports all of C#. In fact, it uses the same C# compiler as desktop versions of .NET. However, you target a completely different runtime and .NET Framework which are basically subsets of the desktop CLR and .NET framework.</p> <p>There are certainly limitations as compared to the desktop CLR and desktop .NET Framework. Among them:</p> <ul> <li>The Silverlight runtime is smaller, so certain functionality isn't there.</li> <li>Silverlight apps are sandboxed inside browser plugins and thus are limited in how they can access the file system, the network, the display, and other resources.</li> </ul> <p>But there are also certain key advantages over the desktop .NET Framework including:</p> <ul> <li>Silverlight apps have certain deployment advantages (like other web apps).</li> <li>Silverlight runs on macs.</li> </ul> http://stackoverflow.com/questions/1203168/asp-net-record-sound-from-a-web-app/1203250#1203250 0 Answer by C. Dragon 76 for ASP.NET: Record Sound From A Web App? C. Dragon 76 2009-07-29T21:43:05Z 2009-07-29T21:43:05Z <p>You'll need some client-side code to achieve this as regular HTML doesn't support audio input and upload.</p> <p>The ActiveX control <a href="http://www.guangmingsoft.net/audiorecord/" rel="nofollow">Active Audio Record 2.0</a> claims to support recording audio and uploading it to an ASP.NET web server. I've never tried it though.</p> http://stackoverflow.com/questions/1156140/how-to-create-an-icalendar-feed-that-people-can-subscribe-to/1156282#1156282 1 Answer by C. Dragon 76 for How to create an ICalendar Feed that people can subscribe to C. Dragon 76 2009-07-20T22:20:13Z 2009-07-20T22:20:13Z <p>You can host the .ics files with any web server such as IIS.</p> <p>For example, if you create a web application at <a href="http://foo" rel="nofollow">http://foo</a> with virtual directory X:\Foo, and your VB.net app saves a calendar to X:\Foo\iCal\Calendar1.ics, others can consume the iCal feed at <a href="http://foo/iCal/Calendar1.ics" rel="nofollow">http://foo/iCal/Calendar1.ics</a>.</p> http://stackoverflow.com/questions/1102614/is-there-any-point-unit-testing-serialization/1141106#1141106 2 Answer by C. Dragon 76 for Is there any point Unit testing serialization? C. Dragon 76 2009-07-17T01:38:47Z 2009-07-17T01:38:47Z <p>I agree with you that you will be testing the .NET implementation more than you'll be testing your own code. But if that's what you want to do (perhaps you don't trust the .NET implementation :) ), I might approach your three questions as follows.</p> <ol> <li><p>Yes, it's certainly possible to test the writer without the reader. Use the writer to serialize the example (20-year old Bob) you provided to a MemoryStream. Open the MemoryStream with an XmlDocument. Assert the root node is named "MyObject". Assert it has one attribute named "Height" with value "300". Assert there is a "Name" element containing a text node with value "Bob". Assert there is an "Age" element containing a text node with value "20".</p></li> <li><p>Just do the reverse process of #1. Create an XmlDocument from the 20-year old Bob XML string. Deserialize the stream with the reader. Assert the Name property equals "Bob". Assert the Age property equals 20. You can do things like add test case with insignificant whitespace or single quotes instead of double-quotes to be more thorough.</p></li> <li><p>See #1. You can extend it by adding what you consider to be tricky "edge" cases you think could break it. Names with various Unicode characters. Extra long names. Empty names. Negative ages. Etc.</p></li> </ol> http://stackoverflow.com/questions/1140933/xml-vs-comma-delimited-text-files/1141062#1141062 0 Answer by C. Dragon 76 for XML vs comma delimited text files C. Dragon 76 2009-07-17T01:13:13Z 2009-07-17T01:13:13Z <p>Among the reasons you may prefer XML over CSV (depends on the task at hand of course): * Almost all platforms and languages have existing libraries for reading, writing, parsing, and manipulating XML. * XML has well-defined rules for encoding all characters. CSV has ambiguities such as how to encode commas that are part of the data. * XML supports a variety of data shapes (like hierarchical) where as CSV is most useful when the data looks like a table (rows and columns).</p> http://stackoverflow.com/questions/1065651/where-do-you-find-quiet-places-to-code/1065725#1065725 0 Answer by C. Dragon 76 for Where do you find quiet places to code? C. Dragon 76 2009-06-30T20:02:02Z 2009-06-30T20:02:02Z <p>My den. With my desk, my chair, my computers, my keyboard, and my monitors setup exactly how I like them. When needed, there is also my door and my music.</p> http://stackoverflow.com/questions/93989/prevent-multiple-instances-of-a-given-app-in-net 8 Prevent multiple instances of a given app in .NET? C. Dragon 76 2008-09-18T16:08:52Z 2009-06-04T14:47:07Z <p>In .NET, what's the best way to prevent multiple instances of an app from running at the same time? And if there's no "best" technique, what are some of the caveats to consider with each solution?</p> http://stackoverflow.com/questions/530450/why-does-a-wpf-bitmapimage-object-not-download-an-image-from-a-uri-source-in-asp/839684#839684 0 Answer by C. Dragon 76 for Why does a WPF BitmapImage object not download an image from a Uri Source in ASP.Net Web Forms? C. Dragon 76 2009-05-08T12:58:25Z 2009-05-08T12:58:25Z <p>I think the DownloadCompleted event is never raised because BitmapImage loads asynchronously when you use the UriSource property which allows the background thread (DownloadAndSave method) to complete before the image is loaded.</p> <p>What worked for me recently in an almost identical situation was to download the bitmap resource synchronously and set it with the BitmapImage.StreamSource property. Note when using that technique that you can't close/dispose the stream until after you've rendered the RenderTargetBitmap.</p> http://stackoverflow.com/questions/228256/operating-system-from-user-agent-http-header 3 Operating System from User-Agent HTTP Header C. Dragon 76 2008-10-23T01:53:25Z 2009-05-01T08:51:25Z <p>Is there a good, up-to-date listing anywhere that maps User-Agent HTTP Header strings --> operating systems?</p> http://stackoverflow.com/questions/739177/how-do-you-launch-the-visual-studio-just-in-time-debugger-for-a-silverlight-websi 0 How do you launch the Visual Studio Just-In-Time Debugger for a Silverlight website? C. Dragon 76 2009-04-10T23:45:55Z 2009-04-10T23:45:55Z <p>I'm trying to find a way to conveniently debug a Silverlight website when I'm not working inside the Visual Studio IDE. The following command almost works, but it seems to always attach the debugger in Native Mode rather than Silverlight Mode.</p> <pre><code>vsjitdebugger "C:\Program Files\Internet Explorer\iexplore.exe" http://localhost/ </code></pre> http://stackoverflow.com/questions/539845/wix-shortcut-overwrites-existing-shortcut-with-same-name 0 WiX shortcut overwrites existing shortcut with same name C. Dragon 76 2009-02-12T03:12:30Z 2009-04-03T06:52:23Z <p>When Wix creates a shortcut with the same name as an existing shortcut, it overwrites the existing shortcut. Is there a way to detect the existing shortcut and ensure the new shortcut has a unique name?</p> <p>For example, if Wix installs shortcut "MyApp" on the desktop, but the user already has a shortcut named "MyApp" on their desktop, I'd like Wix to instead install shortcut "MyApp (2)" (or something like that) and leave the existing "MyApp" shortcut unchanged.</p> http://stackoverflow.com/questions/641570/silverlight-2-0-loading-issue/663786#663786 0 Answer by C. Dragon 76 for Silverlight 2.0 loading issue C. Dragon 76 2009-03-19T19:53:56Z 2009-03-19T19:53:56Z <p>Perhaps the client has an older build of SL2 installed. You can check their version number in the About tab in the Microsoft Silverlight Configuration panel (right click on the empty Silverlight app).</p> <p>If it's an older build, they'll need to install the RTM build.</p> http://stackoverflow.com/questions/654988/deserialize-session-object-without-type-reference/655025#655025 0 Answer by C. Dragon 76 for Deserialize session object without type reference? C. Dragon 76 2009-03-17T16:36:25Z 2009-03-17T16:36:25Z <p>If you just need a snapshot of the object, then yes, you can simply serialize it (or just the properties you're interested in) and then pass the serialized data to process B. The XmlSerializer class probably provides the simplest way to serialize the object and then process B can read the data using any standard XML parser.</p> http://stackoverflow.com/questions/185983/configuring-iis-on-windows-vista-home-edition 1 Configuring IIS on Windows Vista Home Edition C. Dragon 76 2008-10-09T05:09:58Z 2009-03-13T05:47:15Z <p>My friend accidentally bought a laptop with Windows Vista Home Basic Edition. He figured out how to install IIS on it, but it doesn't seem to have either the management console or the admin tools. Is there any way for him to configure a site or import an IIS 6 config file?</p> <p>EDIT: "Windows Vista Home Edition" --> "Windows Vista Home Basic Edition".</p> http://stackoverflow.com/questions/621229/detect-cycles-in-a-geneology-graph-during-a-depth-first-search/621241#621241 0 Answer by C. Dragon 76 for Detect cycles in a geneology graph during a Depth-first search C. Dragon 76 2009-03-07T03:23:59Z 2009-03-07T03:23:59Z <p>Your hash table solution should work if you keep track of nodes instead of horses. Just make sure every time you read a new horse you create a new node even if the value/horse is the same as a previous node's value/horse. </p> http://stackoverflow.com/questions/619857/how-to-use-a-single-sqltransaction-for-multiple-sqlconnections-in-net/619961#619961 0 Answer by C. Dragon 76 for How to use a single SqlTransaction for multiple SqlConnections in .NET? C. Dragon 76 2009-03-06T18:42:35Z 2009-03-06T18:42:35Z <p>I don't think a transaction can span multiple connections. </p> <p>What's the reasoning for doing the multiple inserts in separate connections? I would think you'd want them in a single connection normally.</p> http://stackoverflow.com/questions/615955/under-c-how-much-of-a-performance-hit-is-a-try-throw-and-catch-block/616137#616137 2 Answer by C. Dragon 76 for Under C# how much of a performance hit is a try, throw and catch block C. Dragon 76 2009-03-05T19:00:22Z 2009-03-05T19:00:22Z <p>In general, throwing an exception is costly in .NET. Simply having a try/catch/finally block is not. So, yes, the existing code is bad from a performance perspective because when it does throw, it throws 5-6 bloated exceptions without adding any value over simply letting the original exception naturally bubble up 5-6 stack frames.</p> <p>Worse yet, the existing code is really bad from a design perspective. One of the main benefits of exception handling (as compared to returning error codes) is that you don't need to check for exceptions/return codes everywhere (in the call stack). You need only catch them at the small number of places you actually want to <em>handle</em> them. Ignoring an exception (unlike ignoring a return code) doesn't ignore or hide problem. It just means it'll be handled higher up the call stack.</p> http://stackoverflow.com/questions/615940/c-how-to-retrieve-the-calling-method-from-within-a-method/616004#616004 0 Answer by C. Dragon 76 for c# how to retrieve the calling method from within a method C. Dragon 76 2009-03-05T18:34:24Z 2009-03-05T18:34:24Z <p>I think you do need to use the StackTrace class and then StackFrame.GetMethod() on the next frame.</p> <p>This seems like a strange thing to use reflection for though. If you are defining PopularMethod, can't go define a parameter or something to pass the information you really want. (Or put in on a base class or something...)</p> http://stackoverflow.com/questions/596473/how-do-you-teach-best-practices/597000#597000 0 Answer by C. Dragon 76 for How do you TEACH best practices? C. Dragon 76 2009-02-27T22:56:20Z 2009-02-27T22:56:20Z <blockquote> <p>I can't offer any incentives though as I am just a co-worker.</p> </blockquote> <p>Maybe you can't offer monetary incentives, but there are plenty of others incentives you could offer. Just look at how effective Stack Overflow's reputation and badges are. </p> <p>One simple idea would be to offer weekly "[YourNameHere]'s Excellent Code of The Week Awards". Just send an email every Friday highlighting an example of what you consider good coding practice and praising the developer who used it. If you really can't find anything you like from your own team one week, give that week's award to somebody you found on the internet.</p> http://stackoverflow.com/questions/485174/programming-fonts/593287#593287 -4 Answer by C. Dragon 76 for Programming Fonts C. Dragon 76 2009-02-27T02:11:38Z 2009-02-27T02:11:38Z <p>I prefer syntax highlighting that supports <strong>multiple fonts</strong> in <strong>multiple sizes</strong>. Editors like Source Insight and even Notepad++ allow you to customize syntax highlighting not only by text color, but also by the font family and font size. </p> <p>You can do things like make class declarations and member declarations a larger font size to stand-out a little and make comments a different font family to blend into the background and look less like code.</p> http://stackoverflow.com/questions/547710/why-is-syntactic-sugar-sometimes-considered-a-bad-thing/547894#547894 0 Answer by C. Dragon 76 for Why is Syntactic Sugar sometimes considered a bad thing? C. Dragon 76 2009-02-13T22:10:56Z 2009-02-13T22:10:56Z <p>Syntax, in general, makes a language hard to learn, let alone master. Therefore, the smaller the set of syntax, the easier it is to learn and to try to master. This is a major reason why many new languages borrow the syntax from popular, existing languages.</p> <p>Also, while I can simply avoid learning certain features I'm not interested in for whatever reason, I'll eventually find myself reading someone else's code who <em>does</em> like that feature and then I'll need to go learn that feature just to understand their code.</p> http://stackoverflow.com/questions/542217/load-a-bitmapsource-and-save-using-the-same-name-in-wpf-ioexception/547100#547100 0 Answer by C. Dragon 76 for Load a BitmapSource and save using the same name in WPF -> IOException C. Dragon 76 2009-02-13T18:20:03Z 2009-02-13T18:20:03Z <p>Add the following line to your loading code:</p> <pre><code>image.CacheOption = BitmapCacheOption.OnLoad; </code></pre> <p>This will load open the file, read it into memory, and close it all during <em>image.EndInit</em>. The default of <em>BitmapCacheOption.Default</em> has the odd behavior of opening the file, reading it into memory, but not yet closing it during <em>image.EndInit</em>. </p> http://stackoverflow.com/questions/546869/labeling-a-group-of-members-as-private-public-in-c/546882#546882 1 Answer by C. Dragon 76 for labeling a group of members as private/public in c# C. Dragon 76 2009-02-13T17:34:02Z 2009-02-13T17:34:02Z <p>You're correct. Although, if you leave visibility keyword off altogether, a member defaults to private.</p> http://stackoverflow.com/questions/452788/does-a-program-that-is-written-with-the-microsoft-net-framework-compile-execute/452811#452811 6 Answer by C. Dragon 76 for Does A Program that is written with the Microsoft .NET framework compile/execute native code? C. Dragon 76 2009-01-17T04:54:33Z 2009-01-17T04:54:33Z <p>Sort of. The .NET compiler compiles your source code into IL (an intermediate language) and packages it in an assembly (usually one .DLL or .EXE file) which you deploy. At run-time, it is hosted by a CLR (common language runtime) which is responsible for executing the code, enforcing security rules, and so on. The main desktop CLR for Windows (there are others like Mono and Silverlight) doesn't interpret the IL, but rather "JIT"s (just in-time compiles) the IL code into native code before executing methods (functions).</p> <p>Note there are actually some performance advantages to <a href="http://en.wikipedia.org/wiki/Just-in-time_compilation" rel="nofollow">just in-time compilation</a>. For example, the CLR can optimize the native code it generates based on performance characteristics of the machine it is running on like type of CPU, CPU cache size, number of CPUs, RAM size, etc. Traditional compilers can't do this as they don't know what machine the code they generate will ultimately be executed on.</p> <p>Also, assemblies can be "pre-JITted" using a tool called <a href="http://msdn.microsoft.com/en-us/library/6t9t5wcf(VS.80).aspx" rel="nofollow">ngen</a>. In this process the native code is compiled from the IL before the assembly is executed and cached on disk. That way, no JITting overhead is incurred at run-time.</p> http://stackoverflow.com/questions/446673/how-do-i-manage-conflict-in-the-workplace/447863#447863 2 Answer by C. Dragon 76 for How do I manage conflict in the workplace? C. Dragon 76 2009-01-15T18:21:30Z 2009-01-15T18:21:30Z <p>Leaders are those people who inspire and motivate others to follow their lead. Don't wait to be appointed. Lead by believing in yourself and your causes. Appointments and recognition will eventually follow, but those are not the true measure of a leader.</p> <p>There are lots of styles of leadership. Pick what's comfortable and effective for you. If you're outgoing and are already highly respected within your team, you may be able to directly address the problem by telling your fellow developers how you feel about this behavior and why you believe it needs to change.</p> <p>If you're not the vocal leader sort or are new to the team, you can still lead by example. Don't trash talk. Make it a point to complement others when they do something well. Encourage your co-workers. Take time to get to know everyone on a personal level. Bring snacks to meetings (don't underestimate this gesture :D ). It may take time, but a slow and steady approach will eventually work if you're consistent and patient.</p> http://stackoverflow.com/questions/1319066/forcing-unit-testing-on-developers/1319088#1319088 Comment by C. Dragon 76 on Forcing Unit Testing on Developers C. Dragon 76 2009-08-23T22:23:34Z 2009-08-23T22:23:34Z @grenade: My experience with TDD is that it hasn't really uncovered a lot of bugs and many of the bugs it has uncovered would easily be revealed with simple black box testing. It also hasn't influenced my class design much, but perhaps I have a tendency to overthink class design anyway. I'm not outright dismissing the methodology. I'm just saying that in my personal experience, the time spent designing and maintaining TDD tests is generally better spent elsewhere. http://stackoverflow.com/questions/1156140/how-to-create-an-icalendar-feed-that-people-can-subscribe-to/1156282#1156282 Comment by C. Dragon 76 on How to create an ICalendar Feed that people can subscribe to C. Dragon 76 2009-07-26T16:27:50Z 2009-07-26T16:27:50Z Correct. Yes, just have the link point to the .ics file. iCalendar/ics (like RSS) is a pull technology, not a push technology. So the subscribers will periodically poll your server for changes. It should &quot;just work.&quot; http://stackoverflow.com/questions/670104/what-are-real-world-examples-of-when-linked-lists-should-be-used/670193#670193 Comment by C. Dragon 76 on What are real world examples of when Linked Lists should be used? C. Dragon 76 2009-03-21T23:35:13Z 2009-03-21T23:35:13Z I should say <i>sometimes</i> requiring less space. Depends on things like how full the array is and how big the linked list's node pointer/index is. http://stackoverflow.com/questions/670104/what-are-real-world-examples-of-when-linked-lists-should-be-used/670193#670193 Comment by C. Dragon 76 on What are real world examples of when Linked Lists should be used? C. Dragon 76 2009-03-21T23:30:00Z 2009-03-21T23:30:00Z Array-based FIFO queues usually have O(1) queue and dequeue operations. The only time one of them needs to be O(n) is when it grows/resizes. Also, array-based queues have some advantages over linked-list based queues such as requiring less space and not fragmenting the data. http://stackoverflow.com/questions/654988/deserialize-session-object-without-type-reference/655025#655025 Comment by C. Dragon 76 on Deserialize session object without type reference? C. Dragon 76 2009-03-18T23:13:41Z 2009-03-18T23:13:41Z I believe jmaddrey was trying to avoid referencing the DLL from process B. Presumably process A is already referencing the DLL. http://stackoverflow.com/questions/615955/under-c-how-much-of-a-performance-hit-is-a-try-throw-and-catch-block/616137#616137 Comment by C. Dragon 76 on Under C# how much of a performance hit is a try, throw and catch block C. Dragon 76 2009-03-06T18:21:01Z 2009-03-06T18:21:01Z Yes, but it's even easier than that. Simply remove the entire catch(TclException e) block. If you don't catch the exception, it will bubble up the call stack all by itself. http://stackoverflow.com/questions/615982/how-can-we-restrict-the-user-from-saving-a-web-page Comment by C. Dragon 76 on How can we restrict the user from saving a web page? C. Dragon 76 2009-03-05T18:38:44Z 2009-03-05T18:38:44Z Why do you want to do this? http://stackoverflow.com/questions/569847/best-algorithm-for-inserting-text-before-and-after-a-token-in-c/570575#570575 Comment by C. Dragon 76 on Best algorithm for inserting text before and after a token in C#? C. Dragon 76 2009-02-27T18:24:44Z 2009-02-27T18:24:44Z One optimization that would probably help is to initialize resultBuilder with a more generous initial capacity (such as new StringBuilder(2 * original.Length). http://stackoverflow.com/questions/591951/does-the-net-streams-save-memory/591979#591979 Comment by C. Dragon 76 on Does the .NET Streams save memory? C. Dragon 76 2009-02-26T19:21:09Z 2009-02-26T19:21:09Z .NET FileStreams have their own internal buffers. So using the above code with FileStreams probably takes slightly more than 32K of memory (32K + whatever the size of FileStream's internal buffer is). But in any case, a constant amount of memory is used with this technique. http://stackoverflow.com/questions/263500/best-programming-monitor/263631#263631 Comment by C. Dragon 76 on Best Programming Monitor C. Dragon 76 2009-01-17T03:06:36Z 2009-01-17T03:06:36Z Yeah, to my knowledge ClearType doesn't work properly with monitors rotated 90 degrees. For that matter, I don't think there's a way to tune it individually for dual monitors. Consider both feature requests if you're reading this and work on Windows 7. :) http://stackoverflow.com/questions/447384/probability-interview-question-random-sampling Comment by C. Dragon 76 on probability interview question, random sampling C. Dragon 76 2009-01-15T18:25:06Z 2009-01-15T18:25:06Z Totally agree with Daniel. It's an interesting problem, but it's a very poor question to use in a programmer interview. http://stackoverflow.com/questions/446673/how-do-i-manage-conflict-in-the-workplace Comment by C. Dragon 76 on How do I manage conflict in the workplace? C. Dragon 76 2009-01-15T18:03:02Z 2009-01-15T18:03:02Z I like the question. It's not a programming question, but it's certainly related to programming. Having a positive working environment (from co-workers to hardware to office furniture) has a major impact on your ability to program successfully. http://stackoverflow.com/questions/421419/good-choice-for-a-lightweight-checksum-algorithm Comment by C. Dragon 76 on Good choice for a lightweight checksum algorithm? C. Dragon 76 2009-01-07T19:19:47Z 2009-01-07T19:19:47Z Yeah, this sounds like something usually left to the transport layer. Can you explain your scenario a little more? Where is your data being sent and what specific causes of data corruption are you trying to guard against? http://stackoverflow.com/questions/100358/looking-for-c-html-parser/389799#389799 Comment by C. Dragon 76 on Looking for C# HTML parser C. Dragon 76 2008-12-23T20:17:28Z 2008-12-23T20:17:28Z You may want to ask that as a separate question (outside of this thread). http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/43242#43242 Comment by C. Dragon 76 on What "already invented" algorithm did you invent? C. Dragon 76 2008-12-05T23:11:14Z 2008-12-05T23:11:14Z That's one of my all-time favorites though I can't claim to being a co-inventor for this one. I also used it with GWBasic though I think I wrote an assembly language version because IIRC GWBasic didn't support &quot;Super VGA&quot; screen resolutions.