User amazedsaint - Stack Overflowmost recent 30 from stackoverflow.com2009-11-22T13:57:07Zhttp://stackoverflow.com/feeds/user/45956http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1772756/101-rx-examples/1774622#17746222Answer by amazedsaint for 101 Rx Examplesamazedsaint2009-11-21T05:41:22Z2009-11-21T05:41:22Z<p>To start with - Here is a simple drawing application, so that when the user drags, we draw a red line from the initial mouse down position to the current location, and also a blue spot at the current location. This is the result of my last week's hack on Rx</p>
<p><img src="http://lh6.ggpht.com/%5F%5FMw4iY-4nuY/Sv%5FJ5YVdcWI/AAAAAAAAAb0/cXhre5eV3%5FU/image%5Fthumb%5B5%5D.png?imgmax=800" alt="A WPF Drawing Demo"></p>
<p>And here is the source code.</p>
<pre><code>//A draw on drag method to perform the draw
void DrawOnDrag(Canvas e)
{
//Get the initial position and dragged points using LINQ to Events
var mouseDragPoints = from md in e.GetMouseDown()
let startpos=md.EventArgs.GetPosition(e)
from mm in e.GetMouseMove().Until(e.GetMouseUp())
select new
{
StartPos = startpos,
CurrentPos = mm.EventArgs.GetPosition(e),
};
//Subscribe and draw a line from start position to current position
mouseDragPoints.Subscribe
(item =>
{
e.Children.Add(new Line()
{
Stroke = Brushes.Red,
X1 = item.StartPos.X,
X2 = item.CurrentPos.X,
Y1 = item.StartPos.Y,
Y2 = item.CurrentPos.Y
});
var ellipse = new Ellipse()
{
Stroke = Brushes.Blue,
StrokeThickness = 10,
Fill = Brushes.Blue
};
Canvas.SetLeft(ellipse, item.CurrentPos.X);
Canvas.SetTop(ellipse, item.CurrentPos.Y);
e.Children.Add(ellipse);
}
);
}
</code></pre>
<p><a href="http://amazedsaint.blogspot.com/2009/11/linq-to-events-more-on-net-reactive.html" rel="nofollow">Read my post with further explanation here</a> and <a href="http://amazedsaint.net/Reactive.zip" rel="nofollow">Download the source code here</a></p>
<p>Hope this helps</p>
http://stackoverflow.com/questions/1505830/does-the-rx-framework-have-any-use-in-a-web-application/1762563#17625631Answer by amazedsaint for Does the Rx Framework have any use in a web application?amazedsaint2009-11-19T11:09:14Z2009-11-19T11:09:14Z<p>You can use Rx in various call back scenarios, not just when you work 'normal windows apps'. Especially, when you work with Async operations - for ex, you might need to make a call to the server or cloud from your silverlight or desktop client and to receive the data back. Or in cases you'll get a call back from the server (in cases like Polling Duplex).</p>
<p>Also, another scenario for web apps - to invalidate your cache when you receive a data changed event from the model. Just some 'imaginary' code here if you've a cache and model designed accordingly...</p>
<pre><code>var cacheListeners=from sender in myModel.GetDataChangedEvents()
select sender;
//Subscribe
cacheListeners.Subscribe(data=>Cache.Invalidate(data.Key));
</code></pre>
<p>Have a look at this <a href="http://amazedsaint.blogspot.com/2009/11/systemreactive-or-net-reactive.html" rel="nofollow">http://amazedsaint.blogspot.com/2009/11/systemreactive-or-net-reactive.html</a></p>
http://stackoverflow.com/questions/1217345/what-is-linq-to-events-a-k-a-rx-framework/1747032#17470321Answer by amazedsaint for What is LINQ to events a.k.a RX Framework?amazedsaint2009-11-17T06:49:53Z2009-11-19T11:04:05Z<p>.NET Rx team (this is not an official name) found that any push sequence (events, callbacks) can be viewed as a pull sequence (as we normally do while accessing enumerables) as well – or they are Dual in nature. In short observer/observable pattern is the dual of enumeration pattern.</p>
<p>So what is cool about about this duality? </p>
<p>Anything you do with Pull sequences (read declarative style coding) is applicable to push sequences as well. Here are few aspects.
You can create Observables from existing events and then use them as first class citizens in .NET – i.e, you may create an observable from an event, and expose the same as a property. </p>
<p>As IObservable is the mathematical dual of IEnumerable, .NET Rx facilitates LINQ over push sequences like Events, much like LINQ over IEnumerables</p>
<p>It gives greater freedom to compose new events – you can create specific events out of general events.</p>
<p>.NET Rx introduces two interfaces, IObservable and IObserver that "provides an alternative to using input and output adapters as the producer and consumer of event sources and sinks" and this will soon become the de-facto for writing asynchronous code in a declarative manner. Here is a quick example.</p>
<pre><code>//Create an observable for MouseLeftButtonDown
var mouseLeftDown=Observable.FromEvent<MouseButtonEventArgs>
(mycontrol,"MouseLeftButtonDown");
//Query the above observable just to select the points
var points = from ev in mouseEvents
select ev.EventArgs.GetPosition(this);
//Show points in the window's title, when ever user
//presses the left button of the mouse
points.Subscribe(p => this.Title = "Location ="
+ p.X + "," + p.Y);
</code></pre>
<p>You may go through these posts as well to get the head and tail in detail. Also have a look at the relates source code as well.</p>
<ul>
<li>Part I - <a href="http://amazedsaint.blogspot.com/2009/11/systemreactive-or-net-reactive.html" rel="nofollow">System.Reactive or the .NET Reactive Extensions (Rx) – Concepts and First Look</a></li>
<li>Part II - <a href="http://amazedsaint.blogspot.com/2009/11/linq-to-events-more-on-net-reactive.html" rel="nofollow">LINQ To Events - More on .NET Reactive Extensions (Rx)</a></li>
<li>Part III - <a href="http://amazedsaint.blogspot.com/2009/11/linq-to-events-generating-wrapper.html" rel="nofollow">LINQ To Events - Generating GetEventName() Wrapper Methods using T4 Text Templates</a></li>
</ul>
<p><a href="http://amazedsaint.blogspot.com/search/label/.NET%20Rx" rel="nofollow">Check out this set of articles</a> </p>
http://stackoverflow.com/questions/1474098/using-system-reactive-in-net-3-5-in-a-shipping-product/1760774#17607740Answer by amazedsaint for Using System.Reactive in .NET 3.5 (in a shipping product)amazedsaint2009-11-19T03:48:23Z2009-11-19T03:48:23Z<p>Now the Rx is available directly for Framework 3.5 SP1, Along with downloads for .NET Framework 4.0 beta and for Silverlight 3.0</p>
<p>Download the version you need from here <a href="http://msdn.microsoft.com/en-us/devlabs/ee794896.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/devlabs/ee794896.aspx</a></p>
http://stackoverflow.com/questions/1596158/good-introduction-to-the-net-reactive-framework/1756460#17564600Answer by amazedsaint for Good introduction to the .NET Reactive Frameworkamazedsaint2009-11-18T14:40:10Z2009-11-18T14:40:10Z<p>Go through these articles, and in particular, download the related source code and play with it.</p>
<ul>
<li>Part I - <a href="http://amazedsaint.blogspot.com/2009/11/systemreactive-or-net-reactive.html" rel="nofollow">System.Reactive or the .NET Reactive Extensions (Rx) – Concepts and First Look</a></li>
<li>Part II - <a href="http://amazedsaint.blogspot.com/2009/11/linq-to-events-more-on-net-reactive.html" rel="nofollow">LINQ To Events - More on .NET Reactive Extensions (Rx)</a></li>
<li>Part III - <a href="http://amazedsaint.blogspot.com/2009/11/linq-to-events-generating-wrapper.html" rel="nofollow">LINQ To Events - Generating GetEventName() Wrapper Methods using T4 Text Templates</a></li>
</ul>
<p>Trust this will help</p>
http://stackoverflow.com/questions/1756009/reactive-framework-for-net-examples-that-prove-its-usefulness/1756405#17564051Answer by amazedsaint for Reactive Framework for .NET examples that prove its usefulnessamazedsaint2009-11-18T14:32:54Z2009-11-18T14:32:54Z<p>Here is a quick example. Program a drag operation in a fully declarative manner, using LINQ to events.</p>
<pre><code> //Create an observable with the initial position and dragged points using LINQ to Events
var mouseDragPoints = from md in e.GetMouseDown()
let startpos=md.EventArgs.GetPosition(e)
from mm in e.GetMouseMove().Until(e.GetMouseUp())
select new
{
StartPos = startpos,
CurrentPos = mm.EventArgs.GetPosition(e),
};
</code></pre>
<p>And draw a line from startpos to current pos</p>
<pre><code>//Subscribe and draw a line from start position to current position
mouseDragPoints.Subscribe
(item =>
{
//Draw a line from item.Startpos to item.CurrentPos
}
);
</code></pre>
<p>As you can see, there are no even handlers all over the places, not boolean variables for managing the state.</p>
<p>If you are curious about those GetEventName() methods, suggesting you to read this entire article and download the source code and play with it.</p>
<p><a href="http://amazedsaint.blogspot.com/2009/11/linq-to-events-more-on-net-reactive.html" rel="nofollow">Read it here and play with the source</a> >></p>
http://stackoverflow.com/questions/1754661/wrapping-controls-from-system-windows-forms-in-system-windows-uielement/1754706#17547061Answer by amazedsaint for Wrapping Controls from System.Windows.Forms in System.Windows.UIElementamazedsaint2009-11-18T09:22:19Z2009-11-18T09:22:19Z<p>You can host a Windows forms control in your WPF forms. Just wrap it inside a WindowsFormsHost element. This shows how to host a windows forms masked test box in side a WPF window.</p>
<pre><code><Window x:Class="Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
Title="HostingWfInWpf"
>
<Grid>
<WindowsFormsHost>
<wf:MaskedTextBox x:Name="mtbDate" Mask="00/00/0000"/>
</WindowsFormsHost>
</Grid>
</Window>
</code></pre>
http://stackoverflow.com/questions/1195068/the-net-reactive-framework-iobservable-and-linq-over-events/1740457#17404573Answer by amazedsaint for The .NET Reactive Framework, IObservable, and Linq over Eventsamazedsaint2009-11-16T06:40:03Z2009-11-18T03:31:41Z<p>This weekend I played around with this, and created a couple of POCs to get a feel. And I'm loving everything. Reactive extensions (Rx) is really cool, as it introduces lot of new possibilities.</p>
<p>Here is the essence and summary.</p>
<ul>
<li>Part I - <a href="http://amazedsaint.blogspot.com/2009/11/systemreactive-or-net-reactive.html" rel="nofollow">System.Reactive or the .NET Reactive Extensions (Rx) – Concepts and First Look</a></li>
<li>Part II - <a href="http://amazedsaint.blogspot.com/2009/11/linq-to-events-more-on-net-reactive.html" rel="nofollow">LINQ To Events - More on .NET Reactive Extensions (Rx)</a></li>
<li>Part III - <a href="http://amazedsaint.blogspot.com/2009/11/linq-to-events-generating-wrapper.html" rel="nofollow">LINQ To Events - Generating GetEventName() Wrapper Methods using T4 Text Templates</a></li>
</ul>
<p>.NET Rx team (this is not an official name) found that any push sequence (events, callbacks) can be viewed as a pull sequence (as we normally do while accessing enumerables) as well – or they are Dual in nature. In short observer/observable pattern is the dual of enumeration pattern.</p>
<p>So what is cool about about this duality? Anything you do with Pull sequences (read declarative style coding) is applicable to push sequences as well. Here are few aspects.
You can create Observables from existing events and then use them as first class citizens in .NET – i.e, you may create an observable from an event, and expose the same as a property. </p>
<p>As IObservable is the mathematical dual of IEnumerable, .NET Rx facilitates LINQ over push sequences like Events, much like LINQ over IEnumerables</p>
<p>It gives greater freedom to compose new events – you can create specific events out of general events.</p>
<p>.NET Rx introduces two interfaces, IObservable and IObserver that "provides an alternative to using input and output adapters as the producer and consumer of event sources and sinks" and this will soon become the de-facto for writing asynchronous code in a declarative manner.</p>
<p>The source code as part of the second article contains a drawing application in WFP, with a version of System.Reactive.dll that I rebased to target .NET Framework 3.5 using Reflexil - You should be able to open the same in VS 2008 to play with Winfors or WPF</p>
<p><a href="http://amazedsaint.blogspot.com/search/label/.NET%20Rx" rel="nofollow">Check out this set of articles</a> where I've posted my thoughts</p>
http://stackoverflow.com/questions/1319239/is-it-possible-to-replace-traditional-event-handling-in-c-with-the-new-reactive/1747020#17470200Answer by amazedsaint for Is it possible to replace traditional event handling in C# with the new Reactive framework?amazedsaint2009-11-17T06:45:32Z2009-11-17T06:45:32Z<p>You can create Observables from existing events. You can use Observable.FromEvent for this purpose. You may write a GetMouseDown event wrapper like this, as an extension method for a UI Element.</p>
<pre><code> public static IObservable<Event<MouseButtonEventArgs>>
GetMouseDown (this UIElement el)
{
var allevents = Observable.FromEvent<MouseButtonEventHandler, MouseButtonEventArgs>
( h => new MouseButtonEventHandler(h),
h => el.MouseDown += h,
h=> el.MouseDown -= h
);
return allevents;
}
</code></pre>
<p>And later, you may 'handle' your event in a completely declarative manner. Like</p>
<pre><code>//create an observable declaratively
var mouseDowns=button.GetMouseDown();
//subcribe and do what ever you need
mouseDowns.Subscribe(arg=> MessageBox.Show(arg.ClickCount.ToString()) );
</code></pre>
<p>And here is how to create a 'drag' observable, with the intial position and current position.</p>
<pre><code> //Get the initial position and dragged points using LINQ to Events
var mouseDragPoints = from md in e.GetMouseDown()
let startpos=md.EventArgs.GetPosition(e)
from mm in e.GetMouseMove().Until(e.GetMouseUp())
select new
{
StartPos = startpos,
CurrentPos = mm.EventArgs.GetPosition(e),
};
//And subscribe here to mouseDragPoints
</code></pre>
<p>Read this article <a href="http://amazedsaint.blogspot.com/2009/11/linq-to-events-more-on-net-reactive.html" rel="nofollow">LINQ to Events - More on .NET Reactive Extensions</a> and play with the source code.</p>
http://stackoverflow.com/questions/1276844/is-the-reactive-framework-available-for-net-framework-3-5/1746932#17469320Answer by amazedsaint for Is the Reactive framework available for .NET Framework 3.5?amazedsaint2009-11-17T06:17:12Z2009-11-17T06:17:12Z<p>I did the re basing and created a small WPF drawing app. Here is the source code</p>
<p><a href="http://amazedsaint.blogspot.com/2009/11/linq-to-events-more-on-net-reactive.html" rel="nofollow">LINQ to Events – More on .NET Reactive Extensions (Rx) and a .NET 3.5 WPF Demo</a> </p>
http://stackoverflow.com/questions/1700443/detecting-forged-images-with-c2Detecting forged images with C#?amazedsaint2009-11-09T11:25:02Z2009-11-10T12:45:35Z
<p>One of my friends came up with an interesting problem - Assume that we have a set of images in the system. Now, some one might submit a new image by slightly modifying any of the images already submitted, and in that case, the system should report that the submitted image is a forged image.</p>
<p>I can think about two solutions.</p>
<p>Solution 1 - Do an image comparison (bitmap based) for each input image with the given images in the database, probably after converting them to gray scale to counter color changing tricks, and after resizing them to a standard size. </p>
<p>Solution 2 - Create a Self Organized Map and train with all the existing images. And if some one submits an image, if it has a close match, report it as forged.</p>
<p>It might not be possible to have a system with more than 90% accuracy. Please share your thoughts/suggestions/solutions.</p>
<p><strong>Edit after going through few answers</strong>: I already have a backprop neural network and an xml based language to train neural networks here - <a href="http://www.codeproject.com/KB/dotnet/neuralnetwork.aspx" rel="nofollow">http://www.codeproject.com/KB/dotnet/neuralnetwork.aspx</a></p>
<p>I'm looking forward for specific answers for the problem I described above.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/365263/whats-your-favorite-c-open-source-project-of-the-year-200820What's Your Favorite C# Open Source Project of the year 2008?amazedsaint2008-12-13T14:34:27Z2009-11-06T09:03:19Z
<p><strong>C# Open Source Project Of The Year Award 2008</strong></p>
<p>Let us decide which project should receive the honor, from the Stack Overflow community. And as the best programming community, I think the community opinion matters. </p>
<p><hr /></p>
<p>What's the best Open Source Project you've found, and loved in 2008? List it here, and let the community vote for the same. And in the end, we'll have a great list of interesting open source projects. Your entry should have a brief description, and a link to download the source code. You might consider entries from sites like Codeplex, Sourceforge.net, Codeproject etc. </p>
<p><hr /></p>
<p><strong>Important</strong>: Please look in the existing list before posting your entry, if it is already there, just vote.</p>
http://stackoverflow.com/questions/1283698/what-are-the-challenges-in-porting-your-existing-applications-to-microsoft-azure8What are the challenges in porting your existing applications to Microsoft Azure?amazedsaint2009-08-16T07:39:33Z2009-11-04T03:14:47Z
<p>What are the challenges in porting your existing applications to Azure? </p>
<p>Here are few points I'm already aware about.</p>
<p>1) No Support for Session Affinity (Azure is Stateless) - I'm aware that Azure load balancing doesn't support Session Affinity - hence if the existing web application should be changed if it has session affinity. </p>
<p>2) Interfacing with COM - Presently I think there is no support for deploying COM components to the cloud to interface with them - if my current applications need to access some legacy components.</p>
<p>3) Interfacing with other systems from the cloud using non-http protocols</p>
<p>Other than the above mentioned points, what are other significant limitations/considerations that you are aware off?</p>
http://stackoverflow.com/questions/565264/parsing-html-generated-from-legacy-asp-application-to-create-asp-net-2-0-pages0Parsing HTML generated from Legacy ASP Application to create ASP.NET 2.0 Pagesamazedsaint2009-02-19T13:19:03Z2009-11-03T00:13:31Z
<p>One of my friends is working on having a good solution to generate aspx pages, out of html pages generated from a legacy asp application.</p>
<p>The idea is to run the legacy app, capture html output, clean the html using some tool (say HtmlTidy) and parse it/transform it to aspx, (using Xslt or a custom tool) so that existing html elements, divs, images, styles etc gets converted neatly to an aspx page (too much ;) ).</p>
<p>Any existing tools/scripts/utilities to do the same?</p>
http://stackoverflow.com/questions/1005497/improving-wpf-application-speed-over-remote-desktop1Improving WPF application speed over remote desktop?amazedsaint2009-06-17T07:04:38Z2009-10-25T12:00:02Z
<p>In our scenario, we have a wpf application that is used by users over remote desktop, and we found the user experience is very slow.</p>
<p>Any suggestions for improving the user experience in this scenario? One point might be to disable any animation/storyboards, and avoid using gradients in the UI. More thoughts are appreciated.</p>
http://stackoverflow.com/questions/1531165/how-can-i-specify-t4-text-templates-to-use-c-4-0-in-vs20100How can I specify T4 (Text Templates) to use C# 4.0, in VS2010?amazedsaint2009-10-07T11:52:46Z2009-10-24T08:04:35Z
<p>I need to specify my T4 to use C# 4.0, to render my tt files? I tried using</p>
<pre><code><#@ template language="C#v4.0" debug="true" #>
</code></pre>
<p>But when I use a dynamic variable, like this</p>
<pre><code>dynamic x=10;
Write(x.ToString());
</code></pre>
<p>I'm getting these errors </p>
<pre><code>Error 2 Compiling transformation: Predefined type 'Microsoft.CSharp.RuntimeBinder.CSharpSetMemberBinder' is not defined or imported e:\projects\DynamicModel\DynamicModel\ModelGenerator.tt 1 1
Error 3 Compiling transformation: Missing compiler required member 'Microsoft.CSharp.RuntimeBinder.CSharpInvokeMemberBinder..ctor' e:\projects\DynamicModel\DynamicModel\ModelGenerator.tt 1 1
Error 4 Compiling transformation: Missing compiler required member 'System.Runtime.CompilerServices.CallSite.Create' e:\projects\DynamicModel\DynamicModel\ModelGenerator.tt 1 1
Error 5 Compiling transformation: One or more types required to compile a dynamic expression cannot be found. Are you missing references to Microsoft.CSharp.dll and System.Core.dll? e:\Projects\DynamicModel\DynamicModel\ModelGenerator.tt 7 8
Error 6 A namespace cannot directly contain members such as fields or methods e:\projects\DynamicModel\DynamicModel\ModelGenerator.cs 1 1 DynamicModel
</code></pre>
<p>Also, please note that I'm using TextTemplatingFileGenerator and <strong><em>Not</em></strong> pre-processor templates</p>
http://stackoverflow.com/questions/1531165/how-can-i-specify-t4-text-templates-to-use-c-4-0-in-vs2010/1531404#15314041Answer by amazedsaint for How can I specify T4 (Text Templates) to use C# 4.0, in VS2010?amazedsaint2009-10-07T12:43:48Z2009-10-24T08:04:35Z<p>Found that you should specify the correct assemblies as well. </p>
<p>Adding this will ensure you are using c# 4.0.</p>
<pre><code><#@ template language="C#" debug="true" #>
<#@ output extension=".txt" #>
<#@ Assembly Name="System.Core, Version=4.0.0.0, Culture=neutral" #>
<#@ Assembly Name="Microsoft.CSharp, Version=4.0.0.0, Culture=neutral" #>
</code></pre>
<p>How ever, for some reason, during the time of t4 transformation, the dynamic dispatching is still not working from T4, wondering why. From T4 it throws a runtime error, the same code does good directly from a cs file.</p>
http://stackoverflow.com/questions/527761/cache-with-sql-dependency0Cache with SQL dependency?amazedsaint2009-02-09T11:17:29Z2009-10-19T21:44:46Z
<p>I know that <a href="http://www.alachisoft.com/ncache/" rel="nofollow">NCache</a> provides SQL dependency for <a href="http://en.wikipedia.org/wiki/Microsoft%5FSQL%5FServer" rel="nofollow">Microsoft SQL Server</a> and <a href="http://en.wikipedia.org/wiki/Oracle%5FDatabase" rel="nofollow">Oracle</a> (10G R4 onwards). I am interested to know what other caching solutions are available, that comes with dependency on Oracle?</p>
<p>Does <a href="http://en.wikipedia.org/wiki/Microsoft%5Fcodename%5F%22Velocity%22" rel="nofollow">Velocity</a>, <a href="http://en.wikipedia.org/wiki/Memcached" rel="nofollow">memcached</a>, etc. support SQL dependency to receive notifications/update the cache automatically, when something changes in the database?</p>
http://stackoverflow.com/questions/1281509/google-wave-for-net/1551336#15513362Answer by amazedsaint for Google Wave for .Netamazedsaint2009-10-11T18:14:35Z2009-10-11T18:14:35Z<p>I've done a quick implementation using BING Apis and Skeet's API - <a href="http://amazedsaint.blogspot.com/2009/09/bingybot-google-wave-bot-written-in.html" rel="nofollow">http://amazedsaint.blogspot.com/2009/09/bingybot-google-wave-bot-written-in.html</a></p>
http://stackoverflow.com/questions/86333/what-design-pattern-do-you-use-the-most/1422728#14227281Answer by amazedsaint for What design pattern do you use the most?amazedsaint2009-09-14T16:55:30Z2009-09-14T16:55:30Z<p>I'm not really sure whether your question is specific to GOF patterns or regarding <em>all</em> - including Enterprise application related patterns.</p>
<p>There is no silver bullet - It depends on the design problem you are trying to solve, and hence some what related to the domain you are working.</p>
<p>Normally the thought process is like</p>
<ul>
<li>How you identify the entities in your system, </li>
<li>How you identify the design problems, and </li>
<li>How you apply patterns to address your design specifications.</li>
</ul>
<p>Again, the frameworks/platforms you use for development may have already implemented patterns as part of their architecture - so you'll be using them anyway.</p>
<p>For me, the most common ones are observer, decorator, singleton, chain of responsibility and facade.</p>
<p>You might want to go through this article on "Applying Design Patterns" - <a href="http://amazedsaint.blogspot.com/2009/06/software-design-patterns-for-everyone.html" rel="nofollow">http://amazedsaint.blogspot.com/2009/06/software-design-patterns-for-everyone.html</a></p>
http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid170Common programming mistakes for .NET developers to avoid?amazedsaint2008-12-19T12:14:35Z2009-09-04T08:19:04Z
<p>What are some common mistakes made by .NET developers, and how can we avoid them? </p>
<p>For example, trying to open a file without checking whether or not it exists, or catching an error unnecessarily.</p>
<p>Please look in to the list before posting new</p>
<p><hr /></p>
<p><strong>Please justify your answer as well, if applicable and give examples.</strong></p>
http://stackoverflow.com/questions/1336883/what-are-the-limitations-of-wpf-web-browser-control0what are the limitations of wpf web browser control?amazedsaint2009-08-26T19:15:26Z2009-08-26T19:53:43Z
<p>What are the limitations of WPF web browser control? Is it good enough for a real-life browser implementation? And is it a fully managed implementation?</p>
http://stackoverflow.com/questions/1300408/how-to-get-the-selected-index-of-mvvm-bound-radiobuttons/1300943#13009430Answer by amazedsaint for How to get the selected index of MVVM-bound radiobuttons?amazedsaint2009-08-19T15:59:46Z2009-08-19T15:59:46Z<p>This is how I solved this problem. I wrote an EnumToBool converter for this, like</p>
<pre><code> public class EnumToBoolConverter : IValueConverter
{
#region IValueConverter Members
public object Convert(object value,
Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
if (parameter.Equals(value))
return true;
else
return false;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return parameter;
}
#endregion
}
</code></pre>
<p>And I've the following enumeration</p>
<pre><code> public enum CompanyTypes
{
Type1Comp,
Type2Comp,
Type3Comp
}
</code></pre>
<p>Now, in my Xaml, I'm passing the types as the converter parameter.</p>
<pre><code><Window x:Class="WpfTestRadioButtons.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfTestRadioButtons"
Title="Window1" Height="300" Width="300">
<Window.Resources>
<local:EnumToBoolConverter x:Key="EBConverter"/>
</Window.Resources>
<Grid>
<StackPanel>
<RadioButton IsChecked="{Binding Path=Type,
Converter={StaticResource EBConverter},
ConverterParameter={x:Static local:CompanyTypes.Type1Comp}}" Content="Type1"/>
<RadioButton IsChecked="{Binding Path=Type,
Converter={StaticResource EBConverter},
ConverterParameter={x:Static local:CompanyTypes.Type2Comp}}" Content="Type2"/>
</StackPanel>
</Grid>
</Window>
</code></pre>
<p>Now, in your view model, you should have a property (in this case Type), which is of that Enum type.</p>
<p>Like, </p>
<pre><code>public CompanyTypes Type
{
get
{
return _type;
}
set
{
_type = value;
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs("Type"));
}
}
</code></pre>
<p>In this example, you might have noticed that Radiobuttons are static. In your case, as you are listing the radio buttons inside an Item control, you need to bind your ConverterParameter of your RadioButton as well, to the correct type.</p>
http://stackoverflow.com/questions/1300336/tabbing-or-deselecting-cell-not-committing-data/1300786#13007861Answer by amazedsaint for Tabbing or Deselecting Cell not Committing Dataamazedsaint2009-08-19T15:37:04Z2009-08-19T15:37:04Z<p>Try changing the UpdateSourceTrigger parameter of your control's Binding to PropertyChanged instead of the default LostFocus. </p>
<p>Eg</p>
<pre><code> <TextBox
Width="75"
VerticalAlignment="Top"
Margin="10"
Text="{Binding
Source={StaticResource data},
Path=Age,
UpdateSourceTrigger=PropertyChanged,
ValidatesOnDataErrors=True,
ValidatesOnExceptions=True}"
Style="{StaticResource textBoxInError}" />
</code></pre>
http://stackoverflow.com/questions/1298240/good-datamodelling-software/1298304#12983040Answer by amazedsaint for Good datamodelling softwareamazedsaint2009-08-19T07:27:16Z2009-08-19T07:27:16Z<p>I like the Toad Data Modeller</p>
<p><a href="http://www.toadsoft.com/toaddm/toad%5Fdata%5Fmodeler.htm" rel="nofollow">http://www.toadsoft.com/toaddm/toad%5Fdata%5Fmodeler.htm</a></p>
http://stackoverflow.com/questions/1267255/visual-studio-sdk-getting-notified-when-a-project-item-in-your-packages-vsx-pr0Visual Studio SDK - Getting notified when a project item in your package's vsx project has undergone undo checkout?amazedsaint2009-08-12T16:27:39Z2009-08-12T16:27:39Z
<p>We are working with Visual Studio SDK, creating a package. We need to get notified when a file (projectitem) gets undo checkout from TFS.</p>
<p>Any solutions/pointers are appreciated.</p>
http://stackoverflow.com/questions/1244173/a-good-document-management-software-with-some-extensibility2A Good Document Management software with some extensibility?amazedsaint2009-08-07T11:07:34Z2009-08-09T11:57:23Z
<p>We are looking forward for some good document management suits/applications, with some extensibility.</p>
<p>The customers will submit various documents, and this need to be stored using the system for later review and verification. Customers can come back any time to view/modify these documents.</p>
<p>We need to integrate this with the existing .NET product stack, so some APIs for uploading/retrieving documents are expected, along with some out of the box functionality to edit the documents online.</p>
<p>Expected document support include pdf, doc etc.</p>
<p>Added - We are also considering cloud based services. Any comments on Azure SharePoint services?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1244638/investing-in-competency-building-for-microsoft-azure-and-related-technologies1Investing in competency building for Microsoft Azure and related technologies?amazedsaint2009-08-07T13:13:45Z2009-08-08T17:47:17Z
<p>A couple of questions around investing about competency building for Windows Azure.</p>
<ul>
<li>How glorious and revolutionary the
platform is. </li>
<li>How partners can add
value to customers by using Azure.</li>
</ul>
<p>Expanding a little further on my question, there are 2 players in enabling a cloud model for an application</p>
<ul>
<li>The hosting services provider (Microsoft)</li>
<li>The application services provider (The rest of us)</li>
</ul>
<p>My question is, what are the key value adds and sustainable competitive advantages that we, as application service providers, can take to market? Sustainable is the key word. What are the key advantages in investing in competency building for azure? </p>
<p>The entry barrier on Azure seems very low to me with my current understanding of the technology. Will it become like another .Net in just a few months with millions of players with nothing to distinguish one from the other?</p>
<p>What are the high technology content areas of azure to focus on, for a competency building exercise? Like share point services, live mesh etc?</p>
<p>Please share your views</p>
http://stackoverflow.com/questions/1239875/arcgis-crash-on-memory-allocation-in-c/1239983#12399830Answer by amazedsaint for ArcGIS crash on memory allocation in C#amazedsaint2009-08-06T16:19:17Z2009-08-06T16:19:17Z<p>We had a similar mysterious crash issue with Arc GIS long time back. We eventually found that the disk quota was enabled in the server side, for the Arc GIS account. Removing the quota solved the issue.</p>
<p>Probably you can try that if anything else is not working.</p>
http://stackoverflow.com/questions/1236877/entity-framework-and-temporary-objects/1236905#12369050Answer by amazedsaint for Entity Framework and Temporary Objectsamazedsaint2009-08-06T04:04:26Z2009-08-06T04:04:26Z<p>If you want to have a temporary instance of an entity that'll never be connected to the EF again, use this <a href="http://msmvps.com/blogs/matthieu/archive/2008/05/31/entity-cloner.aspx" rel="nofollow">Entity Cloner</a> for cloning the entity</p>
<p>If you are trying to disconnect an entity, send it over the wire some where (let us say pass it over to the client over a service, to modify it, and then again get it back), and again merge back the changes to the EF - right now this is not directly supported. How ever, you can try these solutions</p>
<p><a href="http://blogs.msdn.com/dsimmons/archive/2008/01/28/entitybag-wrap-up-and-future-directions.aspx" rel="nofollow">Entity Bag:</a> </p>
<p><a href="http://www.codeplex.com/efcontrib" rel="nofollow">EFContrib (you need PostSharp4EF)</a> </p>
http://stackoverflow.com/questions/1756009/reactive-framework-for-net-examples-that-prove-its-usefulness/1756405#1756405Comment by amazedsaint on Reactive Framework for .NET examples that prove its usefulnessamazedsaint2009-11-19T03:42:42Z2009-11-19T03:42:42ZThe question was just to give an example. Here is a good read if you want to touch the basics - <a href="http://amazedsaint.blogspot.com/2009/11/systemreactive-or-net-reactive.html" rel="nofollow">amazedsaint.blogspot.com/2009/11/…</a>http://stackoverflow.com/questions/1727681/where-is-the-toobservable-extension-method/1727847#1727847Comment by amazedsaint on Where is the ToObservable extension method?amazedsaint2009-11-18T14:35:22Z2009-11-18T14:35:22ZDownload this sample application - <a href="http://amazedsaint.blogspot.com/2009/11/linq-to-events-more-on-net-reactive.html" rel="nofollow">amazedsaint.blogspot.com/2009/11/…</a>http://stackoverflow.com/questions/1195068/the-net-reactive-framework-iobservable-and-linq-over-eventsComment by amazedsaint on The .NET Reactive Framework, IObservable, and Linq over Eventsamazedsaint2009-11-18T03:52:13Z2009-11-18T03:52:13ZReactive Programming - First impressions and A WPF Demo - <a href="http://amazedsaint.blogspot.com/2009/11/systemreactive-or-net-reactive.html" rel="nofollow">amazedsaint.blogspot.com/2009/11/…</a>http://stackoverflow.com/questions/1700443/detecting-forged-images-with-c/1700760#1700760Comment by amazedsaint on Detecting forged images with C#?amazedsaint2009-11-09T12:57:58Z2009-11-09T12:57:58ZSure, as I mentioned, we can't go for a 100% solution. The objective of the question is to come up with an approach that is most suitablehttp://stackoverflow.com/questions/1700443/detecting-forged-images-with-c/1700640#1700640Comment by amazedsaint on Detecting forged images with C#?amazedsaint2009-11-09T12:52:59Z2009-11-09T12:52:59ZOops, just clarified the question a bit more. The user "Now, some one might submit a new image by slightly modifying any of the images already submitted"http://stackoverflow.com/questions/1700443/detecting-forged-images-with-c/1700457#1700457Comment by amazedsaint on Detecting forged images with C#?amazedsaint2009-11-09T12:01:46Z2009-11-09T12:01:46ZNot really. We are talking about identifying minor manipulations. Like, modifying only the faces of people in photos.http://stackoverflow.com/questions/1700443/detecting-forged-images-with-c/1700481#1700481Comment by amazedsaint on Detecting forged images with C#?amazedsaint2009-11-09T11:59:07Z2009-11-09T11:59:07ZWell, I already have a backprop neural network and an xml based language to create and train backprop neural networks - <a href="http://www.codeproject.com/KB/dotnet/neuralnetwork.aspx" rel="nofollow">codeproject.com/KB/dotnet/…</a> - As Bruno mentioned, I'm talking about a SOM network. And AForge in codeproject is a good implementation of SOM. Looking for more detailed answershttp://stackoverflow.com/questions/710329/load-external-xaml-file-using-loadcomponent/1468524#1468524Comment by amazedsaint on Load external XAML file using LoadComponentamazedsaint2009-10-30T06:13:30Z2009-10-30T06:13:30ZUnfortunately, XamlReader.Load will work only for xaml files with out events in ithttp://stackoverflow.com/questions/1531165/how-can-i-specify-t4-text-templates-to-use-c-4-0-in-vs2010/1531404#1531404Comment by amazedsaint on How can I specify T4 (Text Templates) to use C# 4.0, in VS2010?amazedsaint2009-10-24T12:03:03Z2009-10-24T12:03:03ZAnd FYI I'm using a custom template host, not directly running t4 from VS :)http://stackoverflow.com/questions/1531165/how-can-i-specify-t4-text-templates-to-use-c-4-0-in-vs2010/1531404#1531404Comment by amazedsaint on How can I specify T4 (Text Templates) to use C# 4.0, in VS2010?amazedsaint2009-10-24T12:02:16Z2009-10-24T12:02:16Zinfact I got it right, thankshttp://stackoverflow.com/questions/1531165/how-can-i-specify-t4-text-templates-to-use-c-4-0-in-vs2010Comment by amazedsaint on How can I specify T4 (Text Templates) to use C# 4.0, in VS2010?amazedsaint2009-10-07T12:35:32Z2009-10-07T12:35:32ZYep, it goes well as long as you don't use a dynamic variablehttp://stackoverflow.com/questions/1298240/good-datamodelling-software/1298304#1298304Comment by amazedsaint on Good datamodelling softwareamazedsaint2009-08-19T15:31:47Z2009-08-19T15:31:47ZIt is pretty neat, and based on your db, download the version of Toad - so that you'll get some kind of reverse engineering feature as well.http://stackoverflow.com/questions/1244173/a-good-document-management-software-with-some-extensibility/1244208#1244208Comment by amazedsaint on A Good Document Management software with some extensibility?amazedsaint2009-08-07T12:39:32Z2009-08-07T12:39:32ZThanks for the comment. One key problem area is - it doesn't offer online editing for docshttp://stackoverflow.com/questions/1239875/arcgis-crash-on-memory-allocation-in-c/1239983#1239983Comment by amazedsaint on ArcGIS crash on memory allocation in C#amazedsaint2009-08-07T06:35:26Z2009-08-07T06:35:26ZYep, the Arc GIS serverhttp://stackoverflow.com/questions/1224303/why-isnt-my-exception-being-caughtComment by amazedsaint on Why isn't my exception being caughtamazedsaint2009-08-04T07:13:30Z2009-08-04T07:13:30ZWho throwed that exception? If John Skeet did, you can't catch it man ;)