<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Coding Day &#187; Web</title>
	<atom:link href="http://www.codingday.com/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codingday.com</link>
	<description>Adventures in Computing, Can Erten's blog</description>
	<lastBuildDate>Tue, 13 Jul 2010 12:52:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>nBloglines .NET Module for Bloglines Web Services</title>
		<link>http://www.codingday.com/nbloglines-net-module-for-bloglines-web-services/</link>
		<comments>http://www.codingday.com/nbloglines-net-module-for-bloglines-web-services/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 02:28:45 +0000</pubDate>
		<dc:creator>Can</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.canerten.com/nbloglines-net-module-for-bloglines-web-services/</guid>
		<description><![CDATA[Bloglines is still the only reader that provides an &#8220;official API&#8221; to make use of their services. I was working on a syndication application and decided to share the .NET Bloglines library that I wrote to use their web services. Requirements .NET 3.5 Framework Quick Reference public Bloglines(string username, string password)&#160;&#160;&#160; Member of CodingDay.Bloglines Default [...]]]></description>
			<content:encoded><![CDATA[<p>Bloglines is still the only reader that provides an &#8220;official API&#8221; to make use of their services. I was working on a syndication application and decided to share the .NET Bloglines library that I wrote to use their web services. </p>
<h2>Requirements</h2>
<ul>
<li>.NET 3.5 Framework</li>
</ul>
<h2>Quick Reference</h2>
<ul>
<li>public Bloglines(string username, string password)<br />&nbsp;&nbsp;&nbsp; Member of CodingDay.Bloglines</li>
</ul>
<p>Default constructor, password is optional for count function.
<ul>
<li>public int Count()<br />&nbsp;&nbsp;&nbsp; Member of CodingDay.Bloglines</li>
</ul>
<p>Returns number of unread items from your subscriptions
<ul>
<li>public System.Collections.Generic.IEnumerable &lt;Subscription&gt; GetSubscriptionList()<br />&nbsp;&nbsp;&nbsp; Member of CodingDay.Bloglines</li>
</ul>
<p>Gets the Subscription list from your account</p>
<ul>
<li>public System.Collections.Generic.IEnumerable&lt;Channel&gt; GetChannels(string SubId, bool markasRead)<br />&nbsp;&nbsp;&nbsp; Member of CodingDay.Bloglines</li>
</ul>
<p>Get the rss feeds for a subscription ID returned from the subscription list function. MarkasRead parameter is the synchronization parameter to mark the changes on bloglines servers. </p>
<h2>Download</h2>
<p>
<div class='download-link'>
							<a href='http://www.codingday.com/download.php?file=http://www.codingday.com/downloads/Bloglines.cs'><img alt='Download' class='leftalign' src='http://www.codingday.com/wp-content/plugins/dBeautifier/icons/downloads.png' /></a>
							<h4>
								<a href='http://www.codingday.com/download.php?file=http://www.codingday.com/downloads/Bloglines.cs'>nBloglines Source Code</a>
							</h4><p>Downloads: 138  File Name: Bloglines.cs</p>
						</div><br />
<div class='download-link'>
							<a href='http://www.codingday.com/download.php?file=http://www.codingday.com/downloads/nBloglines.dll'><img alt='Download' class='leftalign' src='http://www.codingday.com/wp-content/plugins/dBeautifier/icons/downloads.png' /></a>
							<h4>
								<a href='http://www.codingday.com/download.php?file=http://www.codingday.com/downloads/nBloglines.dll'>nBloglines DLL</a>
							</h4><p>Downloads: 68  File Name: nBloglines.dll</p>
						</div>
</p>
<h2>Usage</h2>
<ul>
<li>Create CodingDay.Bloglines object</li>
</ul>
<p>
<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;">var blines <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> CodingDay.<span style="color: #0000FF;">Bloglines</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;***@****.***&quot;</span>, <span style="color: #666666;">&quot;******&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></div></div>

</p>
<ul>
<li>Count unread items for the user</li>
</ul>
<p>
<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"> Console.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;{0}&quot;</span>, blines.<span style="color: #0000FF;">Count</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></div></div>

</p>
<ul>
<li>Get list of subscriptions</li>
</ul>
<p>
<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"> var subscriptions <span style="color: #008000;">=</span>  blines.<span style="color: #0000FF;">GetSubscriptionList</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span>var item <span style="color: #0600FF;">in</span> subscriptions<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
  Console.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;id:{0}, url:{1}, parent:{2}&quot;</span>, item.<span style="color: #0000FF;">Id</span>, item.<span style="color: #0000FF;">Url</span>, item.<span style="color: #0000FF;">ParentId</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

</p>
<ul>
<li>Get items for a subscription feed or folder using the id returned from subscription function</li>
</ul>
<p>
<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #008080; font-style: italic;">// use a number from the subscriptions id</span>
var channels <span style="color: #008000;">=</span> blines.<span style="color: #0000FF;">GetChannels</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;64363260&quot;</span>, <span style="color: #0600FF;">false</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span> 
<span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span>var item <span style="color: #0600FF;">in</span> channels<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
  Console.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;title:{0}, description:{1}&quot;</span>, item.<span style="color: #0000FF;">Title</span>, item.<span style="color: #0000FF;">Description</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
  <span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span>var i <span style="color: #0600FF;">in</span> item.<span style="color: #0000FF;">Items</span><span style="color: #000000;">&#41;</span>
  <span style="color: #000000;">&#123;</span>
     Console.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;{0}&quot;</span>, i.<span style="color: #0000FF;">Description</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
  <span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

</p>
<p>&nbsp;</p>
<p>For more details, check out <a href="http://www.bloglines.com/services/api/">http://www.bloglines.com/services/api/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingday.com/nbloglines-net-module-for-bloglines-web-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parallel Web with Yahoo Pipes</title>
		<link>http://www.codingday.com/parallel-web-with-yahoo-pipes/</link>
		<comments>http://www.codingday.com/parallel-web-with-yahoo-pipes/#comments</comments>
		<pubDate>Fri, 16 Feb 2007 20:19:47 +0000</pubDate>
		<dc:creator>Can</dc:creator>
				<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.canerten.com/parallel-web-with-yahoo-pipes/</guid>
		<description><![CDATA[Yahoo! Pipes is a great idea implemented by Yahoo! with an incredibly amazing user interface. When I first played with I just shocked and suspected about flashy stuff. However it is based on only Javascript with the help of Yahoo&#8217;s great Yahoo! User Interface Library on the back-end. The idea is simple to explain if [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://pipes.yahoo.com/" target="_blank">Yahoo! Pipes</a> is a great idea implemented by Yahoo! with an incredibly amazing user interface. When I first played with I just shocked and suspected about flashy stuff. However it is based on only Javascript with the help of Yahoo&#8217;s great <a href="http://developer.yahoo.com/yui/" target="_blank">Yahoo! User Interface Library</a> on the back-end. </p>
<p>The idea is simple to explain if you know the pipes from the operating systems. Basically linking the output of something to the input of something else or vice versa. Something in this case is the RSS feeds or web services provided from different sources. </p>
<p>Pipes are one of the main concepts in parallel computing for pipelining the process. Since web is enormously distributed, what you can do is infinite. There are some operators available like for each, count, sort, filter that you can do various operations to the feeds. So with this tool, you can parallellise web and get the processed result.</p>
<p>The create pipe user interface is very similar to the IDE interface even it has a debugger as we used to do. On the left you have the toolbox and you have the design surface where you drag and drop the components.&nbsp; Beside creating your own pipes, you can also use people&#8217;s pipes as well. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingday.com/parallel-web-with-yahoo-pipes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPF/E Released</title>
		<link>http://www.codingday.com/wpfe-released/</link>
		<comments>http://www.codingday.com/wpfe-released/#comments</comments>
		<pubDate>Sun, 10 Dec 2006 03:28:29 +0000</pubDate>
		<dc:creator>Can</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.canerten.com/wpfe-released/</guid>
		<description><![CDATA[Scott Guthrie and his team at Microsoft has released a new product code named WPF/E. It looks like a flash replacement for Internet Explorer browser with some additional features. First of all, it only works with Internet Explorer, I think if they don&#8217;t give support to other platforms and other browsers, although WPF/E seems really [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://weblogs.asp.net/scottgu/archive/2006/12/04/announcing-the-release-of-the-first-wpf-e-ctp.aspx" target="_blank">Scott Guthrie and his team at Microsoft has released a new product</a> code named <a href="http://msdn2.microsoft.com/en-us/asp.net/bb187358.aspx" target="_blank">WPF/E</a>. It looks like a flash replacement for Internet Explorer browser with some additional features. First of all, it only works with Internet Explorer, I think if they don&#8217;t give support to other platforms and other browsers, although WPF/E seems really great, it might not be popular as flash.</p>
<p>We want some standards to look our applications look the same on every platform. I have never programmed flash scripts before and I am sure that Microsoft will provide that easy to developers. However if it is only for IE, I don&#8217;t think many of the developers will use it. </p>
<p>I don&#8217;t understand that new approach as well. The products like <a href="http://maps.live.com/" target="_blank">Virtual Earth</a> or <a href="http://labs.live.com/photosynth/" target="_blank">Photosynth</a>&nbsp;and this only works for Internet Explorer because they use Activex. I don&#8217;t know if they will support other platforms but since it&#8217;s developed on ActiveX I don&#8217;t think they will give any support.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingday.com/wpfe-released/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
