User amazedsaint - Stack Overflowmost recent 30 from stackoverflow.com2010-02-10T01:59:51Zhttp://stackoverflow.com/feeds/user/45956http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1283698/what-are-the-challenges-in-porting-your-existing-applications-to-microsoft-azure10What are the challenges in porting your existing applications to Microsoft Azure?amazedsaint2009-08-16T07:39:33Z2010-02-05T16:35:49Z
<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>
<p>Also, how these pain points are addressed in the latest release?</p>
http://stackoverflow.com/questions/2177968/how-to-save-a-byte-array-to-a-file-from-silverlight/2178238#21782381Answer by amazedsaint for How to save a byte array to a file from silverlightamazedsaint2010-02-01T16:27:26Z2010-02-01T16:32:42Z<p>Are you wiring to the method completed event of your async method call? See this</p>
<p><a href="http://www.silverlightshow.net/items/Using-the-SaveFileDialog-in-Silverlight-3.aspx" rel="nofollow">http://www.silverlightshow.net/items/Using-the-SaveFileDialog-in-Silverlight-3.aspx</a></p>
<p>Inside your call back method, you can implement the logic for writing to a file - first by opening the dialog, and then by getting the pointer to the file stream as shown below.</p>
<pre><code> try
{
byte[] fileBytes = //your bytes here
SaveFileDialog dialog=new SaveFileDialog();
//Show the dialog
bool? dialogResult = this.dialog.ShowDialog();
if (dialogResult!=true) return;
//Get the file stream
using ( Stream fs = ( Stream )this.dialog.OpenFile() )
{
fs.Write( fileBytes, 0, fileBytes.Length );
fs.Close();
//File successfully saved
}
}
catch ( Exception ex )
{
//inspect ex.Message
}
</code></pre>
http://stackoverflow.com/questions/365263/whats-your-favorite-c-open-source-project-of-the-year-200819What's Your Favorite C# Open Source Project of the year 2008?amazedsaint2008-12-13T14:34:27Z2010-01-24T12:12:28Z
<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/2094200/silverlight-4-0-deploying-the-xap-via-a-custom-installer-and-configure-it-for-o4Silverlight 4.0 - Deploying the XAP via a custom installer and configure it for OOB + Elevated permissionsamazedsaint2010-01-19T14:41:05Z2010-01-21T09:57:01Z
<p>Is it possible to deploy a XAP using a custom installer (much like deploying a desktop app), and configure it to run as OOB with Elevated permissions?</p>
<p>Bottomline is, when the app is started, it should run in Elevated permissions + OOB, with out any user intervention at all after the installation.</p>
http://stackoverflow.com/questions/2094200/silverlight-4-0-deploying-the-xap-via-a-custom-installer-and-configure-it-for-o/2108243#21082430Answer by amazedsaint for Silverlight 4.0 - Deploying the XAP via a custom installer and configure it for OOB + Elevated permissionsamazedsaint2010-01-21T09:57:01Z2010-01-21T09:57:01Z<p>This is pretty easier than I thought.</p>
<p>You can edit the metadata file in the isolated storage where the xap is copied for OOB scenario, and point the index.html to the xap path. </p>
<p><a href="http://debuggingblog.com/wp/2009/07/17/silverlight-3-outofbrowseroob-explained-and-how-to-host-any-xap-package-by-modifying-the-metadata/" rel="nofollow">http://debuggingblog.com/wp/2009/07/17/silverlight-3-outofbrowseroob-explained-and-how-to-host-any-xap-package-by-modifying-the-metadata/</a></p>
http://stackoverflow.com/questions/1968501/where-to-start-handwritten-recognition-using-neural-network/2087503#20875030Answer by amazedsaint for Where to start Handwritten Recognition using Neural Network?amazedsaint2010-01-18T16:26:42Z2010-01-18T16:26:42Z<p>If you are looking for concepts, I suggest BrainNet,</p>
<p>Neural Networks - Part I: A simple handwriting recognition system in .NET</p>
<p><a href="http://amazedsaint.blogspot.com/2008/01/neural-networks-part-i-simple.html" rel="nofollow">http://amazedsaint.blogspot.com/2008/01/neural-networks-part-i-simple.html</a></p>
<blockquote>
<p>BrainNet will help you to</p>
<ul>
<li>Obtain a fair understanding regarding Neurons and neural networks</li>
<li>Gain a good concept regarding intelligent systems</li>
<li>Learn how to play with this neural network library to use it in your
projects.</li>
<li>Understand how to develop some cool neural network programs</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/2087452/neural-networks-project/2087485#20874850Answer by amazedsaint for Neural Networks Project?amazedsaint2010-01-18T16:24:37Z2010-01-18T16:24:37Z<p>I've done some works on top of NN, mainly an XML based language (Neural XML). See details here</p>
<p><a href="http://amazedsaint.blogspot.com/search/label/Neural%20Network" rel="nofollow">http://amazedsaint.blogspot.com/search/label/Neural%20Network</a></p>
<p>Also, one interesting .NET Neural network project is Aforge.net - Check out that as well..</p>
http://stackoverflow.com/questions/2047054/silverlight-passing-a-complex-object-between-pages/2047101#20471010Answer by amazedsaint for Silverlight: Passing a complex object between pagesamazedsaint2010-01-12T06:20:21Z2010-01-12T06:20:21Z<p>I think the simplest way is to use a global Context implementation to set/get your data. </p>
<pre><code>public class Context
{
static Context _context = null;
static object sync = new object();
public object Data { get; set; }
private Context()
{
}
public static Context GetContext()
{
if _context == null)
{
lock (sync)
{
if _context == null)
{
_context = new Context();
}
}
}
return _context;
}
}
//Load your data, and on any page you need it, just do:
Context c = Context.GetContext();
//set or get c.Data here
</code></pre>
<p>If you have multiple variables, you may use a Dictionary to set/get values based on keys</p>
http://stackoverflow.com/questions/2041023/sharing-a-t4-template-between-silverlight-and-net/2047061#20470611Answer by amazedsaint for Sharing a T4 template between Silverlight and .NETamazedsaint2010-01-12T06:11:55Z2010-01-12T06:11:55Z<p>If what you need is to make sure your T4 works from the Silverlight project, you can easily do this by adding the following line to ask T4 host to load the correct System.dll</p>
<pre><code><#@ assembly name="C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll" #>
</code></pre>
<p>See this detailed post here</p>
<p><a href="http://msmvps.com/blogs/theproblemsolver/archive/2009/03/24/getting-t4-templates-to-work-with-silverlight.aspx" rel="nofollow">http://msmvps.com/blogs/theproblemsolver/archive/2009/03/24/getting-t4-templates-to-work-with-silverlight.aspx</a></p>
<p>Hope this helps</p>
http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid204Common programming mistakes for .NET developers to avoid?amazedsaint2008-12-19T12:14:35Z2010-01-09T16:18:03Z
<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/1958095/silverlight-grabbing-all-binding-information-of-elements-in-a-given-visual-stre1Silverlight - Grabbing all binding information of elements in a given visual stree?amazedsaint2009-12-24T12:02:55Z2009-12-24T12:35:01Z
<p>We are loading some xaml for an Element at runtime (XamlReader.Load) for some preview purposes. Need less to say, the properties/bindings are not know as they can vary across elements/controls we are loading. </p>
<p>As the run time view model context is not available when we load the control for preview - after loading the Element, the idea is to grab the binding information, create a type with those propertes at run time, to assign the same as the data context of the loaded control. </p>
<p>We'll be using AssemblyBuilder/ModuleBuilder/TypeBuilder to build a type at run time. Having said that, we need to walk the visual tree to identify the bindings involved, to create a list of binding paths.</p>
<p>Obviously, one way is to use regex to parse the xaml directly and build this list.. Just want to know a way exist so that I can grab the bindings and related paths from the visual tree itself?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1860606/voip-functionality-real-time-voice-streaming-across-max-of-5-users-over-silverl1VOIP functionality (real time voice streaming across max of 5 users) over Silverlight 4.0?amazedsaint2009-12-07T15:14:27Z2009-12-17T09:44:27Z
<p>As SL 4.0 has got video and Mic support...</p>
<p>How feasible it is to provide VOIP functionality (real time voice streaming across max of 5 users) over Silverlight 4.0, for a web based application?</p>
<p>What all are the related challenges?</p>
http://stackoverflow.com/questions/1875929/anyway-to-start-stop-resume-pause-a-storyboard-in-pure-xaml-in-silverlight-for-a0Anyway to start/stop/resume/pause a Storyboard in pure XAML in Silverlight, for any event?amazedsaint2009-12-09T18:40:42Z2009-12-09T19:16:27Z
<p>Any way in Silverlight to write pure XAML code for controlling story boards, by responding to any given event for a given control? For eg, when the user move the mouse over a panel, I might need to start the storyboard, and pause it when he moves the mouse out.</p>
http://stackoverflow.com/questions/834929/silverlight-how-to-receive-notification-of-a-change-in-an-inherited-dependencypr/1835068#18350683Answer by amazedsaint for Silverlight: How to receive notification of a change in an inherited DependencyPropertyamazedsaint2009-12-02T19:00:13Z2009-12-02T19:00:13Z<p>I think here is a better way. Still need to see the pros and Cons.</p>
<pre><code> /// Listen for change of the dependency property
public void RegisterForNotification(string propertyName, FrameworkElement element, PropertyChangedCallback callback)
{
//Bind to a depedency property
Binding b = new Binding(propertyName) { Source = element };
var prop = System.Windows.DependencyProperty.RegisterAttached(
"ListenAttached"+propertyName,
typeof(object),
typeof(UserControl),
new System.Windows.PropertyMetadata(callback));
element.SetBinding(prop, b);
}
</code></pre>
<p>And now, you can call RegisterForNotification to register for a change notification of a property of an element, like .</p>
<pre><code>RegisterForNotification("Text", this.txtMain,(d,e)=>MessageBox.Show("Text changed"));
RegisterForNotification("Value", this.sliderMain, (d, e) => MessageBox.Show("Value changed"));
</code></pre>
<p>See my post here on the same <a href="http://amazedsaint.blogspot.com/2009/12/silverlight-listening-to-dependency.html" rel="nofollow">http://amazedsaint.blogspot.com/2009/12/silverlight-listening-to-dependency.html</a></p>
<p>Using Silverlight 4.0 beta.</p>
http://stackoverflow.com/questions/240156/is-there-a-notification-mechanism-for-when-a-dependency-property-has-changed/1835057#18350570Answer by amazedsaint for Is there a notification mechanism for when a dependency property has changed?amazedsaint2009-12-02T18:59:10Z2009-12-02T18:59:10Z<p>You can. Atleast I did. Still need to see the pros and Cons.</p>
<pre><code> /// Listen for change of the dependency property
public void RegisterForNotification(string propertyName, FrameworkElement element, PropertyChangedCallback callback)
{
//Bind to a depedency property
Binding b = new Binding(propertyName) { Source = element };
var prop = System.Windows.DependencyProperty.RegisterAttached(
"ListenAttached"+propertyName,
typeof(object),
typeof(UserControl),
new System.Windows.PropertyMetadata(callback));
element.SetBinding(prop, b);
}
</code></pre>
<p>And now, you can call RegisterForNotification to register for a change notification of a property of an element, like .</p>
<pre><code>RegisterForNotification("Text", this.txtMain,(d,e)=>MessageBox.Show("Text changed"));
RegisterForNotification("Value", this.sliderMain, (d, e) => MessageBox.Show("Value changed"));
</code></pre>
<p>See my post here on the same <a href="http://amazedsaint.blogspot.com/2009/12/silverlight-listening-to-dependency.html" rel="nofollow">http://amazedsaint.blogspot.com/2009/12/silverlight-listening-to-dependency.html</a></p>
http://stackoverflow.com/questions/1813268/il-emit-for-invoking-a-delegate-instance2IL Emit for invoking a delegate instance?amazedsaint2009-11-28T18:18:08Z2009-11-29T21:34:28Z
<p>Basically, I'm accepting an event name as a string, to get the EventInfo. Then, I'm discovering the event handler type and event argument type using reflection, creating a new delegate of that type (myEventHandler), and hooking it up with the event. When ever myEventHandler is invoked, I need to downcast and pass the arguments to the handler. </p>
<p>My code is as below. The 'handler' needs to be invoked via myEventHandler, when ever 'd' is invoked. I need to have some Reflection emit code there where I put ???. Any thoughts?</p>
<pre><code>EventHandler handler = delegate(object sender, EventArgs eventArgs)
{
//something will happen here
};
Type[] typeArgs = { typeof(object), derivedEventArgsType };
DynamicMethod myEventHandler = new DynamicMethod("", typeof(void), typeArgs);
var ilgen = myEventHandler.GetILGenerator();
//What should be the IL code here to
//cast derviedEventArgs to EventArgs and
//invoke the 'handler' above??????
ilgen.Emit(OpCodes.Pop);
ilgen.Emit(OpCodes.Ret);
Delegate d = dynamic.CreateDelegate(derviedEventHandlerType);
//addMethod is the add MethodInfo for an Event
addMethod.Invoke(target, new object[] { d });
</code></pre>
<p><strong>Edit:</strong> Based on observations via Reflector.</p>
<p>The reflector generated code for a manually coded scenario is</p>
<pre><code>.method public hidebysig instance void <Main>b__1(object sender, class ConsoleApplication2.MyEventArgs e) cil managed
{
.maxstack 8
L_0000: nop
L_0001: ldarg.0
L_0002: ldfld class [mscorlib]System.EventHandler ConsoleApplication2.Program/<>c__DisplayClass3::handler
L_0007: ldarg.1
L_0008: ldarg.2
L_0009: callvirt instance void [mscorlib]System.EventHandler::Invoke(object, class [mscorlib]System.EventArgs)
L_000e: nop
L_000f: ret
}
</code></pre>
<p>And this is what I tried based on that.</p>
<pre><code> ilgen.Emit(OpCodes.Nop);
ilgen.Emit(OpCodes.Ldarg_0);
ilgen.Emit(OpCodes.Ldfld,eh.GetType().GetField("handler"));
ilgen.Emit(OpCodes.Ldarg_1);
ilgen.Emit(OpCodes.Ldarg_2);
ilgen.EmitCall(OpCodes.Callvirt,eh.handler.Method,
new Type[]{ typeof(object), typeof(EventArgs) });
ilgen.Emit(OpCodes.Nop);
ilgen.Emit(OpCodes.Ret);
</code></pre>
<p>But this is causing a run time error, 'Calling convention must be varargs' :(. Probably I'm missing something, need to have a better look into IL.</p>
http://stackoverflow.com/questions/1781034/live-meeting-shared-view-like-real-time-screen-sharing-service-on-top-of-azure0Live meeting/Shared view like real time screen sharing service on top of Azure?amazedsaint2009-11-23T04:00:07Z2009-11-25T20:01:10Z
<p>What might be the considerations for building a real time screen sharing service (some where close to shared view or live meeting) on top of Windows Azure? Please share your thoughts.</p>
<p>For this, it is obvious that we've to create a custom TCP/IP server - to which clients can connect to and exchange (publish/retrieve) data real time, over a custom protocol on top of TCP/IP. </p>
<p>I think Azure supports TCP/IP only for the web role as of now, on port 80 and 443? Please share your thoughts.</p>
http://stackoverflow.com/questions/1788760/why-does-maxconcurrentsessions-default-to-such-a-low-value-and-what-is-a-safe-v/1788860#17888602Answer by amazedsaint for Why does maxConcurrentSessions default to such a low value? And what is a safe value?amazedsaint2009-11-24T09:13:52Z2009-11-24T13:26:41Z<p>I assume your instance mode is Per Session. You can set this value to Int32.Max if required. How ever, it is good to understand the WCF Throttling concepts in detail.. </p>
<p>The value is very low to prevent DOS attacks, as WCF team wants the services to be "secure by default".</p>
<p>Here is a good read, have a look at <a href="http://www.iserviceoriented.com/blog/post/Configuring+Performance+Options+-+WCF+Gotcha+3.aspx" rel="nofollow">this blog post here</a></p>
<blockquote>
<p>Note that these values are extremely
low... much lower than many people
would like them to be. The thinking of
the WCF team here was that they wanted
WCF to be "secure by default" and
reduce the change of DOS attacks being
launched from against your service.
That idea might sound great, but in
practice it causes major issues. </p>
<p>In
fact, you have almost certainly ran
into these issues if you are using a
binding like WsHttpBinding that
supports sessions. Why is that? The
default number of sessions at 10, this
appears at first to mean that 10 users
can access your service at the same
time. However, WCF sessions are not
web sessions. Unlike web sessions,
which are managed by the server and
generally tracked using http cookies,
WCF sessions are initiated by the
client proxy and don't end until they
time out or the client sends an
explicit request to abandon the
session. Here's the thing, since each
proxy instance initiates it's own
session, a user that makes a few
requests at once could potentially be
using multiple sessions at once. Now
you might be thinking you are safe if
you don't have multi-threaded code
that does this kind of thing... but
that's not exactly true. Because the
user must make an explicit request to
the server to cancel his session, it's
possible that you will leave sessions
open accidently. People who have been
working with ASMX services, often
don't realize that they need to close
their proxy objects, and the few that
do realize that the objects need to be
closed often make the mistake of
treating them like disposable objects,
which results in sessions being left
open. Keeping in mind that the default
session limit is 10, this means that
if you make ten calls to a service
using WsHttpBinding in a relatively
short amount of time, you can end up
locking up your service until the
sessions expire. </p>
<p>The decision that the
WCF team made here can be perplexing.
In an attempt to limit the ability of
attackers to launch DOS attacks
against your services, they made it
much easier to perform a DOS attack
against your service. No longer do you
need the resources to flood a server
with requests so that it can no longer
respond, you simply have to make a
handful of calls without explicitly
requesting the connection to close and
max out the session count. Unless set
this value extremely high, you run the
risk of having a server refusing to
accept any incoming connections,
despite the fact that it is chilling
out with zero CPU usage.</p>
</blockquote>
http://stackoverflow.com/questions/1700443/detecting-forged-images-with-c3Detecting forged images with C#?amazedsaint2009-11-09T11:25:02Z2009-11-24T13:24:42Z
<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/1700443/detecting-forged-images-with-c/1790041#17900410Answer by amazedsaint for Detecting forged images with C#?amazedsaint2009-11-24T13:24:42Z2009-11-24T13:24:42Z<p>After some research, I've decided that the best way is to use the Self organizing maps (SOM) approach. </p>
<p>The idea is to self train the SOM network initially with the available/valid images, and then when a new image is inserted, find the nearest images and if matches found under a threshold, report the same.</p>
<p>AForge is an excellent library with SOM support (<a href="http://code.google.com/p/aforge/" rel="nofollow">http://code.google.com/p/aforge/</a>)</p>
<p>Information on basic SOM <a href="http://en.wikipedia.org/wiki/Self-organizing%5Fmap" rel="nofollow">here</a> </p>
<p>A good read on SOM <a href="http://books.google.co.in/books?id=e4igHzyfO78C&lpg=PP1&dq=self%20organizing%20maps&pg=PP1#v=onepage&q=&f=false" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/584816/what-are-the-known-limitations-of-ado-net-entity-framework-designer3What are the known limitations of ADO.NET entity framework designer?amazedsaint2009-02-25T05:32:53Z2009-11-23T13:40:23Z
<p>We just found an issue like, when a foreign key relationship is broken, there is no way to re-establish the link in the designer.</p>
<p>Any other such known limitations of Entity Framework designer?</p>
http://stackoverflow.com/questions/1781578/c-waitcallback-threadpool/1781586#17815860Answer by amazedsaint for C# WaitCallBack - ThreadPoolamazedsaint2009-11-23T07:26:44Z2009-11-23T07:33:49Z<p>Yes, your callback method executes when a thread pool thread becomes available. For eg, in this example, you can see I'm passing the PooledProc as the call back pointer. This is called when the main thread sleeps.</p>
<pre><code>public static void Main()
{
ThreadPool.QueueUserWorkItem(new WaitCallback(PooledProc));
Console.WriteLine("Main thread");
Thread.Sleep(1000);
Console.WriteLine("Done from Main thread");
Console.ReadLine();
}
// This thread procedure performs the task.
static void PooledProc(Object stateInfo)
{
Console.WriteLine("Pooled Proc");
}
</code></pre>
<p>Obviously, the paramter type of QueueUserWorkItem is a WaitCallback delegate type, and if you examine, you may note that the signature of WaitCallBack is like</p>
<pre><code>public delegate void WaitCallback(object state);
</code></pre>
<p>The PooleProc method is having the same signature, and hence we can pass the same for the callback.</p>
http://stackoverflow.com/questions/1772756/101-rx-examples/1774622#17746224Answer 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#17625632Answer 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#17470325Answer 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#17607741Answer 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#17564601Answer 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/2094200/silverlight-4-0-deploying-the-xap-via-a-custom-installer-and-configure-it-for-oComment by amazedsaint on Silverlight 4.0 - Deploying the XAP via a custom installer and configure it for OOB + Elevated permissionsamazedsaint2010-01-19T15:21:13Z2010-01-19T15:21:13ZTo leverage OOB features, like Communicating with other components, say for generating a PDF? lolhttp://stackoverflow.com/questions/367707/thoughts-about-using-silverlight-in-desktop-apps/367712#367712Comment by amazedsaint on Thoughts about using Silverlight In Desktop Apps?amazedsaint2010-01-19T11:09:26Z2010-01-19T11:09:26ZYes, when you don't have a better choicehttp://stackoverflow.com/questions/81406/parser-for-c/81427#81427Comment by amazedsaint on Parser for C#amazedsaint2010-01-18T12:15:33Z2010-01-18T12:15:33Zit helped, thankshttp://stackoverflow.com/questions/2047054/silverlight-passing-a-complex-object-between-pages/2047101#2047101Comment by amazedsaint on Silverlight: Passing a complex object between pagesamazedsaint2010-01-12T09:08:05Z2010-01-12T09:08:05ZAgreed with Akash. How ever, if you've problem with Static variables, you can expose a Dictionary<string,object> type property in your App.xaml.cs, and then get/set values from any page, like
App ap = (App)Application.Current;
ap.YourProperty=value;http://stackoverflow.com/questions/1958095/silverlight-grabbing-all-binding-information-of-elements-in-a-given-visual-stre/1958183#1958183Comment by amazedsaint on Silverlight - Grabbing all binding information of elements in a given visual stree?amazedsaint2009-12-24T12:43:59Z2009-12-24T12:43:59ZPerfect, thankshttp://stackoverflow.com/questions/1875929/anyway-to-start-stop-resume-pause-a-storyboard-in-pure-xaml-in-silverlight-for-a/1876160#1876160Comment by amazedsaint on Anyway to start/stop/resume/pause a Storyboard in pure XAML in Silverlight, for any event?amazedsaint2009-12-09T19:23:21Z2009-12-09T19:23:21ZAlready had a look at SFXhttp://stackoverflow.com/questions/636179/how-to-use-generic-handlers-ashx-in-asp-net-mvc/636212#636212Comment by amazedsaint on How to use Generic Handlers (ASHX) in ASP.NET MVC?amazedsaint2009-12-08T21:25:07Z2009-12-08T21:25:07ZIn this case, I compensated for you with an upvotehttp://stackoverflow.com/questions/834929/silverlight-how-to-receive-notification-of-a-change-in-an-inherited-dependencypr/1835068#1835068Comment by amazedsaint on Silverlight: How to receive notification of a change in an inherited DependencyPropertyamazedsaint2009-12-04T11:13:30Z2009-12-04T11:13:30ZAs long as we need to do it entirely from the code, I guess we don't have another option till we get the DependencyPropertyDescriptor in Silverlight from MShttp://stackoverflow.com/questions/1813268/il-emit-for-invoking-a-delegate-instance/1814231#1814231Comment by amazedsaint on IL Emit for invoking a delegate instance?amazedsaint2009-11-29T05:19:50Z2009-11-29T05:19:50ZWell, confirmed. Solved what I wanted.http://stackoverflow.com/questions/1813268/il-emit-for-invoking-a-delegate-instance/1814231#1814231Comment by amazedsaint on IL Emit for invoking a delegate instance?amazedsaint2009-11-29T02:42:47Z2009-11-29T02:42:47ZAwesome. Still need to try this out, but I'm not sure whether I can get a better answer. Hence, accepting this as an answer. Thanks :)http://stackoverflow.com/questions/1813268/il-emit-for-invoking-a-delegate-instanceComment by amazedsaint on IL Emit for invoking a delegate instance?amazedsaint2009-11-28T18:34:13Z2009-11-28T18:34:13ZYep agreed. I'll be taking that route, but thought any Reflection emit Ninjas in SO may quickly point this outhttp://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 suitable