User Joe - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T23:12:06Zhttp://stackoverflow.com/feeds/user/12567http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/841277/how-to-create-a-lazy-loaded-and-cached-collection-in-silverlight-csla1How to create a lazy-loaded and cached collection in Silverlight/CSLAJoe2009-05-08T18:53:06Z2009-12-15T15:00:03Z
<p>I'm creating a Silverlight front end for an existing desktop app written using CSLA. One thing that I'm having trouble with is converting classes like the following:</p>
<pre><code>public class SomeCollection : Csla.ReadOnlyListBase<SomeCollection, SomeObject>
{
private static SomeCollection _list = null;
public static SomeCollection GetSomeCollection()
{
if (_list == null)
{
_list = DataPortal.FetchChild<SomeCollection>();
}
return _list;
}
}
</code></pre>
<p>The code is peppered with "SomeCollection.GetSomeCollection()" This won't work on the silverlight side because all DataPortal access is asyncronous, so you have to start with something like the following:</p>
<pre><code>public static void GetSomeCollection(EventHandler<DataPortalResult<SomeCollection>> callback)
{
DataPortal<SomeCollection> portal = new DataPortal<SomeCollection>();
portal.FetchCompleted += callback;
portal.BeginFetch();
}
</code></pre>
<p>The callback handler gets called when the data is ready. I can certainly cache the result of this, but in the meantime any SomeCollection.GetSomeCollection() calls will fail. </p>
<p>I've tried blocking until the asynchronous call completes, but I've had no luck so far. That's not a great solution, but I don't know what else to do if SomeCollection.GetSomeCollection() is called before the data has been loaded. the only other option I can think of is to allow SomeCollection.GetSomeCollection() to return null, and then somehow convert all callers to handle null return values</p>
<p>Any thoughts?</p>
<p>(I'm super new to Silverlight and Csla, so it's possible that I'm going about this the completely wrong way)</p>
http://stackoverflow.com/questions/615355/is-there-any-reason-to-check-for-a-null-pointer-before-deleting/615378#6153784Answer by Joe for Is there any reason to check for a NULL pointer before deleting ?Joe2009-03-05T15:51:22Z2009-11-11T21:19:00Z<p>If pSomeObject is NULL, delete won't do anything. So no, you don't have to check for NULL.</p>
<p>We consider it good practice to assign NULL to the pointer after deleting it if it's at all possible that some knucklehead can attempt to use the pointer. Using a NULL pointer is slightly better than using a pointer to who knows what (the NULL pointer will cause a crash, the pointer to deleted memory may not)</p>
http://stackoverflow.com/questions/1682484/explicit-implementation-of-interfaces-getenumerator-causes-stack-overflow2Explicit implementation of interface's GetEnumerator causes stack overflowJoe2009-11-05T18:12:18Z2009-11-05T18:55:25Z
<p>I'm doing my best to code against interfaces whenever possible, but I'm having some issues when it comes to collections. For example, here are a couple interfaces I'd like to use.</p>
<pre><code>public interface IThing {}
public interface IThings : IEnumerable<IThing> {}
</code></pre>
<p>Here are the implementations. In order to implement IEnumerable<IThing> I need to explicitly implement IEnumerable<IThing>.GetEnumerator() in Things.</p>
<pre><code>public class Thing : IThing {}
public class Things : List<Thing>, IThings
{
IEnumerator<IThing> IEnumerable<IThing>.GetEnumerator()
{
// This calls itself over and over
return this.Cast<IThing>().GetEnumerator();
}
}
</code></pre>
<p>The problem is that the GetEnumerator implementation causes a stack overflow. It calls itself over and over again. I can't figure out why it'd decide to call that implementation of GetEnumerator instead of the implementation provided by the result of this.Cast<IThing>(). Any ideas what I'm doing wrong? I'm willing to bet it's something extremely silly...</p>
<p>Here's some simple test code for the above classes:</p>
<pre><code>static void Enumerate(IThings things)
{
foreach (IThing thing in things)
{
Console.WriteLine("You'll never get here.");
}
}
static void Main()
{
Things things = new Things();
things.Add(new Thing());
Enumerate(things);
}
</code></pre>
http://stackoverflow.com/questions/1614391/where-can-you-release-eensy-weensy-helpful-little-net-classes/1614506#16145062Answer by Joe for Where can you release eensy weensy helpful little .NET classes?Joe2009-10-23T16:19:33Z2009-10-23T16:19:33Z<p><a href="http://www.codekeep.net/" rel="nofollow">CodeKeep</a> is another site that is used for this. The bonus is that they have Visual Studio addins that allow you to search through these code chunks right from your IDE.</p>
http://stackoverflow.com/questions/1607125/what-do-you-use-to-make-programming-flowcharts-diagrams-etc/1607989#16079890Answer by Joe for What do you use to make programming flowcharts, diagrams, etc?Joe2009-10-22T15:22:51Z2009-10-22T15:22:51Z<p>For sequence diagrams I like <a href="http://www.websequencediagrams.com" rel="nofollow">http://www.websequencediagrams.com</a></p>
http://stackoverflow.com/questions/1202283/native-c-managed-c-debugging/1206928#12069282Answer by Joe for Native C/Managed C++ DebuggingJoe2009-07-30T14:24:07Z2009-07-30T14:24:07Z<p>This is from VS2008, but if I remember correctly VS2005 was similar. In the native project's properties, under "Configuration Properties->Debugging" there is a "Debugger Type" which is set to "Auto" by default. You'll need to change it to "Mixed", because VS isn't smart enough to realize you need managed debugging</p>
http://stackoverflow.com/questions/1133960/binding-itemssource-to-a-proxy-collection-how-to-get-datacontext0Binding ItemsSource to a "proxy" collection. How to get DataContext?Joe2009-07-15T20:49:39Z2009-07-29T15:43:48Z
<p>We've got a Silverlight application with several listboxes and comboboxes that display data sorted incorrectly, which I need to fix. Most of their ItemSource properties are set through XAML. Their DataContext may not be set directly on the control, and instead were set on a parent. So I can't easily slap an "OrderBy" on the ItemSource or DataContext assignment in the code behind, since that assignment may not explicitly exist.</p>
<p>So I had the idea to create a "proxy" collection. The proxy collection would get the original ItemSource and expose a sorted version. I'd then be able to convert this:</p>
<pre><code><ListBox ItemsSource="{Binding}"/>
</code></pre>
<p>into this:</p>
<pre><code><ListBox>
<ListBox.ItemsSource>
<my:ProxyCollection Source="{Binding}" SortBy="Name"/>
</ListBox.ItemsSource>
</ListBox>
</code></pre>
<p>Not too shabby! But, since the ProxyCollection isn't a child of the ListBox, the ListBox's DataContext isn't propagated to it, and the binding doesn't magically work. If I manually set the ProxyCollection collection's DataContext it works great. But if I have to set the DataContext manually anyways I may as well just remove the proxy collection and manually set the Listbox's DataContext, adding an "OrderBy".</p>
<p>So any ideas on how I can automatically get the ListBox's DataContext set on the proxy collection? Or any other genius ideas?</p>
http://stackoverflow.com/questions/1133960/binding-itemssource-to-a-proxy-collection-how-to-get-datacontext/1201208#12012080Answer by Joe for Binding ItemsSource to a "proxy" collection. How to get DataContext?Joe2009-07-29T15:43:48Z2009-07-29T15:43:48Z<p>I ended up tackling my problem from a different route. I created, for example, a "SortedComboBox" control that derived from the standard ComboBox. It defined its own ItemSource, and when its ItemsSource changed it sorts the items and then sets the ItemsSource on the base class. It works well enough, and only takes a bit of XAML changes to get the desired effect</p>
http://stackoverflow.com/questions/582040/how-to-get-users-to-pay-attention-to-problems8How to get users to pay attention to problems?Joe2009-02-24T14:53:39Z2009-07-29T01:46:08Z
<p>We occasionally need to notify users about warnings or problems. But often times, especially if it's a common problem, users will just dismiss the warning and continue. Often times users won't even remember seeing the warning, but we check their logs and see that several were displayed. So, how do you get users to pay attention when you're trying to tell them something important? </p>
<p>This isn't as simple as forcing users to resolve all problems before allowing them to save. They often need to save data that isn't strictly okay by our business rules for various reasons (usually for problems that can't be solved right away, or at all).</p>
<p>We've got a better warning/error handling system in mind that I think will help a lot, but I want to see what others have done.</p>
http://stackoverflow.com/questions/575767/what-programming-technique-practice-done-by-you-was-ahead-of-its-time/578284#57828422Answer by Joe for What programming technique / practice done by you was ahead of its time?Joe2009-02-23T16:30:20Z2009-06-15T04:38:03Z<p>Everything I wrote that I thought was ahead of its time, I later found out was invented by Xerox PARC in the 70s.</p>
http://stackoverflow.com/questions/674575/how-do-i-convert-utf8-to-from-utf16-in-c/674599#6745995Answer by Joe for How do I convert utf8 to/from utf16 in C?Joe2009-03-23T18:20:36Z2009-03-23T18:20:36Z<p>Here is a <a href="http://www.unicode.org/Public/PROGRAMS/CVTUTF/" rel="nofollow">sample implementation</a> in C</p>
http://stackoverflow.com/questions/662956/most-useful-free-net-libraries/663126#6631264Answer by Joe for Most useful free .NET libraries?Joe2009-03-19T17:19:38Z2009-03-19T17:19:38Z<p>The <a href="http://msdn.microsoft.com/en-us/netframework/aa569263.aspx" rel="nofollow">Microsoft .NET Framework</a>. I'd never get any work done without its libraries.</p>
http://stackoverflow.com/questions/650461/what-are-some-tricks-i-can-use-with-macros/650538#6505380Answer by Joe for What are some tricks I can use with macros?Joe2009-03-16T13:59:39Z2009-03-16T13:59:39Z<p>Most (all?) C++ Unit Testing frameworks are built upon macros. We use <a href="http://unittest-cpp.sourceforge.net/" rel="nofollow">UnitTest++</a>. Check it out to see all sorts of fancy macros.</p>
http://stackoverflow.com/questions/643691/dynamic-controls-and-sliding-panels-rollouts-in-wpf/643888#6438882Answer by Joe for Dynamic controls and sliding panels/rollouts in WPFJoe2009-03-13T18:01:56Z2009-03-13T18:01:56Z<p>Yes.</p>
<p>To answer your next question, the sliding panels are used in your XAML just like any other panel. For some example controls, check <a href="http://stackoverflow.com/questions/485232/is-there-a-wpf-control-i-can-use-to-expand-collapse-panels-animated">this question</a></p>
http://stackoverflow.com/questions/643202/send-c-string-to-c-string-interop/643245#6432450Answer by Joe for Send C++ string to C# string. Interop.Joe2009-03-13T15:29:48Z2009-03-13T15:29:48Z<p>You'll have to convert your character array from ASCII to Unicode somehow. <a href="http://www.dreamincode.net/forums/showtopic63794.htm" rel="nofollow">Here is a page that may help do it from the C# side</a>.</p>
http://stackoverflow.com/questions/612328/difference-between-struct-and-typedef-struct-in-c/612389#6123896Answer by Joe for Difference between 'struct' and 'typedef struct' in C++?Joe2009-03-04T20:54:25Z2009-03-04T20:54:25Z<p>One more important difference: typedefs cannot be forward declared. So for the typedef option you must #include the file containing the typedef, meaning everything that #includes your .h also includes that file whether it directly needs it or not, and so on. It can definitely impact your build times on larger projects.</p>
<p>Without the typedef, in some cases you can just add a forward declaration of "struct Foo;" at the top of your .h file, and only #include the struct definition in your .cpp file.</p>
http://stackoverflow.com/questions/604410/global-keyboard-capture-in-c-application/604533#6045331Answer by Joe for Global keyboard capture in C# applicationJoe2009-03-02T23:41:31Z2009-03-02T23:41:31Z<p>If a global hotkey would suffice, then <a href="http://www.pinvoke.net/default.aspx/user32/RegisterHotKey.html" rel="nofollow">RegisterHotKey</a> would do the trick</p>
http://stackoverflow.com/questions/582040/how-to-get-users-to-pay-attention-to-problems/582469#5824692Answer by Joe for How to get users to pay attention to problems?Joe2009-02-24T16:33:25Z2009-02-24T16:33:25Z<p>This is what we've got planned. Essentially, create something Bugzilla-ish for storing these errors/warnings/whatever. But it also goes hand in hand with some of the other answers.</p>
<p>Instead of using simple MessageBox, display warnings/errors in a Visual Studio-like error window. As long as there are problems, they'll be displayed in this window.</p>
<p>If the data is saved, save all warnings/errors to the database. Now anyone can see what the current issues are - bonus! Also, those problems can be loaded from the database instead of detecting them in the app all the time, which will help a lot - some problems are not trivial to detect. </p>
<p>Allow users to perform several actions, like:</p>
<ul>
<li>Acknowledge the problem, so it is no longer displayed. </li>
<li>Assign the problem to another user</li>
<li>Flag the problem as "not really a problem"</li>
<li>Set a "must be solved by" date</li>
<li>(probably others, the design hasn't been fully thought out yet)</li>
</ul>
<p>Log all of these actions to the database, so we have accountability</p>
<p>That's it in a nutshell. Now problems stick around, so they're in the users faces until they're solved. The problems can be tracked, so we can tell where the ball was dropped if we get bit. I hope it works!</p>
http://stackoverflow.com/questions/504887/two-way-data-binding-in-a-gridview1Two way data binding in a GridViewJoe2009-02-02T21:04:10Z2009-02-02T21:25:02Z
<p>We have an app that uses simple one way binding with a GridView to display some data. Well, now we need to allow the user to change some of that data, so I've been trying to get two way data binding to work in the GridView. So far everything displays correctly, but editing cells in the GridView seems to do nothing at all. What am I messing up? Is two way databinding like this even possible? Should I just start converting everything to use a different control, like maybe a DataGrid? </p>
<p>I wrote a tiny test app that shows my problem. If you try it, you'll see that the property setters never get called after their initialization.</p>
<p>Xaml:
<pre><code> Title="Window1" Height="300" Width="300">
<Grid>
<ListView Name="TestList">
<ListView.View>
<GridView>
<GridViewColumn Header="Strings">
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBox Text="{Binding Path=String, Mode=TwoWay}"/>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
<GridViewColumn Header="Bools">
<GridViewColumn.CellTemplate>
<DataTemplate>
<CheckBox IsChecked="{Binding Path=Bool, Mode=TwoWay}"/>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView>
</ListView.View>
</ListView>
</Grid>
</Window>
</code></pre>
<p>And here's the corresponding code:</p>
<pre><code>using System.Collections.Generic;
using System.Windows;
namespace GridViewTextbox
{
public partial class Window1 : Window
{
private List<TestRow> _rows = new List<TestRow>();
public Window1()
{
InitializeComponent();
_rows.Add(new TestRow("a", false));
_rows.Add(new TestRow("b", true));
_rows.Add(new TestRow("c", false));
TestList.ItemsSource = _rows;
TestList.DataContext = _rows;
}
}
public class TestRow : System.Windows.DependencyObject
{
public TestRow(string s, bool b)
{
String = s;
Bool = b;
}
public string String
{
get { return (string)GetValue(StringProperty); }
set { SetValue(StringProperty, value); }
}
// Using a DependencyProperty as the backing store for String. This enables animation, styling, binding, etc...
public static readonly DependencyProperty StringProperty =
DependencyProperty.Register("String", typeof(string), typeof(TestRow), new UIPropertyMetadata(""));
public bool Bool
{
get { return (bool)GetValue(BoolProperty); }
set { SetValue(BoolProperty, value); }
}
// Using a DependencyProperty as the backing store for Bool. This enables animation, styling, binding, etc...
public static readonly DependencyProperty BoolProperty =
DependencyProperty.Register("Bool", typeof(bool), typeof(TestRow), new UIPropertyMetadata(false));
}
}
</code></pre>
http://stackoverflow.com/questions/479705/reinterpretcast-in-c/480339#4803390Answer by Joe for reinterpret_cast in C#Joe2009-01-26T16:16:05Z2009-01-26T18:39:23Z<p>Wouldn't it be possible to create a collection class that implements an interface for both bytes and shorts? Maybe implement both IList< byte > and IList< short >? Then you can have your underlying collection contain bytes, but implement IList< short > functions that work on byte pairs. </p>
http://stackoverflow.com/questions/470836/can-you-start-and-stop-boundschecker-devpartner/473313#4733132Answer by Joe for Can you start and stop boundschecker (DevPartner)?Joe2009-01-23T15:27:27Z2009-01-23T15:27:27Z<p>I last used BoundsChecker a few years ago, and had the same problems. With large projects, it makes everything run so slowly that it is useless. We ended up ditching it. </p>
<p>But, we still needed some of it's functionality, but like you, not for the whole program. So we had to do it ourselves.</p>
<p>In our case, we mainly used it to try and track down memory leaks. If that's your objective as well, there are other options. </p>
<ol>
<li>Visual Studio does a pretty good job of telling you about memory leaks when your program exits</li>
<li>It reports leaks in the order that they were created</li>
<li>It will tell you exactly where the leaked memory was created if your source files have this at the top</li>
</ol>
<p></p>
<pre><code>#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
</code></pre>
<p>Those help a lot, but it's often not enough. Adding that snippet everywhere isn't always feasible. If you use factory classes, knowing where memory was allocated doesn't help at all. So when all else fails, we take advantage of #2. </p>
<p>Add something like the following:</p>
<pre><code>#define LEAK(str) {char *s = (char*)malloc(100); strcpy(s, str);}
</code></pre>
<p>Then, pepper your code with "LEAK("leak1");" or whatever. Run the program, and exit it. Your new leaked strings will display in Visual Studio's leak dump surrounding the existing leaks. Keep adding/moving your LEAK statements and re-running the program to narrow your search until you've pinpointed the exact location. Then fix the leak, remove your debugging leaks, and you're all set!</p>
http://stackoverflow.com/questions/297687/visual-c-tdd-setup/297733#2977331Answer by Joe for Visual C++ TDD setupJoe2008-11-18T02:56:59Z2008-11-18T02:56:59Z<p>Yes, your evaluation sounds pretty good. Try this: In the solution explorer, right click the name of the project that contains your tests and choose "Project Dependencies". Put a check by every project that it is dependent on. That should set up the linker settings so it automatically can find the correct files.</p>
http://stackoverflow.com/questions/273276/mixing-mfc-and-wpf-modal-dialogs/294056#2940561Answer by Joe for Mixing MFC and WPF: Modal DialogsJoe2008-11-16T16:21:56Z2008-11-16T16:21:56Z<p>When opening a CDialog, the trick is to use a WindowsInteropHelper to get the parent WPF dialog's HWND. Then, you can use CWnd::Attach to wrap that HWND in a CWnd class to pass to the CDialog's constructor.</p>
<p>The problem I had was that I already had the CDialog constructed., but not yet displayed. The various versions of SetParent can only be used if your target child window already has a valid handle. I had to write a new function in my CDialog class to set m_wndParent, which is what it uses as the parent when it finally creates the dialog. Then everything works great!</p>
<p>Somehow creating WPF dialogs from MFC dialogs "just works". It's magic.</p>
http://stackoverflow.com/questions/273276/mixing-mfc-and-wpf-modal-dialogs1Mixing MFC and WPF: Modal DialogsJoe2008-11-07T19:16:53Z2008-11-16T16:21:56Z
<p>I'm adding C# WPF dialogs to an existing C++ MFC app, using a C++/CLI interface layer. I've got things working, except I'm having a problem with modality. For example:</p>
<ol>
<li>MFC app shows a WPF dialog using ShowDialog. Works as expected.</li>
<li>That WPF dialog shows a MFC dialog using DoModal. The WPF dialog is hidden behind the base C++ app, and is not disabled unless I manually change IsEnabled. Not ideal, but it works.</li>
<li>Now, that MFC dialog is closed. Now for some reason the base MFC app is enabled, when it should still be disabled to to the WPF dialog not having been closed. That's bad, as it now allows the user to do crazy things while the WPF dialog is still open.</li>
</ol>
<p>I have a feeling that it would work better if I could set parent dialogs correctly. But so far I havent been able to set an MFC dialog's parent as a WPF dialog, or vice versa. And, I don't even know if that'd fix it.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/290913/c-derived-base-class-implement-a-single-interface5C++: Derived + Base class implement a single interface?Joe2008-11-14T18:11:07Z2008-11-15T11:18:43Z
<p>In C++, is it possible to have a base plus derived class implement a single interface?</p>
<p>For example:</p>
<pre><code>class Interface
{
public:
virtual void BaseFunction() = 0;
virtual void DerivedFunction() = 0;
};
class Base
{
public:
virtual void BaseFunction(){}
};
class Derived : public Base, public Interface
{
public:
void DerivedFunction(){}
// EDIT: I didnt mean to put this here
// void BaseFunction(){ Base::BaseFunction(); }
};
void main()
{
Derived derived;
}
</code></pre>
<p>This fails because Derived can not be instantiated. As far as the compiler is concerned Interface::BaseFunction is never defined.</p>
<p>So far the only solution I've found would be to declare a pass through function in Derived</p>
<pre><code>class Derived : public Base, public Interface
{
public:
void DerivedFunction(){}
void BaseFunction(){ Base::BaseFunction(); }
};
</code></pre>
<p>Is there any better solution?</p>
<p><hr /></p>
<p><strong>EDIT:</strong> If it matters, here is a real world problem I had using MFC dialogs. </p>
<p>I have a dialog class (MyDialog lets say) that derives from CDialog. Due to dependency issues, I need to create an abstract interface (MyDialogInterface). The class that uses MyDialogInterface needs to use the methods specific to MyDialog, but also needs to call CDialog::SetParent. I just solved it by creating MyDialog::SetParent and having it pass through to CDialog::SetParent, but was wondering if there was a better way.</p>
http://stackoverflow.com/questions/290913/c-derived-base-class-implement-a-single-interface/291995#2919950Answer by Joe for C++: Derived + Base class implement a single interface?Joe2008-11-15T01:57:41Z2008-11-15T01:57:41Z<p>I found one thing lacking from litb's answer. If I have a <code>Derived</code> instance, I can get a <code>DerivedInterface</code> and <code>BaseInterface</code>. But if I only have a <code>DerivedInterface</code> I can't get a <code>BaseInterface</code> since deriving <code>DerivedInterface</code> from <code>BaseInterface</code> won't work.</p>
<p>But, this whole time I've been limiting myself to compile time checking for some reason. This <code>DerivedInterface</code> works just great:</p>
<pre><code>class DerivedInterface
{
public:
virtual void DerivedFunction() = 0;
BaseInterface* GetBaseInterface()
{return dynamic_cast<BaseInterface*>(this);}
};
void main()
{
Derived derived;
DerivedInterface* derivedInterface = &derived;
derivedInterface->GetBaseInterface()->BaseFunction();
}
</code></pre>
<p>No pass through functions necessary in Derived, and everyone is happy. Sure, it's not strictly an interface anymore, but that's fine. Why didn't I think of that sooner? :)</p>
http://stackoverflow.com/questions/241602/what-non-technical-items-do-you-keep-on-your-desk/280873#2808731Answer by Joe for What non-technical items do you keep on your desk?Joe2008-11-11T13:30:36Z2008-11-11T13:30:36Z<p>A red stapler, although it occasionally goes missing...</p>
http://stackoverflow.com/questions/147378/options-for-refactoring-bits-of-code-away-from-native-c2Options for refactoring bits of code away from native C++?Joe2008-09-29T03:11:00Z2008-10-22T11:10:28Z
<p>So, one commonly heard comment when talking about performance is that you write your code with whatever language gets the job done fastest. If performance in specific areas is a problem, then rewrite those bits in C/C++.</p>
<p>But, what if you're starting with a native C++ app? What options do you have if you want to write the easy bits, or refactor the old bits, in a language like Python, Ruby, C#, or whatever? Keep in mind that transferring data between the native and other sides is a must. Being able to simply call a function written in an "easier" language, while passing C++ classes as data, would be beautiful.</p>
<p>We've got a crusty Win32 app that would benefit greatly if we could crank out new code, or refactor old code, in C# or something. Very little of it requires the complexity of C++, and dealing with the little fiddly bits is dragging down the programming process. </p>
http://stackoverflow.com/questions/145890/why-did-you-pick-your-current-job/219842#2198422Answer by Joe for Why did you pick your current job?Joe2008-10-20T20:43:44Z2008-10-20T20:43:44Z<p>They offered me a job. </p>
<p>It was 2004, and the dot-com bust was still affecting the local job market. I had been unemployed since graduating in 2002. In college, people were staying in school and getting graduate degrees because they couldn't find a job. Even after applying for any advertised jobs, I had a total of 2 interviews in that time. </p>
<p>Why have I stayed? Mostly because I like what I do, and the pay and benefits are decent. I have no reason to look elsewhere yet.</p>
http://stackoverflow.com/questions/184253/converting-registry-access-to-db-calls-from-mfc-feature-pack1Converting registry access to db calls from MFC Feature PackJoe2008-10-08T18:47:51Z2008-10-14T22:02:46Z
<p>We may start converting an old VS2003 MFC project to use the fancy new features provided by the MFC Feature Pack and VS2008. Several of the new UI controls would be very nice except for one thing - they automatically save their information to the registry. I don't have a problem with the registry, but for the multiple environments the users use out program from, it's much easier to save user data to the database. </p>
<p>So, I'm hoping that there is one main "access the registry" function that could be overloaded to point the database. But brief investigation hasn't turned up anything. Has anyone else had any success doing something similar?</p>
http://stackoverflow.com/questions/1849490/c-arguments-for-exceptions-over-return-codes/1849519#1849519Comment by Joe on C++ - Arguments for Exceptions over Return CodesJoe2009-12-04T21:37:01Z2009-12-04T21:37:01ZOne big reason Google doesn't use them is because Google doesn't use them. :) Basically, they're stuck. From the same coding standard document: "Because we'd like to use our open-source projects at Google and it's difficult to do so if those projects use exceptions, we need to advise against exceptions in Google open-source projects as well. Things would probably be different if we had to do it all over again from scratch." http://stackoverflow.com/questions/1682484/explicit-implementation-of-interfaces-getenumerator-causes-stack-overflow/1682765#1682765Comment by Joe on Explicit implementation of interface's GetEnumerator causes stack overflowJoe2009-11-05T19:23:37Z2009-11-05T19:23:37ZAfter looking at reflector, it's obvious why Cast doesn't work. It basically only casts each of the elements individually if it has to. In this case it sees that "this" is an IEnumerable<IThing>, so it just returns that. It's too smart for its own good. :) http://stackoverflow.com/questions/1682484/explicit-implementation-of-interfaces-getenumerator-causes-stack-overflow/1682765#1682765Comment by Joe on Explicit implementation of interface's GetEnumerator causes stack overflowJoe2009-11-05T19:07:05Z2009-11-05T19:07:05ZOooh, good one. That makes it obvious that base.GetEnumerator() should work, if it understood covariance and contravaraince like Frank said. But since it doesn't, this does the trick pretty well!http://stackoverflow.com/questions/1682484/explicit-implementation-of-interfaces-getenumerator-causes-stack-overflow/1682655#1682655Comment by Joe on Explicit implementation of interface's GetEnumerator causes stack overflowJoe2009-11-05T18:57:51Z2009-11-05T18:57:51ZYeah, that's definitely how I'd do it given the choice. My real life example uses CSLA though, which won't let you do that. It'd really look something like "class Things : ReadOnlyListBase<Things, Thing>, IThings"http://stackoverflow.com/questions/1682484/explicit-implementation-of-interfaces-getenumerator-causes-stack-overflow/1682500#1682500Comment by Joe on Explicit implementation of interface's GetEnumerator causes stack overflowJoe2009-11-05T18:33:27Z2009-11-05T18:33:27Zbase.GetEnumerator() won't do the trick, because that returns an IEnumerator<Thing>, not an IEnumerator<IThing>. http://stackoverflow.com/questions/1682484/explicit-implementation-of-interfaces-getenumerator-causes-stack-overflow/1682526#1682526Comment by Joe on Explicit implementation of interface's GetEnumerator causes stack overflowJoe2009-11-05T18:25:35Z2009-11-05T18:25:35ZYeah, I guess that's obvious. I'm not sure how that helps though. I need to return an IEnumerator<IThing>, not an IEnumerable.http://stackoverflow.com/questions/1682484/explicit-implementation-of-interfaces-getenumerator-causes-stack-overflow/1682505#1682505Comment by Joe on Explicit implementation of interface's GetEnumerator causes stack overflowJoe2009-11-05T18:22:35Z2009-11-05T18:22:35Zbase.GetEnumerator() returns an IEnumerator<Thing>, not an IEnumerator<IThing>http://stackoverflow.com/questions/1663545/find-buy-sell-prices-in-array-of-stock-values-to-maximize-positive-difference/1663625#1663625Comment by Joe on Find buy/sell prices in array of stock values to maximize positive differenceJoe2009-11-02T21:14:46Z2009-11-02T21:14:46ZThis seems to fail for the input 55.39, 109.23, 48.29, 81.59, 81.58, 105.53, 94.45, 12.24 ? Best is still to buy at 48.29 and sell at 105.53 (57.24 profit), but it says to buy at 55.39 and sell at 109.23 (53.84 profit)http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-aiComment by Joe on What is the best Battleship AI?Joe2009-11-02T04:15:38Z2009-11-02T04:15:38ZIn the real version, is it customary to tell your opponent what ship they hit? (e.g. "You sunk my battleship!") Without that bit of info, efficient targeting is not fun. Determining what ships are sunk seems like a variant of the packing problem. Good times!http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-aiComment by Joe on What is the best Battleship AI?Joe2009-11-02T03:30:34Z2009-11-02T03:30:34ZA "peaceful" opponent that refuses to place ships causes the competition to hang. Not sure how much you care about people doing silly things like that. :)http://stackoverflow.com/questions/1236000/how-to-monitor-windows-dialog/1238565#1238565Comment by Joe on How to monitor Windows Dialog?Joe2009-08-06T13:14:52Z2009-08-06T13:14:52Z-1: Not an answerhttp://stackoverflow.com/questions/910314/why-is-this-compilation-error-coming/910335#910335Comment by Joe on Why is this compilation error coming?Joe2009-06-22T17:25:35Z2009-06-22T17:25:35ZIf the OP needs to allocate 16GB, what do you suggest as a fix? If that's what he needs, it is definitely possible. I'm just contesting the incorrect statement "You're trying to allocate 4 times the maximum theoretical amount of memory that can exist."http://stackoverflow.com/questions/1008019/c-singleton-design-pattern/1008106#1008106Comment by Joe on C++ Singleton design pattern.Joe2009-06-17T20:15:11Z2009-06-17T20:15:11ZYou can automatically deallocate using the atexit function. That's what we do (not saying it's a good idea)http://stackoverflow.com/questions/910314/why-is-this-compilation-error-coming/910335#910335Comment by Joe on Why is this compilation error coming?Joe2009-06-17T02:14:16Z2009-06-17T02:14:16ZAllocating more than 4GB is not a problem on a 32bit CPU. Available memory != Available address space. For example see <a href="http://blogs.msdn.com/oldnewthing/archive/2004/08/10/211890.aspx" rel="nofollow">blogs.msdn.com/oldnewthing/archive/…</a> or <a href="http://blogs.msdn.com/ericlippert/archive/2009/06/08/out-of-memory-does-not-refer-to-physical-memory.aspx" rel="nofollow">blogs.msdn.com/ericlippert/archive/…</a>http://stackoverflow.com/questions/807550/should-i-use-an-expression-parser-in-my-math-game/807591#807591Comment by Joe on Should I use an expression parser in my Math game?Joe2009-05-12T22:31:43Z2009-05-12T22:31:43ZIt might be hard to determine when to disable the / reduction though. For example, if the question is "1/2 + 1/4 =" the user may enter "3/4"