<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Galib&#039;s virtual identity</title>
	<atom:link href="http://imgalib.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://imgalib.wordpress.com</link>
	<description>Shahriar Iqbal Chowdhury&#039;s Blog</description>
	<lastBuildDate>Thu, 23 Feb 2012 07:48:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='imgalib.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/860215a88e42805678d6a3dd9d3af36d?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Galib&#039;s virtual identity</title>
		<link>http://imgalib.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://imgalib.wordpress.com/osd.xml" title="Galib&#039;s virtual identity" />
	<atom:link rel='hub' href='http://imgalib.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Software Architecture Cheat Blog 1: Design Principles</title>
		<link>http://imgalib.wordpress.com/2012/01/30/software-architecture-cheat-blog-1-design-principles/</link>
		<comments>http://imgalib.wordpress.com/2012/01/30/software-architecture-cheat-blog-1-design-principles/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 22:05:09 +0000</pubDate>
		<dc:creator>imgalib</dc:creator>
				<category><![CDATA[Software Architecture]]></category>
		<category><![CDATA[Software Engineering]]></category>
		<category><![CDATA[software architecture]]></category>
		<category><![CDATA[software design principles]]></category>
		<category><![CDATA[SOLID principle]]></category>

		<guid isPermaLink="false">http://imgalib.wordpress.com/?p=177</guid>
		<description><![CDATA[This blog series will gather summary of all the software architecture design principles under one roof. Intention is to keep in touch with these principles. First one is called “SOLID”, which is combination of five basic designing principles, Single Responsibility Principle Example: http://blog.sanaulla.info/2011/11/16/solid-single-responsibility-principle/ There should never be more than one reason for class to change. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=177&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This blog series will gather summary of all the software architecture design principles under one roof. Intention is to keep in touch with these principles.<br />
First one is called “SOLID”, which is combination of five basic designing principles,</p>
<h3>Single Responsibility Principle</h3>
<p>Example: <a href="http://blog.sanaulla.info/2011/11/16/solid-single-responsibility-principle/" title="http://blog.sanaulla.info/2011/11/16/solid-single-responsibility-principle/">http://blog.sanaulla.info/2011/11/16/solid-single-responsibility-principle/</a><br />
There should never be more than one reason for class to change.</p>
<h3>Open – Closed Principle</h3>
<p>Example: <a title="http://blog.sanaulla.info/2011/11/19/solid-open-closed-principle/" href="http://blog.sanaulla.info/2011/11/19/solid-open-closed-principle/" target="_blank">http://blog.sanaulla.info/2011/11/19/solid-open-closed-principle/</a><br />
<br />
Software Entities (Classes, Modules, Functions, etc.) should be open for extension but closed for modifications.</p>
<h3>Liscov Substitution Principle</h3>
<p>Example: <a title="http://lassala.net/2010/11/04/a-good-example-of-liskov-substitution-principle/" href="http://lassala.net/2010/11/04/a-good-example-of-liskov-substitution-principle/">http://lassala.net/2010/11/04/a-good-example-of-liskov-substitution-principle/</a><br />
Functions that use pointers or references to base classes must be able to use objects of derived classes without knowing it.</p>
<h3>Interface Segregation Principle</h3>
<p>Clients should not be forced to depend upon interfaces that they don’t use.</p>
<h3>Dependency Inversion Principle</h3>
<p>A. High level modules should not depend on low level module. Both should depend on abstraction. Both should depend on Abstraction.<br />
B. Abstraction should not depend on details. Details should depend on Abstraction.<br />
Other important principles are</p>
<h3>DRY (Don’t Repeat Yourself)</h3>
<p>Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.<br />
Aimed at reducing repetition of information of all kinds, especially useful in multi-tier architectures.</p>
<h3>YAGNI &#8211; You ain&#8217;t gonna need it</h3>
<p>Always implement things when you actually need them, never when you just foresee that you need them.</p>
<h3>KISS &#8211; Keep it simple, Stupid!</h3>
<p>Most systems work best if they are kept simple rather than made complex, therefore simplicity should be a key goal in design and unnecessary complexity should be avoided.</p>
<h3>Seven Principles Of Software Development</h3>
<ol>
<li>The Reason It All Exists</li>
<li>KISS (Keep It Simple, Stupid!)</li>
<li>Maintain the Vision</li>
<li>What You Produce, Others Will Consume</li>
<li>Be Open to the Future</li>
<li>Plan Ahead for Reuse</li>
<li>Think</li>
</ol>
<p><em>REF: <a title="http://csharpsimplified.wordpress.com/2010/10/01/design-principle/" href="http://csharpsimplified.wordpress.com/2010/10/01/design-principle/" target="_blank">http://csharpsimplified.wordpress.com/2010/10/01/design-principle/</a></em><br />
<a style="display:none;" href="http://www.codeproject.com/script/Articles/BlogFeedList.aspx?amid=1757192" rel="tag">CodeProject</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imgalib.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imgalib.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imgalib.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imgalib.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/imgalib.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/imgalib.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/imgalib.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/imgalib.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imgalib.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imgalib.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imgalib.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imgalib.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imgalib.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imgalib.wordpress.com/177/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=177&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://imgalib.wordpress.com/2012/01/30/software-architecture-cheat-blog-1-design-principles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7582aacb6849d9a65742e34126559451?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">imgalib</media:title>
		</media:content>
	</item>
		<item>
		<title>My flicker stream</title>
		<link>http://imgalib.wordpress.com/2012/01/30/my-flicker-stream/</link>
		<comments>http://imgalib.wordpress.com/2012/01/30/my-flicker-stream/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 21:13:52 +0000</pubDate>
		<dc:creator>imgalib</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[flicker]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://imgalib.wordpress.com/?p=174</guid>
		<description><![CDATA[At last, I dared to publish my own flicker photo stream. check this out, http://www.flickr.com/photos/imgalib/ A word of caution, amateur photography, see with your own risk<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=174&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At last, I dared to publish my own flicker photo stream.<br />
check this out,<br />
<a href="http://www.flickr.com/photos/imgalib/" title="imgalib photo stream">http://www.flickr.com/photos/imgalib/</a><br />
A word of caution, amateur photography, see with your own risk <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imgalib.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imgalib.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imgalib.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imgalib.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/imgalib.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/imgalib.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/imgalib.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/imgalib.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imgalib.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imgalib.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imgalib.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imgalib.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imgalib.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imgalib.wordpress.com/174/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=174&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://imgalib.wordpress.com/2012/01/30/my-flicker-stream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7582aacb6849d9a65742e34126559451?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">imgalib</media:title>
		</media:content>
	</item>
		<item>
		<title>বাংলাদেশের ঐতিহ্যবাহী মেলা</title>
		<link>http://imgalib.wordpress.com/2012/01/29/%e0%a6%ac%e0%a6%be%e0%a6%82%e0%a6%b2%e0%a6%be%e0%a6%a6%e0%a7%87%e0%a6%b6%e0%a7%87%e0%a6%b0-%e0%a6%90%e0%a6%a4%e0%a6%bf%e0%a6%b9%e0%a7%8d%e0%a6%af%e0%a6%ac%e0%a6%be%e0%a6%b9%e0%a7%80-%e0%a6%ae%e0%a7%87/</link>
		<comments>http://imgalib.wordpress.com/2012/01/29/%e0%a6%ac%e0%a6%be%e0%a6%82%e0%a6%b2%e0%a6%be%e0%a6%a6%e0%a7%87%e0%a6%b6%e0%a7%87%e0%a6%b0-%e0%a6%90%e0%a6%a4%e0%a6%bf%e0%a6%b9%e0%a7%8d%e0%a6%af%e0%a6%ac%e0%a6%be%e0%a6%b9%e0%a7%80-%e0%a6%ae%e0%a7%87/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 21:13:02 +0000</pubDate>
		<dc:creator>imgalib</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[মেলা]]></category>
		<category><![CDATA[festival]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://imgalib.wordpress.com/?p=168</guid>
		<description><![CDATA[সূর্যমণি মেলা: বাশ ও বেতের তৈরী নিত্য প্রয়োজনীয় সামগ্রী, যাত্রাপালা ঐতিহ্য: ব্রিটিশ আমল থেকে উপজেলার আহমাদাবাদ (বেতাল) গ্রামে প্রায় ১০একর জমির উপর সূর্যমণি মেলা শুরু হয়। স্থানঃ বানারীপাড়া তারিখঃ 30/1/2012 মাছের মেলা:২ কিমি জুড়ে বিস্তৃত দেশের সবচেয়ে বড় মাছের মেলা, ১০ হাজার লোকের আগমন ঘটে (অন্য সূত্রানুসারে লাখো মানুষের ঢল নামে।) ঐতিহ্য:প্রায় দু’শ’ বছর পূর্বে [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=168&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>সূর্যমণি মেলা: বাশ ও বেতের তৈরী নিত্য প্রয়োজনীয় সামগ্রী, যাত্রাপালা<br />
ঐতিহ্য: ব্রিটিশ আমল থেকে উপজেলার আহমাদাবাদ (বেতাল) গ্রামে প্রায় ১০একর জমির উপর সূর্যমণি মেলা শুরু হয়।<br />
স্থানঃ বানারীপাড়া<br />
তারিখঃ 30/1/2012</p>
<p>মাছের মেলা:২ কিমি জুড়ে বিস্তৃত দেশের সবচেয়ে বড় মাছের মেলা, ১০ হাজার লোকের আগমন ঘটে (অন্য সূত্রানুসারে লাখো মানুষের ঢল নামে।)<br />
ঐতিহ্য:প্রায় দু’শ’ বছর  পূর্বে পৌষ সংক্রান্তির উৎসবকে কেন্দ্র করে যে মেলাটি শুরু হয়েছিল।<br />
স্থানঃ মৌলভীবাজারের শেরপুরের<br />
তারিখঃ প্রতিবছর পৌষ মাসের আটাশ থেকে ত্রিশ তারিখ পর্যন্ত। মূলত মেলা জমে ওঠে উনত্রিশ তারিখে।</p>
<p>ঘোড়দৌড়-গ্রামীণ মেলা:<br />
ঐতিহ্য:প্রায় দু’শ’ বছর  পূর্বে পৌষ সংক্রান্তির উৎসবকে কেন্দ্র করে যে মেলাটি শুরু হয়েছিল।<br />
স্থানঃ মাগুরা সদর উপজেলার গাংনী-পাটোখালী গ্রামে<br />
তারিখঃ প্রতিবছর  ১২ ও ১৩ মাঘ।</p>
<p>গুড়পুকুরের মেলা:<br />
ঐতিহ্য:৩০০ বছর<br />
স্থানঃ সাতক্ষীরা এলাকার পলাশপোল স্কুলের মাঠ আর পলাশপোল গ্রামই হলো মেলার মূল কেন্দ্রস্থল<br />
তারিখঃ বাংলা বর্ষপঞ্জি অনুযায়ী ভাদ্র মাসের শেষে অনুষ্ঠিত হিন্দু ধর্মাবলম্বীদের মনসা পূজাকে কেন্দ্র করে এই মেলা একমাসব্যাপী অনুষ্ঠিত হয়</p>
<p>রাস মেলা:<br />
ঐতিহ্য:৩০০ বছর<br />
স্থানঃ সাতক্ষীরা এলাকার পলাশপোল স্কুলের মাঠ আর পলাশপোল গ্রামই হলো মেলার মূল কেন্দ্রস্থল<br />
তারিখঃ বাংলা বর্ষপঞ্জি অনুযায়ী ভাদ্র মাসের শেষে অনুষ্ঠিত হিন্দু ধর্মাবলম্বীদের মনসা পূজাকে কেন্দ্র করে এই মেলা একমাসব্যাপী অনুষ্ঠিত হয়</p>
<p>রাজপুণ্যাহ্ মেলা:<br />
ঐতিহ্য:১৮৭৫ সালে<br />
স্থানঃ বান্দরবান<br />
তারিখঃ 19/1/2012 সপ্তাহ ব্যাপী</p>
<p>ঘুড়ি উৎসবঃ<br />
স্থানঃ ঈনানি সৈকত<br />
তারিখঃ ২/৩/২০১২</p>
<p>তাড়াশের দই মেলা:<br />
স্থানঃ সিরাজগঞ্জ জেলার তাড়াশ উপজেলায়<br />
তারিখঃ ২৮শে জানুয়ারী ২০১২</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imgalib.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imgalib.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imgalib.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imgalib.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/imgalib.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/imgalib.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/imgalib.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/imgalib.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imgalib.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imgalib.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imgalib.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imgalib.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imgalib.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imgalib.wordpress.com/168/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=168&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://imgalib.wordpress.com/2012/01/29/%e0%a6%ac%e0%a6%be%e0%a6%82%e0%a6%b2%e0%a6%be%e0%a6%a6%e0%a7%87%e0%a6%b6%e0%a7%87%e0%a6%b0-%e0%a6%90%e0%a6%a4%e0%a6%bf%e0%a6%b9%e0%a7%8d%e0%a6%af%e0%a6%ac%e0%a6%be%e0%a6%b9%e0%a7%80-%e0%a6%ae%e0%a7%87/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7582aacb6849d9a65742e34126559451?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">imgalib</media:title>
		</media:content>
	</item>
		<item>
		<title>Patenga tour [Photo Blog]</title>
		<link>http://imgalib.wordpress.com/2012/01/27/patenga-tour-photo-blog/</link>
		<comments>http://imgalib.wordpress.com/2012/01/27/patenga-tour-photo-blog/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 15:27:53 +0000</pubDate>
		<dc:creator>imgalib</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[patenga beach]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[sunset]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://imgalib.wordpress.com/?p=155</guid>
		<description><![CDATA[Patenga beach is famous for sunset view. At last I managed to get rid of my machine life and do what I love to do, photography. Although I am not professional, but as amateur photographer, I believe its ok to share Captured from my lenses. Sunset: 1 Sunset: 2 Sunset: 3 Sunset: 4 Waiting :<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=155&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Patenga" title="Patenga" target="_blank">Patenga</a> beach is famous for sunset view. At last I managed to get rid of my machine life and do what I love to do, photography. Although I am not professional, but as amateur photographer, I believe its ok to share <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Captured from my lenses.<br />
Sunset: 1<br />
<a href="http://imgalib.files.wordpress.com/2012/01/dsc01369.jpg"><img src="http://imgalib.files.wordpress.com/2012/01/dsc01369.jpg?w=604&#038;h=132" alt="" title="DSC01369" width="604" height="132" class="aligncenter size-full wp-image-158" /></a><br />
Sunset: 2<br />
<a href="http://imgalib.files.wordpress.com/2012/01/dsc01294.jpg"><img src="http://imgalib.files.wordpress.com/2012/01/dsc01294.jpg?w=604&#038;h=453" alt="" title="DSC01294" width="604" height="453" class="aligncenter size-full wp-image-156" /></a><br />
Sunset: 3<br />
<a href="http://imgalib.files.wordpress.com/2012/01/dsc01301.jpg"><img src="http://imgalib.files.wordpress.com/2012/01/dsc01301.jpg?w=604&#038;h=805" alt="" title="DSC01301" width="604" height="805" class="aligncenter size-full wp-image-157" /></a><br />
Sunset: 4<br />
<a href="http://imgalib.files.wordpress.com/2012/01/dsc01297.jpg"><img src="http://imgalib.files.wordpress.com/2012/01/dsc01297.jpg?w=604&#038;h=453" alt="" title="DSC01297" width="604" height="453" class="aligncenter size-full wp-image-164" /></a><br />
Waiting :<br />
<a href="http://imgalib.files.wordpress.com/2012/01/dsc01376.jpg"><img src="http://imgalib.files.wordpress.com/2012/01/dsc01376.jpg?w=604&#038;h=453" alt="" title="DSC01376" width="604" height="453" class="aligncenter size-full wp-image-162" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imgalib.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imgalib.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imgalib.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imgalib.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/imgalib.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/imgalib.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/imgalib.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/imgalib.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imgalib.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imgalib.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imgalib.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imgalib.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imgalib.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imgalib.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=155&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://imgalib.wordpress.com/2012/01/27/patenga-tour-photo-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7582aacb6849d9a65742e34126559451?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">imgalib</media:title>
		</media:content>

		<media:content url="http://imgalib.files.wordpress.com/2012/01/dsc01369.jpg" medium="image">
			<media:title type="html">DSC01369</media:title>
		</media:content>

		<media:content url="http://imgalib.files.wordpress.com/2012/01/dsc01294.jpg" medium="image">
			<media:title type="html">DSC01294</media:title>
		</media:content>

		<media:content url="http://imgalib.files.wordpress.com/2012/01/dsc01301.jpg" medium="image">
			<media:title type="html">DSC01301</media:title>
		</media:content>

		<media:content url="http://imgalib.files.wordpress.com/2012/01/dsc01297.jpg" medium="image">
			<media:title type="html">DSC01297</media:title>
		</media:content>

		<media:content url="http://imgalib.files.wordpress.com/2012/01/dsc01376.jpg" medium="image">
			<media:title type="html">DSC01376</media:title>
		</media:content>
	</item>
		<item>
		<title>Mark a class or method as deprecated in c#</title>
		<link>http://imgalib.wordpress.com/2011/11/16/mark-a-class-or-method-as-deprecated-in-c/</link>
		<comments>http://imgalib.wordpress.com/2011/11/16/mark-a-class-or-method-as-deprecated-in-c/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 09:16:13 +0000</pubDate>
		<dc:creator>imgalib</dc:creator>
				<category><![CDATA[Asp.NET]]></category>
		<category><![CDATA[Tip/Trick]]></category>
		<category><![CDATA[c# attribute]]></category>
		<category><![CDATA[c# obsolete attribute]]></category>
		<category><![CDATA[obsolete class]]></category>
		<category><![CDATA[obsolete function]]></category>

		<guid isPermaLink="false">http://imgalib.wordpress.com/?p=145</guid>
		<description><![CDATA[Background The attribute Obsolete is used to mark types and members of types that should no longer be used. the Obsolete attribute is found in the System namespace; which means you can specify the type as Obsolete or ObsoleteAttribute—the suffix &#8220;Attribute&#8221; is automatically added at compile-time. A class or function can be made deprecated in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=145&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>Background</h3>
<p>The attribute Obsolete is used to mark types and members of types that should no longer be used. the Obsolete attribute is found in the System namespace; which means you can specify the type as Obsolete or ObsoleteAttribute—the suffix &#8220;Attribute&#8221; is automatically added at compile-time. A class or function can be made deprecated in c# by using obsolete attribute.For class/function use this attribute at top of the class/function. You can call attribute constructor by two ways,</p>
<pre>[System.Obsolete("WARNING_MESSAGE")]
[System.Obsolete("WARNING_MESSAGE",[show compiler error true|false])]</pre>
<p>Below is the example that shows usage of both constructor,</p>
<pre>[Obsolete("Method1 is deprecated, please use Method2 instead.")]
public string Method1()
{
//function body
}</pre>
<p>Upon calling this function compiler wont produces warning or error.</p>
<pre>[System.Obsolete("Class1 is deprecated, use class2"),true]
class Class1
{
public void Method() { //function body  }
}</pre>
<p>Upon calling instantiating this class, compiler wont produces warning or error.<br />
<a style="display:none;" href="http://anyurl.com" rel="tag">CodeProject</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imgalib.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imgalib.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imgalib.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imgalib.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/imgalib.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/imgalib.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/imgalib.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/imgalib.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imgalib.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imgalib.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imgalib.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imgalib.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imgalib.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imgalib.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=145&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://imgalib.wordpress.com/2011/11/16/mark-a-class-or-method-as-deprecated-in-c/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7582aacb6849d9a65742e34126559451?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">imgalib</media:title>
		</media:content>
	</item>
		<item>
		<title>Places I want to see in my lifetime</title>
		<link>http://imgalib.wordpress.com/2011/11/04/places-i-want-to-see-before-i-die/</link>
		<comments>http://imgalib.wordpress.com/2011/11/04/places-i-want-to-see-before-i-die/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 10:54:59 +0000</pubDate>
		<dc:creator>imgalib</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[amazing places]]></category>
		<category><![CDATA[asian tarvel]]></category>
		<category><![CDATA[scuba dive]]></category>
		<category><![CDATA[tour]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[travel destination]]></category>
		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://imgalib.wordpress.com/?p=121</guid>
		<description><![CDATA[I often wonder how amazing the world we live in.There is so many things to do, so many things to see, but its a shame that life is too short. As an occasional traveler I also want explore the world to its end, but it could only possible in a life time until unless if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=121&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I often wonder how amazing the world we live in.There is so many things to do, so many things to see, but its a shame that life is too short. As an occasional traveler I also want explore the world to its end, but it could only possible in a life time until unless if I suddenly became a jumper!! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . So recently an idea came up to my mind that I should list all the places that I die to see in my life time (professional obligation <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  need specification before start working). So this is the list of my destination</p>
<p>First place I want to go is Darjeeling @india. I heard so many awesome stuffs about darjeeling that I am absolutely fascinated to go there. Also I like to see Ghoom rail station which was declared a World Heritage Site by UNESCO.</p>
<p style="text-align:center;"><img class="alignnone" title="Darjeeling" src="http://imgalib.files.wordpress.com/2011/11/darjeeling_tourism7.jpg?w=550&#038;h=358" alt="" width="550" height="358" /></p>
<p style="text-align:left;">Second place I want to go is maldives. I am absolutely fantasized to see the beaches and one particular thing I want to do is scuba diving and according to me the finest place is <a title="http://www.mantapoint.com/" href="http://www.mantapoint.com/" target="_blank">Manta point</a> at Maldives. The best time of year to see the mantas is between June and November.<br />
<a href="http://imgalib.files.wordpress.com/2011/11/maldives_2ep164.jpg"><img class="aligncenter size-full wp-image-141" title="Scuba" src="http://imgalib.files.wordpress.com/2011/11/maldives_2ep164.jpg?w=604&#038;h=453" alt="" width="604" height="453" /></a></p>
<p style="text-align:left;">Next stop is Pangong Tso @India, china border. First I came to know about this place at movie called three idiots,  I was absolutely stunned to see the beauty of that lake. This spectacular lakeside is open during the tourist season, from May to September, but can&#8217;t reach there at winter. why ??? because that time this place is cut off from world due to snow.</p>
<p style="text-align:left;"><img class="alignnone" title="pangong lake" src="http://www.rahulphotography.com/images/20090911134028_pangong_lake_leh_rahul_photography.jpg" alt="" width="850" height="569" /></p>
<p style="text-align:left;">My next destination should be Mount Bromo @Indonesia.This area consists of two main volcanic peaks, Mount Bromo and the continually active Mount Semeru!! (kidding me?? I am definatly going).</p>
<p><img class="alignnone" title="Mount Semeru" src="http://lombokmarine.com/wp-content/uploads/2010/11/SEMERU4.jpg" alt="" width="581" height="391" /></p>
<p>My fourth destination is Abu-Simbel Temples @Egypt. The most remarkable feature of the temple of Abu-Simbel is that the construction is oriented in a way that twice a year, the morning sun rays shine through the length of the inner temple cave and illuminate the statues of the four gods seated at the end of the cave.<br />
<img class="aligncenter" title="Abu-Simbel Temples" src="http://tourism.egypt.com/cache/articlefld/abu-simbel_temples.jpg" alt="" width="600" height="500" /><br />
My fifth destination is Machu Picchu @Peru, it is the most familiar icon of the Inca civilization. Specially the intihuatana is believed to have been designed as an astronomic clock or calendar by the Incas.</p>
<p><img class="alignnone" title="Machu Picchu" src="http://www.peru-machu-picchu.com/pics/machu-picchu-1.jpg" alt="" width="778" height="617" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imgalib.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imgalib.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imgalib.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imgalib.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/imgalib.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/imgalib.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/imgalib.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/imgalib.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imgalib.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imgalib.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imgalib.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imgalib.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imgalib.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imgalib.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=121&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://imgalib.wordpress.com/2011/11/04/places-i-want-to-see-before-i-die/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7582aacb6849d9a65742e34126559451?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">imgalib</media:title>
		</media:content>

		<media:content url="http://imgalib.files.wordpress.com/2011/11/darjeeling_tourism7.jpg?w=300" medium="image">
			<media:title type="html">Darjeeling</media:title>
		</media:content>

		<media:content url="http://imgalib.files.wordpress.com/2011/11/maldives_2ep164.jpg" medium="image">
			<media:title type="html">Scuba</media:title>
		</media:content>

		<media:content url="http://www.rahulphotography.com/images/20090911134028_pangong_lake_leh_rahul_photography.jpg" medium="image">
			<media:title type="html">pangong lake</media:title>
		</media:content>

		<media:content url="http://lombokmarine.com/wp-content/uploads/2010/11/SEMERU4.jpg" medium="image">
			<media:title type="html">Mount Semeru</media:title>
		</media:content>

		<media:content url="http://tourism.egypt.com/cache/articlefld/abu-simbel_temples.jpg" medium="image">
			<media:title type="html">Abu-Simbel Temples</media:title>
		</media:content>

		<media:content url="http://www.peru-machu-picchu.com/pics/machu-picchu-1.jpg" medium="image">
			<media:title type="html">Machu Picchu</media:title>
		</media:content>
	</item>
		<item>
		<title>API quick links used for development</title>
		<link>http://imgalib.wordpress.com/2011/10/25/api-quick-links-used-for-development/</link>
		<comments>http://imgalib.wordpress.com/2011/10/25/api-quick-links-used-for-development/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 11:42:20 +0000</pubDate>
		<dc:creator>imgalib</dc:creator>
				<category><![CDATA[API Integration]]></category>
		<category><![CDATA[Asp.NET]]></category>
		<category><![CDATA[Tip/Trick]]></category>
		<category><![CDATA[API develoepr resources]]></category>
		<category><![CDATA[authorize.net]]></category>
		<category><![CDATA[Facebook JS API]]></category>
		<category><![CDATA[payment gateway integration]]></category>
		<category><![CDATA[social API integraetion]]></category>

		<guid isPermaLink="false">http://imgalib.wordpress.com/?p=110</guid>
		<description><![CDATA[Playing with API is always been my passion. I love the idea to bond with other app and share the data with my app. Throughout my career I used several API to  various type of business applications. Some are very good with their simple interface , others are good at documentation, some got good community.  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=110&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Playing with API is always been my passion. I love the idea to bond with other app and share the data with my app. Throughout my career I used several API to  various type of business applications. Some are very good with their simple interface , others are good at documentation, some got good community.  Through this post I tried to point the quick links where developers can start with different API&#8217;s. Also from my point of view I put a ranking in terms of  API integration usability, developer resource, community resource and sample code.</p>
<h3>Payment Gateway&#8217;s</h3>
<pre><a title="Authorize.Net" href="http://www.authorize.net/" target="_blank">Authorize.net</a>
(Usability: 8/10, Dev resource: 9/10, Community: 9/10, Sample code: 10/10)</pre>
<p style="padding-left:30px;">Developer resources</p>
<p style="padding-left:30px;"><a title="http://developer.authorize.net/" href="http://developer.authorize.net/" target="_blank">http://developer.authorize.net/</a></p>
<p style="padding-left:30px;">Sample codes</p>
<p style="padding-left:30px;"><a title="http://developer.authorize.net/downloads/" href="http://developer.authorize.net/downloads/" target="_blank">http://developer.authorize.net/downloads/</a></p>
<p style="padding-left:30px;">Community resources</p>
<p style="padding-left:30px;"><a title="http://community.developer.authorize.net/t5/Integration-and-Testing/bd-p/Integration01" href="http://community.developer.authorize.net/t5/Integration-and-Testing/bd-p/Integration01" target="_blank">http://community.developer.authorize.net/t5/Integration-and-Testing/bd-p/Integration01</a></p>
<pre><a title="Paypal" href="https://www.paypal.com/" target="_blank">Paypal</a>
(Usability: 6/10, Dev resource: 7/10, Community: 2/10, Sample code: 4/10)</pre>
<p style="padding-left:30px;">Developer resources:</p>
<p style="padding-left:30px;"><a title="https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&amp;content_ID=developer/library_documentation" href="https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&amp;content_ID=developer/library_documentation" target="_blank">https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&amp;content_ID=developer/library_documentation</a></p>
<p style="padding-left:30px;">Sample Codes: <a title="https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&amp;content_ID=developer/library_code" href="https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&amp;content_ID=developer/library_code" target="_blank">https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&amp;content_ID=developer/library_code</a></p>
<p style="padding-left:30px;">Community resources:  <a title="https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&amp;content_ID=developer/community_overview" href="https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&amp;content_ID=developer/community_overview" target="_blank">https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&amp;content_ID=developer/community_overview</a></p>
<pre><a title="CyberSource" href="http://www.cybersource.com/%20" target="_blank">CyberSource</a>
(Usability: 6/10, Dev resource: 7/10, Community: 2/10, Sample code: 4/10)</pre>
<p style="padding-left:30px;">CyberSource Simple Order API and SOAP Toolkit API Documentation:</p>
<p style="padding-left:30px;"><a title="http://www.cybersource.com/support_center/implementation/downloads/soap_api/SOAP_toolkits.pdf" href="http://www.cybersource.com/support_center/implementation/downloads/soap_api/SOAP_toolkits.pdf" target="_blank">http://www.cybersource.com/support_center/implementation/downloads/soap_api/SOAP_toolkits.pdf</a></p>
<p style="padding-left:30px;">Below resource covers processing credit card orders with CyberSource’s Simple Order API with the details of reason code</p>
<p style="padding-left:30px;"><a title="http://www.johnnybhome.com/forsale/SB_API.pdf" href="http://www.johnnybhome.com/forsale/SB_API.pdf" target="_blank">http://www.johnnybhome.com/forsale/SB_API.pdf</a></p>
<h3>Social API&#8217;s</h3>
<pre><a title="FaceBook" href="http://www.facebook.com/" target="_blank">Facebook</a>
(Usability: 9/10, Dev resource: 10/10, Community: 7/10, Sample code: 10/10)</pre>
<p style="padding-left:30px;">Developer resources :<a title="http://developers.facebook.com/" href="http://developers.facebook.com/" target="_blank"> http://developers.facebook.com/</a></p>
<p style="padding-left:30px;">JavaScript SDK with sample :<a title="http://developers.facebook.com/docs/reference/javascript/" href="http://developers.facebook.com/docs/reference/javascript/" target="_blank"> http://developers.facebook.com/docs/reference/javascript/</a></p>
<p style="padding-left:30px;">Community resources: <a title="http://developers.facebook.com/blog/" href="http://developers.facebook.com/blog/" target="_blank">http://developers.facebook.com/blog/</a></p>
<pre><a title="Twitter" href="http://twitter.com/" target="_blank">Twitter</a>
(Usability: 9/10, Dev resource: 10/10, Community: 7/10, Sample code: 10/10)</pre>
<p style="padding-left:30px;">Developer resources: <a title="https://dev.twitter.com/docs" href="https://dev.twitter.com/docs" target="_blank">https://dev.twitter.com/docs</a></p>
<p style="padding-left:30px;">REST API and sample : <a title="https://dev.twitter.com/docs/api" href="https://dev.twitter.com/docs/api" target="_blank">https://dev.twitter.com/docs/api</a></p>
<p style="padding-left:30px;">Community resource : <a title="https://dev.twitter.com/discussions" href="https://dev.twitter.com/discussions" target="_blank">https://dev.twitter.com/discussions</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imgalib.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imgalib.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imgalib.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imgalib.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/imgalib.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/imgalib.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/imgalib.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/imgalib.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imgalib.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imgalib.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imgalib.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imgalib.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imgalib.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imgalib.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=110&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://imgalib.wordpress.com/2011/10/25/api-quick-links-used-for-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7582aacb6849d9a65742e34126559451?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">imgalib</media:title>
		</media:content>
	</item>
		<item>
		<title>Fixing database is in use error while restore database from backup</title>
		<link>http://imgalib.wordpress.com/2011/10/21/fixing-database-is-in-use-error-while-restore-database-from-backup/</link>
		<comments>http://imgalib.wordpress.com/2011/10/21/fixing-database-is-in-use-error-while-restore-database-from-backup/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 21:41:17 +0000</pubDate>
		<dc:creator>imgalib</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Tip/Trick]]></category>
		<category><![CDATA[backup restore error]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[database in use]]></category>
		<category><![CDATA[db drop error]]></category>
		<category><![CDATA[ms sql db restore]]></category>
		<category><![CDATA[Restore]]></category>
		<category><![CDATA[Restore database fails because database is in use.]]></category>
		<category><![CDATA[restore error]]></category>

		<guid isPermaLink="false">http://imgalib.wordpress.com/?p=94</guid>
		<description><![CDATA[Background When performing a full restore over an existing database, SQL Backup sometime report that the database cannot be restored because it is currently in use, like shown below This error shows not only during restore backup, also for drop database or alter database as well. Workaround In this situation database administrator needs to disconnect [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=94&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>Background</h1>
<p>When performing a full restore over an existing database, SQL Backup sometime report that the database cannot be restored because it is currently in use, like shown below<br />
<a href="http://imgalib.files.wordpress.com/2011/10/db-restore.jpg"><img class="alignnone size-full wp-image-97" title="db-restore" src="http://imgalib.files.wordpress.com/2011/10/db-restore.jpg?w=604&#038;h=214" alt="" width="604" height="214" /></a><br />
This error shows not only during restore backup, also for drop database or alter database as well.</p>
<h1>Workaround</h1>
<p>In this situation database administrator needs to disconnect all the connected users from a SQL Server Database to get exclusive access of the Database.In the situation where a full restore is blocked because users are currently connected to the database, the best solution to this problem is to take the database offline prior to running the restore, as this is the easiest way to kill all connections to the database.</p>
<p><strong>Before restore attempt</strong><br />
Database administrator can execute the below mentioned TSQL command to get a Single User access to a database. SINGLE_USER WITH ROLLBACK IMMEDIATE command is used only one user can connect to the database at a time.</p>
<p><code>use master<br />
alter database DB_NAME set offline with rollback immediate;</code></p>
<p><strong>After restore</strong><br />
Database administrator can execute the below mentioned TSQL command to give Multiple User access to a database. MULTI_USER command is used any number of users who have rights to connect to the database will be able to connect to the database.<code></code></p>
<p><code>use master<br />
alter database <code>DB_NAME </code>set online with rollback immediate;</code></p>
<p>So now all authenticated database user can connect to  the database again.</p>
<p><a style="display:none;" href="http://www.codeproject.com/script/Articles/BlogFeedList.aspx?amid=1757192" rel="tag">CodeProject</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imgalib.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imgalib.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imgalib.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imgalib.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/imgalib.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/imgalib.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/imgalib.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/imgalib.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imgalib.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imgalib.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imgalib.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imgalib.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imgalib.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imgalib.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=94&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://imgalib.wordpress.com/2011/10/21/fixing-database-is-in-use-error-while-restore-database-from-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7582aacb6849d9a65742e34126559451?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">imgalib</media:title>
		</media:content>

		<media:content url="http://imgalib.files.wordpress.com/2011/10/db-restore.jpg" medium="image">
			<media:title type="html">db-restore</media:title>
		</media:content>
	</item>
		<item>
		<title>IIS deployment error There is a duplicate scriptResourceHandler section defined</title>
		<link>http://imgalib.wordpress.com/2011/09/09/iis-deployment-error-there-is-a-duplicate-scriptresourcehandler-section-defined/</link>
		<comments>http://imgalib.wordpress.com/2011/09/09/iis-deployment-error-there-is-a-duplicate-scriptresourcehandler-section-defined/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 19:37:57 +0000</pubDate>
		<dc:creator>imgalib</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[duplicate script ResourceHandler]]></category>
		<category><![CDATA[IIS deployment error]]></category>
		<category><![CDATA[IIS7]]></category>
		<category><![CDATA[IIS7 - Troubleshooting]]></category>

		<guid isPermaLink="false">http://imgalib.wordpress.com/?p=38</guid>
		<description><![CDATA[Background Few days back I was attempting to deploy a .net 3.5 website on the default app pool in IIS7 having the framework section set to 4.0, I get the following error, There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined. Solution The problem occurs because when you use framework 4.0 the machine config already has some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=38&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>Background</h1>
<p>Few days back I was attempting to deploy a .net 3.5 website on the default app pool in IIS7 having the framework section set to 4.0, I get the following error,<br />
<code>There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined.</code></p>
<h1>Solution</h1>
<p>The problem occurs because when you use framework 4.0 the machine config already has some of the section defined that were used in previous asp.net versions. So replace the sectionGroup of your existing web.config with the below configs<br />
<code>&lt;sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"&gt;<br />
&lt;sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"&gt;<br />
&lt;section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/&gt;<br />
&lt;sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"&gt;<br />
&lt;section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere"/&gt;<br />
&lt;section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/&gt;<br />
&lt;section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/&gt;<br />
&lt;section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/&gt;<br />
&lt;/sectionGroup&gt;<br />
&lt;/sectionGroup&gt;<br />
&lt;/sectionGroup&gt;</code><br />
Another work around is to rebuild website/web application using framework 4, and the problem went away.<br />
<a style="display:none;" href="http://anyurl.com" rel="tag">CodeProject</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imgalib.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imgalib.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imgalib.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imgalib.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/imgalib.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/imgalib.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/imgalib.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/imgalib.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imgalib.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imgalib.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imgalib.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imgalib.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imgalib.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imgalib.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=38&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://imgalib.wordpress.com/2011/09/09/iis-deployment-error-there-is-a-duplicate-scriptresourcehandler-section-defined/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7582aacb6849d9a65742e34126559451?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">imgalib</media:title>
		</media:content>
	</item>
		<item>
		<title>How to remove &#8220;Click Here To Share&#8221; text on images from wibiya</title>
		<link>http://imgalib.wordpress.com/2011/09/09/how-to-remove-click-here-to-share-text-on-images-from-wibiya/</link>
		<comments>http://imgalib.wordpress.com/2011/09/09/how-to-remove-click-here-to-share-text-on-images-from-wibiya/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 14:55:09 +0000</pubDate>
		<dc:creator>imgalib</dc:creator>
				<category><![CDATA[Tip/Trick]]></category>
		<category><![CDATA[Click Here To Share on image]]></category>
		<category><![CDATA[customize Wibiya smart share]]></category>
		<category><![CDATA[Remove Click Here To Share]]></category>
		<category><![CDATA[Wibiya share option]]></category>
		<category><![CDATA[Wibiya web toolbar]]></category>

		<guid isPermaLink="false">http://imgalib.wordpress.com/?p=34</guid>
		<description><![CDATA[Wibiya web toolbar is free &#38; perfect for blogs, e-commerce sites, small websites. But it comes up with a disturbing option over each images of the site &#8220;Click Here To Share&#8221;, this prompt user to share this with other social platforms. If you wish to remove the &#8220;Click Here To Share&#8221; text, follow following steps: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=34&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wibiya web toolbar is free &amp; perfect for blogs, e-commerce sites, small websites. But it comes up with a disturbing option over each images of the site &#8220;Click Here To Share&#8221;, this prompt user to share this with other social platforms.</p>
<p><a href="http://imgalib.files.wordpress.com/2011/09/smartshare.png"><img class="alignnone size-full wp-image-35" title="SmartShare" src="http://imgalib.files.wordpress.com/2011/09/smartshare.png?w=604" alt=""   /></a></p>
<p>If you wish to remove the &#8220;Click Here To Share&#8221; text, follow following steps:</p>
<ul>
<li>Log into your wibiya.com account.</li>
<li>Go to &#8220;Edit Toolbar&#8221;.</li>
<li>Click on the &#8220;Smart Share&#8221; app.</li>
<li>Go to Settings tab.</li>
<li>Uncheck &#8220;Image Recognition&#8221;.</li>
<li>Save</li>
</ul>
<p><a href="http://imgalib.files.wordpress.com/2011/09/capture.png"><img class="alignnone size-full wp-image-36" title="Capture" src="http://imgalib.files.wordpress.com/2011/09/capture.png?w=604" alt=""   /></a><br />
<a style="display:none;" href="http://anyurl.com" rel="tag">CodeProject</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/imgalib.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/imgalib.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/imgalib.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/imgalib.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/imgalib.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/imgalib.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/imgalib.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/imgalib.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/imgalib.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/imgalib.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/imgalib.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/imgalib.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/imgalib.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/imgalib.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=imgalib.wordpress.com&amp;blog=26250748&amp;post=34&amp;subd=imgalib&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://imgalib.wordpress.com/2011/09/09/how-to-remove-click-here-to-share-text-on-images-from-wibiya/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7582aacb6849d9a65742e34126559451?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">imgalib</media:title>
		</media:content>

		<media:content url="http://imgalib.files.wordpress.com/2011/09/smartshare.png" medium="image">
			<media:title type="html">SmartShare</media:title>
		</media:content>

		<media:content url="http://imgalib.files.wordpress.com/2011/09/capture.png" medium="image">
			<media:title type="html">Capture</media:title>
		</media:content>
	</item>
	</channel>
</rss>
