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
C# Blog Reader - 2 - Get data into an app
May 02, 2013 at 6:04 AM@Dan: Thanks Dan for updating the video with the new links. I really had some problems in running code, that I commented on this episode and the next episode proposing changing the links. I even wrote a feedback on the MSDN article. Now I think the code should run out of the box, and problems should be resolved! and it even has atom feeds, so the author name would be visible in the app when viewed in later episodes!
Channel 9 Content for Beginners
Dec 31, 2012 at 4:59 PM@BobTabor: I have a suggestion for the video encoding . In order to make the mid quality videos more readable without increasing their file size, I really suggest not to down scale the resolution ; instead decrease the frame rate. This may make motion not so clear but the text will be crystal sharp.
In fact, I tried the available mid quality , and i felt that the text is sometimes not readable, and in other times it is barely readable. Currently I have to download the high quality to have a good view .
C# Blog Reader - 2 - Get data into an app
Nov 29, 2012 at 3:27 AM@Elroymam: I had the same problem too. As listed in http://blogs.windows.com/b/ , all feeds are now RSS only. Also the website changed its name
C# Blog Reader - 3 - Asynchronous programming
Nov 29, 2012 at 2:53 AMInstead of what in the video and in the complete code :
Task<FeedData> feed1 =
GetFeedAsync("http://windowsteamblog.com/windows/b/developers/atom.aspx");
Task<FeedData> feed2 =
GetFeedAsync("http://windowsteamblog.com/windows/b/windowsexperience/atom.aspx");
Task<FeedData> feed3 =
GetFeedAsync("http://windowsteamblog.com/windows/b/extremewindows/atom.aspx");
Task<FeedData> feed4 =
GetFeedAsync("http://windowsteamblog.com/windows/b/business/atom.aspx");
Task<FeedData> feed5 =
GetFeedAsync("http://windowsteamblog.com/windows/b/bloggingwindows/atom.aspx");
Task<FeedData> feed6 =
GetFeedAsync("http://windowsteamblog.com/windows/b/windowssecurity/atom.aspx");
Task<FeedData> feed7 =
GetFeedAsync("http://windowsteamblog.com/windows/b/springboard/atom.aspx");
Task<FeedData> feed8 =
GetFeedAsync("http://windowsteamblog.com/windows/b/windowshomeserver/atom.aspx");
// There is no Atom feed for this blog, so use the RSS feed.
Task<FeedData> feed9 =
GetFeedAsync("http://windowsteamblog.com/windows_live/b/windowslive/rss.aspx"); Task<FeedData> feed10 = GetFeedAsync("http://windowsteamblog.com/windows_live/b/developer/atom.aspx");
Task<FeedData> feed11 =
GetFeedAsync("http://windowsteamblog.com/ie/b/ie/atom.aspx");
Task<FeedData> feed12 =
GetFeedAsync("http://windowsteamblog.com/windows_phone/b/wpdev/atom.aspx");
Task<FeedData> feed13 =
GetFeedAsync("http://windowsteamblog.com/windows_phone/b/wmdev/atom.aspx");
Task<FeedData> feed14 =
GetFeedAsync("http://windowsteamblog.com/windows_phone/b/windowsphone/atom.aspx");
This should be used as links are working:
Task<FeedData> feed1 =
GetFeedAsync(
"http://blogs.windows.com/windows/b/bloggingwindows/rss.aspx");
Task<FeedData> feed2 =
GetFeedAsync(
"http://blogs.windows.com/windows/b/windowsexperience/rss.aspx");
Task<FeedData> feed3 =
GetFeedAsync(
"http://blogs.windows.com/windows/b/extremewindows/rss.aspx");
Task<FeedData> feed4 =
GetFeedAsync(
"http://blogs.windows.com/windows/b/business/rss.aspx");
Task<FeedData> feed5 =
GetFeedAsync(
"http://blogs.windows.com/windows/b/windowssecurity/rss.aspx");
Task<FeedData> feed6 =
GetFeedAsync(
"http://blogs.windows.com/windows/b/springboard/rss.aspx");
Task<FeedData> feed7 =
GetFeedAsync(
"http://blogs.windows.com/windows/b/windowshomeserver/rss.aspx");
Task<FeedData> feed8 =
GetFeedAsync(
"http://blogs.windows.com/windows_live/b/windowslive/rss.aspx");
Task<FeedData> feed9 =
GetFeedAsync(
"http://blogs.windows.com/windows_live/b/developer/rss.aspx");
Task<FeedData> feed10 =
GetFeedAsync(
"http://blogs.windows.com/ie/b/ie/rss.aspx");
Task<FeedData> feed11 =
GetFeedAsync(
"http://blogs.windows.com/skydrive/b/skydrive/rss.aspx");
Task<FeedData> feed12 =
GetFeedAsync(
"http://blogs.windows.com/windows_phone/b/windowsphone/rss.aspx");
Task<FeedData> feed13 =
GetFeedAsync(
"http://blogs.windows.com/windows_phone/b/wpdev/rss.aspx");
Task<FeedData> feed14 =
GetFeedAsync(
"http://blogs.windows.com/windows_phone/b/wmdev/rss.aspx");
C# Blog Reader - 3 - Asynchronous programming
Nov 29, 2012 at 2:29 AMAll web links do not work , making the code throw System.Exception in mscorlib.dll
at line:
SyndicationFeed feed = await client.RetrieveFeedAsync(feedUri);
please update web links due to switch from
http://windowsteamblog.com
to
http://blogs.windows.com
C# Blog Reader - 3 - Asynchronous programming
Nov 27, 2012 at 1:46 AM@MSPNitesh: I had the same exception till I discovered that I misspelled:
<local:FeedDataSource x:Key="feedDataSource" />
in app.xaml , correcting it, this exception was no more showed.
once resolved, I had another exception:
"A first chance exception of type 'System.Exception' occurred in mscorlib.dll
WinRT information: DTD is prohibited."
at line:
SyndicationFeed feed = await client.RetrieveFeedAsync(feedUri);
C# Blog Reader - 1 - Introduction to the series
Nov 08, 2012 at 6:25 PMSounds exciting!
Channel 9 Content for Beginners
Nov 03, 2012 at 12:16 AMWhy not add :
http://channel9.msdn.com/Series/Windows-Store-apps-for-Absolute-Beginners-with-C-
?
Writing your First JavaScript Application - 02
Oct 14, 2012 at 6:53 AMGreat Lesson !
But I would really recommend using Consolas font insteas of Courier New , for two reasons:
Where to Go From Here - 21
Oct 07, 2012 at 7:41 PM@ciupaz:For me I downloaded the high definition WMV Videos of this series , they were 2.68 GB only.
@BobTabor: It is You who have our sincerest respect ; mine and of all who finished watching this series. I really found this series helpful.
@ Microsoft: I really enjoyed this series .
See more comments…