Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
TPL Dataflow Tour
Jan 05, 2011 at 2:42 PMHi,
With regards to the ConcurrentExclusiveSchedulerPair; you mention we can have a single ActionBlock on the ExclusiveScheduler modifying shared state and others on the ConcurrentProcessor reading this state. Surely we should be passing the state around by pipelining it through the ActionBlocks? If not then If we do not do this then presumably we still have the requirement to use memory fences?
Reactive Extensions API in depth: even more Zip
Jun 15, 2010 at 1:51 AMObservable.Throw<int>(new InvalidDocumentationException("Video error")) .Zip(Observable.Never<int>(), (lhs, rhs) => new {Left = lhs, Right = rhs}) .Subscribe(Console.WriteLine, ex => Console.WriteLine(ex), () => Console.WriteLine("Completed.")); Console.ReadLine();Revisiting WiMo - The Windows Mobile Robot
Dec 13, 2006 at 6:39 AMThis video is way cool. I am definitely building one. Question on the video stream though; are you actually grabbing a stream from the camera or just repeatedly taking snapshots?