dpratt71
Check me out on the web at I don't have time for this.
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
What is a database, really?
May 31, 2012 at 12:01 PMI'm very happy to see this video. I've been struggling to explain these concepts (among others) to my kids. This video is definitely the best explanation I have seen to date.
YOW! 2011: Simon Peyton-Jones - Closer to Nirvana
Dec 16, 2011 at 6:18 AMIs Haskell to complicated to teach to school-age children? Nobody told this guy:
http://cdsmith.wordpress.com/category/haskell-for-kids/
Lucian Wischik: Async Compiler - Bug Fixes, Updates and Core Improvements
Apr 23, 2011 at 8:16 AMJust FYI, I've tried three times now to download and play this content through the Zune desktop software. Each time I try to play it, it gets about 20 seconds in and then drops out with an error message about the file being "corrupt or not valid".
I'm currently downloading the WMV version directly from the site, which I assume will work.
Stephen Toub: Async Update - Technical Overview and Building Awaitable Types
Apr 15, 2011 at 4:06 PMI tend to think that so-called fluent APIs are sometimes abused, but it seems to me that something like
would be more readable and a more flexible pattern for dealing with future unknowns.
C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web 3 of n
Jan 07, 2011 at 4:56 AMThis presentation is definitely touching on some concepts that I've wanted to understand for a while now. In some ways it's been enlightening. In other ways, I don't think I'm any farther ahead in my understanding.
Even if I don't feel completely enlightened, I'm quite pleased that this has crystalized for me exactly why I struggle to understand these concepts.
Firstly, I often don't know if a particular statement is to be accepted axiomatically, or whether I should be able to deduce it myself based on information presented earlier together with my own logic and intuition. For example the bit about [paraphrasing] "...if there is a demand for an 'A' and with resources 'R' we can satisfy the demand, we can transform it so that there is now an 'I.O.U(A)' together with the resource 'R' and now there is no longer a demand for 'A'...". And the bit about it going back the other way. Are such statements axioms or logical conclusions (or other).
Second, and to a lesser degree, when it gets down to the very fundamental stuff, I sometimes struggle to understand what I have 'in hand'.
Even if I didn't completely understand it, I did quite enjoy it. I like the feeling that enlightenment is within reach. Thanks, and looking forward to part 4.
C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 9 of n
Dec 01, 2010 at 10:29 AMI am mostly ignorant of C++ (and even more so of 0X), so please forgive me if this makes no sense.
It seems to me that what is accomplished by "std::move" could (and perhaps should) be implied by how the code is written. Cannot the compiler reason that "here is the last place this reference is...referenced, therefore it is safe to use "move" semantics"?
Furthermore, supposing you specify "std::move", could not the compiler issue a strong warning or even an error, should the 'moved' reference be...referenced at a later point?
TWC9: Silverlight 4, SQL Server R2 & Ent Library 5.0 all RTM, Why code comments aren't bad
Apr 24, 2010 at 4:01 PMThis comment is in response to your comments on the article about code comments being bad for code clarity. Did you have a chance to read the entire article before the show? I ask because the author does make a comment (admittedly toward the end of the article) about exceptional cases where comments can actually add value.
I think the real problem with comments is that, historically, commenting code was often presented as simply a Good Thing™ to do. Like so many other things, inexperienced programmers tend to accept this advice and apply it in the most obvious (and unhelpful) manner possible.
We need to get the message out there that writing good comments is similar to writing good code in that it takes some effort and usually less is more.
C9 Lectures: Dr. Graham Hutton - Functional Programming Fundamentals Chapter 11 of 13
Dec 10, 2009 at 12:45 PMI agree with the other responders, very excellent, thank you Dr. Hutton.
I have to say, in a way I was disappointed with the fact that program fusion was so effective at improving the performance of the program. One of the nicest properties of Haskell is that its functions are so very composable. And because Haskell is pervasively lazy, a lot of unnecessary computation is avoided. It seems to me that "by hand" program fusion runs somewhat counter to function composition.
I wonder if there would be some way of doing this kind of program fusion at compile-time, based on some function-algebra rules engine. Perhaps this relates to Dr. Huttons research.
E2E2E: Meijer, Rys and Vick - Programming Data
Dec 08, 2009 at 12:11 PMI'm finding the discussion on type systems very interesting and insightful. Once I started to understand Haskell, I realized that many of my ideas about the trade-offs between static and dynamic type systems were misconceptions. As a result, I now find it frustrating...exasperating, really, when people claim dynamic type systems to have certain inherent advantages, which aren't advantages of dynamic types, per se, but rather disadvantages of the most well-known implementations of static typing (C++, Java, C#, etc.).
These thoughts lead me to wonder just what, exactly, *are* the inherent advantages of dynamic type systems. I think Michael Rys's distinction of pessimistic and optimistic systems is the insight I've been seeking. I wouldn't be surprised if this becomes the canonical distinction in the future.
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 8 of 13
Nov 20, 2009 at 2:09 PMExcellent as always, Erik.
Perhaps like exoteric, I felt a little dissatisfied with the return type of Parser being "list of..." rather than "Maybe...". I've come to admire the expressive power of Haskell types and this seems like a bit of a hack. Considering, as you pointed out, that both the list and Maybe types comprise Monads, I am wondering where the advantage exists for using the list type. Monads allow for map, filter, lift operations, no?
See more comments…