User cfeduke - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T12:58:26Z http://stackoverflow.com/feeds/user/5645 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1909085/anticipating-possible-circular-reference-situation-in-upcoming-net-project-idea/1909138#1909138 0 Answer by cfeduke for Anticipating possible circular-reference situation in upcoming .Net project idea... anything to watch out for? cfeduke 2009-12-15T17:44:26Z 2009-12-15T17:44:26Z <p>Create an assembly (or assemblies as the case may be) that only contain interfaces. Reference the interface only assembly from your concrete class assemblies and have every concrete class implement one or more interfaces. Do not have concrete class assemblies refer to other concrete class assemblies that are part of your solution.</p> <p>This approach should help you avoid circular dependencies.</p> <p>Implement a <a href="http://en.wikipedia.org/wiki/Dependency%5Finjection" rel="nofollow">dependency injection</a>/<a href="http://en.wikipedia.org/wiki/Inversion%5Fof%5Fcontrol" rel="nofollow">inversion of control container</a> like <a href="http://structuremap.sourceforge.net/Default.htm" rel="nofollow">StructureMap</a> or one of the many other .NET options available to you to reduce coupling even further.</p> http://stackoverflow.com/questions/1908969/iphone-or-ipod-touch-as-test-device/1909105#1909105 -1 Answer by cfeduke for iPhone or iPod Touch as test device cfeduke 2009-12-15T17:38:19Z 2009-12-15T17:38:19Z <p>You could give <a href="http://www.deviceanywhere.com" rel="nofollow">Device Anywhere</a> a try. My company used that service for a while and it seemed to meet our needs.</p> <p>As an independent developer the price may be too much.</p> http://stackoverflow.com/questions/1480537/how-can-i-validate-exits-and-aborts-in-rspec 2 How can I validate exits and aborts in RSpec? cfeduke 2009-09-26T06:02:12Z 2009-11-21T20:28:53Z <p>I am trying to spec behaviors for command line arguments my script receives to ensure that all validation passes. Some of my command line arguments will result in <code>abort</code> or <code>exit</code> being invoked because the parameters supplied are missing or incorrect.</p> <p>I am trying something like this which isn't working:</p> <pre><code># something_spec.rb require 'something' describe Something do before do Kernel.stub!(:exit) end it "should exit cleanly when -h is used" do s = Something.new Kernel.should_receive(:exit) s.process_arguments(["-h"]) end end </code></pre> <p>The <code>exit</code> method is firing cleanly preventing RSpec from validating the test (I get "SystemExit: exit").</p> <p>I have also tried to <code>mock(Kernel)</code> but that too is not working as I'd like (I don't see any discernible difference, but that's likely because I'm not sure how exactly to mock Kernel and make sure the mocked Kernel is used in my <code>Something</code> class).</p> http://stackoverflow.com/questions/1758252/how-to-configure-permissions-on-application-folder-to-write-xml-documents/1758277#1758277 1 Answer by cfeduke for How to configure permissions on application folder to write XML Documents cfeduke 2009-11-18T19:02:29Z 2009-11-18T19:02:29Z <p>You should have your application write files that belong to a user in that user's My Documents folder, not into the application's folder.</p> <p>You can get the path to the My Documents folder using the .NET Framework with the following C# code:</p> <pre><code>var myDocsPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)); </code></pre> <p>If the XML file is more like application settings, then use Environment.SpecialFolder.ApplicationData or <a href="http://msdn.microsoft.com/en-us/library/system.environment.specialfolder.aspx" rel="nofollow">a more appropriate special folder</a>.</p> http://stackoverflow.com/questions/254980/help-with-credenumerate/255073#255073 3 Answer by cfeduke for Help with CredEnumerate cfeduke 2008-10-31T21:55:43Z 2009-11-18T18:56:50Z <p>You need to dereference the pointer to the array to get the array, then for each item in the array you will need to dereference the item to get the <code>PCREDENTIALS</code> instance.</p> <p>I found <a href="http://www.msnewsgroups.net/group/microsoft.public.dotnet.languages.csharp/topic33651.aspx" rel="nofollow">this post with some example code</a> for performing what you want to do:</p> <pre><code>[DllImport("advapi32", SetLastError = true, CharSet=CharSet.Unicode)] static extern bool CredEnumerate(string filter, int flag, out int count, out IntPtr pCredentials); </code></pre> <p>...</p> <pre><code>int count = 0; IntPtr pCredentials = IntPtr.Zero; IntPtr[] credentials = null; bool ret = CredEnumerate(null, 0, out count, out pCredentials); if (ret != false) { credentials = new IntPtr[count]; IntPtr p = pCredentials; for (int n = 0; n &lt; count; n++) { if(Marshal.SizeOf(p) == 4) //32 bit CLR? p = new IntPtr(p.ToInt32() + n); else p = new IntPtr(p.ToInt64() + n); credentials[n] = Marshal.ReadIntPtr(p); } } else // failed.... </code></pre> <p>Then for each pointer you'll need to use <code>Marshal.PtrToStructure</code> to dereference the pointer into a <code>PCREDENTIALS</code> struct instance (sorry I cannot find the typedef for <code>PCREDENTIALS</code> anywhere, I'll assume you have it - and if you do don't forget the correct MarshalAs attributes and StructLayout attribute when you do define it):</p> <pre><code>// assuming you have declared struct PCREDENTIALS var creds = new List&lt;PCREDENTIALS&gt;(credentials.Length); foreach (var ptr in credentials) { creds.Add((PCREDENTIALS)Marshal.PtrToStructure(ptr, typeof(PCREDENTIALS))); } </code></pre> <p>You would obviously want to combine the example and <code>PtrToStructure</code> code for optimal results but I wanted to leave the integrity of the example intact.</p> http://stackoverflow.com/questions/1725831/when-should-i-use-htmlhelper-extension-methods/1725862#1725862 2 Answer by cfeduke for When should I use HtmlHelper Extension Methods? cfeduke 2009-11-12T22:29:51Z 2009-11-12T22:29:51Z <p>I personally prefer option 3 ("Write an HtmlHelper Extension method") because those bodies of code lend themselves to be easily unit testable.</p> <p>I really do wish extension methods could be placed on internal or nested classes because you are right, you will begin to pollute your namespaces with tons of extension methods which are only used in one View.</p> <p>I'd recommend sequestering these HtmlHelper extension methods in static classes in a custom namespace <em>per View</em> that you manually reference in the View so as to limit the number of extension methods available throughout your project.</p> http://stackoverflow.com/questions/1724800/stream-read-problem/1724866#1724866 1 Answer by cfeduke for Stream Read Problem cfeduke 2009-11-12T19:45:11Z 2009-11-12T19:45:11Z <p>The first example is using the byte array's declared size of 1000 as an input parameter into the <code>Read</code> method.</p> <p>The second example is reading the stream one byte at a time, which is great for streaming incoming or outgoing data - meaning if you can process portions of the stream you are receiving without first buffering it all entirely into memory this is a more efficient approach.</p> <p>I think where you are getting confused here is that the author is artificially limiting the example to 1,000 bytes maximum. A lot of protocols that involve streaming usually send a byte or two at the beginning specifically notifying the consumer of the length of the stream as a whole so it can best chunk and process the stream so no declared limit of 1,000 is required. You get the size, you chunk it appropriately (including the last chunk which may not be complete chunk size), and process each chunk.</p> http://stackoverflow.com/questions/1724739/back-button-handle-a-dynamic-form/1724822#1724822 6 Answer by cfeduke for Back Button Handle A Dynamic Form cfeduke 2009-11-12T19:37:15Z 2009-11-12T19:37:15Z <p>I can't find a prewritten library for this, but I'm sure its been solved before. If I had to it myself I would take this approach:</p> <ol> <li><p>Use the <a href="http://en.wikipedia.org/wiki/Command%5Fpattern" rel="nofollow">command pattern</a> so that each method which modifies the page's UI by adding controls also invokes an AJAX method to push the method invoked (textual Javascript representation) onto a queue stored in the server's session.</p></li> <li><p>After body onLoad completes, use an AJAX method to query the server's session for a command queue for the page the user is on. If one is retrieved, just <code>eval</code> each member of the queue to rebuild the page's UI in the same order the user did it.</p></li> </ol> <p>Keep in mind with this approach you are recording not just additions of controls, but removals as well. You will require separate state holders for user input controls, like text boxes (you will also likely need server-side session with AJAX method access).</p> http://stackoverflow.com/questions/1724663/query-performance-help/1724732#1724732 3 Answer by cfeduke for Query Performance help cfeduke 2009-11-12T19:26:16Z 2009-11-12T19:26:16Z <p>I had a similar performance problem where a table generally has a few million rows but I only need to process what has changed since the start of my last execution. In my target table I have an <code>IDENTITY</code> column so when my batch process begins, I get the highest <code>IDENTITY</code> value from the set I select where the IDs are greater than my previous batch execution. Then upon successful completion of the batch job, I add a record to a separate table indicating this highest <code>IDENTITY</code> value which was successfully processed and use this as the start input for the next batch invocation. (I'll also add that my bookmark table is general purpose so I have multiple different jobs using it each with unique job names.)</p> <p>If you are experiencing locking issues because your processing time per record takes a long time you can use the approach I used above, but break your sets into 1,000 rows (or whatever row chunk size your system can process in a timely fashion) so you're only locking smaller sets at any given time.</p> http://stackoverflow.com/questions/1704487/algorithm-to-flatten-peak-usage-over-time 3 Algorithm to flatten peak usage over time? cfeduke 2009-11-09T22:47:38Z 2009-11-10T00:19:48Z <p>I have an environment that serves many devices spread across 3 time zones by receiving and sending data during the wee hours of the night. The distribution of these devices was determined pseudo-randomly based on an identification number and a simple calculation using a modulo operation. The result of such a calculation creates an unnecessary artificial peak which consumes more resources than I'd like during certain hours of the night.</p> <p>As part of our protocol I can instruct devices when to connect to our system on subsequent nights.</p> <p>I am seeking an algorithm which can generally distribute the peak into a more level line (albeit generally higher at most times) or at least a shove in the right direction - meaning what sort of terminology should I spend my time reading about. I have available to me identification numbers for devices, the current time, and the device's time zone as inputs for performing calculation. I can also perform some up front analytical calculations to create pools from which to draw slots from, though I feel this approach may be less elegant than I am hoping for (though a learning algorithm may not be a bad thing...).</p> <p>(Ultimately and somewhat less relevant I will be implementing this algorithm using C#.)</p> http://stackoverflow.com/questions/188719/color-coherence-vector-in-c 3 Color Coherence Vector in C# cfeduke 2008-10-09T19:07:09Z 2009-11-08T13:00:09Z <p>A friend and I are about to embark on creating a machine that performs some image comparison for sorting. I know about histogram comparison and am generally confident that a small grid of histograms per image precalculated and stored in columns in a database table will generally give us pretty good matches on the first pass because we are matching like things.</p> <p>The second comparison we want to perform is to use a <a href="http://tinyurl.com/4lo8nl" rel="nofollow">color coherence vector</a> (CCV) of images which passed the histogram match test from our subject image to the candidate images. I know that this sort of comparison is more precise.</p> <p>My friend is confident that he can develop CCV in C# using the <a href="http://www.codeproject.com/KB/cs/Intel_OpenCV.aspx" rel="nofollow">C# wrapper</a> to <a href="http://sourceforge.net/projects/opencvlibrary/" rel="nofollow">OpenCV</a>. I am pretty sure he can too. However I would like to know:</p> <ol> <li>Has anyone already done this in C# and released the source code? Or a C# wrapper?</li> <li>Are we barking up the wrong tree? (Should we just use CCV and forgo histogram comparisons at the database level? Or is CCV too much?)</li> </ol> http://stackoverflow.com/questions/1640916/kanban-scrumish-tools-to-get-started/1641127#1641127 1 Answer by cfeduke for kanban scrumish tool(s) to get started cfeduke 2009-10-29T01:17:16Z 2009-10-29T01:17:16Z <p><a href="http://www.agilezen.com" rel="nofollow">agilezen.com</a> seems like the ideal solution for you. I have used it in the past solo for myself and it is convenient. I would not let a prejudice against non-OpenID sites get in the way of making a good choice.</p> http://stackoverflow.com/questions/1494048/how-do-you-test-a-referenced-class-that-performs-internal-operations/1494089#1494089 2 Answer by cfeduke for How do you test a referenced class that performs internal operations? cfeduke 2009-09-29T18:06:04Z 2009-09-29T18:06:04Z <p>I would mock <code>container</code> to have the <code>getComponentRef</code> return a mock object which the method can test against. Mocking each "componentInterface" class needs to be something that happens in their own dedicated unit tests. Don't combine testing responsibilities because its convenient, keep everything as its own unit so no unit test is dependent on another test.</p> http://stackoverflow.com/questions/1490816/modifying-module-level-variables-in-an-anonymous-array-in-ruby 1 Modifying module level variables in an anonymous array in Ruby cfeduke 2009-09-29T06:06:10Z 2009-09-29T07:29:36Z <p>I am in the midst of learning Ruby and thought I was clever with the following piece of code:</p> <pre><code>[@start,@end].map!{ |time| time += operation == :add ? amount : -(amount) } </code></pre> <p>where @start, @end are two module level variables, operation can be one of :add or :sub, and amount is an float amount to adjust both @start and @end by.</p> <p>Granted it only saves me a line of code, but why doesn't this approach work, and how can I get something similar that does?</p> <p>(My expected output is for @start/@end to be modified accordingly, however unit tests show that they stay at their original values.)</p> http://stackoverflow.com/questions/1480537/how-can-i-validate-exits-and-aborts-in-rspec/1480575#1480575 0 Answer by cfeduke for How can I validate exits and aborts in RSpec? cfeduke 2009-09-26T06:27:41Z 2009-09-26T06:27:41Z <p>After digging, <a href="http://osdir.com/ml/lang.ruby.rspec.user/2007-10/msg00510.html" rel="nofollow">I found this</a>.</p> <p>My solution ended up looking like this:</p> <pre><code># something.rb class Something def initialize(kernel=Kernel) @kernel = kernel end def process_arguments(args) @kernel.exit end end # something_spec.rb require 'something' describe Something do before :each do @mock_kernel = mock(Kernel) @mock_kernel.stub!(:exit) end it "should exit cleanly" do s = Something.new(@mock_kernel) @mock_kernel.should_receive(:exit) s.process_arguments(["-h"]) end end </code></pre> http://stackoverflow.com/questions/1475406/how-can-i-duplicate-a-ruby-core-class-name-and-still-use-that-core-class-in-my-cl 0 How can I duplicate a Ruby core class name and still use that core class in my class? cfeduke 2009-09-25T04:18:05Z 2009-09-25T04:37:29Z <p>I am creating a very limited Time class in which I want to make use of the core Time class's parse method. So I end up with something like this...</p> <pre><code>class Time def parse(str) @time = # I want to use Time.parse here end end </code></pre> <p>How can I break out of my newly defined Time class and access the core Time class without renaming my class?</p> http://stackoverflow.com/questions/422230/how-can-i-include-a-cdata-section-in-a-configurationelement 2 How can I include a CDATA section in a ConfigurationElement? cfeduke 2009-01-07T21:45:01Z 2009-09-21T20:45:34Z <p>I'm using the .NET Fx 3.5 and have written my own configuration classes which inherit from ConfigurationSection/ConfigurationElement. Currently I end up with something that looks like this in my configuration file:</p> <pre><code>&lt;blah.mail&gt; &lt;templates&gt; &lt;add name="TemplateNbr1" subject="..." body="Hi!\r\nThis is a test.\r\n."&gt; &lt;from address="blah@hotmail.com" /&gt; &lt;/add&gt; &lt;/templates&gt; &lt;/blah.mail&gt; </code></pre> <p>I would like to be able to express the body as a child node of <code>template</code> (which is the <code>add</code> node in the example above) to end up with something that looks like:</p> <pre><code>&lt;blah.mail&gt; &lt;templates&gt; &lt;add name="TemplateNbr1" subject="..."&gt; &lt;from address="blah@hotmail.com" /&gt; &lt;body&gt;&lt;![CDATA[Hi! This is a test. ]]&gt;&lt;/body&gt; &lt;/add&gt; &lt;/templates&gt; &lt;/blah.mail&gt; </code></pre> http://stackoverflow.com/questions/1422265/asp-net-custom-validator-question/1422438#1422438 0 Answer by cfeduke for asp.net custom validator question cfeduke 2009-09-14T15:55:18Z 2009-09-14T15:55:18Z <p>If you're not afraid of using the MS AJAX toolkit you can make something that'll do what what you want quickly (if perhaps not the greatest in performance friendliness).</p> <p>Create several different custom validators each representing the different validation goals associated with the drop down list items. Set each validator's Enabled property to false.</p> <p>Have the drop down list autopostback on change and alter which validator is Enabled based on the selected value.</p> <p>Enclose all of this in an <code>UpdatePanel</code> for smooth UI.</p> <p>Another approach involves jQuery and one of the validation plugins. You'll just have to spend a short amount of time accustoming yourself to whichever validation plugin you go with. (I like this approach because its highly re-usable across different web dev platforms.) Ultimately you will have a client-side event attached to the drop down list to add or remove CSS styles to your different fields; however remember to program defensively and include server side validation as well.</p> http://stackoverflow.com/questions/1329317/simulate-incorrect-content-length-headers-for-http-in-c 1 Simulate Incorrect Content-Length Headers for HTTP in C# cfeduke 2009-08-25T16:15:24Z 2009-09-13T20:29:27Z <p>We are building a comprehensive integration test framework in C# for our application which exists on top of HTTP using IIS7 to host our applications.</p> <p>As part of our integration tests we want to test incoming requests which will result in EndOfStreamExceptions ("Unable to read beyond end of stream") that occur when a client sends up a HTTP header indicating a larger body size than it actually transmits as part of the body. We want to test our error recovery code for this condition so we need to simulate these sorts of requests.</p> <p>I am looking for a .NET Fx-based socket library or custom HttpWebRequest replacement that specifically allows developers to simulate such conditions to add to our integration test suite. Does anyone know of any such libraries? A scriptable solution would work as well.</p> http://stackoverflow.com/questions/1412986/tortoisesvn-on-web-server/1413028#1413028 2 Answer by cfeduke for Tortoisesvn on web server cfeduke 2009-09-11T20:12:40Z 2009-09-11T20:12:40Z <p>If you cannot install new software on your shared host you either need to run a server you can control (like an old machine with Linux hooked up to your router with NAT port forwarding and a DynDNS alias so you can access your repository while on the road) or you'll have to use a commercial provider. <a href="http://beanstalkapp.com/pricing" rel="nofollow">These guys</a> have a free plan which looks like it could get you started. (Never tried that provider, its just one of the first ones that comes up when I search.)</p> http://stackoverflow.com/questions/1412266/how-can-i-extend-te-membershipuser-class-w-o-multiple-inheritance/1412985#1412985 1 Answer by cfeduke for How can I extend te MembershipUser class w/o multiple inheritance? cfeduke 2009-09-11T20:01:24Z 2009-09-11T20:01:24Z <p>You can solve this by creating an interface, <code>IPerson</code> and replacing your concrete <code>Person</code> class with a class which inherits from <code>MembershipUser</code> and implements <code>IPerson</code>.</p> <p>You could also keep your concrete <code>Person</code>, create <code>IPerson</code> and have your own class encapsulate a <code>Person</code> instance and inherit from <code>MembershipUser</code> while implementing <code>IPerson</code>. </p> <p>In either case, anywhere where you once used a concrete <code>Person</code> type you should replace with <code>IPerson</code> (such as method arguments).</p> <pre><code>interface IPerson { string LastName { get; set; } // ... } class MyMembershipUser : MembershipUser, IPerson { private Person _person = new Person(); // constructors, etc. public string LastName { get { return _person.LastName; } set { _person.LastName = value; } } } </code></pre> <p>Alternatively you could continue using Person and have it encapsulate a MembershipUser instance (as part of a constructor) and include an explicit cast for Person to MembershipUser when needed...</p> <pre><code>class Person { private readonly MembershipUser _mu; public Person(MembershipUser mu) { _mu = mu; } public static explicit operator MembershipUser(Person p) { // todo null check return p._mu; } } // example var person = new Person(Membership.GetUser("user")); Membership.UpdateUser((MembershipUser)person); </code></pre> <p>I would go with the interface implementation solution myself.</p> http://stackoverflow.com/questions/1412814/is-there-an-open-source-net-sql-editor-component-available/1412906#1412906 1 Answer by cfeduke for Is there an open source .Net SQL Editor component available? cfeduke 2009-09-11T19:43:33Z 2009-09-11T19:43:33Z <p>Looks like <a href="http://stackoverflow.com/questions/1087735/a-textbox-richtextbox-that-has-syntax-highlighting-c">someone asked a similar question</a> and ended up being pointing to <a href="http://scintillanet.codeplex.com/" rel="nofollow">ScintillaNET</a></p> http://stackoverflow.com/questions/1411110/access-violation-exception-crash-from-c-callback-to-c-function/1412870#1412870 0 Answer by cfeduke for Access Violation Exception/Crash from C++ callback to C# function. cfeduke 2009-09-11T19:34:35Z 2009-09-11T19:34:35Z <p><a href="http://nicholas.piasecki.name/blog/2009/08/quicktip-when-your-app-crashes-in-release-mode-but-runs-fine-under-the-debugger/" rel="nofollow">This doesn't directly answer your question</a>, but it may lead you in the right direction as far as debug mode okay vs. release mode not okay:</p> <blockquote> <p>Since the debugger adds a lot of record-keeping information to the stack, generally padding out the size and layout of my program in memory, I was “getting lucky” in debug mode by scribbling over 912 bytes of memory that weren’t very important. Without the debugger, though, I was scribbling on top of rather important things, eventually walking outside of my own memory space, causing Interop to delete memory it didn’t own.</p> </blockquote> <p>What is the definition of DataLoggerWrap? A char field may be too small for the data you are receiving.</p> http://stackoverflow.com/questions/1329371/asp-net-counting-number-of-characters-being-written-in-a-textbox/1329412#1329412 2 Answer by cfeduke for Asp.net Counting Number of Characters being written in a textbox cfeduke 2009-08-25T16:31:01Z 2009-08-25T16:31:01Z <p>You will need to use a client-side scripting language hosted in the browser - basically you will have to use JavaScript.</p> <p><a href="http://stackoverflow.com/questions/815146/how-can-i-get-the-length-of-text-entered-in-a-textbox-using-jquery">This question</a> answers fairly well the behind the scenes of what you want to do. You'll need to handle the onKeyPress client-side event of the text boxes and text areas you want to track, and placing the label, script, and text controls in a ASP.NET UserControl wouldn't be a bad approach.</p> <p>Edit: since the linked question doesn't go indepth any further, you'll need <a href="http://jquery.com" rel="nofollow">jQuery</a> (and you'll realize how much fun web UI programming can be again when you start using it) and I suspect <a href="http://dotnetslackers.com/articles/ajax/Using-jQuery-with-ASP-NET.aspx" rel="nofollow">this article</a> will help you understand how to get the ball rolling.</p> http://stackoverflow.com/questions/1156895/accessing-c-variable/1156903#1156903 0 Answer by cfeduke for accessing c# variable cfeduke 2009-07-21T01:43:18Z 2009-07-21T01:43:18Z <p>You will be able to examine the Request collection during a post back to get the value directly like traditional ASP if all else fails.</p> <p>If you are adding the control server side, which it sounds like you are, you'll actually be able to use the instance of the control you create in Init to get its value (after Init completes).</p> http://stackoverflow.com/questions/1145296/controlleractioninvoker-to-invoke-action-with-paramters/1145315#1145315 0 Answer by cfeduke for ControllerActionInvoker to invoke action with paramters cfeduke 2009-07-17T19:47:44Z 2009-07-17T20:16:59Z <p><strike>From the documentation it looks like you want to use the InvokeActionMethod method which allows you to pass parameters in an IDictionary as the third argument.</strike></p> <p>The ControllerContext actually carries with it additional data that the controller will use for binding (filters, model binders, route data). Your argument will need to be passed through the ControllerContext.</p> <p>I found an <a href="http://codebetter.com/blogs/jeffrey.palermo/archive/2008/03/09/this-is-how-asp-net-mvc-controller-actions-should-be-unit-tested.aspx" rel="nofollow">example about unit testing controllers</a>.</p> http://stackoverflow.com/questions/1145392/set-source-file-dependencies-in-csproj-file-without-manually-editing/1145419#1145419 2 Answer by cfeduke for Set source file dependencies in csproj file without manually editing cfeduke 2009-07-17T20:07:25Z 2009-07-17T20:07:25Z <p>There is no intrinsic way in the IDE to perform this, but it looks like someone has <a href="http://www.codeproject.com/KB/cs/DependentUponAdd-in.aspx" rel="nofollow">an add in available</a> that does what you want.</p> <p>Also worthwhile mentioning <a href="http://www.tabsstudio.com/" rel="nofollow">Tabs Studio</a> which allows you to group these Solution Explorer dependencies in your tabs as well (so you can have all related files open without losing a lot of screen/tab space real estate).</p> http://stackoverflow.com/questions/1145353/avoiding-language-keyword-conflicts/1145363#1145363 0 Answer by cfeduke for Avoiding Language Keyword Conflicts cfeduke 2009-07-17T19:57:48Z 2009-07-17T19:57:48Z <p>Most languages have something to escape any reserved words. C# has @ so you can use @class as an argument name (something MVC adopters are learning).</p> <p>If the domain states that a certain word be used to describe it then that is what the escaping of reserved words is there for. I wouldn't be afraid to escape reserved words to get my model close to the domain even if it means more typing - the clarity is worth it!</p> http://stackoverflow.com/questions/1145266/debugging-two-web-applications-in-asp-net/1145291#1145291 2 Answer by cfeduke for Debugging two web applications in asp.net cfeduke 2009-07-17T19:41:49Z 2009-07-17T19:41:49Z <p>Open up a second instance of Visual Studio, then Ctrl+Alt+P (menu Tools > Attach to Process) then attach to the appropriate web server process (if you run under IIS this may be w3wp.exe or aspnet_wp IIRC, if you use the built in web server then attach to the process which lists the appropriate port for your project).</p> <p>Optionally just run the second one and manually go to the first one in your browser by entering the appropriate address and trigger the redirect which you have verified is working.</p> http://stackoverflow.com/questions/1139846/visual-studio-2008-testing-a-method/1139914#1139914 2 Answer by cfeduke for Visual Studio 2008 Testing A Method? cfeduke 2009-07-16T19:55:07Z 2009-07-16T19:55:07Z <p>I prefer to follow <a href="http://en.wikipedia.org/wiki/Test-driven%5Fdevelopment" rel="nofollow">test driven development</a> (TDD) when using Visual Studio - or any other language/IDE for that matter. Essentially you assert what you want your code to do <em>by writing the unit test first</em>, validate that the test fails, and then fill in the blanks in the method that you are testing. Its much easier to say than do, but once you're used to it, it becomes very natural and fast - not to mention your code has a lot less defects!</p> <p>For a tool where you can test some code as you go, I recommend <a href="http://www.linqpad.net/" rel="nofollow">LinqPad</a> (and there is also <a href="http://www.sliver.com/dotnet/SnippetCompiler/" rel="nofollow">SnippetCompiler</a>). While these don't let you highlight code and execute you can copy and paste into them achieving much of the same results.</p> <p>For writing unit tests in VS you can use <a href="http://www.nunit.org/index.php" rel="nofollow">NUnit</a> or any of its clones. I do not recommend the VS for Testers for unit testing.</p> <p>I use NUnit in my current project and have become a fan of <a href="http://www.jetbrains.com/resharper/" rel="nofollow">ReSharper</a> for integrating the test suite into Visual Studio.</p> http://stackoverflow.com/questions/1917235/programmatically-go-to-another-page-with-a-listview/1917266#1917266 Comment by cfeduke on Programmatically go to another page with a ListView? cfeduke 2009-12-16T20:09:20Z 2009-12-16T20:09:20Z There's a pretty good write up of how to simulate paging in a ListView here: <a href="http://leedumond.com/blog/resetting-the-page-index-in-a-listview/" rel="nofollow">leedumond.com/blog/&hellip;</a> http://stackoverflow.com/questions/1909085/anticipating-possible-circular-reference-situation-in-upcoming-net-project-idea/1909138#1909138 Comment by cfeduke on Anticipating possible circular-reference situation in upcoming .Net project idea... anything to watch out for? cfeduke 2009-12-16T19:52:28Z 2009-12-16T19:52:28Z I have always just approached logging through the use of Log4Net. It helps solve the problem you cite in that it doesn't introduce it in the first place. Your domain goes through your DAL but does your logging specifically have to go through the same DAL? I prefer being able to log to a database, text log file, or other Log4Net providers. It isn't important that it goes through my DAL, its just important that it works reliably. http://stackoverflow.com/questions/1908969/iphone-or-ipod-touch-as-test-device/1909105#1909105 Comment by cfeduke on iPhone or iPod Touch as test device cfeduke 2009-12-15T17:40:03Z 2009-12-15T17:40:03Z I was also going to add they have a free trial. Except its only for 3 hours. Geez. http://stackoverflow.com/questions/1758229/remove-duplicates-from-file Comment by cfeduke on Remove Duplicates from File cfeduke 2009-11-18T19:06:52Z 2009-11-18T19:06:52Z Seconded, saw the tag and had to look. http://stackoverflow.com/questions/1724800/stream-read-problem/1724866#1724866 Comment by cfeduke on Stream Read Problem cfeduke 2009-11-12T22:18:52Z 2009-11-12T22:18:52Z Usually yes. Let's say you have a 40 MB file on disk you want to transfer. Rather than loading 40 MB in memory then transferring it - and thus making 40 MBs of memory crowded for a length of time - you just read, let's say the first 1024 bytes, transfer it, and continue in 1024 byte chunks. A file transfer protocol may state &quot;the first two bytes of the first packet contains an unsigned int indicating the size of the payload&quot; so you know when to stop reading from that stream. The receiving end can do the same - chunk it into 1024 bytes or some other resource friendly buffer number. http://stackoverflow.com/questions/1724739/back-button-handle-a-dynamic-form/1724822#1724822 Comment by cfeduke on Back Button Handle A Dynamic Form cfeduke 2009-11-12T20:16:39Z 2009-11-12T20:16:39Z Here's an interesting alternative approach where you insert URLs into the browser's history: <a href="http://www.oracle.com/technology/pub/articles/dev2arch/2006/01/ajax-back-button.html" rel="nofollow">oracle.com/technology/pub/&hellip;</a> also look at the references on page 3 for more ideas. http://stackoverflow.com/questions/1724739/back-button-handle-a-dynamic-form/1724822#1724822 Comment by cfeduke on Back Button Handle A Dynamic Form cfeduke 2009-11-12T20:12:34Z 2009-11-12T20:12:34Z MS has a thing called &quot;history points&quot; for their AJAX and ASP.NET stuff which utilizes the querystring for state storage (ug) but I don't see a general purpose library for doing this. http://stackoverflow.com/questions/1724739/back-button-handle-a-dynamic-form/1724822#1724822 Comment by cfeduke on Back Button Handle A Dynamic Form cfeduke 2009-11-12T19:57:45Z 2009-11-12T19:57:45Z There <i>has</i> to be a library out there for doing just this, unfortunately googling for &quot;record and replay Javascript&quot; doesn't point me right to it. http://stackoverflow.com/questions/1724739/back-button-handle-a-dynamic-form/1724822#1724822 Comment by cfeduke on Back Button Handle A Dynamic Form cfeduke 2009-11-12T19:54:24Z 2009-11-12T19:54:24Z If a button click adds a text box ('text2') your method will push a 'addTextBox(&quot;text2&quot;);' JavaScript command to your AJAX service. That's all fine and good. The problem is the user is going to type text in said text box. You'll need these text boxes (or other controls) to relay said data to the server so when you recreate the UI, you also recreate the values the user input into the controls. You can use the command pattern to solve this as well by pushing JavaScript functions to set values onto the command queue. http://stackoverflow.com/questions/1724642/visual-studio-compilation-time-statistic Comment by cfeduke on Visual Studio Compilation Time Statistic cfeduke 2009-11-12T19:17:49Z 2009-11-12T19:17:49Z I did this recently by hand (recording compilation times over a day of work) to justify $369 spent on an SSD. Moving to SSD was worth every penny. http://stackoverflow.com/questions/1724025/in-c-whats-the-best-way-to-store-a-group-of-constants-that-my-program-uses/1724217#1724217 Comment by cfeduke on In C#, what's the best way to store a group of constants that my program uses? cfeduke 2009-11-12T18:28:09Z 2009-11-12T18:28:09Z If you are going to use const, expose as internal only. Do not make const public (even if you think your assemblies aren't going to be used external to your organization). Also properties give you programmatic flexibility for future expansion without the need to redefine your interface. http://stackoverflow.com/questions/1724025/in-c-whats-the-best-way-to-store-a-group-of-constants-that-my-program-uses/1724057#1724057 Comment by cfeduke on In C#, what's the best way to store a group of constants that my program uses? cfeduke 2009-11-12T18:26:01Z 2009-11-12T18:26:01Z Const values are copied from the source assembly into the compiled code. This means if you have to change a const value, all dependent assemblies MUST be recompiled against the new version. Safer and more convenient to use static readonly's. http://stackoverflow.com/questions/1724025/in-c-whats-the-best-way-to-store-a-group-of-constants-that-my-program-uses/1724041#1724041 Comment by cfeduke on In C#, what's the best way to store a group of constants that my program uses? cfeduke 2009-11-12T18:24:31Z 2009-11-12T18:24:31Z The problem with const is that any assemblies compiled against consts get local copies of those consts when they themselves are compiled; so if you change a value you must also recompile all assemblies dependent on your assembly defining the constants - therefore its often safer to go the readonly route. Properties instead of public static values gives you flexibility to add some programming logic in the future if you need it (i.e. read from localization) without changing the interface to your constant values. http://stackoverflow.com/questions/1704487/algorithm-to-flatten-peak-usage-over-time/1704534#1704534 Comment by cfeduke on Algorithm to flatten peak usage over time? cfeduke 2009-11-10T14:33:22Z 2009-11-10T14:33:22Z I've just been informed by my co-worker that we cannot use random since we need a way, without recording state preferably, to know when a device will contact our server for the next night to verify that it is running correctly. http://stackoverflow.com/questions/1704487/algorithm-to-flatten-peak-usage-over-time/1704534#1704534 Comment by cfeduke on Algorithm to flatten peak usage over time? cfeduke 2009-11-09T23:02:55Z 2009-11-09T23:02:55Z Hmm yes I think maybe I'm overthinking this problem. Random within a time zone - weighted across relative traffic from other time zones - should work.