<?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:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Info Tech Scraps &#187; Corporations</title>
	<atom:link href="http://www.infoscraps.com/topics/corporations/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.infoscraps.com</link>
	<description>Information Technology at your finger tips...</description>
	<lastBuildDate>Tue, 27 Oct 2009 17:24:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Truncating a Log File in SQL Server</title>
		<link>http://www.infoscraps.com/2009/10/16/truncating-a-log-file-in-sql-server/</link>
		<comments>http://www.infoscraps.com/2009/10/16/truncating-a-log-file-in-sql-server/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 11:41:25 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Database Servers]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/2009/10/16/truncating-a-log-file-in-sql-server/</guid>
		<description><![CDATA[SQL Server always keeps a log of every activity performed in the Database in a Log file named as DatabaseName_Log.LDF. Over a period of time if the number of operations increased in the database, this Log file will tend to get really heavy and can grow many times in multiples of the actual database size. [...]]]></description>
			<content:encoded><![CDATA[<p>SQL Server always keeps a log of every activity performed in the Database in a Log file named as <strong>DatabaseName_Log.LDF</strong>. Over a period of time if the number of operations increased in the database, this Log file will tend to get really heavy and can grow many times in multiples of the actual database size. Unless until you need to have the whole history of what happened in the database from the beginning of creating it, you can seriously consider truncating this Log file to save some essential space.<br />
<span id="more-131"></span></p>
<p>Though SQL Server Management Studio / Express has an option in the GUI itself do this (if you want, scroll below to see that option), it will not always work in the way it is expected to work. So, here is a simple set of SQL Commands that does the trick and truncates the log file to a unbelievable size saving some essential space. To do that, just open a New Query window and then type the following code:</p>
<p style="text-align: justify; padding-left: 30px;"><code style="font-size: 12px;"><span style="color: blue;">USE </span><span style="color: black;">&lt;DatabaseName&gt;<br />
GO<br />
</span><span style="color: blue;">DBCC </span><span style="color: black;">SHRINKFILE</span><span style="color: gray;">(&lt;</span><span style="color: black;">TransactionLogName</span><span style="color: gray;">&gt;, </span><span style="color: black;">1</span><span style="color: gray;">)<br />
</span><span style="color: blue;">BACKUP </span><span style="color: magenta;">LOG </span><span style="color: gray;">&lt;</span><span style="color: black;">DatabaseName</span><span style="color: gray;">&gt; </span><span style="color: blue;">WITH </span><span style="color: black;">TRUNCATE_ONLY<br />
</span><span style="color: blue;">DBCC </span><span style="color: black;">SHRINKFILE</span><span style="color: gray;">(&lt;</span><span style="color: black;">TransactionLogName</span><span style="color: gray;">&gt;, </span><span style="color: black;">1</span><span style="color: gray;">)<br />
</span><span style="color: black;">GO </span></code></p>
<p>The first statement makes the database to perform the operations and the second and fourth commands just shows you the actual size of log being used by the database. The third statement is actually a backup statement but here it just truncates only the log file. So, if you&#8217;re afraid of loosing anything, please take a full database backup manually before executing the above commands.</p>
<p>If you&#8217;re not up for executing commands and you&#8217;re more of a GUI person, you can use the following steps to truncate the log file (though it may not work certain times)</p>
<ol>
<li>Start SQL Server Management Studio / Express</li>
<li>Connect to your Database Server</li>
<li>Expand the Databases in the left side list</li>
<li>Right click on your Database name and choose <em>Tasks -&gt; Shrink -&gt; Files</em> from the popup menu</li>
<li>Choose File type as Log</li>
<li>Choose any of the following three options as per your need:
<ol>
<li>Release unused space &#8211; Frees any unused space in the Log file (mostly this will not save any disk space)</li>
<li>Reorganize pages before releasing unused space and choose a minimum size as you please in the Shrink file to option.</li>
<li>Empty file by migrating the data to other files in the same filegroup</li>
</ol>
</li>
<li>Click on OK</li>
<li>After execution completion, open your Database files location (you can find that from the Properties of your Database) and see whether the Log file (with extension LDF) is reduced.</li>
</ol>
<p>If above steps doesn&#8217;t seem to work, please try the commands I&#8217;ve specified above as they&#8217;re guaranteed to work.</p>
<p>Let me know your if you face any problems in the comments&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2009/10/16/truncating-a-log-file-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Office 2010 Technical Preview</title>
		<link>http://www.infoscraps.com/2009/05/19/microsoft-office-2010-technical-preview/</link>
		<comments>http://www.infoscraps.com/2009/05/19/microsoft-office-2010-technical-preview/#comments</comments>
		<pubDate>Tue, 19 May 2009 11:51:37 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Previews]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[MS Office]]></category>
		<category><![CDATA[Technical Preview]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/?p=122</guid>
		<description><![CDATA[Microsoft has announced recently that the next major release of their Microsoft Office suite of applications is named 2010 and expected to be released for a Technical Preview (Beta) by July 2009. The last major release MS Office 2007 is actually Version 12. However, the Office 2010 is versioned as 14. This is probably because [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft has announced recently that the next major release of their Microsoft Office suite of applications is named 2010 and expected to be released for a Technical Preview (Beta) by July 2009. The last major release MS Office 2007 is actually Version 12. However, the Office 2010 is versioned as 14. This is probably because of the common belief on number 13.</p>
<p>Microsoft created a website called <a href="http://www.office2010themovie.com/" target="_blank">Office2010themovie.com</a> based on Blockbuster Movie designs.</p>
<p>They mentioned that the Technical Preview will be available to general public until July 2010. However, the Office 2010 Technical Preview applications will start automatically shutting down after 2 hours of use starting from March 2010.</p>
<p>Though the official version of Technical Preview is not expected until July 2009, Torrent sites has already released the version and is quite popular because of the increasing number of downloads.</p>
<p>The major change in the new Office 2010 is that it is available in both 32 bit and 64 bit flavors (something that should&#8217;ve happened long before). The next major thing I noticed is that the design has gone under a major rework based on Office 2007 theme. They also introduced new themes for Office Suites (however, only default theme is available in Technical Preview). The screen shots so far leaked are amazing and I tried the 64 bit version of Office 2010 in my Vista PC and was awesome by its beauty. Major rework has gone on many applications in terms of functionality. The ribbon from Office 2007 is now available in all the applications (Office 2007 does not show ribbon in some applications like Outlook to make them feel compatible with Office 2003). Instead of the round button that showed Start Menu in Office 2007, it is now a rectangle button which shows a different screen for all menu operations and allows you to go back to work area. All office suites are following their official color schemes throughout the Menus. The performance is slow but acceptable due to its beauty. Unusual introduction is Minimize, Close and Cancel links in Splash screens.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2009/05/19/microsoft-office-2010-technical-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X like font smoothing in Windows</title>
		<link>http://www.infoscraps.com/2009/04/08/mac-os-x-like-font-smoothing-in-windows/</link>
		<comments>http://www.infoscraps.com/2009/04/08/mac-os-x-like-font-smoothing-in-windows/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 10:46:55 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Alternatives]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Apple Mac OS]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tweaks]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/2009/04/08/mac-os-x-like-font-smoothing-in-windows/</guid>
		<description><![CDATA[Ever wondered why everything looks so beautiful and clear in Mac OS X? It is basically it&#8217;s font rendering engine and graphics abilities. Windows is already playing catch up with the font rendering using their own ClearType technology. However, even ClearType can&#8217;t stand up to the beauty and clarity given by Mac OS X font [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wondered why everything looks so beautiful and clear in Mac OS X? It is basically it&#8217;s font rendering engine and graphics abilities. Windows is already playing catch up with the font rendering using their own ClearType technology. However, even ClearType can&#8217;t stand up to the beauty and clarity given by Mac OS X font rendering. Anyone using Apple Safari on windows would&#8217;ve already know about this. I used to switch to Apple Safari on my Windows PC just to read new sites in that glorious smooth font rendering.</p>
<p><span id="more-114"></span></p>
<p>My longing for this has been answered mightily by a Japanese freelancer who developed a small program named <strong><a href="http://vladg.com/wp-content/uploads/2009/03/gdi.zip">GDI++</a></strong> that works on top of a Open Source product named FreeType (an advanced font rendering program across OSes). This small program works beautifully and adjusts the font rendering to Mac OS X like smooth and clarity all over the Windows. It is so beautiful how it can turn a boring looking windows to smooth and clear display. See the comparison shots below:</p>
<p><strong>Without GDI++</strong></p>
<p><a href="http://estevaomascarenhas.com/blog/wp-content/uploads/2009/01/howto-image2.jpg" rel="shadowbox[post-114];player=img;"><img src="http://estevaomascarenhas.com/blog/wp-content/uploads/2009/01/howto-image2.jpg" border="0" alt="" width="500" /></a></p>
<p><strong>With GDI++</strong></p>
<p><a href="http://estevaomascarenhas.com/blog/wp-content/uploads/2009/01/howto-image1.jpg" rel="shadowbox[post-114];player=img;"><img src="http://estevaomascarenhas.com/blog/wp-content/uploads/2009/01/howto-image1.jpg" border="0" alt="" width="500" /></a></p>
<p>Here are some instructions on how to get this working on your computer:</p>
<ol>
<li>Download <a href="http://vladg.com/wp-content/uploads/2009/03/gdi.zip">GDI++</a>.</li>
<li>Extract this ZIP file in any directory, for example: <code>C:\gdi</code></li>
<li>Double-click the file: <code>gditray.exe</code></li>
<li>Now, your task bar you can note a &#8220;G&#8221;, like the image:<br />
<img class="alignnone size-full wp-image-24" title="howto-image3" src="http://estevaomascarenhas.com/blog/wp-content/uploads/2009/01/howto-image3.jpg" alt="howto-image3" width="176" height="30" /></li>
<li>Double-click it, it should start glowing green:<br />
<img class="alignnone size-full wp-image-26" title="howto-image4" src="http://estevaomascarenhas.com/blog/wp-content/uploads/2009/01/howto-image4.jpg" alt="howto-image4" width="176" height="30" /></li>
<li>Enjoy this beautiful font-smoothing.</li>
<li>You can adjust the font-smoothing level by right clicking this icon and choosing Use Preferences and selecting any of the three Japanese letters shown there.</li>
</ol>
<p>Try it out&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2009/04/08/mac-os-x-like-font-smoothing-in-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SharpDevelop vs Visual Studio</title>
		<link>http://www.infoscraps.com/2009/02/12/sharpdevelop-vs-visual-studio/</link>
		<comments>http://www.infoscraps.com/2009/02/12/sharpdevelop-vs-visual-studio/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 16:59:16 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Alternatives]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Comparisons]]></category>
		<category><![CDATA[IDEs]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SharpDevelop]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/2009/02/12/sharpdevelop-vs-visual-studio/</guid>
		<description><![CDATA[As my previous post on SharpDevelop explained, SharpDevelop in many ways a better alternative to Visual Studio. However, the significant differences between these two and the advantages or disadvantages over each other are explained here. Advantages of SharpDevelop over Visual Studio: Open Source (Full Source Code available freely) Completely Free to use for both Commercial [...]]]></description>
			<content:encoded><![CDATA[<div class="content clearfix">
<p>As my <a href="http://www.infoscraps.com/2009/02/09/a-better-alternative-to-microsoft-visual-studio-from-open-source-community/">previous post on SharpDevelop</a> explained, SharpDevelop in many ways a better alternative to Visual Studio. However, the significant differences between these two and the advantages or disadvantages over each other are explained here.<span id="more-84"></span></p>
<p><strong>Advantages of SharpDevelop over Visual Studio:</strong></p>
<ol>
<li>Open Source (Full Source Code available freely)</li>
<li>Completely Free to use for both Commercial and Personal use</li>
<li>Supports all .NET Framework, Compact Framework, WinForms (with excellent extra GTK# for X-Window based systems), Console Application, Direct3D (wow, Game Development anyone?), WPF, and Windows and Web Services.</li>
<li>Supports additional languages like Boo, F#, ILAsm and Python (very good)  out of box apart from C# and VB.NET.</li>
<li>Supports Installer Creation (a very likable feature works better than VS in my opinion)</li>
<li>Light on Resources and faster on Building (refer Point 8 below). The last time I checked, has only 80 KB of RAM with 0.x% CPU Usage even after opening a bulky WinForms project and keeping couple of forms open in design mode. (A relief from VS&#8217;s usual 128 KB or more RAM and 4-5% CPU Usage)</li>
<li>Inbuilt Re-factoring Engine (you&#8217;ll need the paid software <a href="http://www.jetbrains.com/resharper/" target="_blank">JetBrains ReSharper</a> if you want this in Visual Studio)</li>
<li>Parallel Build support for Multi-core machines (faster building, very likable feature which is sadly not available in VS as of 2005)</li>
<li>Supports important Visual Studio add-ons like FxCop, StyleCop, NUnit, PartCover etc.</li>
<li>Version Controlling with Subversion (which is far better a solution than VSS. I&#8217;ll post another post soon explaining the benefits of SVN over VSS. You can of course use <a href="http://ankhsvn.open.collab.net" target="_blank">AnkhSVN</a> to get this in Visual Studio though.)</li>
<li>Wide range of very useful Add-ons (as the case with most Open Source projects)</li>
<li>Inbuilt Documentation Generator (Sandcastle, SHFB)</li>
<li>Very likable Class Diagram and Code Coverage views</li>
<li>Very likable F# Interactive, Boo Interpreter and Python Console</li>
<li>Supports <a href="http://www.infoscraps.com/2009/02/09/now-run-net-framework-across-multiple-os-platforms/">Mono</a> (the alternative .NET 2.0 Framework for Linux, BSD and Mac OS X)</li>
</ol>
<p><strong>What I see as disadvantages of SharpDevelop:</strong></p>
<ol>
<li>Code Editor has some minor glitches (I&#8217;ve seen some glitches on code folding and unfolding though it&#8217;s just visual not physical)</li>
<li>Lack of VSS Support (though I&#8217;m not looking forward to it as it&#8217;s a proprietary version control system to be included in any open source project like this)</li>
<li>Lack of Visual Studio like Object Browser (I miss that one here, though #Develop has very good Class Browser)</li>
<li>Somewhat Buggy (I&#8217;ve seen it crashing sometimes but understandable due to its Open Source nature)</li>
</ol>
<p>But apart from this, programmatically speaking, you can do everything that you can do in VS with #Develop. It&#8217;s pretty impressive for a Open Source project.</p></div>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=85298b01-34cd-4a30-8ada-cfc99c277084" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2009/02/12/sharpdevelop-vs-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A better alternative to Microsoft Visual Studio from Open Source community</title>
		<link>http://www.infoscraps.com/2009/02/09/a-better-alternative-to-microsoft-visual-studio-from-open-source-community/</link>
		<comments>http://www.infoscraps.com/2009/02/09/a-better-alternative-to-microsoft-visual-studio-from-open-source-community/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 11:24:05 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Alternatives]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[IDEs]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Freewares]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SharpDevelop]]></category>
		<category><![CDATA[Technologies]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/?p=72</guid>
		<description><![CDATA[Ever wondered how you could live without the Microsoft Visual Studio for your .NET development and learn to live with its memory consumption that bogs you down every time you run it? Well, I do. And I always find the command-line runnable .NET Framework fascinating to develop a much lighter IDE than the Visual Studio. [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wondered how you could live without the Microsoft Visual Studio for your .NET development and learn to live with its memory consumption that bogs you down every time you run it? Well, I do. And I always find the command-line runnable .NET Framework fascinating to develop a much lighter IDE than the Visual Studio. And of course, the ever present question of Licensing costs for a product that is really not needed to develop in .NET Framework (I mean matter-of-factly).</p>
<p><span id="more-72"></span></p>
<p>Now, you can shed all your worries of that and embrace the open source community for making a powerful Open Source IDE named <a href="http://www.icsharpcode.net/OpenSource/SD/">SharpDevelop</a>. It was so powerful that you can seriously consider it for a complete drop-in replacement of Microsoft Visual Studio. It supports almost all of the Visual Studio features and much more. It supports Subversion for Version Control. In my opinion Subversion is far great an Version Control system than VSS. Here is the screen shot of how it looks:</p>
<p align="center"><a href="http://www.infoscraps.com/wp-content/uploads/2009/02/sharpdevelop-20090209163659.png" rel="shadowbox[post-72];player=img;"><img class="aligncenter size-medium wp-image-71" title="SharpDevelop from ic#code" src="http://www.infoscraps.com/wp-content/uploads/2009/02/sharpdevelop-20090209163659-300x230.png" alt="SharpDevelop from ic#code" width="300" height="230" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2009/02/09/a-better-alternative-to-microsoft-visual-studio-from-open-source-community/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Making Firefox look and feel like Google Chrome</title>
		<link>http://www.infoscraps.com/2009/01/30/making-firefox-look-and-feel-like-google-chrome/</link>
		<comments>http://www.infoscraps.com/2009/01/30/making-firefox-look-and-feel-like-google-chrome/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 12:54:46 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Alternatives]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet Browsers]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google Chrome]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/?p=65</guid>
		<description><![CDATA[Well, ever since Google released their own Browser, Google Chrome, Firefox users were wondering the same thing. Will Firefox live up to beat yet another Browser? In my point of view, the answer is: Yes and very well beyond. The main reason behind this question is that Firefox users are very well comfortable in using [...]]]></description>
			<content:encoded><![CDATA[<p>Well, ever since Google released their own Browser, <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a>, Firefox users were wondering the same thing. Will Firefox live up to beat yet another Browser? In my point of view, the answer is: Yes and very well beyond. The main reason behind this question is that Firefox users are very well comfortable in using it and it&#8217;s much more compatible with almost all sites like IE. However, Google Chrome is a new entrant and has a long way to go in the Compatibility area. So, this post is for those die hard fans of Firefox like me&#8230;</p>
<p><span id="more-65"></span></p>
<p>For starters, Firefox Version 3.1 comes with the new JavaScript engine (just like Chrome&#8217;s V8 engine) which is far powerful and faster. Though the memory issues still plague Firefox users, I&#8217;ve seen the beta version of Firefox 3.1 Beta 2 beats that. So, here is my guide to those who would like functionality and look and feel like Google Chrome in Firefox.</p>
<p><strong>Making your Firefox 3.0.5 look like Google Chrome (A Compromise actually&#8230;)</strong></p>
<p>(NOTE: Some of the Extension needs you to login to Mozilla in order to install them as they are experimental)</p>
<ol>
<li>Download and Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/8782">Chromifox Theme from Mozilla Add-ons</a> site</li>
<li>If fortunate and have Vista, download and install the <a href="https://addons.mozilla.org/en-US/firefox/addon/9115">ChromiGlass</a> extension to give Chrome touch</li>
<li>If unfortunate and have XP or Linux, download and install the <a href="https://addons.mozilla.org/en-US/firefox/addon/9322">Total ReChrome</a> extension to give Chrome touch</li>
<li>Download and Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/5338">New Tab button on right</a> extension to have new tab functionality like Chrome</li>
<li>Download and Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/4014">LocationBar</a> extension to have Chrome like address bar functionality</li>
<li>Download and Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/3895">PersonalMenu</a> extension to have Chrome like Menus</li>
<li>Download and Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/26">Download Statusbar</a> extension to have Chrome like Downloads</li>
<li>[Experimental] Download and Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/1530">autoHide Statusbar</a> extension to have Chrome like status bar</li>
<li>Download and Install the <a href="http://www.google.com/tools/firefox/toolbar" target="_blank">Google Toolbar for Firefox</a></li>
<li>After installing all these, restart Firefox. You&#8217;ll already be seeing the Chrome like look and feel.</li>
<li>Right click on the Toolbar and remove the tick in Menu Bar</li>
<li>Right click on the Toolbar and choose Customize. Drag and drop Stop button to the next of Go button in address bar (this will make Go button become Stop once a page starts loading, just like Chrome)</li>
<li>From the same Customize box, Drag and Drop Personal Menu icon to the right side of Stop button. Close customize box.</li>
<li>Click on the Personal Menu icon (now will look like Chrome&#8217;s). Choose Edit Menu and choose whatever menu options that you want from Left side to Right side to have them under this single menu.</li>
<li>The Google Toolbar for Firefox (Version 5+) will mimic the new tab page feature of Google Chrome. However, if you don&#8217;t want it, you can turn off that feature alone from the Settings page of the Google toolbar.</li>
<li>Now, you should be seeing Firefox as Chrome</li>
</ol>
<p><strong>Making your Firefox 3.1 Beta 2 look and function like Google Chrome (A sure shot&#8230;)</strong></p>
<p>(NOTE: Some of the Extension needs you to login to Mozilla in order to install them as they are experimental)</p>
<ol>
<li>If you don&#8217;t have already, Download <a href="http://www.mozilla.com/en-US/firefox/all-beta.html">Firefox 3.1 Beta 2 from Mozilla</a> website.</li>
<li>Download and Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/9427">Chromifox 2 Theme from Mozilla Add-ons</a> site</li>
<li>Download and Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/9322">Total ReChrome</a> extension to give Chrome touch</li>
<li>Download and Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/5338">New Tab button on right</a> extension to have new tab functionality like Chrome</li>
<li>Download and Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/3895">PersonalMenu</a> extension to have Chrome like Menus</li>
<li>Download and Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/26">Download Statusbar</a> extension to have Chrome like Downloads</li>
<li>Download and Install the <a href="http://www.google.com/tools/firefox/toolbar" target="_blank">Google Toolbar for Firefox</a></li>
<li>After installing all these, restart Firefox. You&#8217;ll already be seeing the Chrome like look and feel.</li>
<li>Right click on the Toolbar and remove the tick in Menu Bar</li>
<li>Right click on the Toolbar and choose Customize. Drag and drop Stop button to the next of Go button in address bar (this will make Go button become Stop once a page starts loading, just like Chrome)</li>
<li>From the same Customize box, Drag and Drop Personal Menu icon to the right side of Stop button. Close customize box.</li>
<li>Click on the Personal Menu icon (now will look like Chrome&#8217;s). Choose Edit Menu and choose whatever menu options that you want from Left side to Right side to have them under this single menu.</li>
<li>The Google Toolbar for Firefox (Version 5+) will mimic the new tab page feature of Google Chrome. However, if you don&#8217;t want it, you can turn off that feature alone from the Settings page of the Google toolbar.</li>
<li>Now, you should be seeing Firefox as Chrome</li>
</ol>
<p>The final result is as below:</p>
<p align="center"><a href="http://www.infoscraps.com/wp-content/uploads/2009/01/google_-_mozilla_firefox_31_beta_2-20090209165840.png" rel="shadowbox[post-65];player=img;"><img class="aligncenter size-medium wp-image-76" title="Firefox looking as Google Chrome" src="http://www.infoscraps.com/wp-content/uploads/2009/01/google_-_mozilla_firefox_31_beta_2-20090209165840-300x256.png" alt="Firefox looking as Google Chrome" width="300" height="256" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2009/01/30/making-firefox-look-and-feel-like-google-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to unlock iPhone 2G to 2.1 Firmware on Windows</title>
		<link>http://www.infoscraps.com/2008/10/28/how-to-unlock-iphone-2g-to-21-firmware-on-windows/</link>
		<comments>http://www.infoscraps.com/2008/10/28/how-to-unlock-iphone-2g-to-21-firmware-on-windows/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 08:59:22 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Hacks]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/?p=48</guid>
		<description><![CDATA[DISCLAIMER: Unlocking iPhone is illegal in many countries and violates copyrights of Apple Computer, Inc. This post here is meant to be used by those unlucky people who got hold of an expensive iPhone but can&#8217;t use it with their desired cellphone networks without paying incredible charges for the genuine use. By providing this Post, [...]]]></description>
			<content:encoded><![CDATA[<p style="padding-left: 30px;"><span style="color: #ff0000;"><em><strong>DISCLAIMER:</strong> Unlocking iPhone is illegal in many countries and violates copyrights of Apple Computer, Inc. This post here is meant to be used by those unlucky people who got hold of an expensive iPhone but can&#8217;t use it with their desired cellphone networks without paying incredible charges for the genuine use. By providing this Post, I&#8217;m in no means encouraging every iPhone user to unlock their iPhones. The decision to unlock/jailbreak the iPhone is entirely by the User of the iPhone and any consequences therefore should be liable on that User only.</em></span></p>
<p><img class="size-full wp-image-49" title="iPhone 2G 2.1 Firmware Update" src="http://www.infoscraps.com/wp-content/uploads/2008/10/iphone2g-21-update.png" alt="iPhone 2G 2.1 Firmware Update" width="309" height="432" align="right" />After searching in internet for various times and provided with loads of steps that either failed to work or entirely different when you try to execute them, I&#8217;ve finally hacked my iPhone 2G to the latest 2.1 Firmware by using the basic methods that are supported and reproducible at any point of time. For the benefit of Info Scraps readers,  here is the full step by step guide to unlock your own iPhone 2G to 2.1 Firmware on Windows. Please NOTE that these steps may or may not work for iPhone 3G. Particularly the QuickPwn for Windows version mentioned here was not programmed to work with iPhone 3G according to the developers. So, please use these methods ONLY in iPhone 2G and of course on Windows only. Mac OS X users obviously have better and easier ways to hack the iPhone 2G or 3G which I will write in another post.</p>
<p><span id="more-48"></span></p>
<ol>
<li>If you do not already have iTunes 8 or have an older version of iTunes in your PC, first step would be to go to <a href="http://www.asia.apple.com/itunes/download/" target="_blank">Apple Official iTunes Website to download</a> the latest version appropriate to your Operating System. <em>(<strong>NOTE:</strong> Windows Vista x64 users like me should ONLY download the 64-bit version mentioned in this Page as using the other version will cause an Warning upon setup)</em></li>
<li>Install the latest version of iTunes into your PC and restart the Computer if asked, otherwise, start the iTunes.</li>
<li>Connect your iPhone 2G to the Desk Charger and plug the USB port to the PC. iTunes will automatically start up upon successful connection of iPhone 2G. If it does not, don&#8217;t panic, just start iTunes manually and it&#8217;ll detect the connected iPhone 2G.</li>
<li>Even though the steps mentioned here will not erase your data, I can&#8217;t guarantee you if something unwanted happens. So, it&#8217;s a better idea to backup everything in the iPhone by right clicking on the iPhone button in the left side bar of iTunes and choosing Backup option. Also, make sure you sync all your data to your PC using iTunes before you try updating the firmware.</li>
<li>Upon connection, the iTunes will ask you to update your iPhone to latest 2.1 firmware. If it does not ask you, don&#8217;t panic, just click on the Update button on the iPhone summary page in iTunes. <em>(<strong>NOTE:</strong> look at the version number it says carefully. If by the time you&#8217;re reading this post, Apple released yet another update to the iPhone firmware, you might probably be upgrading to a later version than 2.1 firmware for which these steps won&#8217;t be effective. So, if the version number you see in the update dialog is bigger than 2.1 firmware, follow alternative steps I&#8217;ve mentioned at the bottom of this post to find the 2.1 firmware update to your iPhone 2G)</em></li>
<li>The update process will take some time, leave your iPhone 2G connected. The 2.1 firmware itself is a 230 MB sized file. iTunes will first download this file and then only update your iPhone 2G to this firmware. So, the waiting time will vary depending upon the speed of your internet connection.</li>
<li>After the update, your iPhone 2G will restart. Just unplug it from the Desktop Charger while it&#8217;s being restarted. This will prevent an nagging message from iTunes that your SIM Card is locked and your iPhone 2G put into restore mode (some rare cases only). If you&#8217;re not quick enough or forgot to unplug it while it&#8217;s restarting, nothing is lost. Just proceed down the steps. ONLY in case if your iPhone 2G is put into restore mode by your iTunes, you have to follow the alternative steps mentioned at the bottom of this post to get it back to normal mode.</li>
<li>Now, you&#8217;ll notice that only emergency calls are allowed in your iPhone. Nothing to worry about. This is the locking feature of iPhone 2G and iTunes. Whether you unplugged it from iTunes while restarting or not, it&#8217;ll still lock the iPhone 2G as you&#8217;re using the latest firmware but not using a genuine SIM Card.</li>
<li>Now, visit the <a href="http://blog.iphone-dev.org/post/50888951/redmond-we-have-a-pwnapple" target="_blank">iPhone-Dev blog to download the QuickPwn 2.1 for Windows</a> software from there. If you&#8217;re NOT familiar with Torrents and was not able to download the official version or the mirror versions mentioned there, you can download <a href="http://www.infoscraps.com/downloads/QuickPwn21-1.zip">my own version here</a> which is the same as the official version (you can <a href="http://www.infoscraps.com/2008/10/28/verify-downloaded-file-integrity-by-file-signatures-md5-sha1-and-crc32/" target="_blank">verify it by using the SHA1 signature</a> mentioned in that post if you know how to verify file signatures).</li>
<li>Now, close your iTunes and plug your iPhone 2G to Desktop Charger and connect the USB Port to PC. If iTunes starts up again, just close it. You wouldn&#8217;t need it for unlocking.</li>
<li>Extract the <strong>QuickPwn21-1.zip</strong> file you&#8217;ve downloaded from Step 8 to your convenient location. You&#8217;ll find a <em><strong>README.txt</strong></em> file and <em><strong>QuickPwn.exe</strong></em> file. Double click on the QuickPwn.exe to execute it. (<strong>NOTE:</strong> If you&#8217;re using Windows XP and is not having .NET Framework 2.0 installed in your machine, you must first install it before using QuickPwn 2.1 on your PC. You can download the .NET Framework 2.0 from Microsoft Website for <a href="http://www.microsoft.com/downloads/details.aspx?familyid=0856eacb-4362-4b0d-8edd-aab15c5e04f5&amp;displaylang=en" target="_blank">x86 if you&#8217;re using 32-bit Windows XP/Vista</a> or <a href="http://www.microsoft.com/downloads/details.aspx?familyid=B44A0000-ACF8-4FA1-AFFB-40E78D788B00&amp;displaylang=en" target="_blank">x64 if you&#8217;re 64-bit Windows XP/Vista</a>)</li>
<li>QuickPwn should detect your iPhone connected. If it&#8217;s not automatically detecting, just click on the blue right arrow button to make it detect your connected iPhone. Once detected, select the right phone (iPhone 2G) from the displayed options.</li>
<li>QuickPwn will now ask you to choose the firmware file which is installed in your iPhone 2G. If you followed my Step 4 above for updating your iPhone, you can find the latest firmware downloaded by iTunes at: <strong>%APPDATA%\Apple Computer\iTunes\iPhone Software Updates\iPhone1,1_2.1_5F136_Restore.ipsw</strong><br />
<em>(<strong>NOTE 1:</strong> APPDATA% means the Application Data folder of your Windows installation, to find it, just go to Start -&gt; Run and type %APPDATA%. It will show you the correct folder where Application Data is available.)</em><br />
If you followed the alternative steps mentioned at the bottom of this post to update your iPhone 2G to 2.1 firmware, you&#8217;ll have to select the file you used to update.</li>
<li>If the file you selected matches with the firmware installed in the connected iPhone 2G, QuickPwn will show you a green check mark to indicate successful file selection. Click the blue right arrow button to continue.</li>
<li>Now, you&#8217;ll be given options to unlock your iPhone 2G. There will be four options as: Cydia, Installer, Unlock iPhone and Custom Boot Logo. You&#8217;ll have to select Cydia and Unlock iPhone (MUST). If you want an third party applications installer apart from the Apple AppStore which will be installed for you already in 2.1 firmware, you can select the Installer also. If you want the boot time Apple logo shown by iPhone to be something else which is cool, you can select the Custom Boot Logo (Just remember that choosing this option adds an extra step which will ask you to choose the custom logos for Boot and Restore modes which is NOT covered in this guide)</li>
<li>Now QuickPwn will open a new to show you that it&#8217;s ready to start the Pwning process. Click Go.</li>
<li>Now QuickPwn will do a series of steps and shows you actions to perform in the list of items in the Window which are highlighted in black when in progress.</li>
<li>These steps include, Switching off your iPhone after connecting to Desk Charger and USB Port to PC. Holding down the Power and Home in the manner being asked to put your iPhone in DFU mode (which is the Restore mode helping QuickPwn to install a custom built firmware in your iPhone)</li>
<li>Just do as it says exactly with the seconds count it shows. Please be careful about this process as it&#8217;s highly important. Also, make sure you&#8217;re connected to an unconnected power source so that to ensure your PC didn&#8217;t turned off while this process is being carried on which might cause a severe damage to your iPhone which may or may not be reversible.</li>
<li>At the last operation, you&#8217;ll still be holding the Home button. Don&#8217;t release this button until you see your iPhone saying Loading Ramdisk in it&#8217;s screen.</li>
<li>Just to clarify things for beginners, Power button is the small switch on top of the iPhone and the Home Button is the only round button available in the front side of your iPhone.</li>
<li>Wait patiently until the entire Jailbraking operations completes. It might take at least 10 to 15 minutes to complete the whole operation. It might be long also depending on your PC configurations.</li>
<li>Once all the 8 different processes were done, you&#8217;ll finally see a message in the QuickPwn window saying &#8220;You iPhone 2G seems to be jailbroken. You can now use the device.&#8221; or something like that. Wait to ensure your iPhone also finished it&#8217;s processes (sometimes QuickPwn finishes its processes quickly while iPhone is still loading and running multiple processes). Once everything is done at both end, you&#8217;ll see your iPhone restarting.</li>
<li>That&#8217;s it! You&#8217;ve now fully jailbroken (unlocked) iPhone 2G with latest 2.1 firmware at your hands. Enjoy. Please provide me comments here if you&#8217;re facing any problems or issues.</li>
</ol>
<p><strong>Alternative Steps (for different scenarios)</strong></p>
<p><em><strong>If your iTunes is latest than 8.0 and shows a different version than 2.1 firmware in the update dialog:</strong></em></p>
<ol>
<li>Download <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5202.20080909.gkbEj/iPhone1,1_2.1_5F136_Restore.ipsw">iPhone 2G 2.1 Firmware from Apple Website</a></li>
<li>If you&#8217;re facing problems or the above link is not working, you can <a href="http://www.infoscraps.com/downloads/iPhone1,1_2.1_5F136_Restore.ipsw">Download My version here</a> which is the same.</li>
<li>Connect your iPhone 2G to the Desk Charger and plug the USB Port to PC. If iTunes is not already started, start it manually and it should detect and show an iPhone button in the left side bar.</li>
<li>If iTunes asks for updating, just click Cancel and also choose the Don&#8217;t ask me again check box if it&#8217;s available so that iTunes will not nag you asking to update again and again.</li>
<li>Hold down the Shift key and choose the Restore button in the iPhone Summary page in iTunes.</li>
<li>It&#8217;ll open a File Open dialog where you should locate the firmware you&#8217;ve downloaded above.</li>
<li>Wait patiently until the full restoring is done. It&#8217;ll take some time depending on your PC configuration.</li>
<li>Once the restore is done, follow the Steps mentioned in the beginning of this post starting from Step 7</li>
</ol>
<p><em><strong>iPhone entered into DFU Mode/Restore mode and showing iTunes logo with a USB Cable display no matter whatever you tried to do with it.</strong></em></p>
<ol>
<li>First and the easy method, Just hold down the Power Button and Home Button together for 10 seconds until the screen goes completely blank. Release both buttons and make sure iPhone does not restart again into restore mode (Sometimes this happens if you&#8217;re either too quick or too late to release both Home and Power buttons. If it happens try again and again.)</li>
<li>After successful blank screen, you can press and hold Power Button for 2-3 seconds to power up your device and it&#8217;ll go to the Normal mode (It might still display iTunes logo but there will be a display of Carrier and a slider with Emergency Calls Only shown in different languages. In this case, it simply means that the SIM card is Locked but you&#8217;re in Normal mode)</li>
<li>If doing manually frustrated you and you were never successful, download ZiPhone 3.0 from <a href="http://download.ziphone.org/" target="_blank">ZiPhone Blog</a> or from <a href="http://www.infoscraps.com/downloads/ZiPhoneWin-3.0.exe">here in Info Scraps</a> if the ZiPhone Blog download is not working.</li>
<li>Double click on the downloaded <strong>ZiPhoneWin-3.0.exe</strong> file. It will ask you where to extract the files, Extract it to Desktop (default location) or to C:\Ziphone or wherever is your convenience place.</li>
<li>Double click on the ZiPhoneGUI.exe in the extracted folder to start this. <em>(<strong>NOTE:</strong> If you don&#8217;t have .NET Framework 2.0 installed in your PC, follow the instructions in Step 11 in main guide above)</em></li>
<li>Once started, click on the &#8220;Click to show advanced features&#8221; button in the Advanced Features area.</li>
<li>Click on the Normal Mode button in the Change phone mode area under Advanced Features area. This will take some time and puts your iPhone into Normal mode and accessible to QuickPwn.</li>
<li>This is also an easy way to switch between various modes like Restore, DFU and Normal.</li>
</ol>
<p>If any other problems, let me know and I will try to solve them as much as possible by providing detailed instructions here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2008/10/28/how-to-unlock-iphone-2g-to-21-firmware-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazing Google Reader!</title>
		<link>http://www.infoscraps.com/2006/12/14/amazing-google-reader/</link>
		<comments>http://www.infoscraps.com/2006/12/14/amazing-google-reader/#comments</comments>
		<pubDate>Wed, 13 Dec 2006 23:27:39 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Alternatives]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Web Based]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[Web Applications]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/?p=42</guid>
		<description><![CDATA[I&#8217;ve been using RSS Bandit for a long time now and I&#8217;ve never been very accustomed with Web Based readers. But recently one of my friend suggested Google Reader very much so I though I could do a try. First of all, Google Reader, didn&#8217;t accepted my OPML file which I exported from RSS Bandit. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sripauljoseph.com/wp-content/uploads/2007/12/google-reader-logo.png" alt="Google Reader Logo" align="left" />I&#8217;ve been using <a href="http://www.rssbandit.org" target="_blank">RSS Bandit</a> for a long time now and I&#8217;ve never been very accustomed with Web Based readers. But recently one of my friend suggested Google Reader very much so I though I could do a try.</p>
<p><span id="more-42"></span></p>
<p>First of all, Google Reader, didn&#8217;t accepted my OPML file which I exported from RSS Bandit. So, I tried manually adding some of the RSS feeds and had a go. It&#8217;s really awesome. <img src='http://www.infoscraps.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Google seems to be making very good use of <a href="http://en.wikipedia.org/wiki/AJAX" target="_blank">AJAX</a>. Which really made their Web Based reader a pleasant experience.</p>
<p>I strongly recommend those of you guys who think a Web Reader is not good to see <a href="http://www.google.com/reader/view/" target="_blank">Google Reader</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2006/12/14/amazing-google-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Firefox Extensions</title>
		<link>http://www.infoscraps.com/2006/09/14/google-firefox-extensions/</link>
		<comments>http://www.infoscraps.com/2006/09/14/google-firefox-extensions/#comments</comments>
		<pubDate>Thu, 14 Sep 2006 08:29:16 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet Browsers]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Add-Ins]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/?p=24</guid>
		<description><![CDATA[Google is always ahead of everybody. I really love these people. They’ve came up with a list of Firefox extensions that are surely rocking cool ones. First of all, find all of the below listed Google Firefox Extensions here. Google Toolbar 2.1 for Firefox An excellent rework of Google Toolbar originally developed for Internet Explorer. [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Google Logo" src="http://www.infoscraps.com/wp-content/uploads/2008/10/google-logo.gif" alt="Google Logo" width="276" height="110" align="right" /><img title="Firefox Logo" src="http://www.infoscraps.com/wp-content/uploads/2008/10/firefox-logo.gif" alt="Firefox Logo" width="87" height="85" align="right" />Google is always ahead of everybody. <img src='http://www.infoscraps.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I really love these people. They’ve came up with a list of Firefox extensions that are surely rocking cool ones.</p>
<p><span id="more-24"></span></p>
<p class="MsoNormal">First of all, find all of the below listed <a href="http://www.google.com/tools/firefox/index.html" target="_blank">Google Firefox Extensions here</a>.</p>
<p class="MsoNormal"><strong><a href="http://www.google.com/tools/firefox/toolbar/index.html?utm_source=en-et-labs&amp;utm_medium=et&amp;utm_campaign=en" target="_blank">Google Toolbar 2.1 for Firefox</a></strong></p>
<p class="MsoNormal">An excellent rework of Google Toolbar originally developed for Internet Explorer. Helped me a lot when I was a die hard IE fan. But now, it adds more cool features to Firefox and making me right in taking the decision on getting rid of Internet Explorer for good. <img src='http://www.infoscraps.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p class="MsoNormal"><a href="http://www.google.com/tools/firefox/browsersync/index.html" target="_blank"><strong>Google Browser Sync</strong></a></p>
<p class="MsoNormal">The BEST class of Extension can ONLY given by Google! It’s simply superb. It saves everything from your Browser Settings, Bookmarks, History, Persistent Cookies, Saved Passwords and even your Tabs and Windows into the centralized Google Server and enables you to access them from any other computer any time by just using this extension in the target computer’s Firefox browser. It’s amazing thing. It’s really a life saver for me who find it very difficult to synchronize between my Office PC, my Home Desktop PC and my Laptop PC always as I keep on sitting in different places. This really saved my life by synchronizing everything across these three PC’s which shown me as though I’m working on the single computer. I want these cool guys sitting in Google to come up a solution like this for Windows Files also. Then, I won’t even need to worry about carrying my Memory Sticks and Flash Drives for moving data in and out. Actually, that I was able to solve by using one excellent tool from Microsoft named Groove. It comes as part of MS Office 2007 Beta 2. As I’m their Beta Tester, they’ve sent me this and it’s really awesome product. I will put one more Post on that software. As of now, I use Groove to synchronize my files and Google Browser Sync to synchronize my surfing things.</p>
<p class="MsoNormal"><a href="http://www.google.com/googlenotebook/faq.html" target="_blank"><strong>Google Notebook</strong></a></p>
<p class="MsoNormal">Another handy tool from Google. Enables me to take quick notes on various web pages and sites. Man, really these tools will make me a real blogger hereafter I guess. <img src='http://www.infoscraps.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p class="MsoNormal"><a href="http://www.google.com/tools/firefox/webcomments/index.html" target="_blank"><strong>Blogger Web Comments</strong></a></p>
<p class="MsoNormal">Supposed to be a COOL extension. But the only problem is, it ONLY supports Blogger. That’s the saddest thing. I use <a href="http://www.wordpress.org/" target="_blank">WordPress</a> on my own hosting for my blogging. So, this won’t suit me. Anyways, if you guys are using Blogger for blogging, this is an excellent extension that allows you to post comments and view others comments on any website using Blogger.</p>
<p class="MsoNormal"><a href="http://www.google.com/tools/firefox/sendtophone/index.html" target="_blank"><strong>Google Send to Phone</strong></a></p>
<p class="MsoNormal">Another cool-but-not-useful-for-me kind of extension. Because, it currently supports ONLY US Mobile Numbers. If any of you guys are browsing this blog from USA (If so, I will be thrilled. <img src='http://www.infoscraps.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ), I strongly recommend you use this for your MobiLog (Mobile Blogging) by sending snippets of web pages to your Phone via SMS.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2006/09/14/google-firefox-extensions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Firefox 2.0 is AMAZING!</title>
		<link>http://www.infoscraps.com/2006/09/13/firefox-20-is-amazing/</link>
		<comments>http://www.infoscraps.com/2006/09/13/firefox-20-is-amazing/#comments</comments>
		<pubDate>Wed, 13 Sep 2006 08:12:46 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Alternatives]]></category>
		<category><![CDATA[Internet Browsers]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Add-Ins]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/?p=16</guid>
		<description><![CDATA[I always liked Internet Explorer the most. Because, being as a Web Developer, I liked the rendering in Internet Explorer the most than any other browsers. Also, the IE is the very commonly used browser by all developers and websites. I always used Firefox for testing my JavaScript (as IE doesn’t have any kind of [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><img title="Firefox 2.0" src="http://www.infoscraps.com/wp-content/uploads/2008/10/firefox-title.png" alt="Firefox 2.0" width="252" height="55" align="right" />I always liked Internet Explorer the most. Because, being as a Web Developer, I liked the rendering in Internet Explorer the most than any other browsers. Also, the IE is the very commonly used browser by all developers and websites. I always used Firefox for testing my JavaScript (as IE doesn’t have any kind of JavaScript validators).</p>
<p><span id="more-16"></span></p>
<p class="MsoNormal">But the all new Firefox 2.0 changed me entirely. I’ve even ended up in uninstalling my IE plug-in based <a title="Best IE Replacement Browser!" href="http://www.avantbrowser.com/" target="_blank">Avant Browser</a> which I found the most convenient replacement for boring IE interface. Actually the Avant Browser people call it the Swiss Knife Browser as it had a lot of cool utilities. But now, I don’t think this term is really means anything for Avant Browser than Firefox 2.0!</p>
<p class="MsoNormal">Actually the normal Firefox (with the DOM Inspector in custom installation) hasn’t given me much relief and isn’t the reason I wrote this Post. It’s after I found some cool extensions for Firefox from internet and applied it. It became so useful that I really ended up in using ONLY Firefox. I upgraded my Internet Explorer to 7.0 version as it’s now highly stable and supported old version (IE 6) websites also. But after I found a extension in Firefox that enabled me to use IE engine (the plug-in used by Avant Browser like IE replacements) in any Tabs as I wish gave me an easier way of switching the engines, I fall in LOVE with Firefox. It’s now the ultimate Developer Tool. If you’re interested, a Web Developer, and a dedicated fan of IE (like me), please read further about the extensions I used on Firefox 2.0 that made me forget IE forever.</p>
<p class="MsoNormal"><a href="https://addons.mozilla.org/firefox/3542/" target="_blank"><strong>Aging Tabs 0.4</strong></a></p>
<p class="MsoNormal">This is a cool extension that shows different colors of tabs based on the usage. If you left a Tab unvisited for a period of time or new url loading or cycling, it will change the color of that Tab. This really helped me a lot in identifying which tab I visited when.</p>
<p class="MsoNormal"><a href="http://www.roboform.com/browsers.html#browser_mozilla" target="_blank"><strong>AI RoboForm Tool bar for Firefox 6.8.0</strong></a></p>
<p class="MsoNormal">This is actually used in conjunction with <a href="http://www.roboform.com/" target="_blank">RoboForm</a>, an Excellent tool for Windows that stores your logins and automatically logins to them if you want. It also supports Form filling, Automatic Login, and encryption. This toolbar is meant for Firefox 2.0 and supports cool features integrated with Firefox for auto filling almost everything. (You can forget Firefox’s Form and Password remembering features).</p>
<p class="MsoNormal"><strong><a href="https://addons.mozilla.org/firefox/1002/" target="_blank">Codetch 0.4</a></strong></p>
<p class="MsoNormal">Real Developer Tool. This is actually can be considered as a Web Page editor. But acts simply as a separate tab in Firefox and enables you to edit pages while previewing your changes. It’s like <a href="http://www.adobe.com/products/dreamweaver/" target="_blank">Dreamweaver</a>. It also supports WYSIWYG (What You See Is What You Get) mode of editing. It’s really wonderful.</p>
<p class="MsoNormal"><a href="https://addons.mozilla.org/firefox/1806/" target="_blank"><strong>DOM Inspector 1.8.1</strong></a></p>
<p class="MsoNormal">This is another Developer Tool. This extension comes preloaded with Firefox installation. You need to choose Custom mode while installing and select this. If you haven’t installed it already, you can visit the plug-in link given in the title and download it. This shows a status bar icon which, when clicked, immediately shows the errors in your web page.</p>
<p class="MsoNormal"><a href="https://addons.mozilla.org/firefox/1843/" target="_blank"><strong>FireBug 0.4.1</strong></a></p>
<p class="MsoNormal">Another cool Developer Tool which gives great control over the JavaScript and CSS you use in your Web pages. A clear winner on top of IE which doesn’t have any kind of software like this.</p>
<p class="MsoNormal"><a href="https://addons.mozilla.org/firefox/684/" target="_blank"><strong>FireFTP 0.94.6</strong></a></p>
<p class="MsoNormal">Actually, I couldn’t believe Firefox is this much customizable that by just installing an extension, you can use Firefox as a new Software itself. This is just 102 KB (unbelievable!) and gives an entire FTP client in a Tab of Firefox 2.0. Enables you to do all FTP operations as you do in any FTP client software. A clear winner over IE as IE is having the boring integrated FTP client that shows files in Windows Explorer mode.</p>
<p class="MsoNormal"><a href="https://addons.mozilla.org/firefox/1419/" target="_blank"><strong>IE Tab 1.1.1.4</strong></a></p>
<p class="MsoNormal">This is the Extension that finally made me write this Post! This cool extension allows you to use IE engine for a Tab (a Web Page). Which is amazingly cool feature that is NOT supported in any other Browser (as far as I know). It gives a cool icon in status bar (or you can drag &amp; drop a button of this next to Go button which gives very convenient way) which, on click changes the engine of the currently displayed web page from Firefox and IE which enables you to test your web pages how it will look in Firefox and IE by just a click of mouse.</p>
<p class="MsoNormal"><a href="https://addons.mozilla.org/firefox/1743/" target="_blank"><strong>lori (Life-of-request info) 0.1.0</strong></a></p>
<p class="MsoNormal">Another Developer Tool. It just creates three boxes in the Status Bar which shows the accurate time each page took for rendering from Web Server. The ultimate thing any Web developer wants to know is how long his page is taking to load from Live! That’s solved by this amazing extension.</p>
<p class="MsoNormal"><a href="https://addons.mozilla.org/firefox/539/" target="_blank"><strong>MeasureIt 0.3.6</strong></a></p>
<p class="MsoNormal">Another excellent tool (cool isn’t enough). This gives me another box in the left corner of Status Bar which upon click, dims the current web page and allows you to draw a rectangle over any area which shows it’s measurement in Pixels. I can say, this is another ultimate thing any Web Page Designer will look for.</p>
<p class="MsoNormal"><a href="https://addons.mozilla.org/mozilla/3184/" target="_blank"><strong>MetaProducts Integration 1.1.3</strong></a></p>
<p class="MsoNormal">Another Software based extension like AI RoboForm. It comes with <a href="http://www.metaproducts.com/mp/Mass_Downloader.htm" target="_blank">Mass Downloader</a>, an excellent tool for mass downloading. Allows faster downloads by just downloading the same file from ten different connections and integrating internally for a single file output. I liked this Tool very much and using this for almost 2 years. Now, I found this extension which enabled easy way of integrating Mass Downloader with Firefox.</p>
<p class="MsoNormal"><a href="http://www-personal.umich.edu/~mjbommar/sessionmanager/index.html" target="_blank"><strong>Session Manager 0.4.3 (Hacked for supporting Firefox 2.0)</strong></a></p>
<p class="MsoNormal">This another cool extension which enabled me completely get rid of Avant Browser. Because, the ultimate feature of Avant Browser is saving all the open tabs under any crash or manual close of Browser and giving an option to restore them in next open of the Browser. This feature is not really integrated in Firefox though it supports restoration of tabs under Crashes only. But that flaw is gone away by this excellent extension. This enabled me not only save the session, it actually enabled me to keep track of closed tabs (I can specify the limit also) and allows me restore them individually. Also, supports saving the contents of the Tab (preserving anything I might’ve entered in that page), another cool reason to go for this.</p>
<p class="MsoNormal">Only one problem with the extension is it is not supported in Firefox 2.0. While searching in Internet, I found the work around for this and given that link in the title of this extension here. If you are using older Firefox and want this extension, it is <a href="https://addons.mozilla.org/firefox/2324/" target="_blank">available here</a>.</p>
<p class="MsoNormal"><a href="https://addons.mozilla.org/firefox/1937/" target="_blank"><strong>Tab Catalog 1.1.2006</strong></a></p>
<p class="MsoNormal">Excellent feature that enabled me forget IE7. IE 7 came with a cool feature of previewing the open tabs as Thumbnails and also a Drop down list of currently opened tabs. Both of these features and also another feature where by pressing Ctrl+Tab you can navigate through the open tabs by using Thumbnails of them (just like Alt+Tab functionality in Windows that shows only icons of open Programs) are included in this extension.</p>
<p class="MsoNormal"><a href="https://addons.mozilla.org/firefox/2318/" target="_blank"><strong>Total Validator 3.1</strong></a></p>
<p class="MsoNormal">Another Developer friendly Tool. Validates everything (HTML, CSS, XHTML, etc) of a web page. Only problem is, it’s not offline validation (not Software based). It goes to their website for validating. And their website sometimes seems to be hanging.</p>
<p class="MsoNormal"><a href="https://addons.mozilla.org/firefox/2897/" target="_blank"><strong>XML Developer Toolbar 0.2</strong></a></p>
<p class="MsoNormal">Best XML Developer Tool disguised as a extension here. Another amazing feature of Firefox. This tool enables me to work around XML just like HTML with validations and everything.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2006/09/13/firefox-20-is-amazing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
