<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>cavdar.net</title>
	
	<link>http://www.cavdar.net</link>
	<description>Tech, Internet, Engineering and Social Media Blog</description>
	<lastBuildDate>Thu, 22 Dec 2011 14:06:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/cavdarnet" /><feedburner:info uri="cavdarnet" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>cavdarnet</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to Add Your Web App to Google Chrome Web Store</title>
		<link>http://feedproxy.google.com/~r/cavdarnet/~3/-d9uaMZylq4/</link>
		<comments>http://www.cavdar.net/2011/12/22/how-to-add-your-web-app-to-google-chrome-web-store/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 21:37:34 +0000</pubDate>
		<dc:creator>Abdullah Cetin CAVDAR</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[chrome extension]]></category>
		<category><![CDATA[google chrome app]]></category>
		<category><![CDATA[google web store]]></category>

		<guid isPermaLink="false">http://www.cavdar.net/?p=619</guid>
		<description><![CDATA[Recently, I developed an online metal music radio called Dj ACC. I wanted to add it to Google Chrome Web Store to access it from my browser&#39;s homepage. Here is how it looks like in my homepage. Nice, isn&#39;t it? Let&#39;s get to work now: Configuration It&#39;s not hard to accomplish this task in fact. [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I developed an online metal music radio called <a href="http://djacc.com" target="_blank">Dj ACC</a>. I wanted to add it to <a href="https://chrome.google.com/webstore/category/home" target="_blank">Google Chrome Web Store</a> to access it from my browser&#39;s homepage. Here is how it looks like in my homepage. Nice, isn&#39;t it? <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="https://chrome.google.com/webstore/detail/fbpiigpfmihcljgdljpllhfinpajkpil"><img alt="Dj ACC in Chrome" class="aligncenter size-full wp-image-636" height="171" src="http://cavdar.net/uploads/2011/12/djacc_chrome.png" title="Dj ACC in Chrome" width="356" /></a>Let&#39;s get to work now:</p>
<p><strong>Configuration</strong></p>
<p>It&#39;s not hard to accomplish this task in fact. There is a file called &quot;manifest.json&quot; that defines all the necessary configuration about your extension/app/theme. The json file below shows my manifest file for Dj ACC.</p>
<p>
<pre class="brush: plain; title: ; notranslate">{
	&quot;name&quot;: &quot;Dj ACC - In Metal, I Trust.&quot;,
	&quot;description&quot;: &quot;New address for free online metal music.&quot;,
	&quot;version&quot;: &quot;1.1&quot;,
	&quot;icons&quot;: {
		&quot;128&quot;: &quot;djacc_128.png&quot;
	},
	&quot;app&quot;: {
		&quot;urls&quot;: [
			&quot;http://www.djacc.com/&quot;
		],
		&quot;launch&quot;: {
			&quot;web_url&quot;: &quot;http://www.djacc.com/&quot;
		}
	},
	&quot;permissions&quot;: [
	]
}</pre>
</p>
<p>It&#39;s straightforward i think. &quot;name&quot; and &quot;version&quot; are the only required fields. Put your site description into the &quot;description&quot; field. Icons are important. You should always provide a 128&#215;128 icon. It&#39;s used during installation and by the Chrome Web Store. The others (16*16 and 48*48) may be omitted as I did. Beacuse I don&#39;t like Paint. <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  The &quot;app&quot; part is used to specify the URLs that the application uses. Most important is the launch page for the app that the browser goes to when the user clicks the application&#39;s icon. It&#39;s opened in &quot;New Tab&quot; page.</p>
<p>You can find all the parameters for the manifest file <a href="http://code.google.com/chrome/extensions/manifest.html" target="_blank">here</a>.</p>
<p><strong>Submission</strong></p>
<p>We&#39;re done for the configuration part. Put your json file and icon file (manifest.json and djacc_128.png for our case) in a directory and create a zip file that includes both files.</p>
<p>Now, open <a href="https://chrome.google.com/webstore/category/home" target="_blank">google web store page</a> and select &quot;Developer Dashboard&quot; from the upper right. Login with your Google account if you&#39;re not already. Press &quot;Add new item&quot; button to upload our zip file.</p>
<p><a href="http://cavdar.net/uploads/2011/12/djacc_chrome_add_new_item.png"><img alt="Dj ACC - Add New Item" class="aligncenter size-full wp-image-643" height="83" src="http://cavdar.net/uploads/2011/12/djacc_chrome_add_new_item.png" title="Dj ACC - Add New Item" width="500" /></a></p>
<p>Select your zip file from the file system and click &quot;Upload&quot; button. You&#39;ll be presented a web form. Fill the &quot;Detailed description&quot;, upload related icons. screenshot and images, add your owner web site, set pricing policy, select a category, region, language and finally connect your google analytics account if you have one. Test drive it using &quot;Preview changes&quot; button and publish it to the world with &quot;Publish changes&quot; button. That&#39;s all.</p>
<p><strong>Important Note:</strong> Unless you&#39;re a Chrome Developer, you have to pay $5 before adding your content to web store.</p>
<p><a href="https://chrome.google.com/webstore/detail/fbpiigpfmihcljgdljpllhfinpajkpil"><img alt="Dj ACC - Final" class="aligncenter size-full wp-image-653" height="352" src="http://cavdar.net/uploads/2011/12/djacc_chrome_final.png" title="Dj ACC - Final" width="500" /></a></p>
<p>Here is the final <a href="https://chrome.google.com/webstore/detail/fbpiigpfmihcljgdljpllhfinpajkpil" target="_blank">link</a> for Dj ACC. Don&#39;t forget to add it to your browser and give 5 stars. <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Happy coding. <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>

				<!-- Social Sharing Toolkit v2.0.4 | http://www.marijnrongen.com/wordpress-plugins/social_sharing_toolkit/ -->
				<div class="mr_social_sharing_wrapper"><span class="mr_social_sharing_top"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.cavdar.net/2011/12/22/how-to-add-your-web-app-to-google-chrome-web-store/" data-count="vertical" data-via="accavdar" data-text="How to Add Your Web App to Google Chrome Web Store">Tweet</a></span><span class="mr_social_sharing_top"><iframe src="https://www.facebook.com/plugins/like.php?locale=en_US&amp;href=http%3A%2F%2Fwww.cavdar.net%2F2011%2F12%2F22%2Fhow-to-add-your-web-app-to-google-chrome-web-store%2F&amp;layout=box_count&amp;show_faces=false&amp;width=55px&amp;height=61px" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:55px; height:61px;" allowTransparency="true"></iframe></span><span class="mr_social_sharing_top"><script type="IN/Share" data-url="http://www.cavdar.net/2011/12/22/how-to-add-your-web-app-to-google-chrome-web-store/" data-counter="top"></script></span><span class="mr_social_sharing_top"><g:plusone size="tall" href="http://www.cavdar.net/2011/12/22/how-to-add-your-web-app-to-google-chrome-web-store/"></g:plusone></span><span class="mr_social_sharing_top"><a class="DiggThisButton DiggMedium" href="http://digg.com/submit?url=http%3A%2F%2Fwww.cavdar.net%2F2011%2F12%2F22%2Fhow-to-add-your-web-app-to-google-chrome-web-store%2F&amp;title=How+to+Add+Your+Web+App+to+Google+Chrome+Web+Store"></a></span><span class="mr_social_sharing_top"><script src="http://www.stumbleupon.com/hostedbadge.php?s=5&amp;r=http%3A%2F%2Fwww.cavdar.net%2F2011%2F12%2F22%2Fhow-to-add-your-web-app-to-google-chrome-web-store%2F"></script></span></div><h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>No Related Posts</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.cavdar.net/2011/12/22/how-to-add-your-web-app-to-google-chrome-web-store/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.cavdar.net/2011/12/22/how-to-add-your-web-app-to-google-chrome-web-store/</feedburner:origLink></item>
		<item>
		<title>Grails + Bootstrap + Amazon + Jelastic = djacc.com</title>
		<link>http://feedproxy.google.com/~r/cavdarnet/~3/2XqDecNLc0A/</link>
		<comments>http://www.cavdar.net/2011/12/13/grails-bootstrap-amazon-jelastic-djacc-com/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 00:48:27 +0000</pubDate>
		<dc:creator>Abdullah Cetin CAVDAR</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[software architecture]]></category>
		<category><![CDATA[Software Engineering]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[djacc.com]]></category>

		<guid isPermaLink="false">http://www.cavdar.net/?p=593</guid>
		<description><![CDATA[I&#39;m a big fan of metal music and recently I created an online metal music radio called djacc.com. Every day it plays 25 songs from different bands for each genre selected by the user. These songs are played all the day in the loop. Next day, it loads the new tracks and starts playing. First [...]]]></description>
			<content:encoded><![CDATA[<p>I&#39;m a big fan of metal music and recently I created an online metal music radio called <a href="http://djacc.com" name="djacc.com" target="_blank">djacc.com</a>.</p>
<p>Every day it plays 25 songs from different bands for each genre selected by the user. These songs are played all the day in the loop. Next day, it loads the new tracks and starts playing. First genre is randomly selected when the site is first loaded.</p>
<p><a href="http://djacc.com/"><div id="attachment_603" class="wp-caption aligncenter" style="width: 565px"><img src="http://cavdar.net/uploads/2011/12/djacc.png" alt="Dj ACC" title="djacc" class="size-full wp-image-603 wp-caption aligncenter wp-caption aligncenter" height="681" width="555" /><p class="wp-caption-text">djacc.com</p></div></a></p>
<p>Let&#39;s have a look at the technical details of Dj ACC:</p>
<p><strong>APIs</strong></p>
<p>I have used <a href="http://www.last.fm/api" target="_blank">Last.fm API</a> and <a href="http://code.google.com/apis/youtube/overview.html" target="_blank">YouTube APIs</a> for this project. While I&#39;m playing the video, I display metadata information about the track and the band. I&#39;m taking the video URL using <a href="http://code.google.com/apis/youtube/getting_started.html#data_api" target="_blank">YouTube Data API</a> after searching it with track name and display video in chromeless video player. Using <a href="http://code.google.com/apis/youtube/js_api_reference.html" target="_blank">YouTube JS API</a>, I control the video operations (play, pause, mute etc.). Last.fm API is used to take metadata about the track and artist such as &quot;artist tags&quot;, &quot;artist top albums&quot;, &quot;album images&quot; etc.&nbsp;</p>
<p><strong>Web Framework</strong></p>
<p><a href="http://grails.org/" target="_blank">Grails</a> is my favorite web framework. I strongly recommend it. It&#39;s easy to use and you can be very productive in a very short amount time. I wrote two services for Last.fm and YouTube to take metadata and to get video details respectively. I have only one controller with a few actions to query database for the playlist and return track information as HTML and <a href="http://www.json.org/" target="_blank">JSON</a>. My server side controller code is only 84 lines. Thx Grails. <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>CSS &amp; HTML Toolkit</strong></p>
<p>I&#39;m not a designer and I do not understand from design related issues in general. Also, I do not know CSS well. At this point, <a href="http://twitter.github.com/bootstrap/" target="_blank">Bootstrap</a> saved my life. It&#39;s an HTML &amp; CSS &amp; JS toolkit for rapid web application development from Twitter. It&#39;s a very new project and growing fast. I used basic functionality (layout, buttons, modal box) of it, but it works. I think, you may be more creative than me. Yes, I know. The site needs redesign. Any volunteer? <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &nbsp;</p>
<p><strong>JS Library</strong></p>
<p>I used <a href="http://jquery.com/" target="_blank">jQuery</a> for JS handling. I think, i don&#39;t need to say much about it but here, I want to mention about JS template libraries. I have used <a href="https://github.com/BorisMoore/jsrender" target="_blank">jsrender</a> for rendering JSON response to HTML in the client side. I request whole playlist data as JSON from the server and render every track info as HTML when the track is changed or completed. Thus, my server is happy, my client is not.</p>
<p><strong>Storage and CDN</strong></p>
<p>For static data (image, css and js files) storage, I selected <a href="http://aws.amazon.com/s3/" target="_blank">Amazon&#39;s S3</a> service. It&#39;s really cheap and if you have a heavy load it can prevent your server crying. <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I don&#39;t think my site has such a load, but the rule is the rule: &quot;always follow the best practices&quot;. I created a content delivery service using <a href="http://aws.amazon.com/cloudfront/" target="_blank">CloudFront</a> over my S3 bucket and distributed my files all over the world. Ohhh yeahhh. I also defined a CNAME for it called &quot;static.djacc.com&quot; to show I&#39;m big enough like Twitter and Facebook. <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><strong>Deployment &amp; Hosting</strong></p>
<p>Amazon&#39;s dedicated servers are a little bit expensive for me, at least for now. I used Amazon Micro Instances for testing purposes. They are working well for small projects like mine. However, for the production, I needed a high performance machine and I found <a href="http://jelastic.com/" target="_blank">Jelastic</a> (thanks Emrah). It&#39;s really fantastic. It has an intuitive web front end, high performance machines, real time scaling and best of all it&#39;s free for beta testing period. I put a load balancer front, 4 Tomcat7 application servers behind it and lastly I added my MySQL DB at the end of the stack. Perfect config for now. <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://jelastic.com/"><div id="attachment_605" class="wp-caption aligncenter" style="width: 399px"><img src="http://cavdar.net/uploads/2011/12/jelastic.png" alt="Jelastic" title="jelastic" class="size-full wp-image-605 wp-caption aligncenter" height="446" width="389" /><p class="wp-caption-text">Dj ACC Environment Topology</p></div></a></p>
<p>Now, <a href="http://djacc.com" name="Dj ACC" target="_blank">djacc.com</a> is online. In metal, I trust. <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br />
	<a href="http://twitter.com/djaccproject" target="_blank">@djaccproject</a></p>

				<!-- Social Sharing Toolkit v2.0.4 | http://www.marijnrongen.com/wordpress-plugins/social_sharing_toolkit/ -->
				<div class="mr_social_sharing_wrapper"><span class="mr_social_sharing_top"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.cavdar.net/2011/12/13/grails-bootstrap-amazon-jelastic-djacc-com/" data-count="vertical" data-via="accavdar" data-text="Grails + Bootstrap + Amazon + Jelastic = djacc.com">Tweet</a></span><span class="mr_social_sharing_top"><iframe src="https://www.facebook.com/plugins/like.php?locale=en_US&amp;href=http%3A%2F%2Fwww.cavdar.net%2F2011%2F12%2F13%2Fgrails-bootstrap-amazon-jelastic-djacc-com%2F&amp;layout=box_count&amp;show_faces=false&amp;width=55px&amp;height=61px" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:55px; height:61px;" allowTransparency="true"></iframe></span><span class="mr_social_sharing_top"><script type="IN/Share" data-url="http://www.cavdar.net/2011/12/13/grails-bootstrap-amazon-jelastic-djacc-com/" data-counter="top"></script></span><span class="mr_social_sharing_top"><g:plusone size="tall" href="http://www.cavdar.net/2011/12/13/grails-bootstrap-amazon-jelastic-djacc-com/"></g:plusone></span><span class="mr_social_sharing_top"><a class="DiggThisButton DiggMedium" href="http://digg.com/submit?url=http%3A%2F%2Fwww.cavdar.net%2F2011%2F12%2F13%2Fgrails-bootstrap-amazon-jelastic-djacc-com%2F&amp;title=Grails+%2B+Bootstrap+%2B+Amazon+%2B+Jelastic+%3D+djacc.com"></a></span><span class="mr_social_sharing_top"><script src="http://www.stumbleupon.com/hostedbadge.php?s=5&amp;r=http%3A%2F%2Fwww.cavdar.net%2F2011%2F12%2F13%2Fgrails-bootstrap-amazon-jelastic-djacc-com%2F"></script></span></div><h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>No Related Posts</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.cavdar.net/2011/12/13/grails-bootstrap-amazon-jelastic-djacc-com/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.cavdar.net/2011/12/13/grails-bootstrap-amazon-jelastic-djacc-com/</feedburner:origLink></item>
		<item>
		<title>Characteristics of a Good Software Requirements Specification (SRS)</title>
		<link>http://feedproxy.google.com/~r/cavdarnet/~3/jfziqIGmOlY/</link>
		<comments>http://www.cavdar.net/2011/10/10/characteristics-of-a-good-software-requirements-specification-srs/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 12:35:47 +0000</pubDate>
		<dc:creator>Abdullah Cetin CAVDAR</dc:creator>
				<category><![CDATA[Software Engineering]]></category>
		<category><![CDATA[software requirements specification]]></category>
		<category><![CDATA[SRS]]></category>

		<guid isPermaLink="false">http://www.cavdar.net/?p=571</guid>
		<description><![CDATA[Recently, I need to have a look at the IEEE SRS Standard. I think, all of you know very well about it. However, here, I want to reemphasize some basic points about good SRS characteristics briefly. An SRS should be: Correct An SRS is correct if, and only if, every requirement stated therein is one [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I need to have a look at the <a href="http://standards.ieee.org/findstds/standard/830-1998.html" target="_blank">IEEE SRS Standard</a>. I think, all of you know very well about it. However, here, I want to reemphasize some basic points about good SRS characteristics briefly.</p>
<p><a href="http://cavdar.net/uploads/2011/10/requirements_accavdar.jpg"><img alt="" class="aligncenter size-full wp-image-578" height="360" src="http://cavdar.net/uploads/2011/10/requirements_accavdar-e1318187040437.jpg" title="Comics about Requirements" width="480" /></a></p>
<p>An SRS should be:</p>
<p><strong>Correct</strong></p>
<p>An SRS is correct if, and only if, every requirement stated therein is one that the software shall meet. Traceability makes this procedure easier and less prone to error.</p>
<p><strong>Unambiguous</strong></p>
<p>An SRS is unambiguous if, and only if, every requirement stated therein has only one interpretation. As a minimum, this requires that each characteristic of the final product be described using a single unique term.</p>
<p><strong>Complete</strong></p>
<p>An SRS is complete if, and only if, it includes the following elements:</p>
<ul>
<li>All significant requirements, whether relating to functionality, performance, design constraints, attributes, or external interfaces. In particular any external requirements imposed by a system specification should be acknowledged and treated.</li>
<li>Definition of the responses of the software to all realizable classes of input data in all realizable classes of situations. Note that it is important to specify the responses to both valid and invalid input values.</li>
<li>Full labels and references to all figures, tables, and diagrams in the SRS and definition of all terms and units of measure.</li>
</ul>
<p><strong>Consistent</strong></p>
<p>Consistency refers to internal consistency. If an SRS does not agree with some higher-level document, such as a system requirements specification, then it is not correct. An SRS is internally consistent if, and only if, no subset of individual requirements described in it conflict.</p>
<p><strong>Ranked for importance and/or stability</strong></p>
<p>An SRS is ranked for importance and/or stability if each requirement in it has an identifier to indicate either the importance or stability of that particular requirement. Typically, all of the requirements that relate to a software product are not equally important. Some requirements may be essential, especially for life-critical applications, while others may be desirable. Each requirement in the SRS should be identified to make these differences clear and explicit.</p>
<p><strong>Verifiable</strong></p>
<p>An SRS is verifiable if, and only if, every requirement stated therein is verifiable. A requirement is verifiable if, and only if, there exists some finite cost-effective process with which a person or machine can check that the software product meets the requirement.</p>
<p>Nonverifiable requirements include statements such as &quot;works well&quot;, &quot;good human interface&quot;, and &quot;shall usually happen&quot;. These requirements cannot be verified because it is impossible to define the terms &quot;good&quot;, &quot;well&quot;, or &quot;usually&quot;.</p>
<p><strong>Modifiable</strong></p>
<p>An SRS is modifiable if, and only if, its structure and style are such that any changes to the requirements can be made easily, completely, and consistently while retaining the structure and style. Modifiability generally requires an SRS to</p>
<ul>
<li>Have a coherent and easy-to-use organization with a table of contents, an index, and explicit crossreferencing;</li>
<li>Not be redundant (i.e., the same requirement should not appear in more than one place in the SRS);</li>
<li>Express each requirement separately, rather than intermixed with other requirements.</li>
</ul>
<p><strong>Traceable</strong></p>
<p>An SRS is traceable if the origin of each of its requirements is clear and if it facilitates the referencing of each requirement in future development or enhancement documentation. The following two types of traceability are recommended:</p>
<ul>
<li><em>Backward traceability (i.e., to previous stages of development).</em> This depends upon each requirement explicitly referencing its source in earlier documents.</li>
<li><em>Forward traceability (i.e., to all documents spawned by the SRS). </em>This depends upon each requirement in the SRS having a unique name or reference number.</li>
</ul>

				<!-- Social Sharing Toolkit v2.0.4 | http://www.marijnrongen.com/wordpress-plugins/social_sharing_toolkit/ -->
				<div class="mr_social_sharing_wrapper"><span class="mr_social_sharing_top"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.cavdar.net/2011/10/10/characteristics-of-a-good-software-requirements-specification-srs/" data-count="vertical" data-via="accavdar" data-text="Characteristics of a Good Software Requirements Specification (SRS)">Tweet</a></span><span class="mr_social_sharing_top"><iframe src="https://www.facebook.com/plugins/like.php?locale=en_US&amp;href=http%3A%2F%2Fwww.cavdar.net%2F2011%2F10%2F10%2Fcharacteristics-of-a-good-software-requirements-specification-srs%2F&amp;layout=box_count&amp;show_faces=false&amp;width=55px&amp;height=61px" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:55px; height:61px;" allowTransparency="true"></iframe></span><span class="mr_social_sharing_top"><script type="IN/Share" data-url="http://www.cavdar.net/2011/10/10/characteristics-of-a-good-software-requirements-specification-srs/" data-counter="top"></script></span><span class="mr_social_sharing_top"><g:plusone size="tall" href="http://www.cavdar.net/2011/10/10/characteristics-of-a-good-software-requirements-specification-srs/"></g:plusone></span><span class="mr_social_sharing_top"><a class="DiggThisButton DiggMedium" href="http://digg.com/submit?url=http%3A%2F%2Fwww.cavdar.net%2F2011%2F10%2F10%2Fcharacteristics-of-a-good-software-requirements-specification-srs%2F&amp;title=Characteristics+of+a+Good+Software+Requirements+Specification+%28SRS%29"></a></span><span class="mr_social_sharing_top"><script src="http://www.stumbleupon.com/hostedbadge.php?s=5&amp;r=http%3A%2F%2Fwww.cavdar.net%2F2011%2F10%2F10%2Fcharacteristics-of-a-good-software-requirements-specification-srs%2F"></script></span></div><h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>No Related Posts</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.cavdar.net/2011/10/10/characteristics-of-a-good-software-requirements-specification-srs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cavdar.net/2011/10/10/characteristics-of-a-good-software-requirements-specification-srs/</feedburner:origLink></item>
		<item>
		<title>Best Quotes of Steve Jobs</title>
		<link>http://feedproxy.google.com/~r/cavdarnet/~3/dBhE8e7hQ2M/</link>
		<comments>http://www.cavdar.net/2011/08/25/best-quotes-of-steve-jobs/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 19:30:21 +0000</pubDate>
		<dc:creator>Abdullah Cetin CAVDAR</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Best Quotes]]></category>
		<category><![CDATA[Steve Jobs]]></category>

		<guid isPermaLink="false">http://www.cavdar.net/?p=533</guid>
		<description><![CDATA[I hereby resign as CEO of Apple. I would like to serve, if the Board sees fit, as Chairman of the Board, director and Apple employee. These are the sentences from Steve Jobs&#8217; emotional resignation letter. Is this the end of a era or a new beginning. Who knows, but the truth is what he [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://cavdar.net/uploads/2011/08/SteveJobs.jpg"><img src="http://cavdar.net/uploads/2011/08/SteveJobs.jpg" alt="" title="SteveJobs" width="299" height="366" class="aligncenter size-full wp-image-541" /></a></p>
<blockquote><p>I hereby resign as CEO of Apple. I would like to serve, if the Board sees fit, as Chairman of the Board, director and Apple employee.</p>
</blockquote>
<p>These are the sentences from Steve Jobs&#8217; emotional <a href="http://latimesblogs.latimes.com/technology/2011/08/steve-jobs-resignation-letter.html" title="Steve Jobs' resignation letter" target="_blank">resignation letter</a>. Is this the end of a era or a new beginning. Who knows, but the truth is what he did for the giant company <a href="http://www.apple.com/" title="Apple.com" target="_blank">Apple</a> and what he said to the world. Here are my selection of best quotes from Steve Jobs: </p>
<ul>
<li>Design is not just what it looks like and feels like. Design is how it works.</li>
<li>I think we&#8217;re having fun. I think our customers really like our products. And we&#8217;re always trying to do better.</li>
<li>A lot of companies have chosen to downsize, and maybe that was the right thing for them. We chose a different path. Our belief was that if we kept putting great products in front of customers, they would continue to open their wallets.</li>
<li>Why join the navy if you can be a pirate?</li>
<li>Be a yardstick of quality. Some people aren&#8217;t used to an environment where excellence is expected.</li>
<li>For something this complicated, it’s really hard to design products by focus groups. A lot of times, people don’t know what they want until you show it to them.</li>
<li>You can&#8217;t just ask customers what they want and then try to give that to them. By the time you get it built, they&#8217;ll want something new.</li>
<li>Creativity is just connecting things. When you ask creative people how they did something, they feel a little guilty because they didn’t really do it, they just saw something. It seemed obvious to them after a while. That’s because they were able to connect experiences they’ve had and synthesize new things. And the reason they were able to do that was that they’ve had more experiences or they have thought more about their experiences than other people.</li>
<li>We made the buttons on the screen look so good you’ll want to lick them.</li>
<li>To turn really interesting ideas and fledgling technologies into a company that can continue to innovate for years, it requires a lot of disciplines.</li>
<li>Innovation distinguishes between a leader and a follower.</li>
<li>You can’t connect the dots looking forward; you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something — your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life.</li>
<li>Innovation has nothing to do with how many R&#038;D dollars you have. When Apple came up with the Mac, IBM was spending at least 100 times more on R&#038;D. It’s not about money. It’s about the people you have, how you’re led, and how much you get it.</li>
<li>I think if you do something and it turns out pretty good, then you should go do something else wonderful, not dwell on it for too long. Just figure out what’s next.</li>
<li>In most people&#8217;s vocabularies, design means veneer. It&#8217;s interior decorating. It&#8217;s the fabric of the curtains of the sofa. But to me, nothing could be further from the meaning of design. Design is the fundamental soul of a human-made creation that ends up expressing itself in successive outer layers of the product or service.</li>
<li>The system is that there is no system. That doesn’t mean we don’t have process. Apple is a very disciplined company, and we have great processes. But that’s not what it’s about. Process makes you more efficient.</li>
<li>It is hard to think that a $2 billion company with 4,300-plus people couldn&#8217;t compete with six people in blue jeans.</li>
<li>Being the richest man in the cemetery doesn&#8217;t matter to me &#8230; Going to bed at night saying we&#8217;ve done something wonderful&#8230; That&#8217;s what matters to me.</li>
<li>I want to put a ding in the universe.</li>
<li>I&#8217;ve always wanted to own and control the primary technology in everything we do.</li>
</ul>
<p>And here&#8217;s one of his amazing speeches as a bonus.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/D1R-jKKp3NA?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/D1R-jKKp3NA?version=3" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Please add quotes that you know as comment.</p>

				<!-- Social Sharing Toolkit v2.0.4 | http://www.marijnrongen.com/wordpress-plugins/social_sharing_toolkit/ -->
				<div class="mr_social_sharing_wrapper"><span class="mr_social_sharing_top"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.cavdar.net/2011/08/25/best-quotes-of-steve-jobs/" data-count="vertical" data-via="accavdar" data-text="Best Quotes of Steve Jobs">Tweet</a></span><span class="mr_social_sharing_top"><iframe src="https://www.facebook.com/plugins/like.php?locale=en_US&amp;href=http%3A%2F%2Fwww.cavdar.net%2F2011%2F08%2F25%2Fbest-quotes-of-steve-jobs%2F&amp;layout=box_count&amp;show_faces=false&amp;width=55px&amp;height=61px" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:55px; height:61px;" allowTransparency="true"></iframe></span><span class="mr_social_sharing_top"><script type="IN/Share" data-url="http://www.cavdar.net/2011/08/25/best-quotes-of-steve-jobs/" data-counter="top"></script></span><span class="mr_social_sharing_top"><g:plusone size="tall" href="http://www.cavdar.net/2011/08/25/best-quotes-of-steve-jobs/"></g:plusone></span><span class="mr_social_sharing_top"><a class="DiggThisButton DiggMedium" href="http://digg.com/submit?url=http%3A%2F%2Fwww.cavdar.net%2F2011%2F08%2F25%2Fbest-quotes-of-steve-jobs%2F&amp;title=Best+Quotes+of+Steve+Jobs"></a></span><span class="mr_social_sharing_top"><script src="http://www.stumbleupon.com/hostedbadge.php?s=5&amp;r=http%3A%2F%2Fwww.cavdar.net%2F2011%2F08%2F25%2Fbest-quotes-of-steve-jobs%2F"></script></span></div><h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.cavdar.net/2009/06/21/my-top-5-iphone-30-os-features/" title="My Top 5 iPhone 3.0 OS Features">My Top 5 iPhone 3.0 OS Features</a></li><li><a href="http://www.cavdar.net/2009/04/12/itunes-install-the-folder-path-c-contains-an-invalid-character/" title="iTunes Install: The Folder Path &lsquo;C:&rsquo; Contains an Invalid Character">iTunes Install: The Folder Path &lsquo;C:&rsquo; Contains an Invalid Character</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.cavdar.net/2011/08/25/best-quotes-of-steve-jobs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.cavdar.net/2011/08/25/best-quotes-of-steve-jobs/</feedburner:origLink></item>
		<item>
		<title>What The F**K is Social Media?</title>
		<link>http://feedproxy.google.com/~r/cavdarnet/~3/qfpNZ7iUT5o/</link>
		<comments>http://www.cavdar.net/2009/08/24/what-the-fk-is-social-media/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 20:03:19 +0000</pubDate>
		<dc:creator>Abdullah Cetin CAVDAR</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[social web]]></category>
		<category><![CDATA[social-media]]></category>

		<guid isPermaLink="false">http://www.cavdar.net/2009/08/24/what-the-fk-is-social-media/</guid>
		<description><![CDATA[Social media is media designed to be disseminated through social interaction, created using highly accessible and scalable publishing techniques. Social media supports the human need for social interaction with technology, transforming broadcast media monologues (one to many) into social media dialogues (many to many). It supports the democratization of knowledge and information, transforming people from [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><b>Social media</b> is media designed to be disseminated through social interaction, created using highly accessible and scalable publishing techniques. Social media supports the human need for social interaction with technology, transforming broadcast media monologues (one to many) into social media dialogues (many to many). It supports the democratization of knowledge and information, transforming people from content consumers into content producers. Businesses also refer to social media as <a href="http://en.wikipedia.org/wiki/User-generated_content">user-generated content</a> (UGC) or <a href="http://en.wikipedia.org/wiki/Consumer_generated_media">consumer-generated media</a> (CGM).</p>
<p><a title="http://en.wikipedia.org/wiki/Social_media" href="http://en.wikipedia.org/wiki/Social_media">http://en.wikipedia.org/wiki/Social_media</a></p>
</blockquote>
<p>So, what the f**k is social media? Interesting, enjoyable and informative interpretation of “social media” from <a href="http://bonafidemarketinggenius.com/" target="_blank">Marta Kagan</a>.</p>
<div id="__ss_1729300" style="width: 425px; text-align: left"><a title="What the F**K is Social Media: One Year Later" style="display: block; margin: 12px 0px 3px; font: 14px helvetica,arial,sans-serif; text-decoration: underline" href="http://www.slideshare.net/mzkagan/what-the-fk-is-social-media-one-year-later">What the F**K is Social Media: One Year Later</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wtfissocialmedia5-090716070117-phpapp01&amp;stripped_title=what-the-fk-is-social-media-one-year-later" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wtfissocialmedia5-090716070117-phpapp01&amp;stripped_title=what-the-fk-is-social-media-one-year-later" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></div>

				<!-- Social Sharing Toolkit v2.0.4 | http://www.marijnrongen.com/wordpress-plugins/social_sharing_toolkit/ -->
				<div class="mr_social_sharing_wrapper"><span class="mr_social_sharing_top"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.cavdar.net/2009/08/24/what-the-fk-is-social-media/" data-count="vertical" data-via="accavdar" data-text="What The F**K is Social Media?">Tweet</a></span><span class="mr_social_sharing_top"><iframe src="https://www.facebook.com/plugins/like.php?locale=en_US&amp;href=http%3A%2F%2Fwww.cavdar.net%2F2009%2F08%2F24%2Fwhat-the-fk-is-social-media%2F&amp;layout=box_count&amp;show_faces=false&amp;width=55px&amp;height=61px" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:55px; height:61px;" allowTransparency="true"></iframe></span><span class="mr_social_sharing_top"><script type="IN/Share" data-url="http://www.cavdar.net/2009/08/24/what-the-fk-is-social-media/" data-counter="top"></script></span><span class="mr_social_sharing_top"><g:plusone size="tall" href="http://www.cavdar.net/2009/08/24/what-the-fk-is-social-media/"></g:plusone></span><span class="mr_social_sharing_top"><a class="DiggThisButton DiggMedium" href="http://digg.com/submit?url=http%3A%2F%2Fwww.cavdar.net%2F2009%2F08%2F24%2Fwhat-the-fk-is-social-media%2F&amp;title=What+The+F%2A%2AK+is+Social+Media%3F"></a></span><span class="mr_social_sharing_top"><script src="http://www.stumbleupon.com/hostedbadge.php?s=5&amp;r=http%3A%2F%2Fwww.cavdar.net%2F2009%2F08%2F24%2Fwhat-the-fk-is-social-media%2F"></script></span></div><h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.cavdar.net/2008/08/31/25-popular-social-music-services/" title="25 Popular Social Music Services">25 Popular Social Music Services</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.cavdar.net/2009/08/24/what-the-fk-is-social-media/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.cavdar.net/2009/08/24/what-the-fk-is-social-media/</feedburner:origLink></item>
		<item>
		<title>GWT Overview and Feature Preview</title>
		<link>http://feedproxy.google.com/~r/cavdarnet/~3/7qXxo8d9aPM/</link>
		<comments>http://www.cavdar.net/2009/06/28/gwt-overview-and-feature-preview/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 21:00:33 +0000</pubDate>
		<dc:creator>Abdullah Cetin CAVDAR</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[google web toolkit]]></category>
		<category><![CDATA[GWT]]></category>

		<guid isPermaLink="false">http://www.cavdar.net/2009/06/28/gwt-overview-and-feature-preview/</guid>
		<description><![CDATA[&#34;GWT Overview and Feature Preview&#34; is a nice presentation about Google Web Toolkit&#160; presented at the SV Web JUG meetup on 16th June by Fred Sauer. It starts with an overview of current GWT features and functionality and covers some of the features expected in GWT 2.0 such as “Developer Guided Code Splitting”, ClintBundle” and [...]]]></description>
			<content:encoded><![CDATA[<p>&quot;GWT Overview and Feature Preview&quot; is a nice presentation about <a href="http://code.google.com/webtoolkit/" target="_blank">Google Web Toolkit</a>&#160; presented at the <a href="http://www.meetup.com/sv-web-jug/" target="_blank">SV Web JUG</a> meetup on 16th June by Fred Sauer. It starts with an overview of current GWT features and functionality and covers some of the features expected in <a href="http://code.google.com/webtoolkit/makinggwtbetter.html#roadmap" target="_blank">GWT 2.0</a> such as “Developer Guided Code Splitting”, ClintBundle” and much more.</p>
<div id="__ss_1614840" style="width: 425px; text-align: left"><a title="GWT Overview And Feature Preview - SV Web JUG -  June 16 2009" style="display: block; margin: 12px 0px 3px; font: 14px helvetica,arial,sans-serif; text-decoration: underline" href="http://www.slideshare.net/fredsa/gwt-overview-and-feature-preview-sv-web-jug-june-16-2009?type=powerpoint">GWT Overview And Feature Preview &#8211; SV Web JUG &#8211; June 16 2009</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=gwtoverviewandfeaturepreview-svwebjug-june162009-090621003200-phpapp02&amp;stripped_title=gwt-overview-and-feature-preview-sv-web-jug-june-16-2009" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=gwtoverviewandfeaturepreview-svwebjug-june162009-090621003200-phpapp02&amp;stripped_title=gwt-overview-and-feature-preview-sv-web-jug-june-16-2009" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
</p></div>

				<!-- Social Sharing Toolkit v2.0.4 | http://www.marijnrongen.com/wordpress-plugins/social_sharing_toolkit/ -->
				<div class="mr_social_sharing_wrapper"><span class="mr_social_sharing_top"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.cavdar.net/2009/06/28/gwt-overview-and-feature-preview/" data-count="vertical" data-via="accavdar" data-text="GWT Overview and Feature Preview">Tweet</a></span><span class="mr_social_sharing_top"><iframe src="https://www.facebook.com/plugins/like.php?locale=en_US&amp;href=http%3A%2F%2Fwww.cavdar.net%2F2009%2F06%2F28%2Fgwt-overview-and-feature-preview%2F&amp;layout=box_count&amp;show_faces=false&amp;width=55px&amp;height=61px" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:55px; height:61px;" allowTransparency="true"></iframe></span><span class="mr_social_sharing_top"><script type="IN/Share" data-url="http://www.cavdar.net/2009/06/28/gwt-overview-and-feature-preview/" data-counter="top"></script></span><span class="mr_social_sharing_top"><g:plusone size="tall" href="http://www.cavdar.net/2009/06/28/gwt-overview-and-feature-preview/"></g:plusone></span><span class="mr_social_sharing_top"><a class="DiggThisButton DiggMedium" href="http://digg.com/submit?url=http%3A%2F%2Fwww.cavdar.net%2F2009%2F06%2F28%2Fgwt-overview-and-feature-preview%2F&amp;title=GWT+Overview+and+Feature+Preview"></a></span><span class="mr_social_sharing_top"><script src="http://www.stumbleupon.com/hostedbadge.php?s=5&amp;r=http%3A%2F%2Fwww.cavdar.net%2F2009%2F06%2F28%2Fgwt-overview-and-feature-preview%2F"></script></span></div><h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.cavdar.net/2009/06/13/google-io-session-videos-and-slides-are-available-online/" title="Google I/O Session Videos and Slides Are Available Online">Google I/O Session Videos and Slides Are Available Online</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.cavdar.net/2009/06/28/gwt-overview-and-feature-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cavdar.net/2009/06/28/gwt-overview-and-feature-preview/</feedburner:origLink></item>
		<item>
		<title>My Top 5 iPhone 3.0 OS Features</title>
		<link>http://feedproxy.google.com/~r/cavdarnet/~3/tMmqz9mHZR0/</link>
		<comments>http://www.cavdar.net/2009/06/21/my-top-5-iphone-30-os-features/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 16:03:28 +0000</pubDate>
		<dc:creator>Abdullah Cetin CAVDAR</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone OS 3.0]]></category>

		<guid isPermaLink="false">http://www.cavdar.net/2009/06/21/my-top-5-iphone-30-os-features/</guid>
		<description><![CDATA[iPhone 3.0 OS, the next generation operating system for the iPhone released to public on June 17th with lots of new features make iPhone lovers smile. My favorites are listed below: Cut, Copy and Paste Quickly and easily cut, copy, and paste text from application to application. Select entire blocks of web text with a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apple.com/iphone/" target="_blank">iPhone</a> 3.0 OS, the next generation operating system for the iPhone released to public on June 17th with lots of new features make iPhone lovers smile. My favorites are listed below:</p>
<ol>
<li>
<div align="left"><strong>Cut, Copy and Paste          <br /></strong>Quickly and easily cut, copy, and paste text from application to application. Select entire blocks of web text with a tap. Copy and paste images from the web, too.         <br />Double-tap over text, you will get a &quot;Cut, Copy, and Paste&quot; bubble dialog. Use blue markers to select desired text or hold a word until the magnifying glass appears, “Select” and “Select All” options are shown. Again use small, nice blue markers. Liked it. <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />         </p>
<p><a href="http://cavdar.net/uploads/2009/06/iphone30-copy-paste01.png"><img title="iphone30_copy_paste01" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="244" alt="iphone30_copy_paste01" src="http://cavdar.net/uploads/2009/06/iphone30-copy-paste01-thumb.png" width="164" border="0" /></a> <a href="http://cavdar.net/uploads/2009/06/iphone30-copy-paste02.png"><u></u><img title="iphone30_copy_paste02" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="244" alt="iphone30_copy_paste02" src="http://cavdar.net/uploads/2009/06/iphone30-copy-paste02-thumb.png" width="164" border="0" /></a></div>
</li>
<li>
<div align="left"><strong>Spotlight Search          <br /></strong>Find what you’re looking for across your iPhone, all from one place. Spotlight searches all of your contacts, email, calendars, and notes, as well as everything in your iPod.         <br />Click “Home” button to start searching. It can be configured from Settings&gt;General&gt;Home for switching double-clicking mode with other options such as “Phone Favorites”, “iPod” etc.&#160; </p>
<p><a href="http://cavdar.net/uploads/2009/06/iphone30-search01.png"><img title="iphone30_search01" style="display: block; float: none; margin-left: auto; margin-right: auto" height="244" alt="iphone30_search01" src="http://cavdar.net/uploads/2009/06/iphone30-search01-thumb.png" width="164" /></a><a href="http://cavdar.net/uploads/2009/06/iphone30-search02.png"><u></u><img title="iphone30_search02" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="244" alt="iphone30_search02" src="http://cavdar.net/uploads/2009/06/iphone30-search02-thumb.png" width="164" border="0" /></a></div>
</li>
<li><strong>MMS        <br /></strong>Send MMS messages and include photos, audio, and contact info. Even tap to snap a picture right inside Messages.       <br />Use little camera icon in the left side of the message box to attach photos to your SMS.
<p><a href="http://cavdar.net/uploads/2009/06/iphone30-mms01.png"><img title="iphone30_mms01" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="244" alt="iphone30_mms01" src="http://cavdar.net/uploads/2009/06/iphone30-mms01-thumb.png" width="164" border="0" /></a><a href="http://cavdar.net/uploads/2009/06/iphone30-mms02.png"><u></u><img title="iphone30_mms02" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="244" alt="iphone30_mms02" src="http://cavdar.net/uploads/2009/06/iphone30-mms02-thumb.png" width="164" border="0" /></a></li>
<li><strong>SMS Forwarding        <br /></strong>Manually select individual messages from a text message conversation, and forward them directly to another person via text message.       <br />Tap “Edit” in your message details, and check your desired messages to forward and click “Forward”.
<p><a href="http://cavdar.net/uploads/2009/06/iphone30-message-forward01.png"><img title="iphone30_message_forward01" style="display: block; float: none; margin-left: auto; margin-right: auto" height="244" alt="iphone30_message_forward01" src="http://cavdar.net/uploads/2009/06/iphone30-message-forward01-thumb.png" width="164" /></a><a href="http://cavdar.net/uploads/2009/06/iphone30-message-forward02.png"><img title="iphone30_message_forward02" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="244" alt="iphone30_message_forward02" src="http://cavdar.net/uploads/2009/06/iphone30-message-forward02-thumb.png" width="164" border="0" /></a></li>
<li><strong>Internet Tethering        <br /></strong>Share your Internet connection with your laptop with Internet tethering via Bluetooth or USB.       <br />Enable it from General&gt;Network&gt;Internet Tethering.&#160;
<p><img title="iphone30_internet_tethering" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="244" alt="iphone30_internet_tethering" src="http://cavdar.net/uploads/2009/06/iphone30-internet-tethering-thumb.png" width="164" border="0" /> </li>
</ol>
<p>There are many many great features coming with iPhone OS 3.0. Check out following links for more information:</p>
<ul>
<li><a href="http://www.apple.com/iphone/softwareupdate/" target="_blank">iPhone OS 3.0 Software Update</a> </li>
<li><a href="http://gizmodo.com/5171796/iphone-30-os-guide-everything-you-need-to-know" target="_blank">iPhone 3.0 OS Guide: Everything You Need to Know</a> </li>
<li><a href="http://www.macworld.com/article/139401/2009/03/appleevent.html" target="_blank">Live Update: iPhone Software 3.0</a> </li>
<li><a href="http://www.maclife.com/article/feature/16_tips_become_instant_iphone_os_30_poweruser" target="_blank">16 Tips to Become an INSTANT iPhone 3.0 Power-User</a> </li>
<li><a href="http://www.ismashphone.com/2009/06/how_to_use_best_40_features_of_iphone_3.html" target="_blank">How to use The Best 40 Features of iPhone 3.0</a> </li>
</ul>

				<!-- Social Sharing Toolkit v2.0.4 | http://www.marijnrongen.com/wordpress-plugins/social_sharing_toolkit/ -->
				<div class="mr_social_sharing_wrapper"><span class="mr_social_sharing_top"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.cavdar.net/2009/06/21/my-top-5-iphone-30-os-features/" data-count="vertical" data-via="accavdar" data-text="My Top 5 iPhone 3.0 OS Features">Tweet</a></span><span class="mr_social_sharing_top"><iframe src="https://www.facebook.com/plugins/like.php?locale=en_US&amp;href=http%3A%2F%2Fwww.cavdar.net%2F2009%2F06%2F21%2Fmy-top-5-iphone-30-os-features%2F&amp;layout=box_count&amp;show_faces=false&amp;width=55px&amp;height=61px" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:55px; height:61px;" allowTransparency="true"></iframe></span><span class="mr_social_sharing_top"><script type="IN/Share" data-url="http://www.cavdar.net/2009/06/21/my-top-5-iphone-30-os-features/" data-counter="top"></script></span><span class="mr_social_sharing_top"><g:plusone size="tall" href="http://www.cavdar.net/2009/06/21/my-top-5-iphone-30-os-features/"></g:plusone></span><span class="mr_social_sharing_top"><a class="DiggThisButton DiggMedium" href="http://digg.com/submit?url=http%3A%2F%2Fwww.cavdar.net%2F2009%2F06%2F21%2Fmy-top-5-iphone-30-os-features%2F&amp;title=My+Top+5+iPhone+3.0+OS+Features"></a></span><span class="mr_social_sharing_top"><script src="http://www.stumbleupon.com/hostedbadge.php?s=5&amp;r=http%3A%2F%2Fwww.cavdar.net%2F2009%2F06%2F21%2Fmy-top-5-iphone-30-os-features%2F"></script></span></div><h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.cavdar.net/2009/04/12/itunes-install-the-folder-path-c-contains-an-invalid-character/" title="iTunes Install: The Folder Path &lsquo;C:&rsquo; Contains an Invalid Character">iTunes Install: The Folder Path &lsquo;C:&rsquo; Contains an Invalid Character</a></li><li><a href="http://www.cavdar.net/2011/08/25/best-quotes-of-steve-jobs/" title="Best Quotes of Steve Jobs">Best Quotes of Steve Jobs</a></li><li><a href="http://www.cavdar.net/2008/11/30/my-top-free-iphone-3g-applications-part-1/" title="My Top Free iPhone 3G Applications &#8211; Part 1">My Top Free iPhone 3G Applications &#8211; Part 1</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.cavdar.net/2009/06/21/my-top-5-iphone-30-os-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cavdar.net/2009/06/21/my-top-5-iphone-30-os-features/</feedburner:origLink></item>
		<item>
		<title>JavaOne 2009: Technical Sessions in PDF</title>
		<link>http://feedproxy.google.com/~r/cavdarnet/~3/EfsPCcu2x0w/</link>
		<comments>http://www.cavdar.net/2009/06/18/javaone-2009-technical-sessions-in-pdf/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 17:38:45 +0000</pubDate>
		<dc:creator>Abdullah Cetin CAVDAR</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[javaone]]></category>

		<guid isPermaLink="false">http://www.cavdar.net/2009/06/18/javaone-2009-technical-sessions-in-pdf/</guid>
		<description><![CDATA[JavaOne 2009 static PDF versions of the technical session slides are available online for viewing and downloading to Sun Developer Network members. Core Technology: Embedded / Real-Time / Java Card Core Technology: Java EE Core Technology: Java SE &#38; Desktop Mobility Rich Media Applications and Interactive Content Services: SOA Platform and Middleware Services Services: Web [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://java.sun.com/javaone/" target="_blank"><img title="DukeWithHelmet" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="350" alt="DukeWithHelmet" src="http://cavdar.net/uploads/2009/06/dukewithhelmet.jpg" width="350" border="0" /></a><a href="http://java.sun.com/javaone/">JavaOne</a> 2009 static PDF versions of the technical session slides are available online for viewing and downloading to Sun Developer Network members. <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<li><a href="http://developers.sun.com/learning/javaoneonline/j1online.jsp?track=embedded&amp;yr=2009" target="_blank">Core Technology: Embedded / Real-Time / Java Card</a> </li>
<li><a href="http://developers.sun.com/learning/javaoneonline/j1online.jsp?track=javaee&amp;yr=2009" target="_blank">Core Technology: Java EE</a> </li>
<li><a href="http://developers.sun.com/learning/javaoneonline/j1online.jsp?track=javase&amp;yr=2009" target="_blank">Core Technology: Java SE &amp; Desktop</a> </li>
<li><a href="http://developers.sun.com/learning/javaoneonline/j1online.jsp?track=mobility&amp;yr=2009" target="_blank">Mobility</a> </li>
<li><a href="http://developers.sun.com/learning/javaoneonline/j1online.jsp?track=media&amp;yr=2009" target="_blank">Rich Media Applications and Interactive Content</a> </li>
<li><a href="http://developers.sun.com/learning/javaoneonline/j1online.jsp?track=soa&amp;yr=2009" target="_blank">Services: SOA Platform and Middleware Services</a> </li>
<li><a href="http://developers.sun.com/learning/javaoneonline/j1online.jsp?track=nextweb&amp;yr=2009" target="_blank">Services: Web 2.0, Next Generation Web, and Cloud Services Platform</a> </li>
</ul>
<p>Additionally, you can watch JavaOne 2009 General Session videos online from <a href="http://java.sun.com/javaone/2009/general_sessions.jsp" target="_blank">here</a>. Enjoy it. <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

				<!-- Social Sharing Toolkit v2.0.4 | http://www.marijnrongen.com/wordpress-plugins/social_sharing_toolkit/ -->
				<div class="mr_social_sharing_wrapper"><span class="mr_social_sharing_top"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.cavdar.net/2009/06/18/javaone-2009-technical-sessions-in-pdf/" data-count="vertical" data-via="accavdar" data-text="JavaOne 2009: Technical Sessions in PDF">Tweet</a></span><span class="mr_social_sharing_top"><iframe src="https://www.facebook.com/plugins/like.php?locale=en_US&amp;href=http%3A%2F%2Fwww.cavdar.net%2F2009%2F06%2F18%2Fjavaone-2009-technical-sessions-in-pdf%2F&amp;layout=box_count&amp;show_faces=false&amp;width=55px&amp;height=61px" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:55px; height:61px;" allowTransparency="true"></iframe></span><span class="mr_social_sharing_top"><script type="IN/Share" data-url="http://www.cavdar.net/2009/06/18/javaone-2009-technical-sessions-in-pdf/" data-counter="top"></script></span><span class="mr_social_sharing_top"><g:plusone size="tall" href="http://www.cavdar.net/2009/06/18/javaone-2009-technical-sessions-in-pdf/"></g:plusone></span><span class="mr_social_sharing_top"><a class="DiggThisButton DiggMedium" href="http://digg.com/submit?url=http%3A%2F%2Fwww.cavdar.net%2F2009%2F06%2F18%2Fjavaone-2009-technical-sessions-in-pdf%2F&amp;title=JavaOne+2009%3A+Technical+Sessions+in+PDF"></a></span><span class="mr_social_sharing_top"><script src="http://www.stumbleupon.com/hostedbadge.php?s=5&amp;r=http%3A%2F%2Fwww.cavdar.net%2F2009%2F06%2F18%2Fjavaone-2009-technical-sessions-in-pdf%2F"></script></span></div><h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.cavdar.net/2008/09/13/5-tips-for-debugging-java-code-in-eclipse/" title="5 Tips for Debugging Java Code in Eclipse">5 Tips for Debugging Java Code in Eclipse</a></li><li><a href="http://www.cavdar.net/2008/07/26/say-hello-world-without-main-method-in-java/" title="Say &#8220;Hello World!&#8221; Without Main Method in Java">Say &#8220;Hello World!&#8221; Without Main Method in Java</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.cavdar.net/2009/06/18/javaone-2009-technical-sessions-in-pdf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cavdar.net/2009/06/18/javaone-2009-technical-sessions-in-pdf/</feedburner:origLink></item>
		<item>
		<title>Google I/O Session Videos and Slides Are Available Online</title>
		<link>http://feedproxy.google.com/~r/cavdarnet/~3/RpwYr2n_1Xc/</link>
		<comments>http://www.cavdar.net/2009/06/13/google-io-session-videos-and-slides-are-available-online/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 15:21:35 +0000</pubDate>
		<dc:creator>Abdullah Cetin CAVDAR</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[google i/o]]></category>

		<guid isPermaLink="false">http://www.cavdar.net/2009/06/13/google-io-session-videos-and-slides-are-available-online/</guid>
		<description><![CDATA[Google I/O offered 80+ sessions featuring technical content on Google Wave, Android, App Engine, Chrome, Google Web Toolkit, AJAX APIs, and many more. The available session videos and slides from each track are listed below. Ajax + Data APIs Social App Engine Enterprise Google Web Toolkit Tech Talks Wave Mobile Client TweetRelated PostsGWT Overview and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/events/io/">Google I/O</a> offered 80+ sessions featuring technical content on <a href="http://wave.google.com/">Google Wave</a>, <a href="http://code.google.com/android/">Android</a>, <a href="http://code.google.com/appengine/">App Engine</a>, <a href="http://www.google.com/chrome">Chrome</a>, <a href="http://code.google.com/webtoolkit/">Google Web Toolkit</a>, <a href="http://code.google.com/apis/ajax/">AJAX APIs</a>, and many more. The available session videos and slides from each track are listed below.</p>
<p><a href="http://code.google.com/events/io/"><img title="googleio" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="217" alt="googleio" src="http://cavdar.net/uploads/2009/06/googleio.jpg" width="475" border="0" /></a></p>
<ul>
<li><a href="http://code.google.com/events/io/sessions.html#ajaxapi">Ajax + Data APIs</a> </li>
<li><a href="http://code.google.com/events/io/sessions.html#social">Social</a> </li>
<li><a href="http://code.google.com/events/io/sessions.html#appengine">App Engine</a> </li>
<li><a href="http://code.google.com/events/io/sessions.html#enterprise">Enterprise</a> </li>
<li><a href="http://code.google.com/events/io/sessions.html#gwt">Google Web Toolkit</a> </li>
<li><a href="http://code.google.com/events/io/sessions.html#techtalks">Tech Talks</a> </li>
<li><a href="http://code.google.com/events/io/sessions.html#wave">Wave</a> </li>
<li><a href="http://code.google.com/events/io/sessions.html#mobile">Mobile</a> </li>
<li><a href="http://code.google.com/events/io/sessions.html#client">Client</a></li>
</ul>

				<!-- Social Sharing Toolkit v2.0.4 | http://www.marijnrongen.com/wordpress-plugins/social_sharing_toolkit/ -->
				<div class="mr_social_sharing_wrapper"><span class="mr_social_sharing_top"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.cavdar.net/2009/06/13/google-io-session-videos-and-slides-are-available-online/" data-count="vertical" data-via="accavdar" data-text="Google I/O Session Videos and Slides Are Available Online">Tweet</a></span><span class="mr_social_sharing_top"><iframe src="https://www.facebook.com/plugins/like.php?locale=en_US&amp;href=http%3A%2F%2Fwww.cavdar.net%2F2009%2F06%2F13%2Fgoogle-io-session-videos-and-slides-are-available-online%2F&amp;layout=box_count&amp;show_faces=false&amp;width=55px&amp;height=61px" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:55px; height:61px;" allowTransparency="true"></iframe></span><span class="mr_social_sharing_top"><script type="IN/Share" data-url="http://www.cavdar.net/2009/06/13/google-io-session-videos-and-slides-are-available-online/" data-counter="top"></script></span><span class="mr_social_sharing_top"><g:plusone size="tall" href="http://www.cavdar.net/2009/06/13/google-io-session-videos-and-slides-are-available-online/"></g:plusone></span><span class="mr_social_sharing_top"><a class="DiggThisButton DiggMedium" href="http://digg.com/submit?url=http%3A%2F%2Fwww.cavdar.net%2F2009%2F06%2F13%2Fgoogle-io-session-videos-and-slides-are-available-online%2F&amp;title=Google+I%2FO+Session+Videos+and+Slides+Are+Available+Online"></a></span><span class="mr_social_sharing_top"><script src="http://www.stumbleupon.com/hostedbadge.php?s=5&amp;r=http%3A%2F%2Fwww.cavdar.net%2F2009%2F06%2F13%2Fgoogle-io-session-videos-and-slides-are-available-online%2F"></script></span></div><h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.cavdar.net/2009/06/28/gwt-overview-and-feature-preview/" title="GWT Overview and Feature Preview">GWT Overview and Feature Preview</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.cavdar.net/2009/06/13/google-io-session-videos-and-slides-are-available-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cavdar.net/2009/06/13/google-io-session-videos-and-slides-are-available-online/</feedburner:origLink></item>
		<item>
		<title>iTunes Install: The Folder Path ‘C:’ Contains an Invalid Character</title>
		<link>http://feedproxy.google.com/~r/cavdarnet/~3/negTMHHIhqU/</link>
		<comments>http://www.cavdar.net/2009/04/12/itunes-install-the-folder-path-c-contains-an-invalid-character/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 08:48:42 +0000</pubDate>
		<dc:creator>Abdullah Cetin CAVDAR</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[installation error]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[itunes]]></category>

		<guid isPermaLink="false">http://www.cavdar.net/2009/04/12/itunes-install-the-folder-path-c-contains-an-invalid-character/</guid>
		<description><![CDATA[Recently, I take the error “The folder path ‘C:’ contains invalid character” when I try to install iTunes 8.1 to my Vista box. I get rid of this error by following the steps below. It worked for me. Hopefully, it works for you. Open the registry editor by using the command “regedit” from the “Run” [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I take the error “The folder path ‘C:’ contains invalid character” when I try to install iTunes 8.1 to my Vista box.</p>
<p><a href="http://cavdar.net/uploads/2009/04/itunes-error.jpg"><img title="itunes_error" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="268" alt="itunes_error" src="http://cavdar.net/uploads/2009/04/itunes-error-thumb.jpg" width="349" border="0" /></a> </p>
<p>I get rid of this error by following the steps below. It worked for me. Hopefully, it works for you. <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<ol>
<li>Open the registry editor by using the command “regedit” from the “Run” window. </li>
<li>Go to “HKEY_LOCAL_MACHINE&#8211;&gt;SOFTWARE” </li>
<li>Delete “Apple Computer, Inc.” and “Apple Inc.” items </li>
<li>Try to reinstall iTunes. </li>
</ol>
<p><a href="http://cavdar.net/uploads/2009/04/registry.jpg"><img title="registry" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="298" alt="registry" src="http://cavdar.net/uploads/2009/04/registry-thumb.jpg" width="263" border="0" /></a> </p>
<p>And, ladies and gentlemen, please welcome, The iTunesssss (It’ll be nice to give an explosion sound effect in the background. <img src='http://www.cavdar.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> )</p>
<p><a href="http://cavdar.net/uploads/2009/04/itunes.jpg"><img title="itunes" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="299" alt="itunes" src="http://cavdar.net/uploads/2009/04/itunes-thumb.jpg" width="454" border="0" /></a></p>

				<!-- Social Sharing Toolkit v2.0.4 | http://www.marijnrongen.com/wordpress-plugins/social_sharing_toolkit/ -->
				<div class="mr_social_sharing_wrapper"><span class="mr_social_sharing_top"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.cavdar.net/2009/04/12/itunes-install-the-folder-path-c-contains-an-invalid-character/" data-count="vertical" data-via="accavdar" data-text="iTunes Install: The Folder Path ‘C:’ Contains an Invalid Character">Tweet</a></span><span class="mr_social_sharing_top"><iframe src="https://www.facebook.com/plugins/like.php?locale=en_US&amp;href=http%3A%2F%2Fwww.cavdar.net%2F2009%2F04%2F12%2Fitunes-install-the-folder-path-c-contains-an-invalid-character%2F&amp;layout=box_count&amp;show_faces=false&amp;width=55px&amp;height=61px" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:55px; height:61px;" allowTransparency="true"></iframe></span><span class="mr_social_sharing_top"><script type="IN/Share" data-url="http://www.cavdar.net/2009/04/12/itunes-install-the-folder-path-c-contains-an-invalid-character/" data-counter="top"></script></span><span class="mr_social_sharing_top"><g:plusone size="tall" href="http://www.cavdar.net/2009/04/12/itunes-install-the-folder-path-c-contains-an-invalid-character/"></g:plusone></span><span class="mr_social_sharing_top"><a class="DiggThisButton DiggMedium" href="http://digg.com/submit?url=http%3A%2F%2Fwww.cavdar.net%2F2009%2F04%2F12%2Fitunes-install-the-folder-path-c-contains-an-invalid-character%2F&amp;title=iTunes+Install%3A+The+Folder+Path+%E2%80%98C%3A%E2%80%99+Contains+an+Invalid+Character"></a></span><span class="mr_social_sharing_top"><script src="http://www.stumbleupon.com/hostedbadge.php?s=5&amp;r=http%3A%2F%2Fwww.cavdar.net%2F2009%2F04%2F12%2Fitunes-install-the-folder-path-c-contains-an-invalid-character%2F"></script></span></div><h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.cavdar.net/2009/06/21/my-top-5-iphone-30-os-features/" title="My Top 5 iPhone 3.0 OS Features">My Top 5 iPhone 3.0 OS Features</a></li><li><a href="http://www.cavdar.net/2011/08/25/best-quotes-of-steve-jobs/" title="Best Quotes of Steve Jobs">Best Quotes of Steve Jobs</a></li><li><a href="http://www.cavdar.net/2008/11/30/my-top-free-iphone-3g-applications-part-1/" title="My Top Free iPhone 3G Applications &#8211; Part 1">My Top Free iPhone 3G Applications &#8211; Part 1</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.cavdar.net/2009/04/12/itunes-install-the-folder-path-c-contains-an-invalid-character/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.cavdar.net/2009/04/12/itunes-install-the-folder-path-c-contains-an-invalid-character/</feedburner:origLink></item>
	</channel>
</rss>

