<?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; Tips &amp; Tricks</title>
	<atom:link href="http://www.infoscraps.com/topics/tips-tricks/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>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>Open Source as an alternative to Corporates</title>
		<link>http://www.infoscraps.com/2009/03/19/open-source-as-an-alternative-to-corporates/</link>
		<comments>http://www.infoscraps.com/2009/03/19/open-source-as-an-alternative-to-corporates/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 15:40:24 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Alternatives]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Proprietary]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/2009/03/19/open-source-as-an-alternative-to-corporates/</guid>
		<description><![CDATA[Open Source as a implementation is as old as the Internet dating from APRANET. The RFC (Request for Comments) of ARPANET is the first Open Source distribution of specifications that were proprietary. However, Open Source as a term was credited to Netscape the company that once owned world&#8217;s most popular browser beside Internet Explorer. Failing [...]]]></description>
			<content:encoded><![CDATA[<p>Open Source as a implementation is as old as the Internet dating from APRANET. The RFC (Request for Comments) of ARPANET is the first Open Source distribution of specifications that were proprietary. However, Open Source as a term was credited to Netscape the company that once owned world&#8217;s most popular browser beside Internet Explorer. Failing the great Browser War to Microsoft in a law suit that costed its existence, Netscape created the first real Open Source initiative, the Mozilla as we know today. Ever since, organizations and public alike from all over the world were always on the lookout for Open Source alternatives whenever their proprietary solutions hit their nerves.</p>
<p><span id="more-99"></span></p>
<p>As an Individual who has spent very good time on some of the best Open Source products, I always believed that having an alternative to the proprietary solutions that tend to be just the money machines is always refreshing. Many people think that Open Source means free software (in terms of cost). Open Source doesn&#8217;t meant to be free of cost. This is highly important because, many organizations, when offered a choice of Open Source, immediately backed up saying there&#8217;s as quality as the money goes (which means, the higher the price, the perfect the software &#8211; again a phenomenon). Individuals also believed that you can&#8217;t expect quality from a person who&#8217;s doing coding for free. That&#8217;s is true if we don&#8217;t consider the passion that some people really show in the work they do no matter whether it&#8217;s for a cost or not. There are also some Open Source software which are not free of cost. Again, as I stated, a software&#8217;s quality can&#8217;t be decided by its price or proprietary.</p>
<p>The significant difference as I see it, whether it&#8217;s a paid software or free-of-cost software lies in whether the software is open to modifications or not. Many organizations argue that having an Open Source software doesn&#8217;t means anything since they couldn&#8217;t modify it because of the unavailability of the resources or the time to do so. That&#8217;s acceptable, but that can&#8217;t be a reason to ignore a software that gives the possibility of modification against a software that gives a possibility of just patches that may come in a year. I would say the main reason why Open Source got so famous is because of the company Microsoft. They realized it very late. But its simply the single most reason why so many people got frustrated with Proprietary software. The kind of frustrations that started with the Windows Operating System to all of Microsoft products that showed systemic errors which gave nothing as a reason to understand, support that always considers the Customer is the problem, updates that always breaks more things than the ones its supposed to fix. There are so many instances that can be told about this. But again, Microsoft is an example only (highly significant example). There are so many popular Proprietary software companies like Adobe, Corel etc that produces software which are used by millions of users worldwide yet giving them frustrations at some point of time. Any software that is written by human being can always contain bugs, that is an understandable universal fact. However, that doesn&#8217;t mean one shouldn&#8217;t be fixing it. That&#8217;s where Open Source gets handy providing a way to fix things by ourselves if we have the time and resources to do so. Or, at least allows us to look into the right place for answers when something goes wrong instead of closing itself sealed and ask us to contact the Administrator who was never there.</p>
<p>Another argument of corporates against Open Source is the availability of Customer Support. I actually get surprised when organizations through such a lame argument. Because, its prudently evident that you can get as much support as given by any Proprietary Software in any of the Open Source software if only you looked in the right place. Many Open Source products that are free-of-cost has a Support availability through community which is also free-of-cost or a paid contract for support just like the proprietary ones. Here, yet another advantage of Open Source software over proprietary software is that in most cases, for the proprietary software you&#8217;ll be ended up paying the license cost and support cost wherein Open source you&#8217;ll be paying for only the support. In the case of Proprietary software, community support is always very less because the community is again another set of frustrated users who either got lucky to find an way to fix the problem or paid the cost to know the solution. But, in Open Source, the community is the strongest support you can ever get as it consists of users who are passionate about figuring out the problem by themselves, hacking through the code and fix it by themselves instead of looking for outside support and people who actually wrote the original code of that software. In my experience, I&#8217;ve always seen that the best learning one can get is from the one they learned by hard ways.</p>
<p>Life-time of the Open Source software is another concern of Corporates. In this case, we have to be the judge of ourselves or get good judgement from the community. It is sadly true that most Open Source software tend to expire after some time. However, this is not the case with most popular open source products that learned a way to earn (through paid support or advertisements) and keep the community going. So, it will be a tough decision for the corporate to decide which parts of their IT infrastructure can be replaced by Open Source implementations that don&#8217;t just expire. There is also a high advantage if the corporate is willing to understand the code. If it spent enough time and resources to understand the code and structure of the open source implementation, they can always keep the software up to date despite of whether it got expired in the community or not. It also serves another purpose as if at any point of time they encounter a problem, they can simply fix it themselves.</p>
<p>Implementation and migration cost over proprietary implementations already in place is another huge concern of Corporates. I&#8217;ve to agree with this completely as it&#8217;s a very tough decision for Corporates who invested a lot in proprietary implementations that were running for quite some time. However, I would never suggest open source as a complete and overall drop in replacement. Implementation can be step by step and highly planned to avoid this. Also, once implemented, on the long run, it reduces much of the cost which is the running cost of proprietary implementations. Over a period of time, if we analyze, we may found that even the implementation cost is fully recovered by the reduced running costs.</p>
<p>Virus, Malwares and Trojans disguised as Open Source software is also a concern of individuals and corporates alike who are considering open source alternatives. I can&#8217;t guarantee here that every open source is secured. However, I can guarantee that most of the popular open source distributions tend to be more secure than the proprietary distributions. One should also consider the kind of place from where the software is being downloaded and run some anti virus tests before starting implementation. Downloading from official servers of the organization that developed the open source tends to be always more secure. Also, I&#8217;ve seen that open source implementations were quick to release updates if any vulnerabilities found in their software. Again, as I told previously, the corporates themselves can look into the code and decide if there were any malware code existing in the open source implementation. Particularly because of the Open Source nature, these kinds of malware codes tend to be less targeting the Open Source products against the highly targeted proprietary products. That is again another advantage of open sources considering in the case of proprietary softwares, you can&#8217;t find a way to cure the vulnerability until the developer themselves provides a patch.</p>
<p>Conclusively, in reality, there are more reasons to adopt Open Source than there are for adopting Proprietary Source if we know what we want and what we can do with what we require.</p>
<p>Please let me your comments&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2009/03/19/open-source-as-an-alternative-to-corporates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uploading and Linking images and files in WikkaWiki</title>
		<link>http://www.infoscraps.com/2009/02/23/uploading-and-linking-images-and-files-in-wikkawiki/</link>
		<comments>http://www.infoscraps.com/2009/02/23/uploading-and-linking-images-and-files-in-wikkawiki/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 13:10:59 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Web Based]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Wiki]]></category>
		<category><![CDATA[Wikipedia]]></category>
		<category><![CDATA[WikkaWiki]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/2009/02/23/uploading-and-linking-images-and-files-in-wikkawiki/</guid>
		<description><![CDATA[I&#8217;ve been a fan of WikkaWiki. It&#8217;s the light weight, ultra fast and highly customizable Wiki software. However, there are few glitches in WikkaWiki and some of it&#8217;s features like Actions and Handlers can be highly confusing to new users who never used Wiki software or used some standard stuff like MediaWiki (the software used [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a fan of <a href="http://wikkawiki.org/">WikkaWiki</a>. It&#8217;s the light weight, ultra fast and highly customizable Wiki software. However, there are few glitches in WikkaWiki and some of it&#8217;s features like Actions and Handlers can be highly confusing to new users who never used Wiki software or used some standard stuff like MediaWiki (the software used by Wikipedia).<br />
<span id="more-96"></span><br />
One of the glitch is uploading Images and Files and linking/attaching them to your Pages. If you have this problem, follow the instructions below and have none of it. <img src='http://www.infoscraps.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<ol>
<li>I would suggest having SSH to your domain to perform these tasks. However, if you don&#8217;t have Shell Access, use an FTP program like CuteFTP that will allow you to directly edit files in the FTP site.</li>
<li>Open your config file wikka.config.php and enter <strong>uploads</strong> in the config variable &#8216;<em><strong>upload_path</strong></em>&#8216;. Save and close the file.</li>
<li>Make sure you do have an <strong>uploads</strong> directory in your WikkaWiki root folder and it is writable (enter <strong>mkdir uploads</strong> and then <strong>chmod 777 uploads</strong> to do this from SSH under your WikkaWiki root folder).</li>
<li>Go to uploads folder and see if it already has a <strong>.htaccess</strong> file. If it does not, create a new file in the same name. Type the following in this file:<br />
<blockquote><p><code>RewriteEngine off</code></p></blockquote>
</li>
<li>Go to your WikkaWiki root folder and edit the <strong>.htaccess</strong> file in there. Add the following line at the top of this file.<br />
<blockquote><p><code>Options -Indexes -FollowSymLinks</code></p></blockquote>
</li>
<li>Visit your WikkaWiki in browser. Create a new page named <strong>Images</strong></li>
<li>In the body of this page, type the following:<br />
<blockquote><p><code>=====Image Files=====<br />
{{files}}<br />
----<br />
[[CategoryUploads Uploadable File Types]]</code></p></blockquote>
</li>
<li>Save the Page. When you visit this page, you&#8217;ll see the heading and a small table for list of files and a upload button underneath the table. You&#8217;ll have to click on the Uploadable File Types link for making a category so that you&#8217;ll easily access these pages. When you click on the link, it&#8217;ll go to edit page mode, type the following there:<br />
<blockquote><p><code>=====Uploadable File Types=====<br />
This category lists all the uploadable file types and their respective pages to use for uploading the files.<br />
{{Category}}<br />
----<br />
[[CategoryCategory See all Categories]]</code></p></blockquote>
</li>
<li>That&#8217;s it, you can use the Images file to upload images. Create another file like PDFs or Docs and keep the same content as I&#8217;ve shown here for Images (just name their headings different as per the Page Name) but use it for uploading relevant files.</li>
<li>Now, open any of the page where you would like the images to be linked to, type the following there:<br />
<blockquote><p><code>{{image url="uploads/Images/your-image-file-name" text="some-text-here" alt="some-alternative-text-here"}}</code></p></blockquote>
</li>
<li>Likewise, you can link files by typing the following there:<br />
<blockquote><p><code>[[http://your-domain-name/uploads/file-upload-page-name/file-name some-text-for-link-or-leave-empty]]</code></p></blockquote>
</li>
<li>That&#8217;s all about it. Using this method will forbid anybody from outside to visit your uploads folder directly as well as allows you to link them or refer them directly in your pages. You can also share the entire URL with your friends which is accessible.</li>
</ol>
<p>Let me know your comments&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2009/02/23/uploading-and-linking-images-and-files-in-wikkawiki/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Vibrant Ink theme for Eclipse based IDEs</title>
		<link>http://www.infoscraps.com/2009/02/19/vibrant-ink-theme-for-eclipse-based-ides/</link>
		<comments>http://www.infoscraps.com/2009/02/19/vibrant-ink-theme-for-eclipse-based-ides/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 06:38:43 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Alternatives]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Designs]]></category>
		<category><![CDATA[IDEs]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tweaks]]></category>
		<category><![CDATA[Aptana]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Flex Builder]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Vibrant Ink]]></category>
		<category><![CDATA[Zend Studio]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/2009/02/19/vibrant-ink-theme-for-eclipse-based-ides/</guid>
		<description><![CDATA[After my hugely successful Vibrant Ink theme port for Komodo IDE, NotePad++ and Visual Studio, it&#8217;s time to go for Eclipse based IDEs. Please follow the instructions carefully to have Vibrant Ink theme readied for your Eclipse based IDEs like Eclipse 3 or greater, Aptana, Flex Builder, Zend Studio, etc. Download the Zip file that [...]]]></description>
			<content:encoded><![CDATA[<p>After my hugely successful <a href="http://www.infoscraps.com/2008/12/06/vibrant-ink-theme-for-komodo-ide/">Vibrant Ink theme port for Komodo IDE, NotePad++ and Visual Studio</a>, it&#8217;s time to go for Eclipse based IDEs. Please follow the instructions carefully to have Vibrant Ink theme readied for your Eclipse based IDEs like Eclipse 3 or greater, Aptana, Flex Builder, Zend Studio, etc.<span id="more-90"></span></p>
<ol>
<li><a href="http://www.infoscraps.com/downloads/VibrantInk-for-Eclipse.zip">Download the Zip file</a> that contains all the files explained here.</li>
<li>Download and Install the <a href="http://www.infoscraps.com/downloads/Monaco.zip">Monaco font for Windows</a>.</li>
<li>Extract the Zip file to Desktop or your convenient Location</li>
<li>Start your Eclipse based IDE</li>
<li>Choose Window -&gt; Preferences</li>
<li>Choose General -&gt; Appearance -&gt; Colors and Fonts</li>
<li>Expand Basic and choose Text font under that. Click on Change button from right side, choose the Monaco font and choose size as 9pt</li>
<li>Choose General / Your IDE Name / Your Plugin page for the specific Language</li>
<li>Expand the Editors under the above said group and look for the CSS, HTML, JavaScript, PHP, PHPDoc and ScriptDoc options.</li>
<li>In the extracted files you&#8217;ll see .col files for all the above specified languages.</li>
<li>Under the language group, select Colors and choose Import from the right side. Choose the appropriate .col file from the extracted location.</li>
<li>Click Apply and Close Preferences by clicking on OK. Close all open files and reopen them to see it in cool Vibrant Ink theme.</li>
</ol>
<p>So far I&#8217;ve created theme for CSS, HTML, JavaScript, PHP, PHPDoc and ScriptDoc only. If you have an Eclipse based IDE that you&#8217;re using for any other languages (like Ruby, Python etc), please request here so that I can send you over the color files for the same.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2009/02/19/vibrant-ink-theme-for-eclipse-based-ides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pretty good Open Source alternatives for Proprietary Products</title>
		<link>http://www.infoscraps.com/2009/02/19/pretty-good-open-source-alternatives-for-proprietary-products/</link>
		<comments>http://www.infoscraps.com/2009/02/19/pretty-good-open-source-alternatives-for-proprietary-products/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 21:11:38 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Alternatives]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Comparisons]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[IDEs]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technologies]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/2009/02/19/pretty-good-open-source-alternatives-for-proprietary-products/</guid>
		<description><![CDATA[We couldn&#8217;t thank the Open Source Community or Apache and Mozilla for their initiatives on Open Source that helped shape the Software World well enough. Adding up to that gratitude or vast collection of Open Source products that are available as alternatives to Proprietary Products. Also, please do not think Open Source means free software. [...]]]></description>
			<content:encoded><![CDATA[<p>We couldn&#8217;t thank the Open Source Community or Apache and Mozilla for their initiatives on Open Source that helped shape the Software World well enough. Adding up to that gratitude or vast collection of Open Source products that are available as alternatives to Proprietary Products. Also, please do not think Open Source means free software. Many People has that misconception by logic. An Open Source can be free to modify but has some fee to use. There are commercial and non-commercial Open Source applications to be precise. Here, I&#8217;m listing some of the very good alternatives that helps you to reduce your cost as well as troubles with a proprietary closed source product.<span id="more-88"></span></p>
<ol>
<li>Microsoft Visual Studio &#8211; <a href="http://www.icsharpcode.net/OpenSource/SD/">SharpDevelop</a>, <a href="http://www.mono-project.com/">MonoDevelop</a></li>
<li>Web Development IDEs &#8211; <a href="http://eclipse.org/">Eclipse</a>, <a href="http://www.aptana.com/">Aptana</a></li>
<li>Microsoft .NET Framework &#8211; <a href="http://www.mono-project.com/">Mono</a></li>
<li>Microsoft SQL Server &#8211; <a href="http://dev.mysql.com/">MySQL</a>, <a href="http://www.postgresql.org/">PostgreSQL</a>, <a href="http://www.firebirdsql.org/">FireBird</a></li>
<li>Microsoft Project &#8211; <a href="http://openproj.org/openproj">OpenProj</a>, <a href="http://www.openworkbench.org/">Open Workbench</a></li>
<li>Microsoft Visio &#8211; <a href="http://live.gnome.org/Dia">Dia</a>, <a href="http://staruml.sourceforge.net/en/">StarUML</a></li>
<li>Microsoft Publisher &#8211; <a href="http://www.scribus.net/">Scribus</a></li>
<li>Microsoft Office &#8211; <a href="http://www.openoffice.org/">OpenOffice</a></li>
<li>Microsoft Office Outlook/Outlook Express &#8211; <a href="http://projects.gnome.org/evolution/">Evolution</a> / <a href="http://www.mozilla.com/thunderbird/">Mozilla Thunderbird</a></li>
<li>Microsoft Exchange Server &#8211; <a href="http://www.zimbra.com/community/">Zimbra</a>, <a href="http://www.open-xchange.com/en/oxpedia">OpenXchange</a></li>
<li>Microsoft SharePoint &#8211; <a href="http://www.alfresco.com/">Alfresco</a>, <a href="http://wiki.mindtouch.com/">Deki Wiki</a>, <a href="http://www.dotnetnuke.com/">DotNetNuke</a>, <a href="http://phpnuke.org/">PHPNuke</a></li>
<li>Mercury LoadRunner &#8211; <a href="http://www.opensta.org/">OpenSTA</a></li>
<li>Adobe Flash &#8211; <a href="http://www.openlaszlo.org/">OpenLaszlo</a></li>
<li>Adobe Acrobat &#8211; <a href="http://www.pdfforge.org/products/pdfcreator">PDFCreator</a></li>
<li>Adobe Photoshop &#8211; <a href="http://www.getpaint.net/">Paint.NET</a>, <a href="http://www.cinepaint.org/">CinePaint</a>, <a href="http://www.gimp.org/">GIMP</a>, <a href="http://plasticbugs.com/?page_id=294">GIMPShop</a></li>
<li>Adobe Illustrator &#8211; <a href="http://www.inkscape.org/">Inkspace</a></li>
<li>Adobe Premier/After Effects &#8211; <a href="http://avidemux.sourceforge.net/">Avidemux</a> / <a href="http://jahshaka.org/">Jahshaka</a></li>
<li>BusinessObjects Crystal Reports &#8211; <a href="http://www.jasperforge.org/jaspersoft/opensource/business_intelligence/jasperreports/">JasperReports</a>, <a href="http://datavision.sourceforge.net/">DataVision</a>, <a href="http://www.xtuple.com/openrpt/">OpenRPT</a></li>
<li>Microsoft Dynamics &#8211; <a href="http://www.sugarforge.org/content/open-source/">SugarCRM</a></li>
<li>Microsoft Money / Quicken &#8211; <a href="http://www.gnucash.org/">GNUCash</a>, <a href="http://www.grisbi.org/">Grisbi</a></li>
<li>MindManager &#8211; <a href="http://freemind.sourceforge.net/">FreeMind</a></li>
<li>WinZip &#8211; <a href="http://www.7-zip.org/">7zip</a></li>
<li>Beyond Compare (File/Directory) Comparison &#8211; <a href="http://winmerge.org/">WinMerge</a></li>
<li>CodeSmith (Easy Code Generator) &#8211; <a href="http://www.mygenerationsoftware.com/portal/default.aspx">MyGeneration</a></li>
<li>Icon Editor &#8211; <a href="http://icofx.ro/">IcoFX</a></li>
<li>FTP Client &#8211; <a href="http://filezilla-project.org/">FileZilla</a></li>
</ol>
<p>There are much more than this list is available. But this is a start to remove on famous proprietary software from your arsenal.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2009/02/19/pretty-good-open-source-alternatives-for-proprietary-products/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mocha UI: The next generation Web 2.0 Application Interface from MooTools</title>
		<link>http://www.infoscraps.com/2009/02/17/mocha-ui-the-next-generation-web-20-application-interface-from-mootools/</link>
		<comments>http://www.infoscraps.com/2009/02/17/mocha-ui-the-next-generation-web-20-application-interface-from-mootools/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 13:06:36 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[MooTools]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Applications]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/2009/02/17/mocha-ui-the-next-generation-web-20-application-interface-from-mootools/</guid>
		<description><![CDATA[I&#8217;ve been looking forward to some promising JavaScript frameworks that can take up the load of next generation of Web 2.0 User Interface and Applications. I think I&#8217;ve found a very promising JavaScript Framework named Mocha UI. You can find it here. It has fantastic User Interface entirely developed using the JavaScript Framework MooTools and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been looking forward to some promising JavaScript frameworks that can take up the load of next generation of Web 2.0 User Interface and Applications. I think I&#8217;ve found a very promising JavaScript Framework named Mocha UI. You can <a href="http://www.mochaui.com/">find it here</a>.</p>
<p>It has fantastic User Interface entirely developed using the JavaScript Framework <a href="http://mootools.net/">MooTools</a> and some more stuff collectively known as Mocha UI. It&#8217;s released under MIT license and is freely available from the site mentioned above to download and use.</p>
<p>They&#8217;ve hosted a <a href="http://www.mochaui.com/demo/">Visually Appealing Demo</a> to test the capabilities of Mocha UI which is quite a head turner.</p>
<p>Next time you consider Adobe Flex, consider something much lighter like this. <img src='http://www.infoscraps.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2009/02/17/mocha-ui-the-next-generation-web-20-application-interface-from-mootools/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>Vibrant Ink theme for Komodo IDE, Notepad++ and Visual Studio</title>
		<link>http://www.infoscraps.com/2008/12/06/vibrant-ink-theme-for-komodo-ide-notepad-and-visual-studio/</link>
		<comments>http://www.infoscraps.com/2008/12/06/vibrant-ink-theme-for-komodo-ide-notepad-and-visual-studio/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 09:57:43 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Alternatives]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Designs]]></category>
		<category><![CDATA[IDEs]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tweaks]]></category>
		<category><![CDATA[Komodo IDE]]></category>
		<category><![CDATA[Notepad++]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Vibrant Ink]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/?p=62</guid>
		<description><![CDATA[The infamous Vibrant Ink theme that was originally designed for TextMate on Mac OS X is creating really good vibrations among the Ruby On Rails (RoR) developers and onlookers as it&#8217;s the standard theme used in all the screen casts and example videos shown in various sites as they fancy seeing the RoR language in [...]]]></description>
			<content:encoded><![CDATA[<p>The infamous <a href="http://alternateidea.com/blog/articles/2006/1/3/textmate-vibrant-ink-theme-and-prototype-bundle" target="_blank">Vibrant Ink theme</a> that was originally designed for TextMate on Mac OS X is creating really good vibrations among the Ruby On Rails (RoR) developers and onlookers as it&#8217;s the standard theme used in all the screen casts and example videos shown in various sites as they fancy seeing the RoR language in this vibrant theme. I&#8217;ve been successful in porting this theme for Visual Studio and Notepad++, the IDEs I use very regularly. However, it&#8217;s been a disappointment to me to see that this particular theme is not available for Komodo IDE my best choice to programming in all Open Source languages.</p>
<p>After many unsuccessful attempts in finding suitable one, I&#8217;ve finally went ahead and created my own. Also, to add to the bliss, I&#8217;ve found a viable replacement for the so called, much loved Monaco font that&#8217;s a standard in Mac OS X for TextMate.</p>
<p><span id="more-62"></span></p>
<p><a href="http:///www.infoscraps.com/downloads/Monaco.zip">Download the Monaco Font</a>. You should extract the font into the <strong>&lt;os-drive&gt;:\Windows\Fonts</strong> in your machine.</p>
<p><a href="http:///www.infoscraps.com/downloads/VibrantInk-for-KomodoIDE.zip">Download the Vibrant Ink theme for Komodo IDE</a> settings. You should extract the settings file into the <strong>&lt;os-drive&gt;:\Users\&lt;user-name&gt;\AppData\Roaming\ActiveState\KomodoIDE\&lt;version&gt;\schemes</strong> for Vista and <strong>&lt;os-drive&gt;:\Documents and Settings\&lt;user-name&gt;\Application Data\ActiveState\KomodoIDE\&lt;version&gt;\schemes</strong> for Windows XP</p>
<p><a href="http:///www.infoscraps.com/downloads/VibrantInk-for-Notepad++.zip">Download the Vibrant Ink theme for Notepad++</a> settings. You should extract the settings file into <strong>&lt;os-drive&gt;:\Users\&lt;user-name&gt;\AppData\Roaming\Notepad++</strong> for Vista and <strong>&lt;os-drive&gt;:\Documents and Settings\&lt;user-name&gt;\Application Data\Notepad++</strong> for Windows XP</p>
<p><a href="http:///www.infoscraps.com/downloads/VibrantInk-for-VisualStudio.zip">Download the Vibrant Ink theme for Visual Studio</a> settings. You should extract the settings file into <strong>&lt;os-drive&gt;:\Users\&lt;user-name&gt;\Documents\Visual Studio &lt;version&gt;\Settings</strong> for Vista and <strong>&lt;os-drive&gt;:\Documents and Settings\&lt;user-name&gt;\My Documents\Visual Studio &lt;version&gt;\Settings</strong> for Windows XP</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2008/12/06/vibrant-ink-theme-for-komodo-ide-notepad-and-visual-studio/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
