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

<channel>
	<title>Is Good Stuff &#187; IDE Tweaks</title>
	<atom:link href="http://www.isgoodstuff.com/tag/ide-tweaks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.isgoodstuff.com</link>
	<description>For all the good things!</description>
	<lastBuildDate>Mon, 26 Jul 2010 01:38:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Aptana IDE Tweaks : Working with Snippets</title>
		<link>http://www.isgoodstuff.com/2009/02/21/aptana-ide-tweaks-working-with-snippets/</link>
		<comments>http://www.isgoodstuff.com/2009/02/21/aptana-ide-tweaks-working-with-snippets/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 13:06:40 +0000</pubDate>
		<dc:creator>Mr.GoodStuff</dc:creator>
				<category><![CDATA[Articles Submits]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[IDE Tweaks]]></category>

		<guid isPermaLink="false">http://www.isgoodstuff.com/2009/02/21/aptana-ide-tweaks-working-with-snippets/</guid>
		<description><![CDATA[Over the weekends, I was trying to learn the ways on how to work faster without typing much codes and minimizing errors. The solution is learning to use Aptana’s Snippet View. Firstly, before we start – I would like to suggest rearranging your IDE into more simpler view. I like to close unwanted views and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Over the weekends, I was trying to learn the ways on how to work faster without typing much codes and minimizing errors. The solution is learning to use Aptana’s <a href="http://en.wikipedia.org/wiki/Code_snippets">Snippet</a> View. Firstly, before we start – I would like to suggest rearranging your IDE into more simpler view.</p>
<p style="text-align: justify;">I like to close unwanted views and combine three of my mostly used View into ones dock to the left side of the IDE namely, File, Project and Snippets.</p>
<p align="center"><img class="aligncenter size-full wp-image-351" title="snippetview.png" src="http://www.isgoodstuff.com/wp-content/uploads/2009/02/snippetview.png" alt="snippetview.png" width="306" height="400" />
<p style="text-align: justify;">Let’s move on, we will then need to <strong>create our own set of snippets</strong> – be it JS script, XML, HTML, CSS or whatever you are programming with this IDE.</p>
<p><span id="more-357"></span></p>
<p style="text-align: justify;">First, create a new default web project. For this tutorial – I’m going guide you all in writing your first Javascript Alerter with user input support. Name the project Aptana Snippets. Proceed by creating <strong>snippets</strong> folder inside this project.</p>
<p align="center"><a rel="lightbox" href="$addingnewproject[3].png"></a><img class="aligncenter size-full wp-image-353" title="addingnewproject.png" src="http://www.isgoodstuff.com/wp-content/uploads/2009/02/addingnewproject.png" alt="addingnewproject.png" width="303" height="146" /></p>
<p> </p>
<p style="text-align: justify;">Now, inside the snippets folder add an empty js file. Let’s called it myMsgBox.js</p>
<p style="text-align: justify;">DELETE everything including remarks statement generated by Aptana in myMsgBox.js</p>
<p style="text-align: justify;">Type in the javascript like below for example.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">/*
	category: Titoonic
	name: My Message Box
	toolbar: true
	language: text/javascript
	toolTip: My Message Box
	prompt(msg): Message
&nbsp;
*/</span>
<span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;{$msg}&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p> </p>
<p style="text-align: justify;">Notice, the remarks are very context specific – which means you have to make sure you follow Aptana IDE snippet remark syntax to bind them to snippet view. Category : means the folder that will appear in Snippets View. You should create your own Category because, there’s a lot of snippets categories in there already – best to start one your own to avoid confusion.</p>
<p style="text-align: justify;">Notice there’s also prompt(variablename): Title, by inserting this – you can assign variables to the actual snippet with {$variablename}. In our case {$msg} was our variable name. You can add more than one variable name by adding more prompt{variablename} : Title and matching it with the codes.</p>
<p align="center"><img class="aligncenter size-full wp-image-355" title="alertbox.png" src="http://www.isgoodstuff.com/wp-content/uploads/2009/02/alertbox.png" alt="alertbox.png" width="392" height="375" /></p>
<p>Once, you save – Aptana will create a reference based on your remark statement and update the Snippet view. Please make sure no space are above the remark statement – else it will not work.</p>
<div style="text-align:left"><a style="text-align:left" href="javascript:toggleStartStop();PicLensLite.start({feedUrl:'http://www.isgoodstuff.com/wp-content/plugins/wp-piclens/mrss.php?id=357'});">Start Slide Show with PicLens Lite <img src="http://www.isgoodstuff.com/wp-content/plugins/wp-piclens/PicLensButton.png" alt="PicLens" width="16" height="12" border="0" align="top"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.isgoodstuff.com/2009/02/21/aptana-ide-tweaks-working-with-snippets/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Flash ActionScript IDE : Dark Themed</title>
		<link>http://www.isgoodstuff.com/2008/11/13/flash-actionscript-ide-dark-themed/</link>
		<comments>http://www.isgoodstuff.com/2008/11/13/flash-actionscript-ide-dark-themed/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 01:58:31 +0000</pubDate>
		<dc:creator>Mr.GoodStuff</dc:creator>
				<category><![CDATA[Articles Submits]]></category>
		<category><![CDATA[GoodStuff Reviews]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[IDE Tweaks]]></category>

		<guid isPermaLink="false">http://www.isgoodstuff.com/?p=315</guid>
		<description><![CDATA[Over the weekend, I was trying to redesign my Flash Actionscript IDE to look dark&#8230;looks like I&#8217;m addicted with Dark Themes now, my eye pupils are more relaxed on the new colors settings.  For those whom are using big CRT can consider this; what I heard was using darker themes tend to save energy and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Over the weekend, I was trying to redesign my Flash Actionscript IDE to look dark&#8230;looks like I&#8217;m addicted with Dark Themes now, my eye pupils are more relaxed on the new colors settings.  For those whom are using big CRT can consider this; what I heard was using darker themes tend to save energy and produce lesser heat. Anyway, take a look at my cool actionscript IDE now.</p>
<p style="text-align: justify;"><strong><a rel="lightbox" href="http://www.isgoodstuff.com/wp-content/uploads/2008/11/darkthemeflashide.png"><img src="http://www.isgoodstuff.com/wp-content/uploads/2008/11/darkthemeflashide.png" alt="" /></a></strong></p>
<p style="text-align: justify;">Here are my settings but, it does that <strong>few hours</strong> for your eyes to get accustomed with the sudden switch of light to dark theme. Is just like driving in heavy rain using sun glasses. Then again, you can always revert to default settings if you don&#8217;t like it.</p>
<p style="text-align: justify;"><strong>Settings</strong></p>
<p style="text-align: center;"><img src="http://www.isgoodstuff.com/wp-content/uploads/2008/11/settings.png" alt="" /></p>
<p style="text-align: justify;"><strong>Font Used (Windows) : Consolas<br />
</strong>Font Size : 11 <br />
Foreground : #FFFFFF<br />
Background : #333333<br />
Identifiers : #0066CC<br />
Keywords : #FF3399<br />
Comments : #808080<br />
Strings : #99CC00</p>
<p style="text-align: justify;"><strong><a rel="lightbox" href="http://www.isgoodstuff.com/wp-content/uploads/2008/11/darkthemeflashide.png"></a></strong></p>
<div style="text-align:left"><a style="text-align:left" href="javascript:toggleStartStop();PicLensLite.start({feedUrl:'http://www.isgoodstuff.com/wp-content/plugins/wp-piclens/mrss.php?id=315'});">Start Slide Show with PicLens Lite <img src="http://www.isgoodstuff.com/wp-content/plugins/wp-piclens/PicLensButton.png" alt="PicLens" width="16" height="12" border="0" align="top"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.isgoodstuff.com/2008/11/13/flash-actionscript-ide-dark-themed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aptana IDE Customization : Programming with Dark Theme</title>
		<link>http://www.isgoodstuff.com/2008/09/20/aptana-ide-customization-programming-with-dark-theme/</link>
		<comments>http://www.isgoodstuff.com/2008/09/20/aptana-ide-customization-programming-with-dark-theme/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 05:12:00 +0000</pubDate>
		<dc:creator>Mr.GoodStuff</dc:creator>
				<category><![CDATA[Articles Submits]]></category>
		<category><![CDATA[GoodStuff Reviews]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[IDE Tweaks]]></category>

		<guid isPermaLink="false">http://www.isgoodstuff.com/2008/09/20/aptana-ide-customization-programming-with-dark-theme/</guid>
		<description><![CDATA[Normally editor such as notepad, editplus, notepad++, visual studio, devstudio and many more. They came with light theme by default, which means utilizing white as the background and the syntax as the colored ones. Have you ever seen a dark theme before?  A dark theme looks like a classical o/s prompt command or linux terminal. [...]]]></description>
			<content:encoded><![CDATA[<p>Normally editor such as notepad, editplus, notepad++, visual studio, devstudio and many more. They came with light theme by default, which means utilizing white as the background and the syntax as the colored ones. Have you ever seen a dark theme before?</p>
<p> A dark theme looks like a classical o/s prompt command or linux terminal. I found a wonderful color customization from Boris Popoff that day, regarding the customization of color template for dark theme for Aptana IDE. After using Aptana IDE for quite some time, I find dark theme suits my vision better, cause I always thinks that white background on the lcd monitor can be way too bright. Well that&#8217;s just my field of vision.</p>
<p> </p>
<blockquote><p>For those who are new to Aptana IDE &#8211; Free javascript IDE can read my review <a href="http://www.isgoodstuff.com/2008/06/07/aptana-ide-ajaxjavascript-ide/">here</a></p></blockquote>
<p> </p>
<p align="center"><a rel="lightbox" href="http://www.isgoodstuff.com/wp-content/uploads/2008/09/php-small.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://www.isgoodstuff.com/wp-content/uploads/2008/09/php-small-thumb.png" border="0" alt="php_small" width="470" height="235" /></a></p>
<p> </p>
<p>The font used for this is MS-Consolas. When tweaked your IDE will look like the picture above.</p>
<p>To download this color customization template for Aptana IDE check out <a title="http://gueschla.com/labs/green-chaud/" href="http://gueschla.com/labs/green-chaud/">http://gueschla.com/labs/green-chaud/</a>.</p>
<div style="text-align:left"><a style="text-align:left" href="javascript:toggleStartStop();PicLensLite.start({feedUrl:'http://www.isgoodstuff.com/wp-content/plugins/wp-piclens/mrss.php?id=257'});">Start Slide Show with PicLens Lite <img src="http://www.isgoodstuff.com/wp-content/plugins/wp-piclens/PicLensButton.png" alt="PicLens" width="16" height="12" border="0" align="top"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.isgoodstuff.com/2008/09/20/aptana-ide-customization-programming-with-dark-theme/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
