<?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>Sudev's Weblog</title>
	<atom:link href="http://sudev.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sudev.wordpress.com</link>
	<description>I don't care what people say about me, I do care about my mistakes.</description>
	<lastBuildDate>Tue, 14 Oct 2008 14:00:38 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='sudev.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/fb60c772ccca467f86aac48e2e4ba6a2?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Sudev's Weblog</title>
		<link>http://sudev.wordpress.com</link>
	</image>
			<item>
		<title>SQL Server Reporting Service &#8211; Few Important Concepts and Overview</title>
		<link>http://sudev.wordpress.com/2008/10/14/sql-server-reporting-service-few-important-concepts-and-overview/</link>
		<comments>http://sudev.wordpress.com/2008/10/14/sql-server-reporting-service-few-important-concepts-and-overview/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 14:00:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL Utilities]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Emerging Technologies]]></category>
		<category><![CDATA[Microsoft Technologies]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/11/06/sql-server-reporting-service-few-important-concepts-and-overview/</guid>
		<description><![CDATA[SQL Server Reporting Services, due to its robust but user friendly architecture, is an obvious choice for Enterprise or in-house reporting, for product management, sales, and human resource and finance departments. Its flexibility makes it an ideal for usage in applications as well (Deliver User-Friendly Reports from Your Application with SQL Server Reporting Services &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=155&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>SQL Server Reporting Services, due to its robust but user friendly architecture, is an obvious choice for Enterprise or in-house reporting, for product management, sales, and human resource and finance departments. Its flexibility makes it an ideal for usage in applications as well (Deliver User-Friendly Reports from Your Application with SQL Server Reporting Services &#8211; MSDN Magazine August 2004). Reporting Services offer various delivery methods, from ftp to email and it provides various rendering formats therefore it makes adds easiness to business to business reporting. Similarly because of its flexibility and industry standard security model, it makes extranet and secure internet reporting easily achievable.</p>
<p>The reporting system comprises for following main components.</p>
<p><img title="Main Components of SSRS" style="display:inline;border-width:0;" height="285" alt="Main Components of SSRS" src="http://sudev.files.wordpress.com/2008/10/clip-image0021.jpg?w=488&#038;h=285" width="488" border="0" /></p>
<h2>Report Server &amp; Report Server Database</h2>
<p>Report Server is an integrated web service which controls report generation and management. Report Server database is a SQL server database which is used as data dictionary about reports (catalogue, groups) and caching. SQL server agent is used for scheduling the reports.</p>
<p>Report Manager    <br />An ASP.NET based Web interface for managing the reports, setting security and user permissions.</p>
<p>Report Designer is considered as a part of reporting services in Microsoft documentation but because RDL (Report definition language) is an XML based open standard, any vendor can implement it and therefore a single tool can&#8217;t be categorized as report designer. However, Microsoft provides a graphical report authoring tool with Visual Studio.NET 2003 or later for creating reports which automatically creates RDL markup at the backend.</p>
<p>Reporting services were designed with concept of disparate data sources in mind. A single report can retrieve data from multiple heterogeneous databases and render it to make it look like it&#8217;s from a single source. It provides built-in windows authentication security however one can write custom security wrapper to fit particular enterprise needs.</p>
<p>With SQL Server reporting services, multiple delivery methods and formats work like a charm. You design a generic report and reporting server takes care of exporting it into HTML, Excel, PDF, WAR(web archive), TIFF, CSV and XML format. As always, one can write his own custom format writer wrapper class for any custom format.</p>
<h2>Reporting Services Delivery Formats</h2>
<p><img title="Reporting Services Delivery Formats" style="display:inline;border-width:0;" height="372" alt="Reporting Services Delivery Formats" src="http://sudev.files.wordpress.com/2008/10/clip-image0031.gif?w=551&#038;h=372" width="551" border="0" /></p>
<p>Reporting Services provide four distinct formats of report delivery also known as subscription in Reporting Services arena; Individual subscription, data driven subscription, SMTP delivery and file share directory (FTP) based subscriptions.</p>
<h2>Reporting Services Architecture</h2>
<a href="http://sudev.files.wordpress.com/2008/10/clip-image004.gif"><img class="size-full wp-image-149" title="Reporting services architecture" height="323" alt="Reporting services architecture" src="http://sudev.files.wordpress.com/2008/10/clip-image004.gif?w=515&#038;h=323" width="515" /></a>
<p>Above diagram schematically explains Reporting services architecture</p>
<p>Beside the code segments which can be written within a report in VB.NET, these API provides makes it more programmable. The application program interface can be classified into following categories.</p>
<ol>
<li>Data processing extension application programming interface (API) </li>
<li>Delivery extension API </li>
<li>Rendering extension API </li>
<li>Security extension API </li>
<li>Web service API </li>
<li>Windows Management Instrumentation (WMI) configuration API </li>
</ol>
<p>Interactive interfaces are another salient feature of SQL Server Reporting Services. Reports designed in SQL server reporting services supports charts, document map, freeform, cross tab matrix, sub reports and tables. Reports can also be parameterized and event driven (supports actions). Management is one of the most important parts in any reporting system; SQL server reporting services has it all planned. It manages jobs from a user friendly console, provides personalization &quot;my reports&quot;, tracks report history, manage shared data sources, provide search, subscription and snapshot features with shared subscription from one stop shop, the management console. Reporting Services supports report caching and stores reports execution data in execution logs,</p>
<h2>Report Generation and Publishing</h2>
<p><img title="Report Generation and Publishing" style="display:inline;border-width:0;" height="366" alt="Report Generation and Publishing" src="http://sudev.files.wordpress.com/2008/10/clip-image0051.gif?w=505&#038;h=366" width="505" border="0" /></p>
<p>As defined in the diagram above, the process of report generation and publishing consists of the following main steps.</p>
<ol>
<li>Reporting server engine (Report Processor) receives the request for a particular report. A request includes parameters and formatting instructions. </li>
<li>Report Processor retrieves the report definition on the basis of request. </li>
<li>For the corresponding RDL, the report processor then retrieves the report data for specified data sources. </li>
<li>Report Processor performs transformation on reporting data and sends the document data along with schema to rendering engine (rendering extension). </li>
<li>The extension publishes the final rendered report. </li>
<li>The following steps are basics of how reporting services work. The extensions (data processing extensions, rendering extensions etc) can be custom built and wrap around the existing set of API to provide extended functionality. </li>
</ol>
<h2>SSRS Integration with SharePoint 2007</h2>
<p><img title="SSRS Integration with SharePoint 2007" style="display:inline;border-width:0;" height="313" alt="SSRS Integration with SharePoint 2007" src="http://sudev.files.wordpress.com/2008/10/ssrsintegrationwithsp20072.png?w=520&#038;h=313" width="520" border="0" /></p>
<p>Configuration:</p>
<ul>
<li>SQL Server 2005 SP2 is installed on report server in Native mode along with WSS Object Model (farm install) </li>
<li>SSRS Configuration Tool creates a new Report Server database in “SharePoint Integration mode” </li>
<li>SSRS Add-In is installed on WSS 2007 </li>
<li>WSS Central Admin web pages register SSRS web service and windows service with WSS farm </li>
</ul>
<p>Database Integration Points</p>
<ul>
<li>WSS Content Database stores the master copy of SSRS items </li>
<li>Schedules, caching, and subscriptions are stored in SSRS database only </li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=155&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/10/14/sql-server-reporting-service-few-important-concepts-and-overview/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>

		<media:content url="http://sudev.files.wordpress.com/2008/10/clip-image0021.jpg" medium="image">
			<media:title type="html">Main Components of SSRS</media:title>
		</media:content>

		<media:content url="http://sudev.files.wordpress.com/2008/10/clip-image0031.gif" medium="image">
			<media:title type="html">Reporting Services Delivery Formats</media:title>
		</media:content>

		<media:content url="http://sudev.files.wordpress.com/2008/10/clip-image004.gif" medium="image">
			<media:title type="html">Reporting services architecture</media:title>
		</media:content>

		<media:content url="http://sudev.files.wordpress.com/2008/10/clip-image0051.gif" medium="image">
			<media:title type="html">Report Generation and Publishing</media:title>
		</media:content>

		<media:content url="http://sudev.files.wordpress.com/2008/10/ssrsintegrationwithsp20072.png" medium="image">
			<media:title type="html">SSRS Integration with SharePoint 2007</media:title>
		</media:content>
	</item>
		<item>
		<title>A problem I faced with WSS 3.0 configuration on a Windows 2003 Server</title>
		<link>http://sudev.wordpress.com/2008/10/06/a-problem-i-faced-with-wss-30-configuration-on-a-windows-2003-server/</link>
		<comments>http://sudev.wordpress.com/2008/10/06/a-problem-i-faced-with-wss-30-configuration-on-a-windows-2003-server/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 06:57:49 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Microsoft Technologies]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[WSS 3.0]]></category>
		<category><![CDATA[WSS]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/10/06/a-problem-i-faced-with-wss-30-configuration-on-a-windows-2003-server/</guid>
		<description><![CDATA[I&#8217;d like to share a typical problem recently I faced with WSS 3.0 configuration on a Windows 2003 Server.
I created a virtual machine with Windows 2003 OS and named it &#8220;myvpc&#8221; in a hypothetical workgroup viz. &#8220;WKGP&#8221; (I initially planned to use it in stand-alone mode). Then I installed all available updates to the Windows [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=138&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;d like to share a typical problem recently I faced with WSS 3.0 configuration on a Windows 2003 Server.</p>
<p>I created a virtual machine with Windows 2003 OS and named it &#8220;<strong>myvpc</strong>&#8221; in a hypothetical workgroup viz. &#8220;<strong>WKGP</strong>&#8221; (I initially planned to use it in stand-alone mode). Then I installed all available updates to the Windows Server and .Net framework 3.5 with IIS followed by Stand-alone installation of Latest WSS 3.0. The default team site and central administration site were working smooth. I even created another application using central administration.</p>
<p>Later I changed my mind and thought that it would be better if I include this virtual machine into our company&#8217;s local intranet Domain. At this point of time I had to change the PC name from &#8220;<strong>myvpc</strong>&#8221; to &#8220;<strong>SUDEV-VPC</strong>&#8221; due to some or other reasons.</p>
<p>Now, suddenly none of the SharePoint sites were accessible even from the &#8220;<em>localhost</em>&#8220;! I opened IIS console and noticed that &#8220;SharePoint Admin&#8221; site was stopped!!! I checked the systems log and found many errors stating &#8220;<em>Cannot connect to SQL Server. <strong><span style="text-decoration:underline;">MYVPC</span>\Microsoft##SSEE</strong> not found</em>&#8220;. I was surprised to see this, why SharePoint did not understand the change in name of computer.</p>
<p>I just thought lets run the &#8220;Configuration Wizard&#8221; again for the WSS. I did it but it failed too at the step-5 saying &#8220;<em>Could not access search service configuration database</em>&#8220;.</p>
<p>I uninstalled the WSS 3.0 completely and restarted the OS. I noticed that IIS don&#8217;t have the sites I created using WSS anymore.</p>
<p>I installed the WSS again, ran the configuration wizard but just to get a disappointment. The error continues to occur. This time I checked IIS and found that the sites I created with previous installation have been created again on the same port (sounds strange again, how new installation of SP came to know about it?)</p>
<p>The WSS 3.0 was using same database (Windows Internal Database aka SQL Server Embedded Edition). But at some location it was using previous computer name and at other it was using new name. (Surprised?)</p>
<p>So I thought lets re-install the Windows Internal Database itself. There is no direct way to uninstall it. So I uninstall the WSS 3.0 first. And then with help of MSDN link (<a href="http://technet.microsoft.com/en-us/library/cc708610.aspx">http://technet.microsoft.com/en-us/library/cc708610.aspx</a>) I uninstalled the Windows Internal Database as well. I removed the data files from &#8220;<em>%windir%\SYSMSI\SSEE</em>&#8221; as per their suggestion followed by a system restart.</p>
<p>Now I installed the WSS 3.0 in stand-alone mode, ran the configuration wizard and guess what? The configuration wizard ran successfully and I was able to access the default team site and admin site again.</p>
<p>It took quite some time to figure out this solution but it worked for me. In your case you may need to retain the backup of the content database and configuration database before un-install and install of WSS.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=138&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/10/06/a-problem-i-faced-with-wss-30-configuration-on-a-windows-2003-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Announces Visual Studio 2010</title>
		<link>http://sudev.wordpress.com/2008/09/30/microsoft-announces-visual-studio-2010/</link>
		<comments>http://sudev.wordpress.com/2008/09/30/microsoft-announces-visual-studio-2010/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 06:54:15 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Industry News]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Emerging Technologies]]></category>
		<category><![CDATA[Microsoft Technologies]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/09/30/microsoft-announces-visual-studio-2010/</guid>
		<description><![CDATA[Microsoft is offering a first look at the next version of its Visual Studio integrated development environment (IDE) and platform, which will be named Visual Studio 2010 and the .Net Framework 4.0.
http://msdn.microsoft.com/en-us/vstudio/products/cc948977.aspx
There&#8217;s a lot promised in the new release (expected to ship, duh, in 2010), from improved software testing tools to software engineering modeling capabilities [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=133&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Microsoft is offering a first look at the next version of its Visual Studio integrated development environment (IDE) and platform, which will be named Visual Studio 2010 and the .Net Framework 4.0.</p>
<p><a href="http://msdn.microsoft.com/en-us/vstudio/products/cc948977.aspx" target="_blank">http://msdn.microsoft.com/en-us/vstudio/products/cc948977.aspx</a></p>
<p>There&#8217;s a lot promised in the new release (expected to ship, duh, in 2010), from improved software testing tools to software engineering modeling capabilities to integrated development and database functions for the application lifecycle management (ALM).</p>
<p>Microsoft is putting its attention on improving Visual Studio for the benefit of every one of its users—from the CIO to the software architect to the enterprise developer to the software testing team.</p>
<p>A key goal in VSTS 2010, says Microsoft, is to help democratize ALM by bringing all members of a development organization into the application development lifecycle, and remove many of the existing barriers to integration.</p>
<p>One way that Visual Studio 2010 will do this is to break down the ALM roles, from the business decision maker (who needs a project overview but doesn&#8217;t want to be bogged down in details) to the lead developer or system architect (who enables the software infrastructure and draws the blueprint), to the developer who writes the code and the database administrator (DBA) who integrates it with the company database to the testers (who make sure the software is of high quality).</p>
<p>For the IT manager or CIO, says Mendlen, VSTS will give clarity and visibility into the state of the project throughout the lifecycle, using Team Foundation Server-enabled dashboards customized for her role. The dashboard can answer high level questions such as ongoing project cost or project status.</p>
<h1>Agile Tools, Built-In</h1>
<p>Visual Studio 2010 also will sport features to integrate Agile methodologies into the tech stack using Team Foundation Server. Skinner explains, &#8220;We&#8217;ll include in the [VSTS] box an Excel workbook for teams that are leveraging, say, the Scrum process so they can get burndown from their project.&#8221; These features, he says, will let Agile teams track daily progress, see projects broken down into iterations and use sprints.</p>
<h1>Putting Quality Earlier in the Development Lifecycle</h1>
<p>One sometimes-stressful interaction in the application development lifecycle is the tension between developers and testers. Developers have to do a better job of testing their code before they send it off to the software testers. Developers don&#8217;t always know which unit tests they have to run, and often they don&#8217;t have the time or inclination (your own cynicism-meter can determine which) to run the tests anyway.</p>
<h1>Merging of Developer, DBA Roles</h1>
<p>Most of these changes are a ways off, though you can expect to see some of this functionality demonstrated at the upcoming Microsoft Professional Developers&#8217; Conference. One item, however, takes effect immediately.</p>
<p>As Microsoft sees it, the roles of the database-centric developer and &#8220;regular&#8221; developer are less distinct than they once were, so the company is merging its VSTS database and development products. As of October 1, those who belong to the Microsoft Developer Network (MSDN) <span style="font-size:10pt;font-family:Arial;"><em>and</em></span> currently own Visual Studio Team System 2008 Development Edition or Visual Studio Team System 2008 Database Edition will receive for free the Visual Studio Team System 2008 Development Edition, Visual Studio Team System 2008 Database Edition, Visual Studio 2005 Team System for Software Developers and Visual Studio 2005 Team System for Database Professionals.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/133/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=133&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/09/30/microsoft-announces-visual-studio-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>THE MOSS ARCHITECTURE</title>
		<link>http://sudev.wordpress.com/2008/09/27/the-moss-architecture/</link>
		<comments>http://sudev.wordpress.com/2008/09/27/the-moss-architecture/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 10:23:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[MOSS]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/?p=124</guid>
		<description><![CDATA[ 

Microsoft Office SharePoint Server 2007 can, working with other components of the Microsoft Office 2007 suite of applications, provide the functionality and benefits described previously. However, the amount of functionality derived from an MOSS installation depends on the features implemented and activated, as well as whether or not the MOSS environment is used to extend [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=124&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> </p>
<p><img src="http://sudev.files.wordpress.com/2008/09/092708-1553-themossarch1.png" alt="" /></p>
<p><span style="font-size:10pt;">Microsoft Office SharePoint Server 2007 can, working with other components of the Microsoft Office 2007 suite of applications, provide the functionality and benefits described previously. However, the amount of functionality derived from an MOSS installation depends on the features implemented and activated, as well as whether or not the MOSS environment is used to extend other building blocks, such as WSS and SQL Server. Figure 1 illustrates the structure of a complete MOSS environment. MOSS provides much of the functionality, but that functionality can be enhanced by the inclusion of other extended capability systems.<br />
</span></p>
<h1>The MOSS Common Framework</h1>
<p><span style="font-size:10pt;">MOSS 2007 supports other server-based applications and services with a set of common administrative services, as shown in Figure 2. The primary elements in the common group of services are (as shown in Figure 2, left to right):<br />
</span></p>
<p><img src="http://sudev.files.wordpress.com/2008/09/092708-1553-themossarch2.png" alt="" /><span style="font-size:10pt;"><br />
</span></p>
<h2>Collaboration</h2>
<p><span style="font-size:10pt;">This service supports discussions and shared task lists on server-based portals and determines the status of each member of a collaborative team, which could be online, offline, away, in a meeting, on the phone, and so on.<br />
</span></p>
<h2>Enterprise Content Management (ECM)</h2>
<p><span style="font-size:10pt;"> Using this service, users can create data validation and workflow procedures for Office 2007 documents through the Windows Workflow Foundation (WWF). MOSS includes a variety of predefined workflows, but users can create custom workflows using MOSS Designer 2007 or Visual Studio 2005.<br />
</span></p>
<h2>Excel Services</h2>
<p><span style="font-size:10pt;">This service provides the ability for users to display all or selected portions of server-based Excel workbooks using a web browser. An Excel web services application programming interface (API) is available to support server-based calculations and complex graphics renderings.<br />
</span></p>
<h2>Portal</h2>
<p><span style="font-size:10pt;">At the core of MOSS is the portal manager, which has been brought forward and upgraded from the previous version, Microsoft Office SharePoint Portal Server 2003. The portal services provide the user experience and content display functions used by all other SharePoint functions.<br />
</span></p>
<h2>Web Content Management (WCM)</h2>
<p><span style="font-size:10pt;">The capabilities enabled by the WCM service include support for Office SharePoint Designer 2007 for web template development, and web authoring using a template, site navigation services, security and access control, and site publishing.<br />
</span></p>
<h1>MOSS Application Services</h1>
<p><span style="font-size:10pt;">MOSS includes or supports a wide range of application- and activity-related services to facilitate information sharing, collaboration, and document management. As shown in Figure 3, these services include:<br />
</span></p>
<h2>Document Libraries</h2>
<p><span style="font-size:10pt;">A series of document libraries that allow a company to manage, organize, and categorize its information in a consistent form. There are three primary levels in the document libraries: the Managed Document Library, the Divisional Library, and the Translation Library.<br />
</span></p>
<h2>Web Parts</h2>
<p><span style="font-size:10pt;">MOSS contains a number of predefined ASP.NET web page segments that can be included in user- or information-based portal pages or used as standalone web pages. A few of the Web Parts available out-of-the-box are document roll-up Web Parts, Members and Colleagues Web Parts, and Social Networking Web Parts. Custom Web Parts can be created using Visual Studio 2005.<br />
</span></p>
<h2>Workflows</h2>
<p><span style="font-size:10pt;">MOSS includes a wide range of predefined workflows, which are in effect work unit scripts that define the step-by-step processes to be performed in order to accomplish a given work product. MOSS workflows are built on the Windows Workflow Foundation, which is a part of the .NET Framework.<br />
</span></p>
<h2>Scorecards</h2>
<p><span style="font-size:10pt;">MOSS 2007 supports the business information report units created under the Microsoft Business Scorecard Manager 2005, although this particular feature has been upgraded to the Microsoft PerformancePoint Server 2007. Scorecards are custom business performance tracking reports. </span></p>
<h2>People Search</h2>
<p><span style="font-size:10pt;">This feature allows users to search for people and information defining what or who they know. This feature supports indexing, Lightweight Directory Access Protocol (LDAP) directories, and Active Directory distribution lists. </span></p>
<h2>Key Performance Indicators (KPIs)</h2>
<p><span style="font-size:10pt;">A KPI presents business intelligence information in a visual way to signal how a certain product, function, or any other business activity is doing. For example, a KPI might display a green light if customer returns are below a preset level, a yellow light if they approach the accepted level and a red light if they exceed it. MOSS includes a variety of KPIs out-of-the-box that work with Excel 2007 and WSS. </span></p>
<h2>Dashboards</h2>
<p><span style="font-size:10pt;">A dashboard is essentially a web page that contains a number of elements that can be automatically updated independently, as well as lists, links, and other commonly accessed elements. The analogy is to an automobile dashboard. MOSS supports the creation of custom dashboards that can include KPIs, Excel workbooks, and information from SQL Server Reporting Services. </span></p>
<h2>Report Center</h2>
<p><span style="font-size:10pt;">The Report Center hosts predefined and custom web pages and sites that display, manage, and maintain links to reports and spreadsheets. </span></p>
<h2>My Site</h2>
<p><span style="font-size:10pt;">Perhaps one of the user-friendlier features of MOSS, MySite allows a user to customize a personalized view (using the Personalization Sites feature) of existing portal web pages, such as MyFinanceWeb or MyBenefits, based on their user profile and access permissions information. </span></p>
<h2>User Profiles</h2>
<p><span style="font-size:10pt;">User profile information from Active Directory is used by the Notification Service to target alerts to appropriate users, Social Networking to define common interests, and the Memberships Web Part for group and distribution list memberships. </span></p>
<h2>Business Data Applications</h2>
<p><span style="font-size:10pt;">MOSS provides a number of services that support the cataloging, storage, and access to business information and links related to each defined line-of-business (LOB) area using the Business Data Catalog, Business Data SharePoint Lists and Web Parts, and Business Data Actions services. </span></p>
<p><img src="http://sudev.files.wordpress.com/2008/09/092708-1553-themossarch3.png" alt="" /></p>
<p><span style="font-size:10pt;">Note that the services and applications in the preceding list are only the proverbial tip of the iceberg. MOSS includes a wide range of administrative services that can be employed to create a customized environment suited to any particular company.<br />
</span></p>
<h1>MOSS Core Services</h1>
<p><span style="font-size:10pt;">As shown in Figure 4, MOSS includes a number of core services that enable a company to get up and running quickly and provide users with ease of use and a variety of tools to help increase their productivity. The major services supported by MOSS out-of-the-box are: </span></p>
<h2>Templates</h2>
<p><span style="font-size:10pt;">Like the document templates included with each of the Office 2007 applications, MOSS includes templates for a variety of web pages (sites), lists, and documents that can be deployed to enable collaboration, reporting, and timed or triggered events. </span></p>
<h2>Personalization</h2>
<p><span style="font-size:10pt;">Users can be defined by their name, position, location, job, department, work responsibilities, and other characteristics. This information, along with other identification information entered in other Office 2007 applications, such as Outlook 2007, is used by additional MOSS services, like MySite, to create views and information feeds that meet the needs of the user. </span></p>
<h2>Targeting</h2>
<p><span style="font-size:10pt;">This feature, brought forward from Office SharePoint Portal Server 2003, develops target audiences for certain documents, reports, and functions using a rule-based criteria, groups defined in WSS 3.0, and Outlook 2007 and Exchange distribution lists. </span></p>
<h2>Single Sign-on</h2>
<p><span style="font-size:10pt;">This service is one that most users really appreciate. MOSS provides a Single Sign-on (SSO) capability that stores and maps user credentials for use in signing into back-end applications and third-party systems that are included in the user&#8217;s portal. However, in cases where a company already has an SSO system in use, MOSS supports pluggable SSO that allows non-MOSS SSOs to be used. </span></p>
<h2>Site Directory</h2>
<p><img src="http://sudev.files.wordpress.com/2008/09/092708-1553-themossarch4.png" alt="" /></p>
<p><span style="font-size:10pt;">This service is basically what its name suggests, a directory of web sites and network locations referenced by the system. It also includes a mechanism that can be used to scan for broken links, changed site Uniform Resource Locators (URLs), or missing sites. </span></p>
<h2>Business Data Catalog</h2>
<p><span style="font-size:10pt;">This service enables MOSS to merge data from external applications and back-end systems into its lists, Web Parts, and search results, as well as in custom applications developed under the .NET environment. </span></p>
<h2>Navigation</h2>
<p><span style="font-size:10pt;">This service manages the navigation links included on personal web pages and other web-browser supported displays provided through Office 2007 and MOSS. </span></p>
<h2>Alerts</h2>
<p><span style="font-size:10pt;">This feature enables users to identify and tag events and data elements that are then continuously monitored for changes that fall within the parameters set by users defining specific conditions. The Notification service then sends an alert to the user indicating the condition that has occurred. </span></p>
<h2>Information Rights Management (IRM)</h2>
<p><span style="font-size:10pt;">This feature is present throughout the Office 2007 applications suite to enable a company to protect its data from unauthorized access and use. IRM is integrated with the Rights Management Services (RMS) of Windows Server 2003, which allows system administrators to specify exactly who can access data, what they can do with the data, and how they can access the data. </span></p>
<h2>Search</h2>
<p><span style="font-size:10pt;">MOSS includes extensive data and document search capabilities that support search functions across an enterprise-level network, intranet, and even the Internet. </span></p>
<h2>Excel Services</h2>
<p><span style="font-size:10pt;">This general service includes three specific services: </span></p>
<h3>Excel Calculation Services (ECS)</h3>
<p style="margin-left:36pt;"><span style="font-size:10pt;">This is the core of the Excel Services. ECS performs real-time calculations on Excel workbooks in conjunction with Office Excel 2007, incorporates external data, and manages active sessions. </span></p>
<h3>Excel Web Access (EWA)</h3>
<p style="margin-left:36pt;"><span style="font-size:10pt;">A predefined Web Part that provides the display and interaction with an Excel 2007 workbook illustrated by a web browser using Dynamic Hierarchical Tag Markup Language (DHTML) and JavaScript as part of a dashboard or embedded into another Web Part page. </span></p>
<h3>Excel Web Services (EWS)</h3>
<p style="margin-left:36pt;"><span style="font-size:10pt;">This is an MOSS web service that provides an API to support the development of custom applications that incorporate an Excel 2007 workbook. </span></p>
<p><span style="font-size:10pt;">It is the combination and synergy of the MOSS services and functions that provide the wide range of capability, productivity, and collaborative environment through which a company can better manage, control, share, and report its business functions and information resources.</span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=124&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/09/27/the-moss-architecture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>

		<media:content url="http://sudev.files.wordpress.com/2008/09/092708-1553-themossarch1.png" medium="image" />

		<media:content url="http://sudev.files.wordpress.com/2008/09/092708-1553-themossarch2.png" medium="image" />

		<media:content url="http://sudev.files.wordpress.com/2008/09/092708-1553-themossarch3.png" medium="image" />

		<media:content url="http://sudev.files.wordpress.com/2008/09/092708-1553-themossarch4.png" medium="image" />
	</item>
		<item>
		<title>Why SharePoint 2007?</title>
		<link>http://sudev.wordpress.com/2008/09/24/why-sharepoint-2007/</link>
		<comments>http://sudev.wordpress.com/2008/09/24/why-sharepoint-2007/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 12:00:37 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Microsoft Technologies]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/09/24/understanding-the-business-needs-and-drivers-for-sharepoint-2007/</guid>
		<description><![CDATA[It is rare for a technology product to attract as much attention as SharePoint has in recent years. The industry has historically paid little attention to new product suites, particularly those related to web design. SharePoint products and technologies, however, have managed to excite and rejuvenate industry followers, causing them to take notice of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=5&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It is rare for a technology product to attract as much attention as SharePoint has in recent years. The industry has historically paid little attention to new product suites, particularly those related to web design. SharePoint products and technologies, however, have managed to excite and rejuvenate industry followers, causing them to take notice of the ease of use, scalability, flexibility, and powerful document management capabilities within the product. A number of organizational needs have spurred the adoption of SharePoint technologies. Some of the most commonly mentioned requirements include the following:</p>
<p><span style="font-family:Verdana;font-size:10pt;"><strong>A need for better document management than the file system can offer</strong></span>—This includes document versioning, check-out and check-in features, adding metadata to documents, and better control of document access (by using groups and granular security). The high-level need is simply to make it easier for users to find the latest version of the document or documents they need to do their jobs, and ultimately to make them more efficient in those jobs.</p>
<p><span style="font-family:Verdana;font-size:10pt;"><strong>Improved collaboration between users with a minimal learning curve</strong></span>— Although virtually everyone has a different definition of what comprises collaboration, a functional definition is a technology solution that allows users to interact efficiently with each other using software products to share documents and information in a user friendly environment. In regard to SharePoint, this typically refers to document and meeting workspaces, site collections, discussion lists, integration of instant messaging and presence information, and integration with the Office suite of applications. Integration with Office applications is a key component: Most organizations do not want to force users to learn a new set of tools to collaborate more effectively because users generally resist such requirements.</p>
<p><span style="font-family:Verdana;font-size:10pt;"><strong>A better intranet</strong></span>—Although most companies have an intranet in place, the consensus is that it is too static, that it is not user friendly, and that every change has to go through IT or the &#8220;web guy.&#8221; This level of request generally comes from a departmental manager, team lead, or project manager frustrated with their inability to publish information to a select group of users and regularly update resources their team needs to do their jobs.</p>
<p><span style="font-family:Verdana;font-size:10pt;"><strong>A centralized way to search for information</strong></span>—Rather than using the &#8220;word of mouth&#8221; search engine (that is, asking coworkers via email for a specific document), there should be an engine in place that allows the user to quickly and efficiently find particular documents. The user can search for documents that contain certain words; documents created or modified during a certain timeframe; documents authored by a specific person; or documents that meet other criteria, such as file type.</p>
<p><span style="font-family:Verdana;font-size:10pt;"><strong>Creation of a portal</strong></span>—Many definitions exist for the term portal, but a general definition that a portal is a web-enabled environment that allows Internet and, potentially, external users to access company intellectual resources and software applications. A portal typically extends standard intranet functionality by providing features such as single sign-on, powerful search tools, and access to other core company applications such as help desk, human resources software, educational resources, and other corporate information and applications.</p>
<p>SharePoint is a set of products and technologies with informative and collaborative web-based capabilities that help people create, organize, distribute, and maintain stored knowledge. SharePoint web sites and pages are commonly used to build intranet and extranet portals and team sites, as well as public-facing Internet sites.</p>
<p>SharePoint is a great platform upon which to build applications and provides many key services in the greater story of the Microsoft Application Platform. SharePoint shows great maturity in terms of its user interface, database design, and workflow and communication features. It provides a standard interface with standard navigation, enabling users to focus on tools and information, not on learning how to navigate new menu controls.</p>
<p>SharePoint helps resolve database and business logic issues by providing a powerful complement to structured data &#8211; that is, a managed environment to store unstructured data that gets the information and business rules onto the network and out of local Excel files. SharePoint takes advantage of the first workflow platform built into an operating system and makes it easy for developers and power users to use Windows Workflow Foundation (WF) to automate business processes.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=5&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/09/24/why-sharepoint-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Gas and Dust of the Lagoon Nebula</title>
		<link>http://sudev.wordpress.com/2008/07/15/gas-and-dust-of-the-lagoon-nebula/</link>
		<comments>http://sudev.wordpress.com/2008/07/15/gas-and-dust-of-the-lagoon-nebula/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 07:04:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Astronomy]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/07/15/gas-and-dust-of-the-lagoon-nebula/</guid>
		<description><![CDATA[
This beautiful cosmic cloud is a popular stop on telescopic tours of the constellation Sagittarius. Afer all I&#8217;m also Saggy only and equally handsome  .
Eighteenth century cosmic toyurist Charles Messier cataloged the bright nebula as M8, while modern day astronomers recognize the Lagoon Nebula as an active stellar nursery about 5,000 light-years distant, in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=47&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://1.bp.blogspot.com/_E3_heeJ-yBA/SJsEueI22AI/AAAAAAAAACk/2W4CiD0wRYM/s1600-h/GasNDustOfLagoonNebula.jpg"><img style="float:left;cursor:hand;margin:0 10px 10px 0;" src="http://1.bp.blogspot.com/_E3_heeJ-yBA/SJsEueI22AI/AAAAAAAAACk/2W4CiD0wRYM/s320/GasNDustOfLagoonNebula.jpg" border="0" alt="" /></a></p>
<p><strong><span style="font-weight:normal;">T</span><span style="font-weight:normal;">his beautiful cosmic cloud is a popular stop on telescopic tours of the constellation Sagittarius. Afer all I&#8217;m also Saggy only and equally handsome <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</span></strong></p>
<p>Eighteenth century cosmic toyurist Charles Messier cataloged the bright nebula as M8, while modern day astronomers recognize the Lagoon Nebula as an active stellar nursery about 5,000 light-years distant, in direction of the center of our Milky Way.</p>
<p>Courtesy : <a href="http://apod.nasa.gov/apod/"><span style="color:#000000;text-decoration:none;">http://apod.nasa.gov/apod/</span></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/47/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/47/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=47&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/07/15/gas-and-dust-of-the-lagoon-nebula/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>

		<media:content url="http://1.bp.blogspot.com/_E3_heeJ-yBA/SJsEueI22AI/AAAAAAAAACk/2W4CiD0wRYM/s320/GasNDustOfLagoonNebula.jpg" medium="image" />
	</item>
		<item>
		<title>Why Google Changed Their FavICON</title>
		<link>http://sudev.wordpress.com/2008/06/26/why-google-changed-their-favicon/</link>
		<comments>http://sudev.wordpress.com/2008/06/26/why-google-changed-their-favicon/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 11:23:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Industry News]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/06/26/why-google-changed-their-favicon/</guid>
		<description><![CDATA[You may have noticed that Google has a new favicon, the small icon you see in your browser next to the URL or in your bookmarks list.
Few days ago Google changed their favicon, from “Big G” to “small g“. It was a surprise! Why would google change the “Big G” which is recognised all over [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=46&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You may have noticed that Google has a new favicon, the small icon you see in your browser next to the URL or in your bookmarks list.</p>
<p>Few days ago <a href="http://www.google.com/">Google</a> changed their favicon, from “Big G” to “small g“. It was a surprise! Why would google change the “Big G” which is recognised all over the world!</p>
<p>Lots of questions filled my head…<br />
• Why would google change the “Big G” which is recognised all over the world and create a dip in its brand recognition.<br />
• Is this one of the google’s marketing trick to create buzz(as if they need one!)<br />
• Is it trying to re-brand? (why would they do! everything is working more than fine for them)</p>
<p>No need to ponder more&#8230; I just &#8220;googled&#8221; it and found the answer on their own <a href="http://googleblog.blogspot.com/2008/06/one-fish-two-fish-red-fish-blue-fish.html">blog</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/46/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/46/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=46&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/06/26/why-google-changed-their-favicon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>How Cloud Computing Works</title>
		<link>http://sudev.wordpress.com/2008/06/11/how-cloud-computing-works/</link>
		<comments>http://sudev.wordpress.com/2008/06/11/how-cloud-computing-works/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 14:07:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/06/11/how-cloud-computing-works/</guid>
		<description><![CDATA[Inside This Article you&#8217;ll find
1. Introduction to How Cloud Computing Works
2. Cloud Computing Architecture
3. Cloud Computing Applications and
4. Cloud Computing Concerns
read more &#124; digg story
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=45&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Inside This Article you&#8217;ll find<br />
1. Introduction to How Cloud Computing Works<br />
2. Cloud Computing Architecture<br />
3. Cloud Computing Applications and<br />
4. Cloud Computing Concerns</p>
<p><a href="http://communication.howstuffworks.com/cloud-computing.htm">read more</a> | <a href="http://digg.com/design/How_Cloud_Computing_Works">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/45/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/45/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=45&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/06/11/how-cloud-computing-works/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Ten NASA Inventions You Might Use Every Day</title>
		<link>http://sudev.wordpress.com/2008/06/11/ten-nasa-inventions-you-might-use-every-day/</link>
		<comments>http://sudev.wordpress.com/2008/06/11/ten-nasa-inventions-you-might-use-every-day/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 13:56:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/06/11/ten-nasa-inventions-you-might-use-every-day/</guid>
		<description><![CDATA[Although most people today will never set foot on the moon, everyone likely comes in contact with a NASA by-product every day. Partnering with various research teams and companies, NASA continues to spawn a vast array of new technologies and products that have improved our daily lives.
read more &#124; digg story
     [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=44&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Although most people today will never set foot on the moon, everyone likely comes in contact with a NASA by-product every day. Partnering with various research teams and companies, NASA continues to spawn a vast array of new technologies and products that have improved our daily lives.</p>
<p><a href="http://science.howstuffworks.com/ten-nasa-inventions.htm">read more</a> | <a href="http://digg.com/general_sciences/Ten_NASA_Inventions_You_Might_Use_Every_Day">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/44/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/44/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=44&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/06/11/ten-nasa-inventions-you-might-use-every-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Chips stack up in third dimension</title>
		<link>http://sudev.wordpress.com/2008/06/08/chips-stack-up-in-third-dimension/</link>
		<comments>http://sudev.wordpress.com/2008/06/08/chips-stack-up-in-third-dimension/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 06:34:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/06/08/chips-stack-up-in-third-dimension/</guid>
		<description><![CDATA[Stacks of chips, one on top of the other, will power the next generation of superfast PCs, IBM has announced. 
Laying chips vertically, instead of side by side, reduces the distance data has to travel by 1,000 times, making the chips faster and more efficient.
Big blue has said that it will start producing the compact [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=43&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Stacks of chips, one on top of the other, will power the next generation of superfast PCs, IBM has announced. </strong></p>
<p>Laying chips vertically, instead of side by side, reduces the distance data has to travel by 1,000 times, making the chips faster and more efficient.</p>
<p>Big blue has said that it will start producing the compact silicon sandwiches in 2008.</p>
<p>Chip manufacturer Intel has previously announced that it is also developing similar vertical chip technology.</p>
<div class="bo">
<p>Last year, the firm unveiled a chip with 80 processing cores and capable of more than a trillion calculations per second (teraflops) that used vertical stacking technology.</p>
<p>Other firms, such as Tru-Si, have also developed techniques for creating 3D stacked chips.</p>
<p><strong>High rise </strong></p>
<p>Today most chips are laid out side-by-side, connected by wires.</p>
<p>The new technique involves placing chips directly on top of each other, connected by tungsten filled pipes, etched through the silicon.</p>
<p> </p>
<p> </p></div>
<div class="bo">
<p>These &#8220;through-silicon vias&#8221; (TSV), as they are known, eliminate the need for wires, increasing the speed at which information can flow between chips.</p>
<p>It has taken researchers at IBM a decade to refine the precise technique for mass producing the multi-storey chips.</p>
<p>&#8220;This allows us to move 3D chips from the &#8216;lab to the fab&#8217; across a range of applications,&#8221; said Lisa Su, vice president, semiconductor research and development center at IBM.</p>
<p>The first application will be in wireless communications chips. Using TSV will increase the efficiency of the chips by up to 40%, the firm says.</p>
<p><strong>Speed boost </strong></p>
<p>IBM is also exploring use of the technique in their multi-core chips.</p>
<p>As more and more cores are added to chips it becomes increasingly difficult to deliver uniform power to each one. By stacking them vertically and reducing the length of the connections between them, IBM hopes to overcome this problem,</p>
<p>Using these high-rise multi-core chips should also increase processor speeds and reduce power consumption.</p>
<p>Advantages like these also make 3D chips attractive for use in supercomputers.</p>
<p>IBM says it is developing the technology for use in the current fastest supercomputer in the world, Blue Gene/L.</p>
<p>The ultra powerful number cruncher, installed at the US Department of Energy&#8217;s Lawrence Livermore National Laboratory (LLNL) is already capable of 280.6 trillions calculations per second.</p>
<p>The 3D stacked chips would allow a &#8220;new generation of supercomputers&#8221;, IBM said.</p>
<p>The first chips will be available by the end of 2007 with full scale production expected to begin in 2008.</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p></div>
<div class="footer">Story from BBC NEWS:<br />
<a href="http://news.bbc.co.uk/go/pr/fr/-/1/hi/technology/6548365.stm">http://news.bbc.co.uk/go/pr/fr/-/1/hi/technology/6548365.stm</a></div>
<div class="footer"> </div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/43/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/43/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=43&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/06/08/chips-stack-up-in-third-dimension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>The free online SQL Formatter &#8212; SQLinForm</title>
		<link>http://sudev.wordpress.com/2008/06/06/the-free-online-sql-formatter-sqlinform/</link>
		<comments>http://sudev.wordpress.com/2008/06/06/the-free-online-sql-formatter-sqlinform/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 10:09:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[SQL Utilities]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/06/06/the-free-online-sql-formatter-sqlinform/</guid>
		<description><![CDATA[SQLinForm is an automatic SQL code formatter for all major databases ( ORACLE, SQL Server, DB2 / UDB, Sybase, Informix, PostgreSQL, MySQL etc) with many formatting options . 

No installation needed. 
No database driver necessary. 
Even incomplete SQL statements or SQL statements with syntax errors are formatted
Run it out of your browser
It is secure. No [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=42&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span lang="en-gb"><a href="http://www.sqlinform.com/">SQLinForm</a> is an automatic SQL code formatter for all major databases ( ORACLE, SQL Server, DB2 / UDB, Sybase, Informix, PostgreSQL, MySQL etc) with many formatting options . </span></p>
<ul>
<li><span lang="en-gb">No installation needed. </span></li>
<li><span lang="en-gb">No database driver necessary. </span></li>
<li><span lang="en-gb">Even incomplete SQL statements or SQL statements with syntax errors are formatted</span></li>
<li><span lang="en-gb">Run it out of your browser</span></li>
<li><span lang="en-gb">It is secure. No SQL statement is transferred from the applet </span>over the internet</li>
<li>Written for <strong>Java</strong> and<strong> .NET</strong> environment</li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/42/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/42/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=42&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/06/06/the-free-online-sql-formatter-sqlinform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Shell</title>
		<link>http://sudev.wordpress.com/2008/06/05/google-shell/</link>
		<comments>http://sudev.wordpress.com/2008/06/05/google-shell/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 06:22:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/06/05/google-shell/</guid>
		<description><![CDATA[One more interesting stuff for Google Lovers. It&#8217;s Google shell (goosh, it&#8217;s unofficial though). It&#8217;s again a cool and simple thing developed for Google Lovers like me. Though you can wonder what is the need of such a thing, but hey, you never know where it can be used. I like the web, images and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=41&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>One more interesting stuff for Google Lovers. It&#8217;s Google shell (goosh, it&#8217;s unofficial though). It&#8217;s again a cool and simple thing developed for Google Lovers like me. Though you can wonder what is the need of such a thing, but hey, you never know where it can be used. I like the web, images and video searching options. And surprisingly, it&#8217;s pretty damn fast, as if we are really using a shell. Check out this link.</p>
<p><span style="font-family:verdana, sans-serif;color:#000000;"> </span></p>
<p><a href="http://www.goosh.org/"><span style="font-family:verdana, sans-serif;color:#000000;text-decoration:underline;">h</span><span><span style="color:#000000;font-family:verdana;text-decoration:underline;">ttp://www.goosh.org/</span></span></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/41/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/41/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=41&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/06/05/google-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft warns Windows users about Safari security flaw</title>
		<link>http://sudev.wordpress.com/2008/06/04/microsoft-warns-windows-users-about-safari-security-flaw/</link>
		<comments>http://sudev.wordpress.com/2008/06/04/microsoft-warns-windows-users-about-safari-security-flaw/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 05:00:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Industry News]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/06/04/microsoft-warns-windows-users-about-safari-security-flaw/</guid>
		<description><![CDATA[Microsoft has released details on a flaw in the Safari browser that, coupled with the correct Windows or Internet Explorer vulnerabilities, could be used to execute malware. Changing the default download location on Safari is enough for a workaround.
read more &#124; digg story
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=40&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Microsoft has released details on a flaw in the Safari browser that, coupled with the correct Windows or Internet Explorer vulnerabilities, could be used to execute malware. Changing the default download location on Safari is enough for a workaround.</p>
<p><a href="http://arstechnica.com/journals/microsoft.ars/2008/06/03/microsoft-warns-windows-users-about-safari-security-flaw">read more</a> | <a href="http://digg.com/security/Microsoft_warns_Windows_users_about_Safari_security_flaw">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/40/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/40/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=40&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/06/04/microsoft-warns-windows-users-about-safari-security-flaw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating Custom SharePoint Timer Jobs</title>
		<link>http://sudev.wordpress.com/2008/06/03/creating-custom-sharepoint-timer-jobs/</link>
		<comments>http://sudev.wordpress.com/2008/06/03/creating-custom-sharepoint-timer-jobs/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 13:46:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[.Net Programming]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Microsoft Technologies]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/06/03/creating-custom-sharepoint-timer-jobs/</guid>
		<description><![CDATA[In previous versions of SharePoint (or other platforms), if you had some task you wanted to perform on a scheduled basis, you&#8217;d have to either create a console EXE and schedule it to run via Windows Task Scheduler (ala AT.EXE) or create a Windows Service that went to sleep for a period of time. In [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=39&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In previous versions of SharePoint (or other platforms), if you had some task you wanted to perform on a scheduled basis, you&#8217;d have to either create a console EXE and schedule it to run via Windows Task Scheduler (ala AT.EXE) or create a Windows Service that went to sleep for a period of time. In order to install (and maintain) these tasks, you had to have console access to your production SharePoint (or other app) servers&#8230; something IT or admins wouldn&#8217;t easily hand out.</p>
<p>Addressing this issue, Microsoft has added something called <strong>timer jobs</strong> to Microsoft Office SharePoint Server (MOSS) 2007. Microsoft uses timer jobs to do things like dead web cleanup (purging unused sites from site collections) among others. <em>To see what other timer jobs are out there, from <strong>Central Administration</strong>, click <strong>Operations</strong> and then <strong>Timer Job Definitions</strong>.</em> Not only does Microsoft use timer jobs in MOSS, but you can create your own custom timer jobs to do your own scheduled tasks. What&#8217;s nice about this is once your timer job has been installed (something you can easily do with a solution &amp; a feature), you can view it&#8217;s status through Central Administration and even disable/enable it&#8230; all without console access to your production servers! Another cool thing is that when your job runs, MOSS passes it the GUID of the content database for the site the job is registered with. You can use this GUID to obtain a reference to a content database, then a site collection, and finally a site within the collection (SPWeb).</p>
<p>How do you build one? Well, unfortunately the documentation is lacking here&#8230; there isn&#8217;t a single article in the SDK talking about creating custom timer jobs and the necessary objects aren&#8217;t well documented either.</p>
<p>MVP Andrew Connel has described the Custom Timer Jobs on SharePoint well in depth on his blog <a href="http://www.andrewconnell.com/blog/articles/CreatingCustomSharePointTimerJobs.aspx">http://www.andrewconnell.com/blog/articles/CreatingCustomSharePointTimerJobs.aspx</a>. Awsome functionality. Thanks Andrew.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/39/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/39/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=39&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/06/03/creating-custom-sharepoint-timer-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Incredible pictures of one of Earth&#8217;s last uncontacted tribe</title>
		<link>http://sudev.wordpress.com/2008/06/03/incredible-pictures-of-one-of-earths-last-uncontacted-tribe/</link>
		<comments>http://sudev.wordpress.com/2008/06/03/incredible-pictures-of-one-of-earths-last-uncontacted-tribe/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 04:58:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Offbit News]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/06/03/incredible-pictures-of-one-of-earths-last-uncontacted-tribe/</guid>
		<description><![CDATA[They are members of one of Earth&#8217;s last uncontacted tribes, who live along the Brazilian-Peruvian frontier, and are thought never to have had any contact with the outside world.
read more &#124; digg story
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=38&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>They are members of one of Earth&#8217;s last uncontacted tribes, who live along the Brazilian-Peruvian frontier, and are thought never to have had any contact with the outside world.</p>
<p><a href="http://www.dailymail.co.uk/sciencetech/article-1022822/Incredible-pictures-Earths-uncontacted-tribes-firing-bows-arrows.html">read more</a> | <a href="http://digg.com/world_news/Incredible_pictures_of_one_of_Earth_s_last_uncontacted_tribe_2">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/38/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/38/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=38&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/06/03/incredible-pictures-of-one-of-earths-last-uncontacted-tribe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Hitachi Maxell claims new Li-ion battery with 20x the power</title>
		<link>http://sudev.wordpress.com/2008/06/02/hitachi-maxell-claims-new-li-ion-battery-with-20x-the-power/</link>
		<comments>http://sudev.wordpress.com/2008/06/02/hitachi-maxell-claims-new-li-ion-battery-with-20x-the-power/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 05:45:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Industry News]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/06/02/hitachi-maxell-claims-new-li-ion-battery-with-20x-the-power/</guid>
		<description><![CDATA[Hitachi Maxell and a number of universities and firms in Japan have created a design for a Li-Ion battery that will last 20x longer than current unitsElectric cars with 2000miles range on single charge, cell phones requiring outlet once in a month, laptops with batteries for 1 week. Lets hope technology finds its way to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=37&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hitachi Maxell and a number of universities and firms in Japan have created a design for a Li-Ion battery that will last 20x longer than current unitsElectric cars with 2000miles range on single charge, cell phones requiring outlet once in a month, laptops with batteries for 1 week. Lets hope technology finds its way to life sooner than later.</p>
<p><a href="http://www.engadget.com/2008/06/02/hitachi-maxell-claims-new-li-ion-battery-with-20x-the-power/">read more</a> | <a href="http://digg.com/tech_news/Hitachi_Maxell_claims_new_Li_ion_battery_with_20x_the_power">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/37/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/37/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=37&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/06/02/hitachi-maxell-claims-new-li-ion-battery-with-20x-the-power/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows 7 demo: all multitouch and no meat</title>
		<link>http://sudev.wordpress.com/2008/05/29/windows-7-demo-all-multitouch-and-no-meat/</link>
		<comments>http://sudev.wordpress.com/2008/05/29/windows-7-demo-all-multitouch-and-no-meat/#comments</comments>
		<pubDate>Thu, 29 May 2008 07:45:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Microsoft Technologies]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/29/windows-7-demo-all-multitouch-and-no-meat/</guid>
		<description><![CDATA[The first public demonstration of Windows 7 was made at the D6 conference, showing off Windows 7&#8217;s multitouch features. Notably absent from the demo was anything new.
read more &#124; digg story
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=36&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The first public demonstration of Windows 7 was made at the D6 conference, showing off Windows 7&#8217;s multitouch features. Notably absent from the demo was anything new.</p>
<p><a href="http://arstechnica.com/news.ars/post/20080528-windows-7-demo-all-multitouch-and-no-meat.html">read more</a> | <a href="http://digg.com/microsoft/Windows_7_demo_all_multitouch_and_no_meat">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/36/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/36/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=36&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/29/windows-7-demo-all-multitouch-and-no-meat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Comma separated list of values of single Database table field</title>
		<link>http://sudev.wordpress.com/2008/05/29/comma-separated-list-of-values-of-single-database-table-field/</link>
		<comments>http://sudev.wordpress.com/2008/05/29/comma-separated-list-of-values-of-single-database-table-field/#comments</comments>
		<pubDate>Thu, 29 May 2008 05:16:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL Problems]]></category>
		<category><![CDATA[SQL Tricks & Tips]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/29/comma-separated-list-of-values-of-single-database-table-field/</guid>
		<description><![CDATA[Many times you need to create a comma seperated list of values in a table. Here is a line of T-SQL solution to get comma separated list of values of single field of a database table.

DECLARE @commaSeparatedVal AS VARCHAR(MAX);
SELECT @commaSeparatedVal = ISNULL(@commaSeparatedVal +',','') + CONVERT(VARCHAR,[SKU]) 
FROM PRODUCT;
PRINT @commaSeparatedVal;

 
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=35&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Many times you need to create a comma seperated list of values in a table. Here is a line of T-SQL solution to get comma separated list of values of single field of a database table.</p>
<pre style="padding-left:30px;">
<div style="padding-left:30px;"><span style="font-family:'courier new', monospace;">DECLARE @commaSeparatedVal AS VARCHAR(MAX);</span></div>
<div style="padding-left:30px;">SELECT @commaSeparatedVal = ISNULL(@commaSeparatedVal +',','') + CONVERT(VARCHAR,[SKU]) </div>
<div style="padding-left:60px;">FROM PRODUCT;</div>
<div style="padding-left:30px;">PRINT @commaSeparatedVal;</div>

 </pre>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/35/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/35/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=35&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/29/comma-separated-list-of-values-of-single-database-table-field/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>New Google Talk in Lab</title>
		<link>http://sudev.wordpress.com/2008/05/28/new-google-talk-in-lab/</link>
		<comments>http://sudev.wordpress.com/2008/05/28/new-google-talk-in-lab/#comments</comments>
		<pubDate>Wed, 28 May 2008 10:36:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Industry News]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/28/new-google-talk-in-lab/</guid>
		<description><![CDATA[Google Talk, Labs Edition is an experimental release of the Google  Talk client. It has many of the same great features as the Google Talk  Gadget, including instant messaging, emoticons, and group chat. Google  Talk, Labs Edition also comes with new desktop notifications from  Calendar, Orkut, and Gmail. You can download it from
http://www.google.com/talk/labsedition/.
browse discussion on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=34&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Google Talk, Labs Edition is an experimental release of the Google  Talk client. It has many of the same great features as the Google Talk  Gadget, including instant messaging, emoticons, and group chat. Google  Talk, Labs Edition also comes with new desktop notifications from  Calendar, Orkut, and Gmail. You can download it from</p>
<p><a rel="nofollow" href="http://www.google.com/talk/labsedition/" target="_blank">http://www.google.com/talk/labsedition/</a>.</p>
<p>browse discussion on <a href="http://groups.google.com/group/google-talk-labs-edition-discussion-group/">http://groups.google.com/group/google-talk-labs-edition-discussion-group/</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=34&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/28/new-google-talk-in-lab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Importance of !important in CSS</title>
		<link>http://sudev.wordpress.com/2008/05/27/importance-of-important-in-css/</link>
		<comments>http://sudev.wordpress.com/2008/05/27/importance-of-important-in-css/#comments</comments>
		<pubDate>Tue, 27 May 2008 05:12:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[DHTML]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/27/importance-of-important-in-css/</guid>
		<description><![CDATA[Do you know What does !important mean in CSS?, an &#8220;!important&#8221; declaration (the keywords &#8220;!&#8221; and &#8220;important&#8221; follow the declaration) this takes high precedence over a normal declaration. And can be framed in this way, this means that the styles are applied in order as they are read by the browser. 
 
CSS it tries [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=33&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="font-family:verdana;">Do you know What does <strong>!important</strong> mean in CSS?, an <strong>&#8220;!important&#8221;</strong> declaration (the keywords <strong>&#8220;!&#8221;</strong> and <strong>&#8220;important&#8221;</strong> follow the declaration) this takes high precedence over a normal declaration. And can be framed in this way, this means that the styles are applied in order as they are read by the browser. </span></p>
<p><span style="font-family:verdana;"> </span></p>
<p><span style="font-family:verdana;">CSS it tries to create a balance of power between author and user style sheets. By default, rules in an author&#8217;s style sheet override those in a user&#8217;s style sheet. <strong>But in CSS1, this is in other way round &#8211; Author &#8220;!important&#8221; rules took precedence over User &#8220;!important&#8221; rules.</strong> </span></p>
<div class="fullpost"><span style="font-family:verdana;"><strong>For Example:</strong><br />
<strong>User&#8217;s Style Sheet:</strong> </span></div>
<div class="fullpost">
<div style="font-size:8pt;overflow:auto;width:97.5%;cursor:text;line-height:12pt;">
<div style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;">
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;"> <span style="font-family:verdana;"><span style="color:#606060;">   1:</span> <span style="color:#006080;">&lt;</span><span style="color:#0000ff;">style</span><span style="color:#006080;">&gt;</span> </span></pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;"> <span style="font-family:verdana;"><span style="color:#606060;">   2:</span>   <span style="color:#0000ff;">p</span>{<span style="color:#0000ff;">font-size</span>: 2em <span style="color:#006080;">!important;</span>} </span></pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;"> <span style="font-family:verdana;"><span style="color:#606060;">   3:</span>   <span style="color:#0000ff;">p</span>{<span style="color:#0000ff;">font-style</span>: <span style="color:#006080;">italic;</span>} </span></pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;"> <span style="font-family:verdana;"><span style="color:#606060;">   4:</span> <span style="color:#006080;">&lt;</span>/<span style="color:#0000ff;">style</span><span style="color:#006080;">&gt;</span></span></pre>
</div>
</div>
</div>
<div class="fullpost"><span style="font-family:verdana;"><strong>Author&#8217;s Style Sheet: </strong><br />
</span></div>
<div class="fullpost">
<div style="font-size:8pt;overflow:auto;width:97.5%;cursor:text;line-height:12pt;">
<div style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;">
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;"> <span style="font-family:verdana;"><span style="color:#606060;">   1:</span> <span style="color:#006080;">&lt;</span><span style="color:#0000ff;">style</span><span style="color:#006080;">&gt;</span> </span></pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;"> <span style="font-family:verdana;"><span style="color:#606060;">   2:</span>   <span style="color:#0000ff;">p</span>{<span style="color:#0000ff;">font-size</span>: <span style="color:#006080;">3em;</span>} </span></pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;"> <span style="font-family:verdana;"><span style="color:#606060;">   3:</span>   <span style="color:#0000ff;">p</span>{<span style="color:#0000ff;">font-style</span>: <span style="color:#006080;">normal;</span>} </span></pre>
<pre style="font-size:8pt;overflow:visible;width:100%;color:black;line-height:12pt;"> <span style="font-family:verdana;"><span style="color:#606060;">   4:</span> <span style="color:#006080;">&lt;</span>/<span style="color:#0000ff;">style</span><span style="color:#006080;">&gt;</span> </span></pre>
</div>
</div>
</div>
<div class="fullpost"><span style="font-family:verdana;">If you see in the above instance, the first rule in the User&#8217;s Style Sheet has &#8220;!important&#8221; declaration, which will overrides the first rule in the Author&#8217;s Style Sheet. And if you observe for the second rule in User&#8217;s Style Sheet it does not contain &#8220;!important&#8221; so this will be ruled out because here second rule in the Author&#8217;s Style Sheet has got high preference so the HTML will render by taking size as &#8220;p{font-style: normal;}&#8221;  </p>
<p><span style="font-family:verdana;">If you would like to know more on this, then check with the <strong>w3</strong> site: </span><a title="w3.org" href="http://www.w3.org/TR/REC-CSS2/cascade.html"><strong><span style="font-family:verdana;">w3.org</span></strong></a><span style="font-family:verdana;"> and move to the section called &#8220;<strong>6.4.2 !important rules</strong>&#8220;</span></p>
<p></span></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=33&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/27/importance-of-important-in-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Download A Firefox Version that speaks your language</title>
		<link>http://sudev.wordpress.com/2008/05/26/download-a-firefox-version-that-speaks-your-language/</link>
		<comments>http://sudev.wordpress.com/2008/05/26/download-a-firefox-version-that-speaks-your-language/#comments</comments>
		<pubDate>Mon, 26 May 2008 05:38:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Industry News]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/26/download-a-firefox-version-that-speaks-your-language/</guid>
		<description><![CDATA[The award-winning open source Web browser Firefox 3 Release Candidate 1 is available in more than 45 languages (including Gujarati and Punjabi) as a public preview release intended for developer testing and community feedback. It includes new features as well as dramatic improvements to performance, memory usage and speed.

Check out http://www.mozilla.com/en-US/firefox/all-rc.html for more information and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=32&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="font-family:verdana;">The award-winning open source Web browser </span><span style="font-family:verdana;">Firefox 3 Release Candidate 1 is available in more than 45 languages (including Gujarati and Punjabi) as a public preview release intended for developer testing and community feedback. It includes <a href="http://www.mozilla.com/en-US/firefox/3.0rc1/releasenotes/#whatsnew">new features</a> as well as <a href="http://www.mozilla.com/en-US/firefox/3.0rc1/releasenotes/#performance">dramatic improvements</a> to performance, memory usage and speed.<br />
</span></p>
<p><span style="font-family:verdana;">Check out <a href="http://www.mozilla.com/en-US/firefox/all-rc.html">http://www.mozilla.com/en-US/firefox/all-rc.html</a> for more information and download Firefox 3 RC1.</span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/32/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/32/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=32&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/26/download-a-firefox-version-that-speaks-your-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Disney builds virtual bridge for interactive games</title>
		<link>http://sudev.wordpress.com/2008/05/26/disney-builds-virtual-bridge-for-interactive-games/</link>
		<comments>http://sudev.wordpress.com/2008/05/26/disney-builds-virtual-bridge-for-interactive-games/#comments</comments>
		<pubDate>Mon, 26 May 2008 05:03:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/26/disney-builds-virtual-bridge-for-interactive-games/</guid>
		<description><![CDATA[Disney is bridging the gap  between gaming and virtual worlds.   Disney Interactive Studios on Thursday formally launched  DGamer, a free avatar-based community for U.S. buyers of games  the company&#8230;
read more &#124; digg story
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=31&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Disney is bridging the gap  between gaming and virtual worlds.   Disney Interactive Studios on Thursday formally launched  DGamer, a free avatar-based community for U.S. buyers of games  the company&#8230;</p>
<p><a href="http://uk.reuters.com/article/industryNews/idUKN1534922120080516?rpc=64">read more</a> | <a href="http://digg.com/world_news/Disney_builds_virtual_bridge_for_interactive_games">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=31&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/26/disney-builds-virtual-bridge-for-interactive-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>The &quot;Hello World&quot; Program, in 366 Programming Languages!</title>
		<link>http://sudev.wordpress.com/2008/05/23/the-hello-world-program-in-366-programming-languages/</link>
		<comments>http://sudev.wordpress.com/2008/05/23/the-hello-world-program-in-366-programming-languages/#comments</comments>
		<pubDate>Fri, 23 May 2008 04:45:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/23/the-hello-world-program-in-366-programming-languages/</guid>
		<description><![CDATA[&#8220;Hello World&#8221; is the traditional first program you write when learning a new language, first appearing in K&#38;R&#8217;s &#8220;The C Programming Language&#8221; book in 1978.  Since then it has been implemented in almost every programming language on the planet.  This collection has it in 366 coding languages and 58 human ones! Is your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=30&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&#8220;Hello World&#8221; is the traditional first program you write when learning a new language, first appearing in K&amp;R&#8217;s &#8220;The C Programming Language&#8221; book in 1978.  Since then it has been implemented in almost every programming language on the planet.  This collection has it in 366 coding languages and 58 human ones! Is your favourite here?</p>
<p><a href="http://www.roesler-ac.de/wolfram/hello.htm">read more</a> | <a href="http://digg.com/programming/The_Hello_World_Program_in_366_Programming_Languages">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=30&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/23/the-hello-world-program-in-366-programming-languages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>A Blog From Google Docs</title>
		<link>http://sudev.wordpress.com/2008/05/22/a-blog-from-google-docs/</link>
		<comments>http://sudev.wordpress.com/2008/05/22/a-blog-from-google-docs/#comments</comments>
		<pubDate>Thu, 22 May 2008 11:16:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/22/a-blog-from-google-docs/</guid>
		<description><![CDATA[I&#8217;m just exploring this exciting feature from Google Docs. You can directly publish your online documents as blogs in simple steps. It is as easy as 1-2-3.
One more reason to love Google.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=29&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m just exploring this exciting feature from Google Docs. You can directly publish your online documents as blogs in simple steps. It is as easy as 1-2-3.</p>
<p>One more reason to love Google.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=29&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/22/a-blog-from-google-docs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>ODF Wins the Office Document Format War</title>
		<link>http://sudev.wordpress.com/2008/05/22/odf-wins-the-office-document-format-war/</link>
		<comments>http://sudev.wordpress.com/2008/05/22/odf-wins-the-office-document-format-war/#comments</comments>
		<pubDate>Thu, 22 May 2008 04:52:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Industry News]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/22/odf-wins-the-office-document-format-war/</guid>
		<description><![CDATA[Office 2007 Service Pack 2 will bring improved XML support to the office suite &#8212; but it will be to ODF and not Microsoft&#8217;s own format.
read more &#124; digg story
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=28&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Office 2007 Service Pack 2 will bring improved XML support to the office suite &#8212; but it will be to ODF and not Microsoft&#8217;s own format.</p>
<p><a href="http://www.pcworld.com/article/id,146162/article.html">read more</a> | <a href="http://digg.com/microsoft/ODF_Wins_the_Office_Document_Format_War">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=28&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/22/odf-wins-the-office-document-format-war/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>China Earthquake buried 32 sources of radiation</title>
		<link>http://sudev.wordpress.com/2008/05/21/china-earthquake-buried-32-sources-of-radiation/</link>
		<comments>http://sudev.wordpress.com/2008/05/21/china-earthquake-buried-32-sources-of-radiation/#comments</comments>
		<pubDate>Wed, 21 May 2008 05:39:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/21/china-earthquake-buried-32-sources-of-radiation/</guid>
		<description><![CDATA[More than 30 sources of radiation were buried by debris from the massive earthquake in central China last week and all have either been recovered or safely cordoned off, state media reported Tuesday. A French nuclear expert said the radioactive sources likely came from materials used in hospitals, factories or in research, not for weapons.
read [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=27&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>More than 30 sources of radiation were buried by debris from the massive earthquake in central China last week and all have either been recovered or safely cordoned off, state media reported Tuesday. A French nuclear expert said the radioactive sources likely came from materials used in hospitals, factories or in research, not for weapons.</p>
<p><a href="http://www.huffingtonpost.com/2008/05/20/china-earthquake-buried-3_n_102612.html">read more</a> | <a href="http://digg.com/world_news/China_Earthquake_buried_32_sources_of_radiation">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=27&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/21/china-earthquake-buried-32-sources-of-radiation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>The Google File System &#8211; Google&#8217;s core storage platform</title>
		<link>http://sudev.wordpress.com/2008/05/20/the-google-file-system-googles-core-storage-platform/</link>
		<comments>http://sudev.wordpress.com/2008/05/20/the-google-file-system-googles-core-storage-platform/#comments</comments>
		<pubDate>Tue, 20 May 2008 06:50:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/20/the-google-file-system-googles-core-storage-platform/</guid>
		<description><![CDATA[Google File System &#8211; large distributed log structured file system in which they throw in a lot of data. Reliable scalable storage is a core need of any application. GFS is Google&#8217;s core storage platform. Google File System (GFS) is a proprietary distributed file system developed by Google for its own use. Its point is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=26&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Google File System</strong> &#8211; large distributed log structured file system in which they throw in a lot of data. Reliable scalable storage is a core need of any application. GFS is Google&#8217;s core storage platform. Google File System (GFS) is a proprietary distributed file system developed by Google for its own use. Its point is both to assure reliablity by using redundant copies and to allow individual most used data to selectively receive more resources (more dedicated hardware or/and redundant copies). GFS is optimized for Google&#8217;s core data storage needs, web searching, which can generate enormous amounts of data that needs to be retained; Google File System grew out of an earlier Google effort, &#8220;BigFiles&#8221;, developed by Larry Page and Sergey Brin in the early days of Google, while it was still located in Stanford. The data is stored persistently, in very large, multiple gigabyte-sized files (around 100GB) which are only extremely rarely deleted, overwritten, or shrunk; files are usually appended to or read. It is also designed and optimized to run on Google&#8217;s computing clusters, the nodes of which consist of cheap, &#8220;commodity&#8221; computers, which means precautions must be taken against the high failure rate of individual nodes and the subsequent data loss. Other design decisions select for high data throughputs, even when it comes at the cost of latency.</p>
<p><a href="http://labs.google.com/papers/gfs.html">read more</a> | <a href="http://digg.com/software/The_Google_File_System_Google_s_core_storage_platform">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=26&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/20/the-google-file-system-googles-core-storage-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Bigtable: A Distributed Storage System for Structured Data</title>
		<link>http://sudev.wordpress.com/2008/05/20/bigtable-a-distributed-storage-system-for-structured-data/</link>
		<comments>http://sudev.wordpress.com/2008/05/20/bigtable-a-distributed-storage-system-for-structured-data/#comments</comments>
		<pubDate>Tue, 20 May 2008 06:00:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Bigtable]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/20/bigtable-a-distributed-storage-system-for-structured-data/</guid>
		<description><![CDATA[Bigtable is a distributed storage system for managing structured data that is designed to scale to a very large size: petabytes of data across thousands of commodity servers. Most of the projects at Google store data in Bigtable, including web indexing, Google Earth, and Google Finance.
read more &#124; digg story
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=25&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Bigtable is a distributed storage system for managing structured data that is designed to scale to a very large size: petabytes of data across thousands of commodity servers. Most of the projects at Google store data in Bigtable, including web indexing, Google Earth, and Google Finance.</p>
<p><a href="http://labs.google.com/papers/bigtable.html">read more</a> | <a href="http://digg.com/software/Bigtable_A_Distributed_Storage_System_for_Structured_Data">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=25&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/20/bigtable-a-distributed-storage-system-for-structured-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Ten technology trends that will shape 2008</title>
		<link>http://sudev.wordpress.com/2008/05/20/ten-technology-trends-that-will-shape-2008/</link>
		<comments>http://sudev.wordpress.com/2008/05/20/ten-technology-trends-that-will-shape-2008/#comments</comments>
		<pubDate>Tue, 20 May 2008 04:58:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Emerging Technologies]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/20/ten-technology-trends-that-will-shape-2008/</guid>
		<description><![CDATA[
Grid computing
India is the fastest adopter of grid computing in the world, according to Oracle’s Grid Index IV. Oracle should know, since it has 70 customers in India using its grid solutions.
Grid computing is applying the resources of many computers in a network to a single problem at the same time. It is not a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=24&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div class="Section1">
<p class="MsoNormal"><strong><span style="text-decoration:underline;"><span style="font-family:Verdana,sans-serif;">Grid computing</span></span></strong></p>
<p class="MsoNormal"><span style="font-family:Verdana,sans-serif;">India is the fastest adopter of grid computing in the world, according to Oracle’s Grid Index IV. Oracle should know, since it has 70 customers in India using its grid solutions.</span></p>
<p>Grid computing is applying the resources of many computers in a network to a single problem at the same time. It is not a new phenomenon. Research organisations, government agencies and universities have been using this concept for years. What’s new is that Indian corporates are now latching on to the concept.</p>
<p>Some of the enterprises using grid computing in India include the Gujarat Electricity Board, Saraswat Bank, National Stock Exchange, Indian Railway Catering &amp; Tourism Corporation, General Insurance Company, Syndicate Bank, Ashok Leyland, Maruti Suzuki India Ltd and Municipal Corporation of Hyderabad.</p>
<p>Last year saw two major developments that will prove important for the adoption and acceptance of grid computing in India. First was the Computational Research Laboratories (CRL) — a subsidiary of Tata Sons —developing Eka, the world’s fourth fastest computer and two the Centre for Development of Advanced Computing’s (CDAC’s) Garuda finally got off the ground.</p>
<p>For all those chief technology officers who are constantly looking at reducing their hardware costs Grid Computing may provide an answer, say analysts. Traditionally, companies bought hardware to support certain applications. However, these applications have peak processing hours and slack time. Grid computing takes advantage of the slack time and transfers the processing loads on systems that are being underutilised.</p>
<p>“Indian businesses are going global. As part of their growth strategy, they have to take risks and decisions – whether it means investing in people or technology. Organisations from sectors like telecom, financial services, travel, construction &amp; engineering, media and utilities are convinced of the benefits of grid computing because it allows for superior scalability and better return on investment,” explains SPS Grover, vice-president, Technology Business Unit, Oracle India.</p>
<p><strong><span style="text-decoration:underline;"><span style="font-family:Verdana,sans-serif;">Sunny side up</span></span></strong></p>
<p class="MsoNormal"><span style="font-family:Verdana,sans-serif;">Photovoltaics (PV) promise to remain a hot topic in 2008. PV is the creation of electricity from a light source – sunlight, for instance.</span></p>
<p>A basic photovoltaic, also known as a solar cell, is made of materials like silicon and thin-filaments, commonly used in the micro-electronics industry. These are capital-intensive projects. PV modules connect many solar cells together and mount them on a frame or platform. Their margins are better.</p>
<p>India is becoming an attractive solar market, and IT firms like Moser Baer, Signet Solar and Webel Solar are confident of the growth. The recent semiconductor policy sops and the government policy for “off-grid” electrification, are added incentives.</p>
<p>Electricity and social development go hand in hand. Rural areas of India are so far-flung that in some cases the small population and high cost of laying down power lines may not make it a viable proposition.</p>
<p>Conventional generator sets too may not be feasible due to recurring maintenance problems. The best solution under the circumstances is solar PV-based systems to generate power, run irrigation sets, heat water and lighting up homes and streetlights.</p>
<p>India offers 100 per cent subsidy on solar PV systems for remote village electrification; and for villages with electricity, the government offers 60 per cent subsidy. Moser Baer’s $880 million (around Rs 3,500 crore) 8-year sourcing tie-up with Norway based, REC Group furthers this line of thinking.</p>
<p>The deal could get Moser Baer Photo Voltaic (MBPV) around $1 billion in revenues over the period of the contract. The global photovoltaic market is expected to grow over six times to $40 billion by 2010.</p>
<p><strong><span style="text-decoration:underline;"><span style="font-family:Verdana,sans-serif;">Software on demand</span></span></strong></p>
<p class="MsoNormal"><span style="font-family:Verdana,sans-serif;">Software-as-a-service or (Saas) is a trend that will see considerable uptake among business users, say analysts. Saas is a software application delivery model, wherein the user pays according to the usage rather than for owning the software (license fee).</span></p>
<p>With close to eight million small and medium enterprises (SMEs) in India, Saas providers can start counting cash in 2008. Ravi Shekhar Pandey, research manager, Springboard Research, feels that the year 2007 was of creating awareness among the users and 2008 will finally see Saas’ adoption increasing.</p>
<p>“Earlier Salesforce.com was the only vendor that was propagating the concept in India. But now even traditional software vendors like Microsoft, Oracle and SAP have introduced Saas in their suite of offerings,” he adds.</p>
<p>“In 2006-07, 79 per cent of the companies that we spoke to were aware of the concept but in 2007 it has increased to 90 per cent,” Pandey adds.</p>
<p><strong><span style="text-decoration:underline;"><span style="font-family:Verdana,sans-serif;">Enterprise mobility</span></span></strong></p>
<p class="MsoNormal"><span style="font-family:Verdana,sans-serif;">The concept of anywhere-anytime connectivity has changed the way enterprises do business today. Connectivity is not just restricted to the globetrotting top executives but also to the sales team on the field. IDC projects that by 2009, there will be around 880 million mobile workers worldwide demonstrating that mobility is going mainstream.</span></p>
<p>Companies like Sun Pharmaceuticals, Dr Reddy’s and Parryware, a division of EID Parry (India) are some examples where handhelds have been used to automate the sales force for real-time information.</p>
<p>Rajiv Sehgal, head (Value Added Services), Airtel Enterprise Services in a seminar on enterprise mobility said, “Enterprises are implementing mobile solutions to realise benefits in terms of product enhancement.” Analysts predict that banking and financial segment is one segment that has a huge opportunity in going mobile.</p>
<p><strong><span style="text-decoration:underline;"><span style="font-family:Verdana,sans-serif;">Go mobile and entertain</span></span></strong></p>
<p class="MsoNormal"><span style="font-family:Verdana,sans-serif;">Entertainment devices will abound this year. They will be with you on the move (your laptops, PDAs and cellphones), at airports, your workplace, home and more importantly, in your pockets. TVs (both LCDs and Plasmas) will becomes larger and cheaper, and so will high-end mobile screens, offering services like TV on mobile, gaming, social networking, etc.</span></p>
<p>Mobile TV — which enables TV services on handhelds such as mobiles, handheld TVs, car TV, GPS terminals, game devices, laptop PCs, and other portable devices — is also closer to seeing the light of day in India. It’s an important development given that there are almost 225 million mobiles in the country, of which around 30-40 per cent are TV-capable. Besides, it will help increase the average realisation per user (ARPU) for telecom operators.</p>
<p>The Telecom Regulatory Authority of India (Trai) has already initiated the process, and given its recommendations on January 3 based on the feedback it received from around 30 telecom players, broadcasters, technology providers and direct-to-home (DTH) players in September 2007.</p>
<p>The world over, a number of mobile operators have conducted successful mobile TV field trials. Mobile broadcasting commercial services have been introduced in countries like Korea, the US, Finland, and Germany.</p>
<p>In India too, Doordarshan has launched a Mobile TV pilot project, and is in the process of introducing commercial Mobile TV services. UK-based mobile applications developer ROK Entertainment Group too has launched its streamed mobile TV system (called Tiny TV) in India through BSNL.</p>
<p>Entertainment will also become increasingly interactive. IOL Broadband already started the trend by launching India&#8217;s first IP-based on-demand television service (IPTV) a year ago. With IPTV offering from players like MTNL, Bharti and Reliance, the ‘on-demand’ entertainment is music to the ears of most people. It will also help increase the revenue for broadcasters and mobile operators.</p>
<p><strong><span style="text-decoration:underline;"><span style="font-family:Verdana,sans-serif;">Virtual nightmares ride high</span></span></strong></p>
<p class="MsoNormal"><span style="font-family:Verdana,sans-serif;">Cybercrime is estimated to be a $105 billion market and looks set to grow this year as the complexity of cybercrimes intensifies.</span></p>
<p>The year 2008 is expected to be a year of an exponential increase in the activities of cyber criminals. Phishing — an attempt to criminally and fraudulently acquire sensitive information, such as usernames, passwords and credit card details continues to be a major concern during the year, claim security vendors.</p>
<p>Theft of intellectual property is expected to be another grave issue which needs to be tackled in the new year. “India is in the process of acquiring special technologies for cyber and digital frauds, international vendors of tools to trace cyber criminals, are now also showing interest in the Indain market,” says Computer Forensic Expert, Samir Datt.</p>
<p>Minister for Communication and Information Technology, A Raja, recently announced grants to enable the CBI install the latest technology enabling the investigative agency train officials in complex cybercrimes and also help in the mutual exchange of information with the Interpol.</p>
<p>The government is also in the process of amending the IT Act 2000 to address problems of data protection, data theft, e-commerce frauds and child pornography etc.</p>
<p><strong><span style="text-decoration:underline;"><span style="font-family:Verdana,sans-serif;">‘Open source’ makes inroads</span></span></strong></p>
<p class="MsoNormal"><span style="font-family:Verdana,sans-serif;">‘Linux’— a free operating system (OS) as opposed to Microsoft Windows or Vista — is fast making inroads in the country.</span></p>
<p>Novell along with the Electronics Corporation of Tamil Nadu (ELCOT) is installing Suse Linux in around 40,000 desktops in the state.</p>
<p>This is the second-largest implementation of Linux on the desktop – the biggest one being that of around 60,000 desktops in Life Insurance Corporation (LIC) of India by Red Hat, which is estimated to have implemented over 200,000 desktop OS installations. Canara Bank too has around 10,000 Linux OS desktops.</p>
<p>Major firms and institutions like the LIC, Industrial Development Bank of India (IDBI), IndiaBulls and HDFC use Linux on the servers, for “mission-critical” applications too.</p>
<p>Linux has gained the support of corporations such as IBM, Sun Microsystems, Dell, Hewlett-Packard, and Novell, and is used as an operating system for a wide variety of computer hardware, including desktop computers, supercomputers, and embedded devices such as mobile phones and routers.</p>
<p>In India, besides major firms, state governments in Tamil Nadu, Karnataka, Kerala, Madhya Pradesh, Delhi and Maharashtra too have started using Linux in a bid to promote “open-source” environments.</p>
<p>SMEs are picking up the cue since you can install Linux on your desktop or server and reduce your operation costs. Microsoft counters this line of thinking by saying that the total cost of ownership (TCO) of its OS is lower than that of Linux.</p>
<p>The open source community that promotes Linux pooh-poohs this argument. One fact, though, remains: Linux is robust, steady, virus-free to a great extent and most importantly, FREE. Which means you can download it from the Internet or get companies like Red Hat and Novell (in India) to install it on your machines and provide maintenance services for a nominal fee.</p>
<p>Linux on the desktop is not as popular as Linux on the server. The reason is that Linux as an OS is a little difficult to use, especially if you’ve been used to a Windows environment. For new users, it would hardly matter.</p>
<p>Moreover, the argument that Linux does not have adequate support and lacks drivers for audio, video and gaming hardly holds water any longer.</p>
<p><strong><span style="text-decoration:underline;"><span style="font-family:Verdana,sans-serif;">Face to face</span></span></strong></p>
<p class="MsoNormal"><span style="font-family:Verdana,sans-serif;">If corporate security is the buzzword in 2008, then biometrics will be the most probable answer to all such concerns. Biometric solutions for industrial applications surged to Rs 150 crore as an industry, according to a Frost and Sullivan report.</span></p>
<p>Although 80 per cent of the biometrics business still comes from the corporate sector, but the adoption of biometric systems among residential complexes is rising steadily and is expected to bring in the next phase of growth in 2008.</p>
<p>Also gaining traction are biometric segments like iris scan, middleware, multi-modality, voice recognition and signature verification.</p>
<p>The Indian biometrics market, which mainly consists of access control applications, is used extensively by the Defence and Security industry and fingerprint identification systems by the police administration, is now rapidly moving towards biometric regime.</p>
<p>The finance ministry too has set up an internal group to finalise norms for introducing iris-based biometric Permanent Account Numbers (PANs) for all income tax payers.</p>
<p>Similarly, the Ministry of Home Affairs is toying with the idea of introducing biometrics-based citizen identity cards and even biometric passports. This could be the turning point for the industry which is targeting an over Rs 1,800 crore turnover this year.</p>
<p>Arguably, the cheaper biometric solutions like fingerprint readers are now common on consumers devices like mobiles and laptops. This biometric application contributed more than 70 per cent in revenues to the domestic biometrics market last year.</p>
<p><strong><span style="text-decoration:underline;"><span style="font-family:Verdana,sans-serif;">PCs are safe no longer</span></span></strong></p>
<p class="MsoNormal"><span style="font-family:Verdana,sans-serif;">Back in 1983, when virus researcher Fred Cohen coined the term ‘computer virus’ &#8211; referring to a programme code that can explicitly copy itself and has the ability to affect other programmes by modifying them or their environment &#8211; a lot has happened. Viruses of yore have turned into malware, broadly defined as software designed to infiltrate or damage a computer system.</span></p>
<p>The nightmare does not end here. Mutations of e-worms like Trojan horses, spyware, rootkits, dishonest adware, and other malicious software have crowded the cyber world.</p>
<p>Security vendors like McAfee, F-Secure, Symantec, MessageLabs and others agree that there will be a rise in the number of attacks seeking to capture a user&#8217;s ID and password by displaying fake sign-in pages.</p>
<p>Analysts have also painted a grim picture about instant messaging (IM). Most web-based IM clients have become quite popular among the Web 2.0 generation. IM features like file transfers and webcam support, make it prone to the virus attacks and 2008 might just be the year for IM attacks in offices or home.</p>
<p><strong><span style="text-decoration:underline;"><span style="font-family:Verdana,sans-serif;">Flash memory</span></span></strong></p>
<p class="MsoNormal"><span style="font-family:Verdana,sans-serif;">Mainstreaming of flash with several fabs being put into production happened early last year, with a vast majority of these fabs producing flash chips. We saw major technology companies introducing computers without disk drives, with flash being considerably faster and more durable.</span></p>
<p>With 64GB in flash memory now available, affordable, smaller solid-state disks will be hitting the mainstream in a big way, leading to more crash-resistant and faster laptops. The year 2008 will see flash-based storage making a move towards the datacentre both as a green and a faster access option.</p>
<p>Flash’s main contribution in India would be in making the handheld devices more competitive than the laptop PCs.</p>
<p class="MsoNormal"><span style="font-family:Calibri,sans-serif;color:#1f497d;"> </span></p>
</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=24&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/20/ten-technology-trends-that-will-shape-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Rules to Better Virtual PCs</title>
		<link>http://sudev.wordpress.com/2008/05/19/rules-to-better-virtual-pcs/</link>
		<comments>http://sudev.wordpress.com/2008/05/19/rules-to-better-virtual-pcs/#comments</comments>
		<pubDate>Mon, 19 May 2008 07:51:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Testing]]></category>
		<category><![CDATA[Vitual PC]]></category>
		<category><![CDATA[Virtual PC]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/19/rules-to-better-virtual-pcs/</guid>
		<description><![CDATA[Microsoft Virtual PC provides facilities to run a complete operating system and hard drive images on top of a host operating system. This is a boon for testing in multiple environments and for hosting providers.However, to run Virtual PC in a most efficient way, we have developed a few rules for a better Virtual PC [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=23&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Microsoft Virtual PC provides facilities to run a complete operating system and hard drive images on top of a host operating system. This is a boon for testing in multiple environments and for hosting providers.However, to run Virtual PC in a most efficient way, we have developed a few rules for a better Virtual PC usage.</p>
<p><a href="http://www.ssw.com.au/ssw/standards/rules/RulesToBetterVirtualPCs.aspx">read more</a> | <a href="http://digg.com/microsoft/Rules_to_Better_Virtual_PCs">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=23&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/19/rules-to-better-virtual-pcs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Safety based on radar technology – Audi braking guard &#8211; Auto</title>
		<link>http://sudev.wordpress.com/2008/05/17/safety-based-on-radar-technology-%e2%80%93-audi-braking-guard-auto/</link>
		<comments>http://sudev.wordpress.com/2008/05/17/safety-based-on-radar-technology-%e2%80%93-audi-braking-guard-auto/#comments</comments>
		<pubDate>Sat, 17 May 2008 09:40:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Automobiles]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/17/safety-based-on-radar-technology-%e2%80%93-audi-braking-guard-auto/</guid>
		<description><![CDATA[Audi braking guard forms part of the radar-based adaptive cruise control system, or ACC for short. This system regulates the speed and the distance from the vehicle in front at speeds between 30 and 200 km/h, independently applying the brakes within certain limits in the process.
The amount of traffic on our roads is increasing constantly, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=22&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Audi braking guard forms part of the radar-based adaptive cruise control system, or ACC for short. This system regulates the speed and the distance from the vehicle in front at speeds between 30 and 200 km/h, independently applying the brakes within certain limits in the process.</p>
<p>The amount of traffic on our roads is increasing constantly, as is the amount of information that needs to be processed – meaning that the task of driving is becoming ever more demanding. Audi has developed a technology which promises more relaxed, safer motoring: the Audi braking guard brake assist system is designed to reduce the risk of rear-end collisions. It is one of a whole generation of intelligent assistance systems which monitor the area surrounding the car in order to offer additional protection.</p>
<p>Audi braking guard is available for the A4, A4 Avant, A6, A8 and Audi Q7 model lines, as well as for the new Q5.The computer is integrated into the vehicle data bus network and is able to communicate with the control units for the engine, automatic transmission and brakes – all within a few thousandths of a second! The entire expertise that Audi has amassed in this field is behind the software’s architecture and detailed design.</p>
<p><a href="http://www.automobilesreview.com/auto-news/safety-based-on-radar-technology-%E2%80%93-audi-braking-guard/1170/">read more</a> | <a href="http://digg.com/autos/Safety_based_on_radar_technology_n_Audi_braking_guard_Auto">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=22&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/17/safety-based-on-radar-technology-%e2%80%93-audi-braking-guard-auto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Introduces Brand New Google Reader For iPhone</title>
		<link>http://sudev.wordpress.com/2008/05/17/google-introduces-brand-new-google-reader-for-iphone/</link>
		<comments>http://sudev.wordpress.com/2008/05/17/google-introduces-brand-new-google-reader-for-iphone/#comments</comments>
		<pubDate>Sat, 17 May 2008 05:05:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/17/google-introduces-brand-new-google-reader-for-iphone/</guid>
		<description><![CDATA[Searching through all of those RSS subscriptions on a small screen can be quite a bit of a cumbersome experience, but to make Google Reader for iPhone even better, Google took advantage of the device’s capabilities and released a new beta version designed for the iPhone and other mobile phones with advanced browsers. Visit my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=21&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Searching through all of those RSS subscriptions on a small screen can be quite a bit of a cumbersome experience, but to make Google Reader for iPhone even better, Google took advantage of the device’s capabilities and released a new beta version designed for the iPhone and other mobile phones with advanced browsers. Visit my homepage ( <a href="http://www.sudev.org" target="_blank">http://www.sudev.org</a> ) for latest news headlines.</p>
<p><a href="http://news.ebrandz.com/content/view/1905/568/">read more</a> | <a href="http://digg.com/gadgets/Google_Introduces_Brand_New_Google_Reader_For_iPhone">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=21&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/17/google-introduces-brand-new-google-reader-for-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Naming Polygons</title>
		<link>http://sudev.wordpress.com/2008/05/16/naming-polygons/</link>
		<comments>http://sudev.wordpress.com/2008/05/16/naming-polygons/#comments</comments>
		<pubDate>Fri, 16 May 2008 13:11:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Geometry]]></category>
		<category><![CDATA[Polygons]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/16/naming-polygons/</guid>
		<description><![CDATA[What do you call an 11-sided polygon or a A 14-sided polygon?
Can you give me a list of names of polygons?
This answer represents excerpts from contributions made by Prof. John Conway of Princeton University to the geometry.
For an etymological discussion in the Dr. Math archive, see &#8220;Naming Polygons.&#8221;
When naming polygons, for the &#8220;numerical&#8221; part of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=20&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>What do you call an 11-sided polygon or a A 14-sided polygon?</p>
<p>Can you give me a list of names of polygons?</p>
<p>This answer represents excerpts from contributions made by Prof. John Conway of Princeton University to the geometry.</p>
<p>For an etymological discussion in the Dr. Math archive, see <a href="http://mathforum.org/dr.math/problems/naming.polygons.html">&#8220;Naming Polygons.&#8221;</a></p>
<p>When naming polygons, for the &#8220;numerical&#8221; part of the name, we use the Greek prefixes: mono, di, tri, tetra, penta, hexa, hepta, octa, ennea,<br />
1 2 3 4 5 6 7 8 9<br />
deca, hendeca, dodeca, triskaideca, tetrakaideca, &#8230;, enneakaideca,<br />
10 11 12 13 14 19</p>
<p>icosa, icosikaihena, icosikaidi, icosikaitri, &#8230;, icosikaiennea,<br />
20 21 22 23 29<br />
triaconta, triacontakaihena, &#8230;, triacontakaiennea, tetraconta, &#8230;,<br />
30 31 39 40</p>
<p>pentaconta, hexaconta, heptaconta, octaconta, enneaconta, hecta<br />
50 60 70 80 90 100<br />
Prof. Conway writes:<br />
Antreas Hatzipolakis and I worked out a complete system up to the millions from which this is taken, and which has also been &#8220;vetted&#8221; by several other scholars. The most important of the reasons which make me prefer the &#8220;kai&#8221; forms is that they permit these prefixes to be unambiguously parsed even when concatenated, as they are in Kepler&#8217;s names for certain polyhedra; for example, the icosidodecahedron or (20,12)-hedron, so called because it has 20 faces of one type and 12 of another. Kepler said &#8220;this particular triacontakaidihedron I call the icosidodecahedron&#8221;, a remark showing that he also preferred the kai forms.</p>
<p>John Conway<br />
Names of Polygons 1 monogon (Monogon and digon can only<br />
2 digon be used in rather special<br />
3 trigon, triangle circumstances. Trigon and<br />
4 tetragon, quadrilateral tetragon are alternatives to<br />
5 pentagon triangle and quadrilateral;<br />
6 hexagon the adjectival forms trigonal<br />
7 heptagon and tetragonal are more common.)<br />
8 octagon<br />
9 enneagon<br />
10 decagon<br />
11 hendecagon<br />
12 dodecagon<br />
13 triskaidecagon<br />
14 tetrakaidecagon, tetradecagon<br />
15 pentakaidecagon, pentadecagon<br />
16 hexakaidecagon, hexadecagon<br />
17 heptakaidecagon<br />
18 octakaidecagon<br />
19 enneakaidecagon<br />
20 icosagon<br />
21 icosikaihenagon, icosihenagon<br />
22 icosikaidigon<br />
23 icosikaitrigon<br />
24 icosikaitetragon<br />
25 icosikaipentagon<br />
26 icosikaihexagon<br />
27 icosikaiheptagon<br />
28 icosikaioctagon<br />
29 icosikaienneagon<br />
30 triacontagon<br />
31 triacontakaihenagon<br />
32 triacontakaidigon<br />
33 triacontakaitrigon<br />
34 triacontakaitetragon<br />
35 triacontakaipentagon<br />
36 triacontakaihexagon<br />
37 triacontakaiheptagon<br />
38 triacontakaioctagon<br />
39 triacontakaienneagon<br />
40 tetracontagon<br />
41 tetracontakaihenagon<br />
42 tetracontakaidigon<br />
43 tetracontakaitrigon<br />
44 tetracontakaitetragon<br />
45 tetracontakaipentagon<br />
46 tetracontakaihexagon<br />
47 tetracontakaiheptagon<br />
48 tetracontakaioctagon<br />
49 tetracontakaienneagon<br />
50 pentacontagon &#8230;<br />
60 hexacontagon &#8230;<br />
70 heptacontagon &#8230;<br />
80 octacontagon &#8230;<br />
90 enneacontagon &#8230;<br />
100 hectogon, hecatontagon<br />
1000 chiliagon<br />
10000 myriagon</p>
<p>The &#8220;gon&#8221; has an interesting etymology: it is ultimately derived from the Greek word &#8220;gonu&#8221; for &#8220;knee&#8221;, which they transferred to &#8220;angle&#8221;. This word goes straight back to the Indo-European, and is essentially the same in lots of languages: gonu (Greek)<br />
genu (Latin)<br />
k nee (English)</p>
<p>French is similar to Latin here, and German to English (except that the &#8220;K&#8221; is still pronounced.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=20&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/16/naming-polygons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Astronomers baffled by weird, fast-spinning pulsar</title>
		<link>http://sudev.wordpress.com/2008/05/16/astronomers-baffled-by-weird-fast-spinning-pulsar/</link>
		<comments>http://sudev.wordpress.com/2008/05/16/astronomers-baffled-by-weird-fast-spinning-pulsar/#comments</comments>
		<pubDate>Fri, 16 May 2008 05:31:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Astronomy]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/16/astronomers-baffled-by-weird-fast-spinning-pulsar/</guid>
		<description><![CDATA[Astronomers are baffled after finding an exotic type of star called a pulsar apparently locked in an elongated orbit around a star much like the sun &#8212; an arrangement defying what had been known about such objects. The rapidly spinning pulsar &#8212; an extraordinarily dense object created when a massive star exploded as a supernova [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=19&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Astronomers are baffled after finding an exotic type of star called a pulsar apparently locked in an elongated orbit around a star much like the sun &#8212; an arrangement defying what had been known about such objects. The rapidly spinning pulsar &#8212; an extraordinarily dense object created when a massive star exploded as a supernova &#8212; is called J1903+0327 and is located about 21,000 light years from Earth, the astronomers said. A light year is about 6 trillion miles, the distance light travels in a year.&#8221; The big question is &#8212; how in the heck did this thing form, because it doesn&#8217;t follow our standard models of how these things form,&#8221; astronomer Scott Ransom of the National Radio Astronomy Observatory in Charlottesville, Virginia, said in a telephone interview on Thursday.</p>
<p>This object is known as a millisecond pulsar because of its speedy whirl &#8212; it spins on its axis 465 times per second. Until now, all of the ones found orbiting with another star have been doing so with a white dwarf, another type of dying star. In each case, they shared a perfectly circular orbit. But this one has a very elongated orbit around a star similar in size and composition to our sun.&#8221;What we have found is a millisecond pulsar that is in the wrong kind of orbit around what appears to be the wrong kind of star,&#8221; astronomer David Champion of the Australia Telescope National Facility said in a statement. &#8220;Now we have to figure out how this strange system was produced.&#8221;</p>
<p>Pulsars are a rare type of neutron star whose strong magnetic fields channel lighthouse-like beams of light and radio waves that whirl around as the star spins.</p>
<p>Typical pulsars spin once a second to about 10 or 20 times a second. But millisecond pulsars spin far more rapidly.</p>
<p>It was detected using a radio telescope in Puerto Rico.</p>
<p>To view latest news around the world&#8230; visit <a href="http://www.sudev.org/">my Google Page</a></p>
<p><a href="http://www.reuters.com/article/scienceNews/idUSN1531567720080515?rpc=64">read more</a> | <a href="http://digg.com/world_news/Astronomers_baffled_by_weird_fast_spinning_pulsar">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=19&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/16/astronomers-baffled-by-weird-fast-spinning-pulsar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Make more money with adsense</title>
		<link>http://sudev.wordpress.com/2008/05/15/make-more-money-with-adsense/</link>
		<comments>http://sudev.wordpress.com/2008/05/15/make-more-money-with-adsense/#comments</comments>
		<pubDate>Thu, 15 May 2008 11:50:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Adsense]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/15/make-more-money-with-adsense/</guid>
		<description><![CDATA[A very interesting ‘make more money with adsense’ success story. The earnings went up about 400% and they do indeed make more money with adsense now!
read more &#124; digg story
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=18&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A very interesting ‘make more money with adsense’ success story. The earnings went up about 400% and they do indeed make more money with adsense now!</p>
<p><a href="http://www.mclord.com/blog/index.php/google/make-more-money-with-adsense.html">read more</a> | <a href="http://digg.com/programming/Make_more_money_with_adsense_2">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=18&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/15/make-more-money-with-adsense/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Scientists aim to unlock deep-sea “secrets” of Earth’s crust</title>
		<link>http://sudev.wordpress.com/2008/05/15/scientists-aim-to-unlock-deep-sea-%e2%80%9csecrets%e2%80%9d-of-earth%e2%80%99s-crust/</link>
		<comments>http://sudev.wordpress.com/2008/05/15/scientists-aim-to-unlock-deep-sea-%e2%80%9csecrets%e2%80%9d-of-earth%e2%80%99s-crust/#comments</comments>
		<pubDate>Thu, 15 May 2008 11:39:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Adventure]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/15/scientists-aim-to-unlock-deep-sea-%e2%80%9csecrets%e2%80%9d-of-earth%e2%80%99s-crust/</guid>
		<description><![CDATA[During the five-week expedition they will use explorer robots to map individual volcanoes on the Mid-Atlantic Ridge tectonic plate boundary – which effectively runs down the centre of the Atlantic Ocean &#8211; almost two miles (3km) below the surface of the sea.The work is funded by a grant from the Natural Environment Research Council, which [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=17&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>During the five-week expedition they will use explorer robots to map individual volcanoes on the Mid-Atlantic Ridge tectonic plate boundary – which effectively runs down the centre of the Atlantic Ocean &#8211; almost two miles (3km) below the surface of the sea.The work is funded by a grant from the Natural Environment Research Council, which also owns and operates the RRS James Cook.</p>
<p><a href="http://www.dur.ac.uk/news/newsitem/?itemno=6504">read more</a> | <a href="http://digg.com/general_sciences/Scientists_aim_to_unlock_deep_sea_secrets_of_Earth_s_crust">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=17&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/15/scientists-aim-to-unlock-deep-sea-%e2%80%9csecrets%e2%80%9d-of-earth%e2%80%99s-crust/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Get Hardware Information Using MS.Net Code</title>
		<link>http://sudev.wordpress.com/2008/05/13/how-to-get-hardware-information-using-msnet-code/</link>
		<comments>http://sudev.wordpress.com/2008/05/13/how-to-get-hardware-information-using-msnet-code/#comments</comments>
		<pubDate>Tue, 13 May 2008 12:11:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[.Net Programming]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2008/05/13/how-to-get-hardware-information-using-msnet-code/</guid>
		<description><![CDATA[For numerous reasons, you may need to access system hardware information. One example is when you have created a software and you want to put a lock on that software or you want to uniquely identify the a computer. Following article demonstrates how to achive this task using managed MS.Net code.
http://www.codeproject.com/KB/system/GetHardwareInformation.aspx
I must say its awsome [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=15&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>For numerous reasons, you may need to access system hardware information. One example is when you have created a software and you want to put a lock on that software or you want to uniquely identify the a computer. Following article demonstrates how to achive this task using managed MS.Net code.</p>
<p>http://www.codeproject.com/KB/system/GetHardwareInformation.aspx</p>
<p>I must say its awsome piece of code.</p>
<p><a href="http://www.codeproject.com/KB/system/GetHardwareInformation.aspx">read more</a> | <a href="http://digg.com/programming/How_To_Get_Hardware_Information_Using_MS_Net_Code">digg story</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=15&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2008/05/13/how-to-get-hardware-information-using-msnet-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
		<item>
		<title>Mac OS X System Overview</title>
		<link>http://sudev.wordpress.com/2006/03/21/mac-os-x-system-overview/</link>
		<comments>http://sudev.wordpress.com/2006/03/21/mac-os-x-system-overview/#comments</comments>
		<pubDate>Mon, 20 Mar 2006 19:55:00 +0000</pubDate>
		<dc:creator>Sudev Gandhi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sudev.wordpress.com/2006/03/21/mac-os-x-system-overview/</guid>
		<description><![CDATA[Introduction 

Mac OS X is a uniquely powerful development platform, supporting multiple development technologies including UNIX, Java, the proprietary Cocoa and Carbon runtime environments, and a host of open source, web, scripting, database, and development technologies. Built around the integrated stack of graphics and media technologies including Core Image, Core Video, Core Audio and QuickTime, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=14&subd=sudev&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div align="justify"><strong><span style="font-family:verdana;font-size:130%;">Introduction </span></strong></div>
<p><strong></strong>
<div align="justify"><span style="font-family:verdana;">Mac OS X is a uniquely powerful development platform, supporting multiple development technologies including UNIX, Java, the proprietary Cocoa and Carbon runtime environments, and a host of open source, web, scripting, database, and development technologies. Built around the integrated stack of graphics and media technologies including Core Image, Core Video, Core Audio and QuickTime, Mac OS X provides a solid foundation for developers to create great applications. Mac OS X Tiger also offers powerful user technologies like Spotlight and Dashboard that can be exploited by developers in their applications.</p>
<p></span><span style="font-size:130%;"><span style="font-family:verdana;">User Experience<br /></span><em><strong><span style="font-family:verdana;">Aqua<br /></span></strong></em></span><span style="font-family:verdana;">Aqua is the overall appearance and behavior of Mac OS X. Aqua defines the standard appearance of specific user interface components such as windows, menus, and controls. It uses high-quality graphics and user-centric design to produce a user experience that is both functional and appealing.<br />(</span><a href="http://developer.apple.com/ue/"><span style="font-family:verdana;">http://developer.apple.com/ue/</span></a><span style="font-family:verdana;">)</div>
<p></span>
<div align="justify"><span style="font-family:verdana;"><em><span style="font-size:130%;">Dashboard<br /></span></em>Dashboard is a display and management system for Mac OS X desktop utilities, called widgets. Developers can create widgets, such as a clock or a calculator, to provide functionality that doesn&#8217;t require the complexity of a large application.<br />(</span><a href="http://developer.apple.com/macosx/dashboard.html"><span style="font-family:verdana;">http://developer.apple.com/macosx/dashboard.html</span></a><span style="font-family:verdana;">)</div>
<p></span>
<div align="justify"><em><span style="font-family:verdana;font-size:130%;">Spotlight </span></em></div>
<div align="justify"><span style="font-family:verdana;">Spotlight provides a new way of organizing and accessing information in on your computer by using metadata. Metadata can include familiar information such as an asset&#8217;s modification date and author but it can also include keywords or other information that is custom to a particular asset. Spotlight can use this information to allow a user to find all their files or references to any particular keyword or set of terms.<br />(</span><a href="http://developer.apple.com/macosx/spotlight.html"><span style="font-family:verdana;">http://developer.apple.com/macosx/spotlight.html</span></a><span style="font-family:verdana;">)</div>
<p></span>
<div align="justify"><span style="font-family:verdana;"><span style="font-size:130%;"><em>Accessibility<br /></em></span>Accessibility refers to programming interfaces that support the development of accessible applications and assistive technologies and applications, which help make the Macintosh accessible to all users. An assistive application interacts with an application&#8217;s user interface to provide an alternative way for persons with disabilities to use the application.<br />(</span><a href="http://developer.apple.com/accessibility/"><span style="font-family:verdana;">http://developer.apple.com/accessibility/</span></a><span style="font-family:verdana;">)</div>
<p></span>
<div align="justify"><span style="font-family:verdana;"><span style="font-size:130%;">Application Frameworks<br /><em>Cocoa </em></span><br />Cocoa is an object-oriented application environment designed specifically for developing Mac OS X native applications. The Cocoa frameworks support rapid development and high productivity, and include a full-featured set of classes designed to create robust and powerful Mac OS X applications.<br />(</span><a href="http://developer.apple.com/cocoa/"><span style="font-family:verdana;">http://developer.apple.com/cocoa/</span></a><span style="font-family:verdana;">) </span></div>
<div align="justify"><span style="font-family:verdana;"><span style="font-size:130%;"><em>Carbon<br /></em></span>Carbon is a set of APIs that enables C and C++ developers to take advantage of Mac OS X-specific features, including an advanced user interface tool kit, an efficient event-handling mechanism, the Quartz 2D graphics library, and multiprocessing support. In addition, other industry-standard C and C++ APIs are easily available to Carbon developers, providing access to such services as the OpenGL drawing system, the Mach microkernel, and BSD operating-system services.<br />(</span><a href="http://developer.apple.com/carbon/"><span style="font-family:verdana;">http://developer.apple.com/carbon/</span></a><span style="font-family:verdana;">)</div>
<p></span>
<div align="justify"><span style="font-family:verdana;"><em><strong>Java<br /></strong></em>Java support in Mac OS X is built around the foundation of the Java 2, Standard Edition implementation, which is installed with every copy of Mac OS X and Mac OS X Server. Java developers can easily distribute their cross-platform J2SE applications as native Mac OS X applications, or they can take advantage of Mac OS X-specific Java versions of some Cocoa APIs.<br />(</span><a href="http://developer.apple.com/java/"><span style="font-family:verdana;">http://developer.apple.com/java/</span></a><span style="font-family:verdana;">) </span></div>
<p><span style="font-family:verdana;">
<div align="justify"><strong><em>Graphics and Media<br />QuickTime</em></strong><br />QuickTime is Apple&#8217;s cross-platform multimedia technology for creating and delivering video, sound, animation, graphics, text, interactivity, and music. QuickTime supports dozens of file and compression formats for images, video, and audio, including ISO-compliant MPEG-4 video and AAC audio. QuickTime applications can run on Mac OS X and all major versions of Microsoft Windows.<br />(</span><a href="http://developer.apple.com/quicktime/"><span style="font-family:verdana;">http://developer.apple.com/quicktime/</span></a><span style="font-family:verdana;">)</div>
<p></span>
<div align="justify"><span style="font-family:verdana;"><strong><em>Core Audio </em></strong><br />Core Audio refers to system-level services in Mac OS X that streamline the development process for audio developers and for all application developers who want to incorporate audio into their products. Core Audio provides native, state-of-the-art, multichannel audio in a manner scalable for future high-resolution formats. The Audio Unit API provides a plug-in architecture for both DSP and for MIDI-based instruments.<br />(</span><a href="http://developer.apple.com/audio/"><span style="font-family:verdana;">http://developer.apple.com/audio/</span></a><span style="font-family:verdana;">)</div>
<p></span>
<div align="justify"><span style="font-family:verdana;"><strong><em>Core Image</em></strong><br />Core Image is an image processing technology built into Mac OS X v10.4 that leverages programmable graphics hardware whenever possible. The Core Image application programming interface (API) provides access to built-in image filters for both video and still images and provides support for custom filters and near real-time processing.<br />(</span><a href="http://developer.apple.com/graphicsimaging/"><span style="font-family:verdana;">http://developer.apple.com/graphicsimaging/</span></a><span style="font-family:verdana;">)</div>
<p></span>
<div align="justify"><span style="font-family:verdana;"><strong><em>Core Video</em></strong><br />Video is essentially a timed sequence of images. Various QuickTime interfaces make it easy to capture and display video on Mac OS X. Core Video provides an easy way to obtain frames from any video source and provides the opportunity to filter or transform them using Core Image or OpenGL.<br />(</span><a href="http://developer.apple.com/graphicsimaging/"><span style="font-family:verdana;">http://developer.apple.com/graphicsimaging/</span></a><span style="font-family:verdana;">)</div>
<p></span>
<div align="justify"><span style="font-family:verdana;"><strong><em>OpenGL</em></strong><br />Mac OS X features a highly optimized and fully modern implementation of OpenGL. OpenGL is the industry standard for high performance 2D and 3D graphics, and is the primary gateway to the Graphics Processing Unit (GPU). OpenGL is specifically designed to support the rich graphics needs of scientific visualization, medical imaging, CAD/CAM, and entertainment software.<br />(</span><a href="http://developer.apple.com/graphicsimaging/opengl/"><span style="font-family:verdana;">http://developer.apple.com/graphicsimaging/opengl/</span></a><span style="font-family:verdana;">)</div>
<p></span>
<div align="justify"><span style="font-family:verdana;"><strong>Darwin<br /></strong>Darwin is the open source UNIX-based foundation of Mac OS X. Darwin integrates a number of technologies. Among the most important are the Mach 3.0 microkernel operating-system services, based on 4.4BSD (Berkeley Software Distribution), the high-performance networking facilities, and the support for multiple integrated file systems. Darwin also includes a number of command-line tools. Mac OS X developers can use Darwin to port UNIX/Linux applications and to create kernel extensions.<br />(</span><a href="http://developer.apple.com/opensource/"><span style="font-family:verdana;">http://developer.apple.com/opensource/</span></a><span style="font-family:verdana;">)</p>
<p>For more information on exploring the technologies in Mac OS X, see the Mac OS X </span><a href="http://developer.apple.com/referencelibrary/GettingStarted/GS_MacOSX/index.html"><span style="font-family:verdana;">Getting Started page.</span></a><span style="font-family:verdana;"> (http://developer.apple.com/referencelibrary/GettingStarted/GS_MacOSX/index.html).</span></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudev.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudev.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudev.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudev.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudev.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudev.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudev.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudev.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudev.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudev.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudev.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudev.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudev.wordpress.com&blog=3975453&post=14&subd=sudev&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudev.wordpress.com/2006/03/21/mac-os-x-system-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99cceb0969aaa898329c9357b3c95a8c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Sudev</media:title>
		</media:content>
	</item>
	</channel>
</rss>