User Randolpho - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T13:36:59Zhttp://stackoverflow.com/feeds/user/12716http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1861089/exception-handling/1861192#18611921Answer by Randolpho for Exception handlingRandolpho2009-12-07T16:40:32Z2009-12-07T18:39:31Z<p>Stack unwinding is different from simply returning. It also involves a search for an error handler (a catch block) in each lower level in the stack. That's what makes it a heavy process.</p>
<p>That's why you should only use exceptions for truly exceptional circumstances. The warnings about exception handling are for those folks who simply see an exception as a way to deliver data higher up in the stack; folks who like to do "clever" programming. They think it's a clever way to get around a problem, but they instead create two new problems they hadn't anticipated. </p>
<p>In general, you're best off using exceptions (for truly exceptional circumstances) rather than return codes, as this makes your code easier to read and maintain. For example, which is easier to read and maintain?</p>
<pre><code>void MyMethod()
{
try
{
Method1();
Method2();
Method3();
}
catch(SomeException const & e) // edited per Mordachai's suggestion
{
// handle SomeException
}
catch(SomeOtherException const & e)
{
// handle SomeOtherException
}
}
void MyMethod()
{
int err;
err = Method1();
switch(err)
{
case SOMEERRORCODE:
// handle some error code
break;
case SOMEOTHERERRORCODE:
// handle some other error code
break;
}
err = Method2();
switch(err)
{
case SOMEERRORCODE:
// handle some error code
break;
case SOMEOTHERERRORCODE:
// handle some other error code
break;
}
err = Method3();
switch(err)
{
case SOMEERRORCODE:
// handle some error code
break;
case SOMEOTHERERRORCODE:
// handle some other error code
break;
}
}
</code></pre>
http://stackoverflow.com/questions/1843784/optimizing-viewstate/1843834#18438343Answer by Randolpho for Optimizing ViewStateRandolpho2009-12-03T23:28:37Z2009-12-03T23:28:37Z<p>There's not a lot I can tell you except "don't put a lot into your <code>ViewState</code>".</p>
<p>Places I'd look for optimizations:</p>
<ul>
<li>Anything you added to ViewState yourself</li>
<li>Large amounts of data bound to data display controls like <code>GridViews</code>, <code><x>Lists</code>, and <code>Repeaters</code>.</li>
</ul>
<p><code>GridViews</code> are particularly bad about <code>ViewState</code>; everything you databind goes into it, so if you bind a particularly large list expecting ASP.NET to handle pagination of it for you, you're going to have a huge <code>ViewState</code>. The only way to get around this is to only bind one page at a time to the <code>GridView</code>, but that means you'll have to do data-side pagination which can be just as painful, or to turn off <code>ViewState</code> for the <code>GridView</code>, which means (arguably) useful features like in-line editing are no longer available. </p>
<p>There's no silver bullet here. </p>
http://stackoverflow.com/questions/1837048/function-augmentation-in-net/1837182#18371820Answer by Randolpho for Function augmentation in .Net?Randolpho2009-12-03T01:55:23Z2009-12-03T01:55:23Z<p>I'm just throwing this out wildly, but I bet he meant "how do you write a method that accepts a lambda function as its argument?"</p>
<p>In other words, he was looking for the use of the <a href="http://msdn.microsoft.com/en-us/library/bb549151.aspx" rel="nofollow">Func<></a> delegates.</p>
http://stackoverflow.com/questions/1834263/how-should-i-inherit-idisposable/1834302#18343021Answer by Randolpho for How should I inherit IDisposable?Randolpho2009-12-02T16:57:32Z2009-12-02T16:57:32Z<p>It depends on your interface, but I'd lean toward #2. If you have two implementations of <code>ISomeInterface</code> and only one needs disposing, then there's the possibility you need to refactor. </p>
<p>In general when you're binding to an interface, it's better to have that interface inherit <code>IDisposable</code> rather than the base class; if your interface doesn't inherit <code>IDisposable</code>, you must cast to <code>IDisposable</code> to dispose of the object, and that runs the risk of an InvalidCast...</p>
http://stackoverflow.com/questions/1827586/data-filtering-or-better-linq-query/1827604#18276040Answer by Randolpho for Data filtering or better LINQ query?Randolpho2009-12-01T17:12:59Z2009-12-01T21:01:18Z<p>Pre-compute the closest data points based on the known resolution of display/chart. Then, when you hover over a point, it's a simple lookup of the x/y coordinates against the known pre-computed value. </p>
<p>For performance reasons, do your pre-computation in a separate thread and do not allow the display of those values until the computation is completed. Re-compute every time the size of the chart is changed. </p>
<p>Bottom line: There is no LINQ query that will help you execute every time you do a mouse-over for large data sets. It just can't be done. You're looking at order N^2 no matter what. So pre-compute it and cache it, so you only do your computations once. </p>
<blockquote>
<p><em>This is an intriguing idea but wouldn't I still need to do a look-up of x/y among 12000+ pairs? Could you elaborate on how I should store the pre-computed x/y pairs for a fast look-up? For example, I have data points at (200,300) and (250, 300) and user's mouse is at (225, 300).</em> – Alexandra </p>
</blockquote>
<p>Well, I guess that would depend on the graph. Based on your code and your mention of Yahoo Finance Charts, I'm assuming your data only varies by horizontal postion, i.e. for a given X value, you are computing the display data. </p>
<p>In that case, you can a simple <code>Dictionary<int, TimeDataPoint></code> as your cache. The <code>Key</code> is the transformed X coordinate (i.e. in the coordinate space of your display graph), the <code>Value</code> is the pre-computed TimeDataPoint. The dictionary would have a record for every X coordinate in your display graph, so a 400-pixel-wide graph has 400 pre-computed data points. </p>
<p>If your data varies against both axes, you could instead use <code>Dictionary<System.Windows.Point, TimeDataPoint></code>, in pretty much the same way, but this would increase the number of items in your Dictionary by an order of magnitude. A 400 by 300 graph would have 120000 entries in the dictionary, so the tradeoff is a higher memory footprint. </p>
<p>Pre-calculating your data is the tricky part; it'd have to be done differently from the way you're currently doing it. I'm going to assume here that <code>xValue</code> in your example is an interpolation of a Date based on the X value, since it's compared to <code>p.Date</code>. </p>
<p>This might work:</p>
<pre><code>private Dictionary<int, TimeDataPoint> BuildCache(List<TimeDataPoint> mainSeries)
{
int xPrevious = 0;
int xCurrent = 0;
Dictionary<int, TimeDataPoint> cache = new Dictionary<int, TimeDataPoint>();
foreach(var p in mainSeries)
{
xCurrent = XFromDate(p.Date);
for(int val = xPrevious; val < xCurrent; val++)
{
cache.Add(val, p);
}
xPrevious = xCurrent;
}
return cache;
}
</code></pre>
<p><code>XFromDate</code> would extract the X coordinate for a particular date. I'll leave doing that up to you. :)</p>
http://stackoverflow.com/questions/1826886/accessing-c-code-hosted-on-us-server-from-local-machine/1826908#18269080Answer by Randolpho for Accessing C# code hosted on US server from Local machineRandolpho2009-12-01T15:25:51Z2009-12-01T15:25:51Z<p>This is not the proper way to build ASP.NET web applications.</p>
<p>What you <em>should</em> do is use source control and keep all of your code there. I prefer Subversion. Then you can deploy your compiled binaries to the server of your choice using the <a href="http://msdn.microsoft.com/en-us/library/20yh9f1b.aspx" rel="nofollow">Publish command</a>.</p>
http://stackoverflow.com/questions/1298511/how-to-loggedin-in-linkedin-automatically-from-asp-net-application/1826881#18268811Answer by Randolpho for How to loggedin in LinkedIn automatically from Asp.net Application?Randolpho2009-12-01T15:21:54Z2009-12-01T15:21:54Z<p>The problem is twofold: </p>
<ol>
<li>deciding which credentials to use</li>
<li>actually logging in</li>
</ol>
<p>Logging in is fairly straightforward: post to LinkedIn's login URL in the manner that LinkedIn expects. Unfortunately, <a href="http://stackoverflow.com/questions/40969/linked-in-api">LinkedIn still does not have a public API</a>, so this is going to require hackery. Go to a LinkedIn <a href="https://www.linkedin.com/secure/login?trk=hb%5Fsignin" rel="nofollow">web page that allows login</a> and analyze the page source. There will be a field names for username and password in the login form, and the login form will post to a specific URL. Duplicate the username and password with a web request to the URL of the form. You will receive a cookie as part of the response. Make sure you include that cookie in future requests to LinkedIn and you are then "logged in" for every request. </p>
<p>Of far more importance than the actual logging in, which is a simple programming challenge, is deciding which credentials to use. I'm guessing that you're building an application for others to use, rather than yourself. If so, you'll need to ask them to give you their LinkedIn credentials. Beware: this is something that most people simply will not do. It's a trust issue; if they give you their credentials, you now have access to their profile and can do nefarious things with it. You'll need a good disclaimer explaining how you would never do that, ever, and you'll need the people who read it to believe you. <em>Not as easy as it sounds.</em> </p>
<p>If, however, this is just for you, you're on easy street. Just use your own credentials. </p>
http://stackoverflow.com/questions/1822334/how-does-one-implement-ui-independent-applications/1822361#18223614Answer by Randolpho for How does one implement UI independent applications?Randolpho2009-11-30T21:00:25Z2009-11-30T21:10:17Z<p>To make your code UI independent, put the logic that is not dependent upon UI into a separate layer or assembly. Separate logic from presentation. It's what all the patterns like MVC, MVP, and MVVM follow. It's such a fundamental piece of software structure that it should be ingrained upon you; if it's not, make it so. </p>
<p>Separate logic from presentation. Learn it. Live it. Love it. </p>
<p>Edit:</p>
<blockquote>
<p>Can you give me an example? I already use BO and layering technique in my applications. But even so I have seen that it needs a lot of coding to plug my code to new UI technologies.</p>
<p>Please do not provide me with any superficial answer.</p>
</blockquote>
<p>I see that you have edited. Allow me to elaborate:</p>
<p>There's no getting away from <em>some</em> logic that is UI-dependent. UIs are not a shell; they still have logic and functionality. But that functionality should only be geared toward user interaction. Display data. Gather data. Fancy graphical tricks and animations, if your preferences lie in that direction. </p>
<p>The rest goes to the business layer, and <em>that</em> stuff can be reused. If you layer properly, you can avoid having to rewrite your core functionality every time you write the program for a new UI framework. </p>
<p>But you still have to rewrite the UI stuff. </p>
http://stackoverflow.com/questions/1820496/visual-studio-help-to-fix-circular-reference/1820716#18207163Answer by Randolpho for Visual Studio: Help to fix circular reference!Randolpho2009-11-30T16:04:47Z2009-11-30T19:40:28Z<p>I highly recommend you look into using <a href="http://www.ndepend.com/" rel="nofollow">NDepend</a>, which is a great way to find hidden dependencies. That tool will help you find all of the pain points in your code. Refactoring it is, ultimately, up to you.</p>
<p>The standard way of dealing with a circular dependency, where A references B and B references A, is to pull the items that are referenced by both A and B and put them into a separate assembly, C, such that A references C and B references C, but C does not reference either A or B. </p>
<p>Based on a read of your problem, my guess is that you have a lot of static methods or properties that you use all over the place. Get rid of them, or move them all to a single project that everything references. I prefer the former; static anything tends to be difficult to unit test.</p>
<blockquote>
<p>mmm. interesting, interesting... what about "free" "workarounds"? :)</p>
</blockquote>
<p>You <em>have</em> to refactor, there's no "workaround" for that. NDepend is just a tool that can help you find the painful areas; it's not going to do the work for you. Thankfully, it has a free trial that you can use to help you with your immediate problem.</p>
<p>If you don't want to use it, your only "workaround" would be to find the circular reference by searching through your code. One thing that might help you find the problem area would be to remove the reference to Project A from Project B and see what breaks, then compare it to what breaks when you remove the reference to Project B from Project A. The union of those lists should give you a starting point.</p>
<p>But you're going to have to refactor your code; there is no getting away from that. </p>
http://stackoverflow.com/questions/1793461/connection-string-issues-with-linq2sql/1793509#17935091Answer by Randolpho for connection string issues with linq2Sql Randolpho2009-11-24T22:52:44Z2009-11-24T22:52:44Z<p>Unfortunately, this is a huge source of pain with the LINQ to SQL designer. I do not know of a way to force visual studio to never add a default connection string when you drag tables or stored procedures onto the design surface. </p>
<p>We work around the issue thusly:</p>
<ol>
<li>we never save our dev passwords</li>
<li>we never use the default connection string in code when newing up a DataContext</li>
<li>we can therefore "safely" ignore the multiple connection strings during sprints that touch the data layer</li>
<li>when things die down/become more stable, we delete the connection strings from the data context, either using properties of the designer surface itself or by editing the XML. At that point, it's up to the modifier of the data context to keep up with deleting the default connection strings. </li>
</ol>
<p>Alas, this is not an ideal situation. Hopefully VS2010 will "fix" this issue. </p>
http://stackoverflow.com/questions/1793457/how-do-i-make-the-value-of-the-input-typeradio-invisible/1793478#17934786Answer by Randolpho for How do I make the "value" of the <input type="radio"> invisible?Randolpho2009-11-24T22:46:42Z2009-11-24T22:46:42Z<p>The value of "1" is not displayed to the user at all, it's hidden and only has meaning when the form posts. You need to add a <code><label></code> tag or just raw text near the radio button to display the value you want the user to see. </p>
http://stackoverflow.com/questions/1779459/multiplication-program-using-recursionin-c/1779473#17794731Answer by Randolpho for multiplication program using recursion(in C)Randolpho2009-11-22T18:13:34Z2009-11-23T19:44:36Z<p>You'll have to be way more specific if you want good help. But here's a recursive function in C that multiplies two positive integers:</p>
<pre><code>int multiply(int multiplicand, int multiplier)
{
if(multiplier == 0)
{
return 0;
}
return multiply(multiplicand, multiplier - 1) + multiplicand;
}
</code></pre>
<blockquote>
<p>Jonathan Leffler wrote: <em>And if multiplier is negative?</em></p>
</blockquote>
<p>Ok:</p>
<pre><code>int multiply(int multiplicand, int multiplier)
{
if(multiplier == 0)
{
return 0;
}
if(multiplier < 0)
{
return multiply(multiplicand, multiplier + 1) - multiplicand; //Edit: changed "+ multiplicand" to "- multplicand"
}
return multiply(multiplicand, multiplier - 1) + multiplicand;
}
</code></pre>
<blockquote>
<p>Mark Byers wrote: <em>The negative version is still wrong.</em></p>
</blockquote>
<p>Grumble, grumble. Serves me right for writing from memory and without testing. This one is tested for many integer ranges, negative and positive, odd and even. Should work for any integer value. Merry Wintereenmas. </p>
http://stackoverflow.com/questions/1777730/learning-c-from-a-c-background/1777770#17777700Answer by Randolpho for Learning c++ from a C# backgroundRandolpho2009-11-22T03:57:55Z2009-11-22T03:57:55Z<p>I don't have any links on the subject, but I can offer some general advice.</p>
<ol>
<li>Remember that you no longer have memory management. You <em>have</em> to delete your pointers after you're done with them.</li>
<li>In C++, there is no physical difference between a struct and a class. Both live on the heap or on the stack based on how you use them. In C#, a struct is a ValueType and lives on the stack, while a class is a ReferenceType and lives in the heap. In C++, a struct has public member visibility by default, while a class has private member visibility by default; that's it. In C++ a type (class or struct) lives on the stack by default, and only lives on the heap if you declare it as a pointer (and new it up). </li>
<li>Learn the Standard Template Library (STL). It's easily the best thing C++ has going for it. </li>
<li>Learn to hate the Microsoft Foundation CLass library (MFC), but learn to use it. If you're doing windows development in C++, you pretty much have to do it.</li>
</ol>
http://stackoverflow.com/questions/1773063/what-python-features-will-excite-the-interest-of-a-c-developer/1773322#17733220Answer by Randolpho for What Python features will excite the interest of a C# developer?Randolpho2009-11-20T21:23:56Z2009-11-20T21:23:56Z<p>Don't get me wrong, I am and will always be a devoted fan of C#.</p>
<p>But sometimes there are things I can't do in C#. lthough C# keeps reducing those gaps, Python is still the language I go to to fill them.</p>
<p>It's dynamic, flexible, powerful, and clean. Lovely language. Whenever I need to script or build dynamic or functional (as in functional programming) software, I go Python. </p>
http://stackoverflow.com/questions/1771414/return-html-from-a-web-service-in-asp-net/1771505#17715050Answer by Randolpho for return html from a web service in asp.netRandolpho2009-11-20T16:08:56Z2009-11-20T16:08:56Z<p>I assume your web service is being called by Javascript for some sort of AJAX-y client-side inclusion.</p>
<p>THIS IS A BAD IDEA</p>
<p>What you want to do is return <em>data</em> to your client-side javascript and use DOM manipulation (i.e. JQuery or ASP.NET AJAX) to insert the data into your page. Do not try to return raw HTML from a web service; that's not the point of a web service! If you need HTML, use an ASPX page to return HTML. If you're using server-side XML transformations to build your HTML, use an ASPX page containing a custom server control that emits the XML transformed into HTML. </p>
http://stackoverflow.com/questions/1765629/how-to-create-class-at-runtime-from-file/1765646#17656462Answer by Randolpho for How to create class at runtime from fileRandolpho2009-11-19T18:47:31Z2009-11-19T18:47:31Z<p>Yes, it's possible to create a class at runtime from a file. </p>
<p><a href="http://msdn.microsoft.com/en-us/library/650ax5cx.aspx" rel="nofollow">Dynamic Source Code Generation and Compilation</a></p>
http://stackoverflow.com/questions/1765588/whats-the-fastest-way-to-decompress-jpeg-images-in-c/1765620#17656202Answer by Randolpho for What's the fastest way to decompress JPEG images in C#Randolpho2009-11-19T18:43:37Z2009-11-19T18:43:37Z<p>I realize you probably have constraints that dictate the JPEG-frame requirement, but the best way to do this is to use a different format designed for video, like MEPG or Quicktime. Translate your JPEG frames into a video format designed for streaming and stream that, instead. </p>
http://stackoverflow.com/questions/1765135/i-want-a-shortcut-to-appear-in-the-vs-2008-toolbar-when-i-install-my-application/1765172#17651720Answer by Randolpho for I want a shortcut to appear in the VS 2008 toolbar when I install my applicationRandolpho2009-11-19T17:43:00Z2009-11-19T17:43:00Z<p>This MSDN article might help:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms165623.aspx" rel="nofollow">Displaying Add-ins on Toolbars and Menus</a></p>
http://stackoverflow.com/questions/1764469/sql-design-for-survey-with-answers-of-different-data-types/1764560#17645600Answer by Randolpho for SQL design for survey with answers of different data typesRandolpho2009-11-19T16:22:48Z2009-11-19T16:22:48Z<blockquote>
<p>that I'm posing is "I'd like to store data of an arbitrary type without doing any coding..." Is this hopeless?</p>
</blockquote>
<p>Yes, it pretty much is. There is no "good" solution to the problem you're posing. The "best" is as Dave Swersky and Larry Lustig described it: </p>
<p>A Question table, which stores the question, possible answers (if it's multiple choice) and a question type</p>
<p>An Answer table, which stores the answer to a question (FK to Question table), serialized as text. Varchar(4000) or TEXT datatype, preferably the former unless absolutely necessary. </p>
<p>It's up to your application logic to determine what the value means based on the type specified for the question. </p>
http://stackoverflow.com/questions/1759006/embed-an-html-form-within-a-larger-form/1759030#17590302Answer by Randolpho for Embed an HTML <form> within a larger <form>?Randolpho2009-11-18T20:57:30Z2009-11-19T02:36:49Z<p>What you have described will not work.</p>
<p>One workaround would be to create two forms that are not nested. You would use hidden inputs for your original parent form that duplicate the inputs from your original nested form. Then use Javascript/DOM manipulation to hook the submit event on your "parent" form, copying the values from the "nested" form into the hidden inputs in the "parent" form before allowing the form to submit. </p>
<p>Your form structure would look something like this (ignoring layout HTML):</p>
<pre><code><form id="form1">
<input name="val1"/>
<input name="val2" type="hidden" />
<input type="button" name="Submit Form 1 data including form 2" onsubmit="return copyFromForm2Function()">
</form>
<form id="form2">
<input name="val2"/>
<input type="button" name="Submit Form 2 ONLY">
</form>
</code></pre>
http://stackoverflow.com/questions/1758899/how-do-i-have-a-variable-in-c-that-can-accept-various-types/1758947#17589470Answer by Randolpho for How do I have a variable in C that can accept various types?Randolpho2009-11-18T20:45:39Z2009-11-18T20:45:39Z<p>You can use a <code>void *</code> pointer to accept a pointer to pretty much anything. Casting back to the type you want is the tricky part: you have to store the type information about the pointer somewhere. </p>
<p>One thing you could do is use a <code>struct</code> to store both the <code>void *</code> pointer and the type information, and add that to your data structure. The major problem there is the type information itself; C doesn't include any sort of type reflection, so you'll probably have to create an enumeration of types or store a string describing the type. You would then have to force the user of the <code>struct</code> to cast back from the <code>void *</code> to the original type by querying the type information. </p>
<p>Not an ideal situation. A much better solution would probably be to just move to C++ or even C# or Java. </p>
http://stackoverflow.com/questions/1758129/counting-values-in-columns/1758149#17581490Answer by Randolpho for Counting values in columns Randolpho2009-11-18T18:40:51Z2009-11-18T19:09:43Z<p>@Seb has a good solution, but it's server-dependent. Here's an alternate using subselects that should be portable:</p>
<pre><code>select
name,
(select count(type) from myTable where type=1 and name=a.name) as type1,
(select count(type) from myTable where type=2 and name=a.name) as type2
from
myTable as a
group by
name
</code></pre>
http://stackoverflow.com/questions/1758107/diagrams-for-data-flow/1758135#17581350Answer by Randolpho for Diagrams for Data Flow?Randolpho2009-11-18T18:39:09Z2009-11-18T18:39:09Z<p>Well, Visio is the most omnipresent, and it does a fair job. </p>
<p>I personally prefer <em>Enterprise Architect</em> or <em>Visual Paradigm for UML</em> for my diagrams. I find Visual Paradigm more user-friendly in terms of building the diagrams, but EA better for the actual presentation of the diagrams. </p>
http://stackoverflow.com/questions/1753459/using-linq-to-sql-entities-in-your-bll-or-ui/1753502#17535022Answer by Randolpho for Using Linq-to-SQL entities in your BLL or UI?Randolpho2009-11-18T03:46:07Z2009-11-18T03:46:07Z<p>The only major drawback to using L2S entities all the way through is that your UI needs to know about and bind to the concrete entities. That means your UI knows your data layer. Not usually a good idea. You really want a layered approach for anything that has the potential to be serious. </p>
<p>That said, it's perfectly possible to use the LINQ-to-SQL entities themselves in a layered architecture without knowledge of the data layer: extract interfaces for the entities and bind to them instead. </p>
<p>Keep in mind that all L2S entities are partial classes. Create interfaces that reflect your entities (<code>Refactor => Extract Interface</code> is your friend here) and create partial class definitions of your entities that implement the interfaces. Put the interfaces themselves (and only the interfaces) in a separate .DLL that your UI and Business Layer reference. Have your Business Layer and Data Layer accept and emit these interfaces rather than the concrete versions of them. You can even have the interfaces implement <code>INotifyPropertyChanging</code>, since the L2S entities themselves implement those interfaces. And it all works peachy.</p>
<p>Then, when/if you need a different persistence framework, you have no pain at all in the BL or UI, only in the data layer -- which is where you want it. </p>
http://stackoverflow.com/questions/1753142/multiple-authentication/1753162#17531621Answer by Randolpho for Multiple AuthenticationRandolpho2009-11-18T02:00:27Z2009-11-18T02:08:36Z<p>It sounds to me like you want to consider using <a href="http://openid.net/" rel="nofollow">OpenId</a>, which is a standard, fairly widely adopted form of single sign-on. Used by this very site, in fact, and supported by at least two of the three companies you mentioned: yahoo and google. Hotmail does not currently support it. </p>
http://stackoverflow.com/questions/1731762/simulate-the-page-lifecycle-to-grab-the-html-from-the-ui-layer/1749817#17498172Answer by Randolpho for Simulate the page lifecycle to grab the html from the UI layerRandolpho2009-11-17T15:52:51Z2009-11-17T15:52:51Z<p>If the "the best way to get an accurate snapshot is to actually take a snapshot of the UI" is actually true, then you need to refactor your code. </p>
<p>Build a data provider that provides your aggregated data to both the UI and the PDF generator. Layer your system. </p>
<p>Then, when it's time to build the PDFs, you have only a single location to call, and no hacky UI interception/multiple-thread issues to deal with.</p>
http://stackoverflow.com/questions/1746722/does-including-an-entire-namespace-slow-things-down/1746733#17467333Answer by Randolpho for Does including an entire namespace slow things down?Randolpho2009-11-17T05:12:14Z2009-11-17T05:12:14Z<p>No matter what, including the entire namespace will not slow down production code.</p>
<p>Will it slow down the compiler? That's debatable, but C# compilation is so fast it's unlikely. A far worse offender in slowing down compilation is a large number of projects in your solution. </p>
http://stackoverflow.com/questions/1746701/export-datatable-to-excel-file/1746711#17467111Answer by Randolpho for Export DataTable to Excel FileRandolpho2009-11-17T05:05:28Z2009-11-17T05:05:28Z<p>You could try the technique described here:</p>
<p><a href="http://www.c-sharpcorner.com/UploadFile/DipalChoksi/exportxl%5Fasp2%5Fdc11032006003657AM/exportxl%5Fasp2%5Fdc.aspx" rel="nofollow">C-Sharp Corner</a></p>
http://stackoverflow.com/questions/1745028/c-networking-apis/1745067#17450675Answer by Randolpho for C# Networking API'sRandolpho2009-11-16T21:46:34Z2009-11-16T21:46:34Z<p>I highly suggest you look into the <a href="http://msdn.microsoft.com/en-us/netframework/aa663324.aspx" rel="nofollow">Windows Communication Foundation</a>. It comes with any version of .NET 3.0 or greater, so if you're using VS 2008, you've got all you need.</p>
<p>It abstracts a heck of a lot of the details for networking, providing you with a very simple programming API. Even protocol details are abstracted away, and there are a ton of protocols to chose from already built in. </p>
<p>Hands down the best way to communicate across a network.</p>
http://stackoverflow.com/questions/1744046/deserialize-xml-with-ampersand-using-xmlserializer/1744062#17440623Answer by Randolpho for Deserialize XML with ampersand using XmlSerializer() Randolpho2009-11-16T18:45:21Z2009-11-16T18:45:21Z<p>you should XML-encode data like "Lord & Hogan". It should be encoded like this: </p>
<p><code>"Lord &amp; Hogan"</code></p>
http://stackoverflow.com/questions/1861089/exception-handling/1861161#1861161Comment by Randolpho on Exception handlingRandolpho2009-12-07T18:41:57Z2009-12-07T18:41:57ZI think Mordachai meant throw by value catch by reference. At least, that's the suggestion here <a href="http://www.goingware.com/tips/parameters/exceptions.html" rel="nofollow">goingware.com/tips/parameters/…</a>http://stackoverflow.com/questions/1861089/exception-handling/1861192#1861192Comment by Randolpho on Exception handlingRandolpho2009-12-07T18:38:09Z2009-12-07T18:38:09ZAaand, once again, SO to the rescue: <a href="http://stackoverflow.com/questions/1654150/scope-of-exception-object-in-c" rel="nofollow" title="scope of exception object in c">stackoverflow.com/questions/1654150/…</a>http://stackoverflow.com/questions/1861089/exception-handling/1861192#1861192Comment by Randolpho on Exception handlingRandolpho2009-12-07T18:34:25Z2009-12-07T18:34:25ZAlso, how would you catch a const reference to an exception object, anyway? Wouldn't the exception be out of scope right after it was thrown? It'd be off the stack by the time it got caught. http://stackoverflow.com/questions/1861089/exception-handling/1861192#1861192Comment by Randolpho on Exception handlingRandolpho2009-12-07T18:32:47Z2009-12-07T18:32:47ZIn my defense: I've probably spent too long in the Java and .NET world; there I'd just catch a reference to the exception and I was trying to duplicate that. But regardless of <i>what</i> I'm catching, the point still stands: exceptions, done correctly, in general, tend to be easier to read and maintain. http://stackoverflow.com/questions/1860937/how-can-i-lower-the-spam-score-of-my-email-message/1860949#1860949Comment by Randolpho on How can I lower the spam score of my email message?Randolpho2009-12-07T16:14:01Z2009-12-07T16:14:01Z+1, +!. Images are almost always unnecessary in emails, and they're an important indicator of spam! Don't bother with them. If you must use HTML, do so only for fonts and colors. Header images add nothing to the user experience <i>and are frequently blocked by email clients anyway</i>. http://stackoverflow.com/questions/1857327/find-host-name-using-the-ip-address-on-mac-os-x-networkComment by Randolpho on find host name using the IP address on Mac OS X networkRandolpho2009-12-07T02:00:22Z2009-12-07T02:00:22ZThat said, use NSLOOKUP <a href="http://en.wikipedia.org/wiki/Nslookup" rel="nofollow">en.wikipedia.org/wiki/Nslookup</a>http://stackoverflow.com/questions/1857327/find-host-name-using-the-ip-address-on-mac-os-x-networkComment by Randolpho on find host name using the IP address on Mac OS X networkRandolpho2009-12-07T01:54:08Z2009-12-07T01:54:08ZI suggest you try posting this question on serverfault.com, as you're more likely to get the responses you require. http://stackoverflow.com/questions/1835668/what-python-only-http-1-1-web-servers-are-availableComment by Randolpho on What Python-only HTTP/1.1 web servers are available?Randolpho2009-12-03T01:28:17Z2009-12-03T01:28:17ZThat's a little pedantic, isn't it? And a misread of @pommonico's question. If he had said "what are the HTTP 1.1 web servers available", being pedantic about a web framework that contains a server or not would make more sense. But by stating "python-only" he clearly is interested in a web-application framework. http://stackoverflow.com/questions/1834263/how-should-i-inherit-idisposable/1834281#1834281Comment by Randolpho on How should I inherit IDisposable?Randolpho2009-12-02T17:21:28Z2009-12-02T17:21:28ZProvided you still dispose of your managed disposable items in your Dispose method. http://stackoverflow.com/questions/1834263/how-should-i-inherit-idisposable/1834281#1834281Comment by Randolpho on How should I inherit IDisposable?Randolpho2009-12-02T17:20:57Z2009-12-02T17:20:57Z@Andy West: very much so. The complete pattern is specifically for when you have both managed and unmanaged items to dispose. If you only have managed items to dispose, the pattern is unnecessary. http://stackoverflow.com/questions/1834229/why-cant-i-pass-listcustomer-as-a-parameter-to-a-method-that-accepts-listobje/1834257#1834257Comment by Randolpho on Why can't I pass List<Customer> as a parameter to a method that accepts List<object>?Randolpho2009-12-02T17:02:49Z2009-12-02T17:02:49Z@Mark Byers: why? looks like it should help a lothttp://stackoverflow.com/questions/1834263/how-should-i-inherit-idisposable/1834281#1834281Comment by Randolpho on How should I inherit IDisposable?Randolpho2009-12-02T16:58:36Z2009-12-02T16:58:36Z+1 for mentioning the disposal pattern.http://stackoverflow.com/questions/1826014/what-does-4j-mean/1826046#1826046Comment by Randolpho on What does 4j mean?Randolpho2009-12-01T15:10:20Z2009-12-01T15:10:20ZExcellent response. I'd like to note that the "4j" suffix and the "j" prefix almost always denote a library or framework that has been ported to Java from another language; similarly, the "n" prefix denotes a library or framework that has been ported to .NET (usually C#) from another language. http://stackoverflow.com/questions/1822334/how-does-one-implement-ui-independent-applications/1822361#1822361Comment by Randolpho on How does one implement UI independent applications?Randolpho2009-12-01T02:23:59Z2009-12-01T02:23:59ZStill, good general rule. http://stackoverflow.com/questions/1822334/how-does-one-implement-ui-independent-applications/1822361#1822361Comment by Randolpho on How does one implement UI independent applications?Randolpho2009-12-01T02:23:24Z2009-12-01T02:23:24Z@Chetan Sastry: I agree 90%. For <code>System.Web</code> I agree wholeheartedly. <code>System.Data</code>, however, contains <code>DataSet</code> and <code>DataTable</code>, and both are very frequently used in databinding in the UI layer. I personally prefer and recommend POCOs for passing data to the UI layer, but the reality is that there are quite a few folks who still use those two classes. For everything else in the namespace, however, I agree.