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

<channel>
	<title>BASE IT SERVICES BLOG</title>
	<atom:link href="http://blog.baseitservices.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.baseitservices.com</link>
	<description>BASIC To Perfection</description>
	<lastBuildDate>Sat, 03 Jul 2010 09:14:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Migrating from PHP 4 to PHP 5.0.x</title>
		<link>http://blog.baseitservices.com/2010/06/migrating-from-php-4-to-php-5-0-x/</link>
		<comments>http://blog.baseitservices.com/2010/06/migrating-from-php-4-to-php-5-0-x/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 09:46:02 +0000</pubDate>
		<dc:creator>BASE IT SERVICES</dc:creator>
		
		<guid isPermaLink="false">http://blog.baseitservices.com/?p=88</guid>
		<description><![CDATA[Although most existing PHP 4 code should work without changes, you should pay attention to the following backward incompatible changes: There are some new reserved keywords. strrpos() and strripos() now use the entire string as a needle. Illegal use of string offsets causes E_ERROR instead of E_WARNING. An example illegal use is: $str = &#8216;abc&#8217;;]]></description>
			<content:encoded><![CDATA[<p>Although most existing PHP 4 code should work without changes, you  should     pay attention to the following backward incompatible changes:</p>
<ul>
<li> There are some <a href="http://in.php.net/manual/en/reserved.keywords.php" target="_blank">new  reserved       keywords</a>.</li>
<li> <a href="http://in.php.net/manual/en/function.strrpos.php" target="_blank">strrpos()</a> and <a href="http://in.php.net/manual/en/function.strripos.php" target="_blank">strripos()</a> now use       the entire string as a needle.</li>
<li> Illegal use of string offsets causes <strong><tt>E_ERROR</tt></strong> instead       of <strong><tt>E_WARNING</tt></strong>. An example illegal use is:        <em>$str = &#8216;abc&#8217;; unset($str[0]);</em>.</li>
<li> <a href="http://in.php.net/manual/en/function.array-merge.php" target="_blank">array_merge()</a> was changed to accept only  arrays. If a       non-array variable is passed, a <strong><tt>E_WARNING</tt></strong> will be       thrown for every such parameter. Be careful because your code may  start       emitting <strong><tt>E_WARNING</tt></strong> out of the blue.</li>
</ul>
<p><span id="more-88"></span></p>
<ul>
<li> <strong><tt>PATH_TRANSLATED</tt></strong> server variable is no longer set  implicitly under       Apache2 SAPI in contrast to the situation in PHP 4, where it is  set to       the same value as the <strong><tt>SCRIPT_FILENAME</tt></strong> server  variable when it is not       populated by Apache. This change was made to comply with the <a href="http://hoohoo.ncsa.uiuc.edu/cgi/" target="_blank">» CGI  specification</a>. Please refer to <a href="http://bugs.php.net/23610" target="_blank">» bug #23610</a> for further information,       and see also the <var><var><a href="http://in.php.net/manual/en/reserved.variables.server.php" target="_blank">$_SERVER['PATH_TRANSLATED']</a></var></var> description in the manual. This issue        also affects PHP versions &gt;= 4.3.2.</li>
<li> The <strong><tt>T_ML_COMMENT</tt></strong> constant is no longer defined by       the <a href="http://in.php.net/manual/en/ref.tokenizer.php" target="_blank">Tokenizer</a> extension. If       error_reporting is set to <strong><tt>E_ALL</tt></strong>, PHP will       generate a notice. Although the <strong><tt>T_ML_COMMENT</tt></strong> was       never used at all, it was defined in PHP 4. In both PHP 4 and PHP 5       // and /* */ are resolved as the <strong><tt>T_COMMENT</tt></strong> constant. However the PHPDoc style comments <em>/** */</em>, which  starting PHP       5 are parsed by PHP, are recognized as <strong><tt>T_DOC_COMMENT</tt></strong>.</li>
<li> <var><var><a href="http://in.php.net/manual/en/reserved.variables.server.php" target="_blank">$_SERVER</a></var></var> should be populated with <var><var>argc</var></var> and       <var><var>argv</var></var> if       <a href="http://in.php.net/manual/en/ini.core.php#ini.variables-order" target="_blank">variables_order</a> includes &#8220;S&#8221;.       If you have specifically configured your system to not create       <var><var><a href="http://in.php.net/manual/en/reserved.variables.server.php" target="_blank">$_SERVER</a></var></var>, then of course it shouldn&#8217;t  be there.       The change was to always make <var><var>argc</var></var> and <var><var>argv</var></var> available in the CLI version regardless of the       <a href="http://in.php.net/manual/en/ini.core.php#ini.variables-order" target="_blank">variables_order</a> setting.       As in, the CLI version will now always populate the global       <var><var><a href="http://in.php.net/manual/en/reserved.variables.argc.php" target="_blank">$argc</a></var></var> and <var><var><a href="http://in.php.net/manual/en/reserved.variables.argv.php" target="_blank">$argv</a></var></var> variables.</li>
<li> An object with no properties is no longer considered &#8220;empty&#8221;.</li>
<li> In some cases classes must be declared before use. It only happens  if       some of the new features of PHP 5 (such as <a href="http://in.php.net/manual/en/language.oop5.interfaces.php" target="_blank">interfaces</a>) are used.       Otherwise the behaviour is the old.</li>
<li> <a href="http://in.php.net/manual/en/function.get-class.php" target="_blank">get_class()</a>, <a href="http://in.php.net/manual/en/function.get-parent-class.php" target="_blank">get_parent_class()</a> and <a href="http://in.php.net/manual/en/function.get-class-methods.php" target="_blank">get_class_methods()</a> now return the name of  the       classes/methods as they were declared (case-sensitive) which may  lead to       problems in older scripts that rely on the previous behaviour (the       class/method name was always returned lowercased). A possible  solution       is to search for those functions in all your scripts and use       <a href="http://in.php.net/manual/en/function.strtolower.php" target="_blank">strtolower()</a>.                   This case sensitivity change also applies to the        <a href="http://in.php.net/manual/en/language.constants.predefined.php" target="_blank">magical predefined        constants</a> <strong><tt>__CLASS__</tt></strong>,        <strong><tt>__METHOD__</tt></strong>, and <strong><tt>__FUNCTION__</tt></strong>.       The values are returned exactly as they&#8217;re declared  (case-sensitive).</li>
<li> <a href="http://in.php.net/manual/en/function.ip2long.php" target="_blank">ip2long()</a> now returns <strong><tt>FALSE</tt></strong> when an invalid IP       address is passed as argument to the function, and no longer       <em>-1</em>.</li>
<li> If there are functions defined in the included file, they can be  used in the       main file independent if they are before <a href="http://in.php.net/manual/en/function.return.php" target="_blank">return()</a> or after.       If the file is included twice, PHP 5 issues fatal error because  functions       were already declared, while PHP 4 doesn&#8217;t complain about it.       It is recommended to use <a href="http://in.php.net/manual/en/function.include-once.php" target="_blank">include_once()</a> instead of       checking if the file was already included and conditionally return  inside       the included file.</li>
<li> <a href="http://in.php.net/manual/en/function.include-once.php" target="_blank">include_once()</a> and <a href="http://in.php.net/manual/en/function.require-once.php" target="_blank">require_once()</a> first normalize the path of included file on Windows so that  including       A.php and a.php include the file just once.</li>
<li> Passing an array to a function by value no longer resets the       array&#8217;s internal pointer for array accesses made within the       function. In other words, in PHP 4 when you passed an array to a       function, its internal pointer inside the function would be       reset, while in PHP 5, when you pass an array to a function, its       array pointer within the function will be wherever it was when       the array was passed to the function.</li>
</ul>
<p align="center"></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.baseitservices.com/2010/06/migrating-from-php-4-to-php-5-0-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Vs ASP.net</title>
		<link>http://blog.baseitservices.com/2010/06/php-vs-asp-net/</link>
		<comments>http://blog.baseitservices.com/2010/06/php-vs-asp-net/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 15:46:38 +0000</pubDate>
		<dc:creator>BASE IT SERVICES</dc:creator>
		
		<guid isPermaLink="false">http://blog.baseitservices.com/?p=59</guid>
		<description><![CDATA[Ever since Microsoft has come up with ASP.net, there has been a widespread debate among programmers as to whether it is any better than the existing open source programming language of PHP. If you were to make a search on the Internet on how loyalists of both PHP and ASP.net are doing almost everything by]]></description>
			<content:encoded><![CDATA[<p>Ever since Microsoft has come up with ASP.net, there has been a  widespread debate among programmers as to whether it is any better than  the existing open source programming language of PHP.</p>
<p>If you were to make a search on the Internet on how loyalists of both <em>PHP</em> and <em>ASP.net</em> are doing almost everything by biting each other&#8217;s  heads off, you will realize how hot this debate actually is. The major  contention is that <em>Microsoft</em> products are generally considered  to be superior to other products, but then there are programmers that  have been using PHP since ages and never once has it let them down.  While there is acclaim for ASP.net being more robust and speedier, PHP  fans maintain that PHP has much better support and a very easy to  understand language.<br />
<span id="more-59"></span><br />
As the debate between PHP and ASP.net rages on, it is important to make a  frank comparison between the two languages, so that other developers  who are not so strong in their opinions are not caught in the argument  between the two. Here are some of the important points that distinguish  the two programming languages from each other:-</p>
<p>(For the uninitiated, PHP stands for Hypertext Preprocessor and ASP.net  stand for Active Server Pages. It helps to put things into better  perspective!)</p>
<p><strong>»</strong> PHP is a relatively simpler language to use than ASP.net. Initially, PHP  was written in the C programming language to replace a set of scripts  in Perl. That is the reason why coding in PHP remains simple even today.  Many developers find themselves to be more at ease with the  user-friendly nature of PHP when it comes to coding. However, critics  also count this advantage of PHP as a disadvantage. Some of them  maintain that the language of PHP has not been updated much, and hence  it is still quite archaic and even, somewhat cumbersome for coding.  ASP.net, which is a relatively new development, has a lot of options  when it comes to languages. Here, you can use languages such as <em>C#,  J#, C++ and VB.net</em>. Hence, when it comes to sheer choice, ASP.net  has better to offer. But PHP is no less, since it can do its task quite  well, even with its minimum language tools.</p>
<p><strong>»</strong> PHP is has much better support for the database management system, <em>MySQL</em>.  In fact, the very popular blogging platform, WordPress uses the  formidable combination of PHP coding on MySQL for its content management  system, which includes about hundreds of thousands of blog posts every  single day. Another very popular and frequently updated service that  uses the combination of PHP and MySQL is Wikipedia. ASP.net can also  support MySQL, but PHP is unanimously hailed, by the masses and classes  alike, for its great support for this database management system.</p>
<p><strong>»</strong> People who use both PHP and ASP.net also maintain their opinion that  PHP is better for embedded support with another database management  system, viz. SQLite. SQLite is described as a relational database  management system and since it is contained in a C programming library,  PHP can provide better support to it.</p>
<p><strong>»</strong> PHP has also a very good support for object oriented programming, on  which whole scripting languages are being built nowadays. ASP.net also  provides very capable support to OOP.</p>
<p><strong>»</strong> When it comes to support, PHP wins over ASP.net. The main reason for  this is that PHP is open source. Hence, the support can come freely from  all over the world. In most cases, PHP fixes are made instantly. Being  open source also ensures that there are very few snags in PHP. While,  ASP.net could take a while to make fixes. That is because it is owned by  Microsoft, and it is the development team of Microsoft that will need  to respond to the support query. That could take more time than the  worldwide open source support that PHP is able to get. Most PHP supports  can be instantly found online by doing a simple search on the Internet.  Some of the providers of support for PHP are Zend, NuSphere and  ThinkPHP.</p>
<p><strong>»</strong> PHP can use the command line to perform many everyday activities. Some  of the things that the PHP command line is useful for is for  manipulating across many files and for putting files into multiple  directories at once. These are just some of the important features that  PHP&#8217;s command line is used for.</p>
<p><strong>»</strong> PHP is an open source programming language, which means it is free for  anyone to use. Programmers can develop PHP applications virtually at no  cost, because PHP is free to use. ASP.net is not free too, but its  extensions are available for free on Windows platforms, upwards of 98.  Hence, ASP.net is available to Windows users when they buy it. That puts  a bit of restriction in its use.</p>
<p><strong>»</strong> ASP.net is compiled into memory in binary code. So, when ASP.net is  used for coding, it is evident that it takes much longer time to process  since the codes need to be retrieved from memory. However, PHP is not  compiled into memory like ASP.net is. It is interpreted at runtime. That  is the reason why PHP coding leads to better speed and even efficiency.  However, it must be said that both PHP and ASP.net can run at supreme  speeds and efficiency when they are coded expertly.</p>
<p><strong>»</strong> Talking about hosting charges, both PHP and ASP.net are quite cheap to  host. If you do a good deal of shopping online, you will also be able to  find hosting for as little as $4. While there are several pricier  hosting services out there, their charges are higher for both PHP and  ASP.net. Hence, it can be said that both PHP and ASP.net are at par with  each other on the hosting charges.</p>
<p><strong>»</strong> Since PHP is older, there are many people who claim that it is much  more secure than ASP.net where coding is concerned. ASP.net is much new,  and the security options may not be fully in place yet. However, many  programmers will pooh-pooh at this point, because they maintain that  security in coding does not depend on the language that is used, but in  the way that the coding is done by the coder. Even so, there is a lot of  talk on the Internet about PHP coded sites being more difficult to hack  into than those done with ASP.net.</p>
<p>Hence, there is a lot to debate on about the worthiness of PHP over  ASP.net or vice-versa. There is probably no end to it, and there never  shall be. The problem mainly is that both of them are good in their own  place, but people who have been staunchly using PHP for several years  now – some of them for more than a decade – would certainly not like to  go in for the new ASP.net. The price to be paid is quite high, i.e.  learning a whole new syntax and getting used to it. That is more the  reason why PHP is still so popular.</p>
<p>But, to ASP.net&#8217;s credit it must be said that it is much more dynamic,  even if the mere use of different languages are concerned. While PHP is  still stuck to its scripting language days, ASP.net has broken new  grounds by entering into new languages, and even developing some of its  own. However, a new shadow is looming large on these  language-programming tools – the coming of the WYSIWYG editors such as  Dreamweaver, which are making coding a very simple task to do for even  the lay computer user.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.baseitservices.com/2010/06/php-vs-asp-net/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adobe Fireworks: Is It Worth Switching to CS5?</title>
		<link>http://blog.baseitservices.com/2010/06/adobe-fireworks-is-it-worth-switching-to-cs5/</link>
		<comments>http://blog.baseitservices.com/2010/06/adobe-fireworks-is-it-worth-switching-to-cs5/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 05:29:13 +0000</pubDate>
		<dc:creator>BASE IT SERVICES</dc:creator>
		
		<guid isPermaLink="false">http://blog.baseitservices.com/?p=27</guid>
		<description><![CDATA[Adobe Fireworks is the Swiss Army knife for many developers and Web, UX, UI and graphic designers. The application is known for its versatility, excellent blend of vector and bitmap tools and powerful built-in wireframing and prototyping options. Also, according to the SoDA 2010 Digital Marketing Outlook survey, Fireworks has become an important tool for]]></description>
			<content:encoded><![CDATA[<p>Adobe Fireworks is the Swiss Army knife for many developers and Web, UX, UI and graphic designers. The application is known for its versatility, excellent blend of vector and bitmap tools and powerful built-in wireframing and prototyping options. Also, according to the SoDA 2010 Digital Marketing Outlook survey, Fireworks has become an important tool for many digital agencies.</p>
<p>It now has the same standing as other core Adobe products, such as Flash, Flex and Dreamweaver (to the question “Which technical skill sets, if any, will you look to hire or contract in 2010?”, approx. 12% of the survey respondents replied “Fireworks”, and to the question “Which tools/products will you or your organization use in 2010?”, more than 44% of the survey respondents replied that they will be using Fireworks).</p>
<p>A lot of official Adobe pages cover the latest version of Fireworks, CS5, in detail: for example, the new Fireworks CS5 product page; the Fireworks CS5/CS4/CS3 comparison chart; and the pages that highlight Fireworks CS5’s Web workflows and design workflows.</p>
<p>But none of these official Adobe pages actually answer the question that so many design professionals are asking in the first place: is Fireworks CS5 really better? Will it save you time and effort? Are the new features worth the upgrade price? This article gives detailed answers to these questions. We’ll present a neat list of Fireworks CS5’s new features and improved workflows, along with examples of how they will make your work much more efficient.</p>
<p><span id="more-27"></span></p>
<h3>1. Better Performance</h3>
<hr />
<h4><span style="color: #ff0000;">Performance Improvements</span></h4>
<p>One of the most notable (and welcome) improvements in the latest version of Fireworks is performance. Fireworks CS5 is faster and more lightweight, it uses less RAM and it is much more stable than any previous version of Fireworks.</p>
<p>For example, look at the following performance graph. Testing was done on a five-year-old Lenovo ThinkPad, with a 1.5 GHz Intel Pentium-M CPU and 1.5 GB of DDR memory.</p>
<p>Performance-graph-1-rv2 in Adobe Fireworks: Is It Worth Switching to CS5?</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/performance-graph-1-rv2.png"></a><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/performance-graph-1-rv2.png"><img class="alignnone size-full wp-image-28" title="performance-graph" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/performance-graph-1-rv2.png" alt="" width="500" height="400" /></a></p>
<p><em>Performance graph of start-up times.</em></p>
<p>Notice that  start-up times are much better for the CS5 version, and Fireworks CS5  may need less than 4 seconds for a “warm” start on a five-year-old  machine; some Mac users already report <a title="Fw CS5  needs less than 4 seconds to start on a Mac (with link to a short  video)" href="http://twitter.com/brucebowman/status/12606068212">similar performance improvements</a>.</p>
<p>More <a href="http://www.adobe.com/devnet/logged_in/bbowman_fwcs5.html">performance  stats</a>:</p>
<ul>
<li>“Cold” launch times improved by 3 to 9% <em>(average)</em></li>
<li>“Warm”  launch times improved by 30 to 32% <em>(average)</em></li>
<li>Memory  (RAM) usage reduced by 2 to 16% <em>(average)</em></li>
</ul>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/performance-graph-2-rv2.png"><img class="alignnone size-full wp-image-32" title="performance-graph-2-rv2" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/performance-graph-2-rv2.png" alt="" width="500" height="310" /></a></p>
<p><em>Graph of general performance improvements.</em></p>
<p>So, while  major new versions of Adobe applications are usually more  resource-hungry than their predecessors, seeing that this is actually  the opposite case with Fireworks is a pleasant surprise.</p>
<h4><span style="color: #ff0000;">Better  Handling of Files</span></h4>
<p>Fireworks CS5 opens and saves PNG files faster,  better and more reliably. It also allows you to open multi-page  Fireworks PNG files much more easily, because the open dialog shows a  preview of all of the pages inside.</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/open-and-import-preview.png"><img class="alignnone size-full wp-image-34" title="open-and-import-preview" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/open-and-import-preview.png" alt="" width="500" height="300" /></a></p>
<p><em>Multi-page preview in the “Open” and “Import” dialog boxes.</em></p>
<p><em>(NOTE:  Files created in Fireworks CS4 (and earlier versions) will not have the  preview option available by default; a Fireworks PNG file must be saved  at least <strong>once</strong> in Fireworks CS5 so that the multi-page  preview becomes available for this file.)</em></p>
<h4><span style="color: #ff0000;">Integrated  Recovery Options</span></h4>
<p>Fireworks CS5 is much stabler than its  predecessor. Still, in case the worst happens and Fireworks CS5 suddenly  crashes on your Mac, it automatically places a recovered copy of the  file in a <em>Recovered Files</em> folder on your desktop. Windows users  are protected, too: they can use the <a title="Download the Fireworks AutoBackup extension" href="http://www.adobe.com/cfusion/marketplace/index.cfm?event=marketplace.offering&amp;marketplaceid=1&amp;offeringid=10210">AutoBackup  extension</a>, which works perfectly with both Fireworks CS4 and CS5.  The extension works on Windows and Mac and automatically saves copies of  all opened PNG files at a user-specified interval inside a folder named  <em>FWAIRBackup</em> (which is located on the same path as the original  file).</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/recovery-options.png"><img class="alignnone size-full wp-image-35" title="recovery-options" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/recovery-options.png" alt="" width="500" height="185" /></a><em> </em></p>
<p><em>Fireworks CS5 Windows and Mac users are protected from data loss.</em></p>
<h3>2.  PI Panel Improvements</h3>
<hr />The powerful <strong>property inspector  (or PI) panel</strong> has always been the core of Fireworks and one of  its best features. From this panel, you can instantly change almost any  available property for almost any selected object on the canvas: vector  object, bitmap object, text object, a group of objects, etc.</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/pi-panel-overview.png"><img class="alignnone size-full wp-image-36" title="pi-panel-overview" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/pi-panel-overview.png" alt="" width="500" height="265" /></a></p>
<p><em>The new PI panel in Fireworks CS5 (overview).</em></p>
<p>In  Fireworks CS5, the PI panel has been largely improved. It now responds  much faster, and compared to CS4, the “refresh” times are reduced,  especially on Windows. It also has many new features. Let’s look at the  four most important ones:</p>
<h4><span style="color: #ff0000;">New “Constrain Proportions” Option for  Resizing Objects</span></h4>
<p>No need to use the Numeric Transform tool  anymore when you want to resize an object and keep its proportions  locked. The new “Constrain Proportions” option on the PI panel  simplifies this and saves you time (and a few extra clicks).</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/pi-panel-lock-proportions-rv2.png"><img class="alignnone size-full wp-image-37" title="pi-panel-lock-proportions-rv2" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/pi-panel-lock-proportions-rv2.png" alt="" width="500" height="270" /></a></p>
<p><em>The PI panel option to lock the proportions of an object.</em></p>
<h4><span style="color: #ff0000;">New  Dithering Option for Gradients</span></h4>
<p>Gradient Dithering is a new  feature introduced in Fireworks CS5. When working with gradients,  switching the Gradient Dithering option “on” or “off” is now just a  click away.</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/pi-panel-gradient-dither-rv2.png"><img class="alignnone size-full wp-image-38" title="pi-panel-gradient-dither-rv2" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/pi-panel-gradient-dither-rv2.png" alt="" width="500" height="180" /></a></p>
<p><em>PI panel option for switching Gradient Dithering on and off.</em></p>
<h4><span style="color: #ff0000;">New  Stroke Alignment Options</span></h4>
<p>Need to change Stroke Alignment  properties? You don’t need to open the Stroke options anymore — just use  the new Stroke Alignment icons, right on the PI panel.</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/pi-panel-stroke-alignment-rv2.png"><img class="alignnone size-full wp-image-39" title="pi-panel-stroke-alignment-rv2" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/pi-panel-stroke-alignment-rv2.png" alt="" width="500" height="150" /></a></p>
<p><em>The Stroke Alignment options on the PI panel.</em></p>
<h4><span style="color: #ff0000;">New  Compound Shape Tools</span></h4>
<p>Fireworks CS5 has a powerful new feature:  Compound Shapes <em>(more on this feature later)</em>. Creating and  editing them is done easily from the PI panel, too.</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/pi-panel-compound-shapes-rv2.png"><img class="alignnone size-full wp-image-40" title="pi-panel-compound-shapes-rv2" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/pi-panel-compound-shapes-rv2.png" alt="" width="500" height="150" /></a></p>
<p><em>Editing Compound Shapes on the PI panel.</em></p>
<h3>3. New Text  Engine Features</h3>
<hr />Fireworks CS5 has a much better text engine, with  many new features and tiny enhancements that will help in your routine  work with text. Here’s a quick list of the enhancements:</p>
<ul>
<li>Kerning,  tracking and leading between characters in a text block can now be  easily controlled using only the keyboard (simply put the cursor in  between characters and use the keyboard arrow keys).</li>
<li>The slider  value for kerning and tracking has been increased to 200.</li>
<li>If you  open a PNG file created in Fireworks v. CS3 or lower, the kerning and  tracking values will be automatically mapped and the look of the text  will be preserved.</li>
<li>A new option (unique to Adobe Fireworks)  allows you to multi-select characters and words in a text box and then  style them together at once. This is complemented by another new option  that allows you to auto-select similarly styled characters, words or  paragraphs inside a text block, and then modify their styles at once.</li>
<li>An  editable and auto-completing font list box feature has been added <em>(Windows  version only)</em>.</li>
<li>Now, you don’t need to restart Fireworks  after installing a new font <em>(Windows version only)</em>.</li>
<li>Undoing  (Ctrl/Cmd + Z) and redoing (Ctrl/Cmd + Y) at the character level is now  possible while you’re in text-editing mode.</li>
<li>Double-clicking  selects the word, and triple-clicking selects the entire paragraph.</li>
<li>In  the Layers panel, text object layers are now marked with a tiny “T”  icon, for easier recognition.</li>
<li>A Text Overflow indicator appears  when extra characters (that don’t fit the text-in-path or text-on-path)  exist.</li>
<li>Copying and pasting text from any version of Microsoft  Office into Fireworks is much improved.</li>
<li>The number of characters  that can be copied and pasted into a Fireworks text block at once has  been increased from 2000 to 8000.</li>
</ul>
<p>(We may highlight and  explain text engine improvements in Fireworks CS5 in greater detail in a  future article.)</p>
<h3>4. Improved Adobe CS5 Integration</h3>
<hr />Integration of Fireworks  CS5 with other Adobe CS5 applications is much improved.</p>
<ul>
<li>Fireworks  CS5 now supports <a href="http://kuler.adobe.com/links/kuler_help.html#Colors">ASE swatches</a>,  the same color file format supported by Illustrator, Photoshop,  InDesign and <a href="http://kuler.adobe.com/">Kuler</a>. The .ASE  support will allow designers to easily exchange color schemes between  Fireworks and other Adobe products.</li>
<li>Fireworks CS5 has very good  integration with <strong>Adobe Illustrator CS5</strong>. Fireworks CS5  can import graphic assets from Illustrator CS5 almost perfectly, and  copying and pasting directly from Illustrator CS5 into Fireworks CS5 is  possible with a high level of fidelity and editability, too <em>(there  exist only a few exceptions to this)</em>.</li>
<li>Fireworks CS5 can  export in the new <a href="http://opensource.adobe.com/wiki/display/flexsdk/FXG+2.0+Specification">FXG  2.0 file format</a>, and FXG 2.0 files can be imported into Illustrator  CS5, Flash Catalyst CS5 and other Adobe programs with almost no loss in  editability.</li>
<li>Fireworks CS5 is integrated with <a href="http://www.adobe.com/products/creativesuite/devicecentral/">Adobe  Device Central CS5</a> (read the article about Adobe Fireworks CS5 and  Adobe Device Central titled “<a href="http://www.adobe.com/devnet/fireworks/articles/mobile_workflows_fw_dc.html">Mobile  workflows using Fireworks CS5 and Device Central CS5</a>“).</li>
<li>The  integration with <strong>Adobe Photoshop CS5</strong> is excellent,  too. Fireworks CS5 can import graphic assets from Photoshop CS5 very  well. Fireworks CS5 has much better support for Photoshop PSD files.  Adjustment Layers in a PSD file now retain their appearance when opened  or imported in Fireworks. Gradient round-tripping is now possible  between Fireworks and Photoshop.</li>
</ul>
<h3>5. Miscellaneous New Tools  And Features</h3>
<hr />
<h4><span style="color: #ff0000;">Compound Shapes</span></h4>
<p>Fireworks CS5 has powerful new vector tools  in its toolset, called <strong>Compound Shapes</strong>. Compound Shapes  are special vector groups that give you greater vector power. You can  create new compound shapes out of existing vector objects and you can  also draw in several compound shape modes. A Compound Shape group allows  the editing and styling of several vector objects as one, while  preserving the original vector objects inside the group. The individual  objects can be easily re-edited or ungrouped at any stage.</p>
<p>To use  the new Compound Shapes, simply select several vector objects together,  and then use one of the available Compound Shape operations (found on  the PI panel): <strong>Add/Union, Subtract/Punch, Intersect, Crop</strong>.</p>
<p>After  you have created a Compound Shape group, editing <strong>individual</strong> objects within the group is easy: simply use the Subselection tool <em>(white  arrow)</em> to select and modify any individual object. To edit the  Compound Shape group as <strong>one</strong> object, switch to the  Pointer tool <em>(black arrow)</em>.</p>
<p>Here’s a simple example:</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/compound-shape-example-rv2.png"><img class="alignnone size-full wp-image-41" title="compound-shape-example-rv2" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/compound-shape-example-rv2.png" alt="" width="500" height="850" /></a></p>
<p><em>Example of Compound Shapes.</em></p>
<p>The introduction of  Compound Shapes in Fireworks CS5 gives designers even more flexibility,  because the standard vector <strong>combine</strong> workflows (Modify →  Combine Paths → Join/Split/Union/Intersect/Punch/Crop) can be  complemented by the new <a title="Compound Shapes Tools, a tutorial by Thierrry Lorey" href="http://www.fireworkszone.com/compound-shape-tools_592.html#haut">non-destructive  combine vector workflows</a>.</p>
<p>Compound Shapes are also fun for  all kinds of creative artwork:</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/compound-shape-monsters-by-molif.jpg"><img class="alignnone size-full wp-image-42" title="compound-shape-monsters-by-molif" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/compound-shape-monsters-by-molif.jpg" alt="" width="500" height="300" /></a></p>
<p><em>“Monsters,” a creative use of Compound Shapes (illustration by <a title="Illustration by Ani Kostova (CC-BY-NC-ND license, image used with  permission from the author)" href="http://www.molif.com/en/2010/04/28/monstrous/">molif.com</a>).</em></p>
<h4><span style="color: #ff0000;">Dithering  Option for Gradients</span></h4>
<p>Fireworks CS5 now has a Dithering option for  gradients, which almost completely reduces any “banding” in radial or  linear gradients.</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/gradient-dithering-rv2.png"><img class="alignnone size-full wp-image-43" title="gradient-dithering-rv2" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/gradient-dithering-rv2.png" alt="" width="500" height="350" /></a></p>
<p><em>The new Gradient Dithering option reduces “banding” in gradients.</em></p>
<p><em>NOTE:  The Gradient Dithering option is available for Radial and Linear  gradients only. For now, other types of gradients in Fireworks are not  supported.</em></p>
<h4><span style="color: #ff0000;">Reverse Option for Gradients</span></h4>
<p>Fireworks CS5  allows you to easily reverse the direction of any kind of gradient,  which can save time.</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/gradient-reverse-rv2.png"><img class="alignnone size-full wp-image-45" title="gradient-reverse-rv2" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/gradient-reverse-rv2.png" alt="" width="500" height="320" /></a></p>
<p><em>Reverse Gradient option.</em></p>
<h4><span style="color: #ff0000;">Snap-to-Pixel</span></h4>
<p><strong>Snap-to-Pixel</strong> is a new feature in Fireworks CS5 that allows you to fix instantly  almost any blurriness in a vector object (or a group of objects), after  some complex transformations have been applied to it. To apply this  command, use <em>Modify → Snap To Pixel</em>, or the Cmd/Ctrl + K  shortcut. This is one of the best and most useful new features in  Fireworks CS5.</p>
<h4><span style="color: #ff0000;">Templates</span></h4>
<p>Fireworks CS5 introduces  Templates. Now you can easily create and share your own PNG templates  inside a small or large design team.</p>
<p>To use this new feature,  simply select <em>File → New from Template</em> to open an existing  template, or <em>File → Save as Template</em>.</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/fw-templates-1.png"><img class="alignnone size-full wp-image-46" title="fw-templates-1" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/fw-templates-1.png" alt="" width="500" height="390" /></a></p>
<p><em>Templates options in the File menu.</em></p>
<p>Fireworks CS5  comes with several pre-built templates (neatly organized in a few  groups: Grid Systems, Mobile, Web, Wireframes, etc.). Users can extend  these easily by creating and saving their own templates.</p>
<h4><span style="color: #ff0000;">Better  CSS Export Options</span></h4>
<p>Fireworks CS5 has much better CSS and HTML  exporting options. Here are some highlights:</p>
<ul>
<li>A new option to  export multiple pages as CSS, HTML and images at once; a great feature  for quickly exporting your designs as dynamic, clickable prototypes.</li>
<li>It  is now possible to tag text objects by tag name to output the text with  a particular HTML tag.</li>
<li>A Text Area symbol has been added for  improved HTML-form prototyping.</li>
<li>There is a List Item symbol to  allow for the creation of unordered lists (both normal text lists and  lists with links).</li>
<li>Font sizes are now in percentages to allow  for easy and flexible text resizing in all browsers.</li>
<li><code>Div</code>s  with set heights now have <code>min-height</code> equivalents to allow  for text resizing and any amount of content.</li>
<li>Many other small  and big improvements have been added to the CSS Export script.</li>
</ul>
<h4><span style="color: #ff0000;">Global  Preference for Grids</span></h4>
<p>In Fireworks CS5, preferences for grids are  now global and can be overridden for individual documents.</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/grid-settings-rv2.png"><img class="alignnone size-full wp-image-47" title="grid-settings-rv2" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/grid-settings-rv2.png" alt="" width="500" height="490" /></a></p>
<p><em>Global preferences for grids.</em></p>
<h4><span style="color: #ff0000;">Redesigned Align Panel</span></h4>
<p>The  Align panel is improved and more powerful. It now remembers the most  recent settings used and is more usable.</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/align-panel-rv2.png"><img class="alignnone size-full wp-image-48" title="align-panel-rv2" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/align-panel-rv2.png" alt="" width="500" height="440" /></a></p>
<p><em>Align panel options.</em></p>
<h4><span style="color: #ff0000;">New “Copy to Clipboard” Option  for Colors</span></h4>
<p>You can use standard option for copying color values  of any selected color, or use the new option for one-click copy of the  color value.</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/easy-to-copy-color-values.png"><img class="alignnone size-full wp-image-49" title="easy-to-copy-color-values" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/easy-to-copy-color-values.png" alt="" width="500" height="150" /></a></p>
<p><em>Copying color #hex values is now easier.</em></p>
<h4><span style="color: #ff0000;">New “Don’t  show again” Option for Resample Dialog</span></h4>
<p>When you copy and paste  objects between files that have different resolution (<strong>dpi</strong> setting), Fireworks will ask you if you want to resample the pasted  vector or bitmap object. While it is certainly useful to have this  option, experience have proved that leaving the original dpi setting of  the object to be pasted is often the best choice and leads to better  results.</p>
<p>So now in Fireworks CS5, you can select the “Don’t  Resample” option and check the “Don’t show again” checkbox. Setting will  be remembered and in the long run, this new option may save you time.</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/dont-show-again-option-for-paste-rv2.png"><img class="alignnone size-full wp-image-50" title="dont-show-again-option-for-paste-rv2" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/dont-show-again-option-for-paste-rv2.png" alt="" width="500" height="320" /></a></p>
<p><em>Better paste options for documents with different dpi settings.</em></p>
<h3>6.  Early (P)reviews</h3>
<hr />Fireworks CS5 was released just a few days ago,  but the (p)reviews thus far have been largely positive. Let’s read some  of them:</p>
<blockquote><p>Fireworks CS5 is a very strong release.… For  Fireworks CS5, more than with any other release in our history, we  listened to our users. They told us that we needed to make sure  Fireworks had rock-solid stability and reliability, and that we needed  to refine the existing features before thinking about new ones. That’s  exactly what we did, and the results are impressive.</p>
<p>— <a title="Introducing Adobe Fireworks CS5" href="http://www.adobe.com/devnet/logged_in/bbowman_fwcs5.html">Bruce Bowman</a>, Fireworks  Product Manager at Adobe</p></blockquote>
<blockquote><p>I’ve had the  unique opportunity to spend some time working with the new Adobe  Fireworks CS5, and it has been a pleasure. The stability improvements  are immediately noticeable, and although this has been described as a  “stability release,” there are some very useful new features that should  not be overlooked.… Overall, Adobe Fireworks CS5 is a fantastic  release. Stability, new features and a smoother workflow with other  Adobe products keep it as the front-runner when designing for pixels on  the screen.</p>
<p>— <a title="Top Ten Highlights of the New Adobe Fireworks CS5" href="http://www.idux.com/2010/04/20/top-ten-highlights-of-the-new-adobe-fireworks-cs5/">David Hogue</a>,  Director of Information Design and Usability at <a href="http://www.fluid.com/">Fluid, Inc.</a></p></blockquote>
<blockquote><p>Aside  from the major performance, stability, install and memory enhancements…  there are tons of tweaks under the hood of Fireworks CS5!</p>
<p>— <a title="My Top Five  Fireworks CS5 Features/Enhancements" href="http://www.heathrowe.com/topfwcs5features.aspx">Darrel Heath</a>, freelance <a href="http://www.heathrowe.com/">web designer and developer</a></p></blockquote>
<blockquote><p>Adobe  has published a really extensive piece surrounding the details behind  Fireworks CS5. I’ve talked about it with a few designers, both Fireworks  and Photoshop users, and had a gut feeling that it would be mostly a  bug-fix release. While every Adobe product under the sun needs at least  one full version release consisting of mostly bug fixes, I gladly  welcome Fireworks CS5. The fixes mentioned in the piece have me really  excited to put more time into working with the application after it’s  released.</p>
<p>— <a title="Introducing Adobe Fireworks CS5" href="http://mondaybynoon.com/2010/04/17/adobe-fireworks-cs5/">Jonathan Christopher</a>,  front-end developer at <a href="http://overit.com/">Overit Media</a></p></blockquote>
<blockquote><p>Fireworks  CS5: improved performance, more precise control over the pixel  placement of design elements and a streamlined, accelerated workflow.</p>
<p>—  <a title="Adobe Creative Suite 5 Brings Sexy Back" href="http://www.webdesignerdepot.com/2010/04/adobe-creative-suite-5-brings-sexy-back/">Webdesigner Depot</a></p></blockquote>
<blockquote><p>Adobe  Fireworks CS5 is better than ever. The engineers searched high and low  to find ways to make Fireworks faster, more stable and easier to use. I  know I’m impressed and I hope… you will be too!</p>
<p>— Jim Babbage,  author at <a href="http://www.lynda.com/">Lynda.com</a> (<a title="Fireworks CS5 New Features - Overview" href="http://www.communitymx.com/content/article.cfm?cid=C2E1D">Part 1</a>, <a title="Fireworks CS5 New Features - Part 2" href="http://www.communitymx.com/content/article.cfm?cid=3DE48">Part 2</a>)</p></blockquote>
<blockquote><p>Enjoy  the increased stability and polish in Fireworks CS5. If you haven’t  upgraded in a while and passed over CS4 as some people I know have done,  don’t pass on CS5. It will make your current workflows much smoother  and does add a few welcome new features. I highly recommend it!</p>
<p>— <a title="A Quick Review of Fireworks CS5" href="http://www.pixelyzed.com/2010/05/17/a-quick-review-of-fireworks-cs5/">Stéphane Bergeron</a>,  freelance Web designer at <a href="http://www.webfocusdesign.com/en/">Webfocus  Design</a></p></blockquote>
<h3>7. Conclusion</h3>
<hr />So, <strong>is  Fireworks CS5 really better?</strong> For me, it is. Fireworks CS5 may  not be absolutely perfect or contain any “wow” features. But at the same  time, it is a very welcome release — fast, stable, polished, with lots  of tiny refinements and additions that will make your design work more  efficient.</p>
<p>I wasn’t able to list all of the new features and  improvements in Fireworks CS5, but I hope your curiosity now is piqued  enough that you will want to try Fireworks CS5 soon. If so, grab the <strong><a title="Trial download of  Fireworks CS5 (requires free registration)" href="http://www.adobe.com/go/tryfireworks">30-day free trial</a></strong> or order Fireworks CS5 from Adobe (either separately or as part of Web  Premium CS5, Design Premium CS5 or Master Collection CS5).</p>
<p>Finally,  check out other recent articles about Adobe Fireworks published on the  Smashing Network:</p>
<ul>
<li><a href="http://www.smashingmagazine.com/2009/07/27/tutorials-and-resources-for-adobe-fireworks/">The  Ultimate Round-Up of Fireworks Tutorials and Resources</a></li>
<li><a href="http://www.smashingmagazine.com/2008/03/18/adobe-fireworks-tutorials-and-downloads-best-of/">Adobe  Fireworks Tutorials and Downloads: Best of</a></li>
<li><a href="http://www.noupe.com/design/an-explosion-of-adobe-fireworks-resources.html">An  Explosion of Adobe Fireworks Resources</a></li>
</ul>
<p>We hope to see  more smashing Fireworks-related articles in the next few months, so if  you have questions, feel free to share them in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.baseitservices.com/2010/06/adobe-fireworks-is-it-worth-switching-to-cs5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quality of football at stake</title>
		<link>http://blog.baseitservices.com/2010/06/quality-of-football-at-stake/</link>
		<comments>http://blog.baseitservices.com/2010/06/quality-of-football-at-stake/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 05:46:58 +0000</pubDate>
		<dc:creator>BASE IT SERVICES</dc:creator>
		
		<guid isPermaLink="false">http://blog.baseitservices.com/?p=24</guid>
		<description><![CDATA[It is with great interest and curiosity that I’ve observed the 2010 FIFA World Cup. But it is not without concern; after terrible misses in great scoring areas from the world’s greatest footballers. Could it be altitude? Playing conditions? The quality of our fields&#8230;? No, I don’t think so; the blame should be attached to]]></description>
			<content:encoded><![CDATA[<p>It is with great interest and curiosity that I’ve observed the 2010 FIFA World Cup.</p>
<p>But it is not without concern; after terrible misses in great scoring areas from the world’s greatest footballers. Could it be altitude? Playing conditions? The quality of our fields&#8230;?</p>
<p>No, I don’t think so; the blame should be attached to our very own Jabulani soccer ball.</p>
<p>Many players, goalkeepers in particular, have raised serious concerns regarding this balls flight and movement.</p>
<p><span id="more-24"></span></p>
<p>In comparison to the soccer balls players are accustomed to, this ball can be unpredictable at times, which makes world class players look ordinary and often clumsy,</p>
<p>People might say the low scoring games we’ve witnessed since the tournaments inception should be attributed to stronger defensive tactics applied by the coaches but I beg to differ.</p>
<p>Lastly, I’m very much impressed by the course the SWC has taken; but the banning of the vuvuzela should be reconsidered. If we as the fans are protesting, how do we expect to see the brand of football we are expecting if we aren’t willing to accommodate the players?</p>
<p>FIFA must take a stand and eradicate these seemingly small elements threatening this stunning event.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.baseitservices.com/2010/06/quality-of-football-at-stake/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>3G, then 4G, usher in brave new world</title>
		<link>http://blog.baseitservices.com/2010/06/3g-then-4g-usher-in-brave-new-world/</link>
		<comments>http://blog.baseitservices.com/2010/06/3g-then-4g-usher-in-brave-new-world/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 13:52:03 +0000</pubDate>
		<dc:creator>BASE IT SERVICES</dc:creator>
		
		<guid isPermaLink="false">http://blog.baseitservices.com/?p=19</guid>
		<description><![CDATA[It was a brilliant coup in the world of communications technology: Mukesh Ambani of Reliance Industries can rightfully claim he will usher in a revolution in the way Indians communicate in the not too distant future. Imagine a scenario in which you can download an entire movie on the Internet in a few minutes or]]></description>
			<content:encoded><![CDATA[<p>It was a brilliant coup in the world of communications technology:  Mukesh Ambani of Reliance Industries can rightfully claim he will usher  in a revolution in the way Indians communicate in the not too distant  future. Imagine a scenario in which you can download an entire movie on  the Internet in a few minutes or download all the encyclopedias in just a  few hours. You won’t need DVDs, which might soon get outdated. You will  be able to have more data downloaded in far less time. More exciting  still, you can use your computer to make phone calls very cheaply. The  new 4G — or Wimax, or LTE (long term evolution) — technology will give  you access through the Internet to both data and voice — a giant leap  from 3G.</p>
<p><a href="http://blog.baseitservices.com/wp-content/uploads/2010/06/2366159230_143d1edda5_o.gif"><img class="alignnone size-medium wp-image-20" title="3G" src="http://blog.baseitservices.com/wp-content/uploads/2010/06/2366159230_143d1edda5_o-300x267.gif" alt="BASE IT SERVICES" width="300" height="267" /></a></p>
<p><span id="more-19"></span>Technology is getting obsolete faster than you imagine. The VCR, for  instance, lasted a little over a decade, and the DVD is soon set to  follow&#8230; Now 3G is in danger of getting outdated in just six months.  After 4G, the next big thing will probably have to be something faster  than the speed of light! Speed is the name of the game, and none of the  other players who bid with such abandon for the 3G and broadband  wireless access (BWA) spectrum licences have the pan-India spectrum that  Mukesh Ambani’s company now has.  And he got it literally for a song — a  far superior technology for a mere Rs 4,800 crores, compared to the Rs  10,000-crores-plus that some of the others paid. This is what he shelled  out to acquire a 95 per cent stake in Infotel Broadband, that had bid  for — and secured licences in — all 22 circles. The others had made BWA  bids in just three or four circles. In fact, big names like Vodafone and  Reliance Communications had dropped out of BWA bidding as they thought  the price was too high and they had already bid a lot for 3G. It was  considered by some that Infotel Broadband was acting unwisely in bidding  for all 22 circles. Very few people could have had any idea of the much  more exciting game being played behind the scenes. The cost of a  pan-India BWA spectrum licence was considerably less than that for 3G.  Mukesh Ambani must have been watching the bidding by big names at the  auction with concealed glee — with hindsight, it almost appears like a  Tom and Jerry show. It eventually emerged that the government and Mukesh  Ambani were the two biggest beneficiaries of the first-ever 3G and BWA  auction. As the RIL boss said later, 3G and BWA promise to be key  drivers for rapid growth of advanced services. But 3G is limited to  cellphones, while the 4G technology is extremely futuristic. The use of  Wimax technology and LTE is relatively new, and not really proven yet. A  presentation by RIL noted that only 110 operators in 48 countries have  so far committed to deploying LTE; and of these it is operational in  only two — Norway and Sweden. Given RIL’s petrochemicals track record,  his company might well make India the third country after Norway and  Sweden to deploy LTE.</p>
<p>There is some concern in corporate circles that given his monopoly in  4G, Mukesh Ambani’s company could well dictate prices in the same manner  that the initial operators in mobile telephony were able to. Way back  in the early years of this century, it was the then undivided Reliance  that turned the cellular world upside down with its Monsoon Hangama  scheme that made cellphones affordable for the lower economic strata.  The others simply had to follow if they were to survive. Exciting times  indeed lie ahead.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.baseitservices.com/2010/06/3g-then-4g-usher-in-brave-new-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BASE IT Looking ahead for new Collaboration﻿</title>
		<link>http://blog.baseitservices.com/2010/06/base-it-looking-ahead-for-new-collaboration%ef%bb%bf/</link>
		<comments>http://blog.baseitservices.com/2010/06/base-it-looking-ahead-for-new-collaboration%ef%bb%bf/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 13:54:40 +0000</pubDate>
		<dc:creator>BASE IT SERVICES</dc:creator>
		
		<guid isPermaLink="false">http://blog.baseitservices.com/?p=15</guid>
		<description><![CDATA[BASE IT is about to set a milestone by entering into new collaboration with CaribEX Shipping (India) Pvt. Ltd, clouds of rumor can be seen at local community. Business development department of BASE IT is mum and quite, but the internal fight for credit is there. If the venture happens successfully it is going to]]></description>
			<content:encoded><![CDATA[<p>BASE IT is about to set a milestone by entering into new collaboration with CaribEX Shipping (India) Pvt. Ltd, clouds of rumor can be seen at local community. Business development department of BASE IT is mum and quite, but the internal fight for credit is there.</p>
<p>If the venture happens successfully it is going to be helpful for mutual growth of both companies. Moreover the contact is awaited …</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.baseitservices.com/2010/06/base-it-looking-ahead-for-new-collaboration%ef%bb%bf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe CS5</title>
		<link>http://blog.baseitservices.com/2010/06/adobe-cs5/</link>
		<comments>http://blog.baseitservices.com/2010/06/adobe-cs5/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 13:22:24 +0000</pubDate>
		<dc:creator>BASE IT SERVICES</dc:creator>
		
		<guid isPermaLink="false">http://blog.baseitservices.com/?p=10</guid>
		<description><![CDATA[Adobe CS5 is now bundled with few more tools. I specially like to mention few of them, we are using CS Catalyst and found it very useful, you may use it as a replacement of jquery, with the help of this wonderful tool one can make eye catching design in few minutes if we add]]></description>
			<content:encoded><![CDATA[<p>Adobe CS5 is now bundled with few more tools. I specially like to mention few of them, we are using CS Catalyst and found  it very useful, you may use it as a replacement of jquery, with the help of this wonderful tool one can make eye catching design in few minutes if we add flex onto this you may add interactivity to all this &#8230;</p>
<p>I just got Important call so I have to leave this post here&#8230;..Wiil be writing rest of this post in 2-3 days&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.baseitservices.com/2010/06/adobe-cs5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

