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
Matthew Podwysocki and Bart J. F. De Smet: RxJS Today and Tomorrow
Mar 08, 2012 at 4:58 AMTo take Charles point about what to do with Rx further, I often hear "you guys get a new technology and treat it like a hammer and then try to treat everything else as a nail whether it is or not." To that, well of course! How else can you learn something without living it for a time, to know what it is and how best to use it. That being the case, Rx seems like "well you don't need it until you try and do x, y or z..." That's the learning curve problem with Rx, there are not enough nails around to go bashing with it. The tutorial series was a start but like the All-In-One project, how about list somewhere of examples of how Rx can solve problems and maybe like I suggested to the All In One group, accept request for scenarios and show how Rx is best to solve them.
Any way, keep on with the documentation, but examples of solved problems is just sometimes better for us dark matter developers.
Channel 9 has gone global!
Oct 03, 2011 at 1:36 PMIn Australia here and hitting the "North Central US" data center. Hope that's because I'm up earlier than the other sleepy heads and getting all the bandwidth...
Goodbye 9: Nic Fillingham Exit Interview
Oct 03, 2011 at 5:00 AMGood luck Nic and don't forget to come back and visit some time. Sounds like you've been on a walk-about for some time indeed.
Microsoftâs Windows 8 Reimagines Windows for the Future
Sep 13, 2011 at 2:57 PMApparently the download files are incomplete...? 21 seconds appears to be right.
Hawaii interns XAPfest 2011
Sep 07, 2011 at 11:12 PMAdam: Agreed! Simple camera utilities like that one is as important to the smart phone as email is to the slow internet. Julia should expand the start recording on face smile (or any other per-assigned visual cue) to video as well.
The next step in smart phone has to be tactile feed back, especially when USB key insertion. A simple electro-magnet that when in use, clips the key in place, and releases when not in use. ie. only when powered and in use the clips pop in.
Rx Workshop: Schedulers
Jul 06, 2011 at 6:15 AMIt runs and should do as the method explanations indicate but doesn't delay each quote as expected (unless I don't use the scheduler?), but I shouldn't think you need to for each over it like the other attempts above...
Query Code:
return from n in quotes.Where(p => p.Symbol == "MSFT") select new { date = n.Date, close = n.Close.ToString() };GetQuotes Code:
Rx Workshop: Writing Queries
Jul 06, 2011 at 3:41 AMI'm not sure I got this right as it seemed a little to easy...
var lookup = textChanged .Select(_ => txt.Text) .DistinctUntilChanged() .Throttle(TimeSpan.FromMilliseconds(200)) .Do(text => Console.WriteLine("TextChanged: {0}", text)) .Where(text => text.Length >= 3) .Do(text => Console.WriteLine("Lookup: {0}", text)); var results = lookup .Select(text => getSuggestions(text)) .Switch();Rx Workshop: Unified Programming Model
Jul 05, 2011 at 5:13 AMAs more of an assembler, rather than programmer or developer, I just kept removing things and plugging different things together and it actually worked first time!?! So here is my effort.
Rx Workshop: Observables versus Events
Jul 04, 2011 at 12:49 PMI got lost down the rabbit hole of trying to follow the hint. Here's mine:
class Events { public event Action<string> TextChanged; public virtual void OnTextChanged(string text) { var t = TextChanged; if (t != null) t(text); } private event Action<string> lc; //lengthChanged public event Action<int> LengthChanged { add { lc += x => { Console.WriteLine(x == null ? 0 : x.Length); }; TextChanged += lc; } remove { TextChanged -= lc; } } } class Observables { ISubject<string> textChanged = new Subject<string>(); public virtual void OnTextChanged(string text) { textChanged.OnNext(text); } public IObservable<string> TextChanged { get { return textChanged; } } public IObservable<int> LengthChanged { get { return textChanged.Select(s => s == null ? 0 : s.Length); } } }Rx Workshop: Observables versus Events
Jul 03, 2011 at 12:35 AMSorry but I'm having a mental block solving the Observables section. I've checked the main site and looked through the links like HOL202 but it's not clicking yet. Where can I either get some more hints or find the solution.
See more comments…