<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>jedit &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/jedit/</link>
	<description>Feed of posts on WordPress.com tagged "jedit"</description>
	<pubDate>Sun, 29 Nov 2009 13:08:50 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Editplus replacement in ubuntu : jEdit ]]></title>
<link>http://tutysara.wordpress.com/2009/04/16/editplus-replacement-in-ubuntu-jedit/</link>
<pubDate>Thu, 16 Apr 2009 16:10:48 +0000</pubDate>
<dc:creator>tutysara</dc:creator>
<guid>http://tutysara.wordpress.com/2009/04/16/editplus-replacement-in-ubuntu-jedit/</guid>
<description><![CDATA[I work most of the time on UNIX machines through terminals. We use putty as our terminal client and ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I work most of the time on UNIX machines through terminals. We use putty as our terminal client and when we want to edit any files we just copy the file name from putty into Editplus and open it.</p>
<p>When I moved to ubuntu I couldn&#8217;t find a replacement for Editplus which allows me to easily edit my files. There are many editors that I found in ubuntu which has FTP and SFTP support but they all open a file tree and they require us to navigate through the file tree to open the files. We used to navigate through various directory structure using putty and edit files from different locations, It is a lot of pain to navigate through different directories in those editors. This is very bad when the FTP connection becomes slow at peak hours.</p>
<p>I was actually looking at the comparison of various text editors and my quest for a Editplus replacement came to an end when I found <a href="http://www.jedit.org">jedit</a>. It is a wonderful text editor with a host of options and features. It is open source and It is extensible by using various plugins. The plugin which provides support for FTP and SFTP is the FTP plugin. It can be installed by using the <strong>&#8220;Plugin Manger -&#62; Install&#8221;</strong> tab. Once the installation is complete it can be found under <strong>&#8220;Plugins -&#62; FTP&#8221;</strong>. Select the options <strong>&#8220;Open from FTP server&#8230;&#8221;</strong> or <strong>&#8220;Open from secure FTP server</strong>&#8221; fill in the server details along with user name and password and hit the connect button. Once the connection is established the FTP directory becomes a part of the jEdit VFS and all actions that are valid for a normal file can be performed on the FTP files.</p>
<p>To quickly open files for which the path is known we can use the open file macro found under <strong>&#8220;Macros -&#62; Files -&#62; Open Path&#8221;</strong>. We have to prefix the FTP file names with <strong>&#8220;ftp://user@server:21/path/to/file</strong>&#8220;.<br />
Example &#8211; to open a file .profile use <strong>&#8220;ftp://user@server:21/~/.profile&#8221;</strong></p>
<p>We can even write our own macro to ease this process. Macros are stored under the macros directory under installation directory or settings directory. We can write a simple macro to open a file automatically from a FTP server just by giving the path. This macro releaves us by typing <strong>&#8220;ftp://user@server:21/&#8221;</strong> whenever we need to open files from the server. Open a new file in jEdit and type in the following lines</p>
<p><code>void openPath()<br />
{<br />
	String path = Macros.input(view,"Path name:");<br />
	if(null==path&#124;&#124;path.length()==0){<br />
		return;<br />
	}<br />
	String prefix="ftp://user@server:21";<br />
	path=prefix+path;<br />
	if(path != null)<br />
		jEdit.openFile(view,path);<br />
}</p>
<p>openPath();</p>
<p></code></p>
<p>and save it under the<strong> macros</strong> directory as <strong>Quick_FTP.bsh.</strong><br />
Now reload the macros list by selecting &#8220;<strong>Macros -&#62; Rescan Macros</strong>&#8221; and our <strong>&#8220;Quick FTP&#8221;</strong> macro can be found. Select our macro and it asks for the path name . just  give the path name to open it from FTP server. This is just a small how to on writing a Macro and demonstrating the robust features of jEdit. You can find lot of Plugins and Macros at the <a href="http://community.jedit.org/">Community</a> and <a href="http://plugins.jedit.org/">Plugin</a> site.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Install JEdit in Ubuntu : How To]]></title>
<link>http://getch.wordpress.com/2009/02/17/install-jedit-in-ubuntu-how-to/</link>
<pubDate>Tue, 17 Feb 2009 16:49:21 +0000</pubDate>
<dc:creator>manoj1987</dc:creator>
<guid>http://getch.wordpress.com/2009/02/17/install-jedit-in-ubuntu-how-to/</guid>
<description><![CDATA[JEdit is a simple and cool looking editor designed using Java . The interface is pretty much the sam]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="alignnone" title="JEdit" src="http://www.jedit.org/images/logo64.png" alt="" width="64" height="64" /></p>
<p><span style="color:#000000;"><span style="color:#ff6600;"><strong>JEdit</strong></span> <span style="color:#000000;">is  a simple and cool looking editor designed using Java . The interface is pretty much the same in both Windows and Ubuntu. I would consider it as an alternative for kate in Windows .</span></span></p>
<p><span style="color:#000000;"> <span style="color:#000000;">To install JEdit in Windows , just download</span><a href="http://prdownloads.sourceforge.net/jedit/jedit4.3pre16install.exe" target="_blank"><span style="color:#000000;"> </span>this executable</a>.( 2.6MB)</span></p>
<p><span style="color:#000000;"><span style="color:#000000;">Installing it Ubuntu is equally simpler .<br />
You can download the .deb package</span><a href="http://prdownloads.sourceforge.net/jedit/jedit_4.3pre16_all.deb" target="_blank"><span style="color:#000000;"> </span>here </a>. (3.4 MB )</span></p>
<p><span style="color:#000000;">If you are a geek ,who prefers to install it thru&#8217; command line, then follow the steps below :</span></p>
<ul>
<li><span style="color:#000000;"><span style="color:#000000;">Append  these two lines to</span> <span style="color:#ff6600;"><strong>sources.l<span style="color:#ff6600;">is</span></strong></span><span style="color:#ff6600;">t</span><span style="color:#000000;"><span style="color:#ff6600;"> </span>file found in</span> <span style="color:#ff6600;">/etc/apt/</span></span></li>
</ul>
<p><span style="color:#ff6600;"><strong>deb   http://dl.sourceforge.net/sourceforge/jedit ./<br />
deb-src   http://dl.sourceforge.net/sourceforge/jedit ./</strong></span></p>
<ul>
<li><span style="color:#000000;"><span style="color:#000000;">Run the following line in Terminal</span><br />
<strong><span style="color:#ff6600;">sudo apt-get install update</span></strong></span></li>
<li><span style="color:#000000;"><span style="color:#000000;">Now run the following line to install JEdit </span><br />
<span style="color:#ff6600;"><strong>sudo apt-get install jedit </strong></span><br />
</span></li>
</ul>
<p><span style="color:#000000;">As an alternative to all the above said packages , you are also provided with a platform independent JEdit installer .Its in .jar format.<br />
You can get it <a href="http://prdownloads.sourceforge.net/jedit/jedit4.3pre16install.jar" target="_blank">here</a>.</span></p>
<p><span style="color:#993300;">Additional Links :</span></p>
<p><span style="color:#000000;"><a href="http://prdownloads.sourceforge.net/jedit/jedit4.3pre16install.dmg" target="_blank">Mac OS X package </a> (  6.5 MB)</span></p>
<p><span style="color:#000000;"><a href="http://prdownloads.sourceforge.net/jedit/jedit-4.3pre16-noarch-1sao.tgz" target="_blank">Slackware package </a> ( 3.4 MB )</span></p>
<p><span style="color:#000000;"><a href="http://prdownloads.sourceforge.net/jedit/jedit4.3pre16source.tar.bz2" target="_blank">Source code</a> (  1.9 MB    )</span></p>
<p><span style="color:#993300;">Screenshots :</span></p>
<p style="text-align:center;"><span style="color:#000000;"><img class="aligncenter size-full wp-image-816" title="jedit screenshot" src="http://getch.wordpress.com/files/2009/02/jedit2.png" alt="jedit screenshot" width="499" height="350" /><br />
</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Inconsolata and Jedit on Ubuntu 8.04 (Hardy Heron)]]></title>
<link>http://goldenpebbles.com/2009/01/16/inconsolata-and-jedit-on-ubuntu-804-hardy-heron/</link>
<pubDate>Fri, 16 Jan 2009 10:02:10 +0000</pubDate>
<dc:creator>alanbuxton</dc:creator>
<guid>http://goldenpebbles.com/2009/01/16/inconsolata-and-jedit-on-ubuntu-804-hardy-heron/</guid>
<description><![CDATA[The installation process for Jedit(*) on Ubuntu is pretty well documented &#8211; as long as you fol]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The installation process for Jedit(*) on Ubuntu is pretty well documented &#8211; as long as you follow <a href="http://www.jedit.org/index.php?page=download">option 2 from the jedit download instructions</a>. It&#8217;s well worth going for the latest release &#8211; as a lot of the plugins don&#8217;t work on earlier versions.</p>
<p>But the edit area font <a href="http://ubuntuforums.org/showthread.php?t=461945">looked</a> <a href="https://lists.ubuntu.com/archives/ubuntu-users/2008-February/138499.html">very</a> <a href="http://community.jedit.org/?q=node/view/3936">uninviting</a>, even with aliasing configured</p>
<p>The <a href="http://www.levien.com/type/myfonts/inconsolata.html">fabulous new Inconsolata font</a> looked like the solution. You can install it (or at least the .otf version) <a href="http://packages.ubuntu.com/hardy/ttf-inconsolata">as per usual</a>.</p>
<p>But Jedit leans on Java and Java (apparently) requires ttf files, not otf files.</p>
<p>Here&#8217;s my workaround which, although a bit hacky, works for me.</p>
<ol>
<li>Install FontForge</li>
<li>Download the<a href="http://www.levien.com/type/myfonts/inconsolata.html"> FontForge sources </a></li>
<li>Open the FontForge source in FontForge</li>
<li>Export it as inconsolata.ttf (ignore any warnings)</li>
<li>Copy it to the ttf-inconsolata font directory that was created as part of the installation of the ubuntu package, e.g: sudo cp inconsolata.ttf /usr/share/fonts/truetype/ttf-inconsolata</li>
<li>Now edit fontconfig.properties.src in /etc/java-6-openjdk and add the following four lines</li>
</ol>
<pre>filename.Inconsolata-Regular=/usr/share/fonts/truetype/ttf-inconsolata/inconsolata.ttf
filename.Inconsolata-Bold=/usr/share/fonts/truetype/ttf-inconsolata/inconsolata.ttf
filename.Inconsolata-Oblique=/usr/share/fonts/truetype/ttf-inconsolata/inconsolata.ttf
filename.Inconsolata-BoldOblique=/usr/share/fonts/truetype/ttf-inconsolata/inconsolata.ttf</pre>
<p>There you are, now you can use Inconsolata in your Jedit.</p>
<p>Was it worth it? For me &#8211; being used to Windows and Mac it has made my Ubuntu dev environment much more friendly than it was before. YMMV: screenshots of different fonts on my machine are below.</p>
<div id="attachment_137" class="wp-caption alignnone" style="width: 490px"><a rel="attachment wp-att-137" href="http://goldenpebbles.com/2009/01/16/inconsolata-and-jedit-on-ubuntu-804-hardy-heron/bitstream-vera-sans2/"><img class="size-full wp-image-137" title="Bitstream Vera Sans" src="http://goldenpebbles.wordpress.com/files/2009/01/bitstream-vera-sans2.png" alt="Bitstream Vera Sans 12" width="480" height="366" /></a><p class="wp-caption-text">Bitstream Vera Sans 12</p></div>
<div id="attachment_138" class="wp-caption alignnone" style="width: 490px"><a rel="attachment wp-att-138" href="http://goldenpebbles.com/2009/01/16/inconsolata-and-jedit-on-ubuntu-804-hardy-heron/courier-new1/"><img class="size-full wp-image-138" title="Courier New" src="http://goldenpebbles.wordpress.com/files/2009/01/courier-new1.png" alt="Courier New 12" width="480" height="368" /></a><p class="wp-caption-text">Courier New 12</p></div>
<div id="attachment_139" class="wp-caption alignnone" style="width: 490px"><a rel="attachment wp-att-139" href="http://goldenpebbles.com/2009/01/16/inconsolata-and-jedit-on-ubuntu-804-hardy-heron/deja_vu_mono/"><img class="size-full wp-image-139" title="Deja Vu Mono" src="http://goldenpebbles.wordpress.com/files/2009/01/deja_vu_mono.png" alt="Deja Vu Mono 12" width="480" height="365" /></a><p class="wp-caption-text">Deja Vu Mono 12</p></div>
<div id="attachment_141" class="wp-caption alignnone" style="width: 489px"><a rel="attachment wp-att-141" href="http://goldenpebbles.com/2009/01/16/inconsolata-and-jedit-on-ubuntu-804-hardy-heron/inconsolata1/"><img class="size-full wp-image-141" title="Inconsolata" src="http://goldenpebbles.wordpress.com/files/2009/01/inconsolata1.png" alt="Inconsolata 12" width="479" height="370" /></a><p class="wp-caption-text">Inconsolata 12</p></div>
<p>(*) FWIW &#8211; I do my RoR hacking on Textmate on the Mac and recently moved from Aptana to Jedit on Windows (I didn&#8217;t need the full-on IDE features). On Ubuntu I was looking for an alternative to Eclipse. I started with Gedit for a while but syntax highlighting was pretty poor and I spent too long chasing down all the different advice available on the interwebs and still not getting anywhere. IMHO Jedit is an altogether simpler option for RoR as it needs only a few tweaks as documented by the likes of <a href="http://www.eadz.co.nz/blog/article/ruby-rails-jedit.html">Eadz</a> and <a href="http://xiaoboonrails.blogspot.com/2008/01/jedit-syntax-highlighting-for-rails-20.html">Xiabozz</a> to get you moving in the right direction.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[JEdit Macro for XML/HTML Special Character Conversion]]></title>
<link>http://indiwiz.wordpress.com/2008/12/31/jedit-macro-for-xml-special-character-conversion/</link>
<pubDate>Wed, 31 Dec 2008 08:33:26 +0000</pubDate>
<dc:creator>subwiz</dc:creator>
<guid>http://indiwiz.wordpress.com/2008/12/31/jedit-macro-for-xml-special-character-conversion/</guid>
<description><![CDATA[One of the common requirement I face often when posting text to blog/forum/Wiki etc. is character co]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>One of the common requirement I face often when posting text to blog/forum/Wiki etc. is character conversion:</p>
<table border="0" cellspacing="5">
<tr>
<td>&#38;</td>
<td><tt>&#38;amp;</tt></td>
</tr>
<tr>
<td>&#60;</td>
<td><tt>&#38;lt;</tt></td>
</tr>
<tr>
<td>&#62;</td>
<td><tt>&#38;gt;</tt></td>
</tr>
<tr>
<td>&#34;</td>
<td><tt>&#38;quot;</tt></td>
</tr>
</table>
<p>I developed a small <a href="http://download.indiwiz.com.s3.amazonaws.com/code/jEdit/encodeForXML.bsh">JEdit Macro</a> for doing this. This macro can be executed from JEdit menu <tt>Macros &#62; Run Other Macro...</tt>, or can be installed by copying to: <tt>${user.home}/.jedit/macros/</tt> (later executed from the menu <tt>Macros</tt>). This macro operates on selected text.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[کدهای PHP را با NetBeans بنویسید!]]></title>
<link>http://farasun.wordpress.com/2008/12/21/writing-php-codes-using-netbeans-65/</link>
<pubDate>Sun, 21 Dec 2008 12:25:22 +0000</pubDate>
<dc:creator>ایمان</dc:creator>
<guid>http://farasun.wordpress.com/2008/12/21/writing-php-codes-using-netbeans-65/</guid>
<description><![CDATA[شاید شما هم مثل من برای نوشتن کدهای PHP از ادیتورهای کد مثل Notepad++ یا jEdit استفاده می کنید. شاید]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>شاید شما هم مثل من برای نوشتن کدهای <strong>PHP</strong> از ادیتورهای کد مثل <a title="Notepad++ on Sourceforge.net" href="http://notepad-plus.sourceforge.net/" target="_blank"><strong>N</strong><strong>otepad++</strong></a> یا <a title="jEdit official website" href="http://www.jedit.org/" target="_blank"><strong>jEdit </strong></a>استفاده می کنید. شاید هم از نرم افزارهای دیگری همچون <a title="Rapid PHP Editor - fast, powerful PHP editor and PHP IDE " href="http://www.blumentals.net/rapidphp/" target="_blank"><strong>Rapid PHP</strong></a> یا <a title="Zend Studio" href="http://www.zend.com/en/products/studio/" target="_blank"><strong>Zend Studio</strong></a> استفاده می کنید. همانطور که می دانید رقیب قدرتمند PHP یعنی <strong>ASP.NET</strong> دارای IDE بسیار قدرتمندی به نام <a title="Visual Studio 2008 Homepage" href="http://www.microsoft.com/visualstudio/" target="_blank"><strong>Visual Studio</strong></a> است که تمام نیازهای یک برنامه نویسی حرفه ای را برطرف می کند. برنامه نویسان ASP.NET از این نظر نسبت به برنامه نویسان PHP برتری محسوسی داشتند. تا اینکه شرکت معظم <a title="Sun Microsystems, Inc. The Network Is The Computer" href="http://sun.com" target="_blank"><strong>Sun Microsystems</strong></a> چند ماه پیش محیط توسعه نرم افزار خود یعنی <a title="Cross-platform Powerfull IDE" href="http://www.netbeans.org" target="_blank"><strong>NetBeans</strong></a> را به صورت آزمایشی ارائه کرد، در حالی که در نسخه جدید از PHP و Ruby on rails نیز پشتیبانی می کرد. این خبر بسیار خوبی برای برنامه نویسان PHP بود. هم اکنون که NetBeans 6.5 به صورت کامل ارائه شده، می تواند انتخاب مناسبی برای محیط توسعه شما باشد.<img class="alignright size-full wp-image-535" title="netbeans_193x45" src="http://farasun.wordpress.com/files/2008/12/netbeans_193x45.gif" alt="netbeans_193x45" width="193" height="45" /></p>
<p><strong>NetBeans</strong> یک محیط قدرتمند مجتمع توسعه نرم افزار (IDE) کدباز و رایگان است که از طرف شرکت Sun برای توسعه برنامه های جاوا ارائه شده بود که هم اکنون برای توسعه دهندگان PHP نیز مناسب می باشد. با NetBeans می توانید پروژه ی خود را مدیریت کنید، از قابلیت های <a title="AutoComplete on Wikipedia" href="http://en.wikipedia.org/wiki/AutoComplete" target="_blank"><strong>Code completion</strong></a>، <a title="Code Refactoring on Wikipedia" href="http://en.wikipedia.org/wiki/Code_refactoring" target="_blank"><strong>Code refactoring</strong></a> و <a title="Debugger on Wikipedia" href="http://en.wikipedia.org/wiki/Debugger" target="_blank"><strong>دیباگر</strong></a> استفاده کنید و پروژه های خود را سریعتر و بهینه تر از قبل توسعه دهید. قالبیت auto complete در NetBeans تنها توابع از پیش تعریف شده در php را پشتیبانی نمی کنید، بلکه توابعی که شما در سرتاسر پروژه تان تعریف کرده اید را نیز شامل می شود.</p>
<div class="wp-caption aligncenter" style="width: 210px"><img title="PHP Code Completion" src="http://farasun.wordpress.com/files/2008/12/php-code-completion.png" alt="PHP Code Completion example" width="200" height="223" /><p class="wp-caption-text">PHP Code Completion example</p></div>
<p>NetBeans امکانات بسیار زیادی برای هرچه سریعتر نوشتن کدهای php در اختیار شما قرار می دهد، به طور مثال وقتی می خواهید یک تابع را صدا بزنید، NetBeans در مقداردهی پارامترها به شما بسیار کمک خواهد کرد. یا مثلاً کافیست تایپ کنید func و کلید tab را فشار دهید تا NetBeans قالب پیش فرض بلاک یک تابع را برای شما بسازد. همچنین NetBeans توضیحات تمام توابع داخلی php را از <a href="http://www.phpdoc.org/" target="_blank"><strong>phpdoc</strong></a> به شما نشان می دهد تا مشکلی در استفاده از توابع نداشته باشد. (تقریباً مانند کاری که ویژوال استادیو انجام می دهد)</p>
<p>یکی از نیازهای بسیار حیاتی برنامه نویسان php که در NetBeans برطرف شده <strong>Variable Refactoring</strong> نام دارد. شاید شما هم قبلاً چنین مشکلی داشتید که از یک متغیر خیلی زیاد در یک فایل استفاده کرده اید و حالا میخواهید نام آن را تغییر بدهید. یا به صورت دستی و یا با استفاده از قابلیت Replace ایدتورهای مختلف مشکل خود را حل کردید. حالا NetBeans به صورت اتوماتیک این کار را برای شما انجام می دهد.</p>
<p>همانطور که گفتم NetBeans از مستندسازی phpdoc پشتیبانی می کند و این امکان، کدنویسی php را برای شما خیلی آسان می کند. NetBeans حتی به شما اجازه می دهد تا مستندسازی های خودتان را داشته باشید (همانند ویژوال استادیو). نشانگر را بالای تابعی که می خواهید مستند کنید قرار دهید و <span style="color:#333333;"><strong>/**</strong></span> را تایپ کنید و کلید Enter را فشار دهید تا NetBeans به صورت اتوماتیک توضیحات را به سبک phpdoc برای شما ایجاد کند.</p>
<p>NetBeans 6.5 پشتیبانی کاملی از خطایابی سمت سرور با استفاده از افزونه <a href="http://xdebug.org/" target="_blank"><strong>XDebug</strong></a> دارد. همچنین در این محیط به جز کدهای php می توانید کدهای CSS, HTML و جاوا اسکریپت نیز به خوبی بنویسید. NetBeans 6.5 محیط توسعه قدرتمندی است که دارای امکانات پیشرفته دیگری نیز هست که ما قصد نداریم در این مقاله به آن ها بپردازیم.</p>
<p><strong>اگر در حال حاضر پروژه های بزرگ PHP انجام می دهید و محیط توسعه ای همچون NetBeans در اختیار ندارید، پیشنهاد می کنم حتماً آن را امتحان کنید. برای کدنویسی های ساده و کوچک NetBeans توصیه نمی شود.</strong></p>
<h2><a href="http://www.netbeans.org/features/php/index.html" target="_blank"><span style="color:#ff9900;"><strong>اطلاعات بیشتر در مورد پشتیبانی PHP در NetBeans </strong></span></a></h2>
<p>متاسفانه دانلود مستقیم NetBeans برای ایرانی های داخل کشور مقدور نیست، دوست خوبم <a title="وبلاگ سالار خلیل زاده" href="http://salarblog.wordpress.com/" target="_blank"><strong>سالار خلیل زاده</strong></a> نحوه دریافت NetBeans 6.5 را برای ایرانی ها در<a title="دریافت نسخه جدید Netbeans 6.5 به همراه JDK" href="http://salarblog.wordpress.com/2008/12/04/download-netbeans-65-for-iranians/" target="_blank"><strong> اینجا</strong></a> توضیح داده است.</p>
<p style="text-align:justify;"><span style="color:#ffffff;">farasun.wordpress.com</span></p>
<p><a href="http://feeds.feedburner.com/Farasun"><img class="size-full wp-image-163" title="feed" src="http://farasun.wordpress.com/files/2008/07/feed.jpg" alt="Subcribe to Farasun feed" width="16" height="16" /><strong>مشترک فراسان شويد</strong></a></p>
<p><span style="color:#ffffff;">farasun.wordpress.com</span></p>
<p>مطالب مرتبط :</p>
<ul>
<li><a title="مشاهده مطلب &#34;با فریم ورک های PHP هرچه سریعتر وب سایت بسیازید!&#34;" href="http://farasun.wordpress.com/2008/12/08/build-web-applications-rapidly-with-php-frameworks/" target="_blank">با فریم ورک های PHP هرچه سریعتر وب سایت بسازید!</a></li>
<li><a title="مشاهده مطلب &#34;شروع برنامه نویسی وب&#34;" href="http://farasun.wordpress.com/2008/02/09/beginning-web-application-programming/" target="_blank">شروع برنامه نویسی وب</a></li>
<li><a title="مشاهده مطلب &#34;هاست رایگان با پشتیبانی از PHP&#34;" href="http://farasun.wordpress.com/2008/02/15/free-php-web-hosting/" target="_blank">هاست رایگان با پشتیبانی از PHP و MySQL</a></li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[JEdit, powerful search and replace using BeanShell]]></title>
<link>http://indiwiz.wordpress.com/2008/12/17/jedit-powerful-search-and-replace-using-beanshell/</link>
<pubDate>Wed, 17 Dec 2008 08:57:12 +0000</pubDate>
<dc:creator>subwiz</dc:creator>
<guid>http://indiwiz.wordpress.com/2008/12/17/jedit-powerful-search-and-replace-using-beanshell/</guid>
<description><![CDATA[JEdit is my favorite text editor. And today I was pleased to find some powerful scripting capability]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.jedit.org/">JEdit</a> is my favorite text editor. And today I was pleased to find some powerful scripting capability in its <a href="http://www.jedit.org/users-guide/search-replace.html">search and replace functionality</a>. Basically I wanted to enclose a RegularExpression pattern with:</p>
<pre>
&#60;a href=""&#62;PATTERN&#60;/a&#62;
</pre>
<p>The Search and Replace dialog provided an option <i>Return value of a BeanShell snippet</i>. So whatever RegularExpression pattern grouping I provided, I was able to access them using the BeanShell variable <i>_1</i> to <i>_9</i>. So my final replace statement became:</p>
<pre>
"&#60;a href\"\"&#62;" + _1 + "&#60;/a&#62;"
</pre>
<p>Cool solution to a simple problem.</p>
<p><img src="/files/2008/12/jedit_search_replace.png" alt="jedit_search_replace" title="jedit_search_replace" width="505" height="449" class="alignnone size-full wp-image-99" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Softwares to create a succesful website]]></title>
<link>http://webvilla.wordpress.com/2008/12/12/softwares-to-create-a-succesful-website/</link>
<pubDate>Fri, 12 Dec 2008 06:15:03 +0000</pubDate>
<dc:creator>youngnewtonian</dc:creator>
<guid>http://webvilla.wordpress.com/2008/12/12/softwares-to-create-a-succesful-website/</guid>
<description><![CDATA[Softwares vary a lot. Here I am going to tell you only those which are MOST successful and are easy.]]></description>
<content:encoded><![CDATA[Softwares vary a lot. Here I am going to tell you only those which are MOST successful and are easy.]]></content:encoded>
</item>
<item>
<title><![CDATA[Estrazione di informazioni testuali tramite Regular Expression]]></title>
<link>http://megadix.wordpress.com/2008/12/02/estrazione-di-informazioni-testuali-tramite-regular-expression/</link>
<pubDate>Tue, 02 Dec 2008 16:14:46 +0000</pubDate>
<dc:creator>megadix</dc:creator>
<guid>http://megadix.wordpress.com/2008/12/02/estrazione-di-informazioni-testuali-tramite-regular-expression/</guid>
<description><![CDATA[Oggi vi voglio presentare alcune semplici tecniche per l&#8217;estrazione di stringhe da un testo, a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Oggi vi voglio presentare alcune semplici tecniche per l&#8217;estrazione di stringhe da un testo, attività molto utilizzata nell&#8217;ambito dell&#8217;<em>information retrieval</em>, ovvero l&#8217;estrazione e la classificazione automatica di grosse moli di testo.</p>
<p>Per le prove utilizzeremo il sempre ottimo <a href="http://www.jedit.org/" target="_blank">JEdit</a>; in linea di principio gli stessi concetti si possono applicare [...]</p>
<p><a href="http://www.megadix.it/content/estrazione-di-informazioni-testuali-tramite-regular-expression">Continua su www.megadix.it</a>&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Το jEdit δε εκκινεί μετά την αναβάθμιση της Java στο Leopard]]></title>
<link>http://routis.wordpress.com/2008/09/25/%cf%84%ce%bf-jedit-%ce%b4%ce%b5-%ce%b5%ce%ba%ce%ba%ce%b9%ce%bd%ce%b5%ce%af-%ce%bc%ce%b5%cf%84%ce%ac-%cf%84%ce%b7%ce%bd-%ce%b1%ce%bd%ce%b1%ce%b2%ce%ac%ce%b8%ce%bc%ce%b9%cf%83%ce%b7-%cf%84%ce%b7%cf%82-j/</link>
<pubDate>Thu, 25 Sep 2008 20:42:20 +0000</pubDate>
<dc:creator>routis</dc:creator>
<guid>http://routis.wordpress.com/2008/09/25/%cf%84%ce%bf-jedit-%ce%b4%ce%b5-%ce%b5%ce%ba%ce%ba%ce%b9%ce%bd%ce%b5%ce%af-%ce%bc%ce%b5%cf%84%ce%ac-%cf%84%ce%b7%ce%bd-%ce%b1%ce%bd%ce%b1%ce%b2%ce%ac%ce%b8%ce%bc%ce%b9%cf%83%ce%b7-%cf%84%ce%b7%cf%82-j/</guid>
<description><![CDATA[Όσοι από εσάς χρησιμοποιούν το jEdit στο Leopard, ίσως διαπίστωσαν ότι μετά την τελευταία αναβάθμιση]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.jedit.org/"><img class="alignleft" title="jEdit Icon" src="http://www.jedit.org/images/logo64.png" alt="" width="64" height="64" /></a>Όσοι από εσάς χρησιμοποιούν το <a title="jEdit Site" href="http://www.jedit.org/" target="_blank">jEdit</a> στο Leopard, ίσως διαπίστωσαν ότι μετά την τελευταία αναβάθμιση της Java (<a href="http://www.apple.com/support/downloads/javaformacosx105update2.html" target="_blank">Java Update 2</a>) από την Apple, το jEdit αποτυγχάνει να εκκινήσει.</p>
<p>Το πρόβλημα αυτό διορθώνεται με τις εξής ενέργειες:</p>
<ol>
<li>Εντοπίζουμε στο Finder το jEdit.app</li>
<li>Κάνουμε δεξί κλικ στο εικονίδιο του jEdit και επιλέγουμε τη λειτουργία &#8216;Show Package Contents&#8217;</li>
<li>Στο φάκελο που εμφανίζεται, ανοίγουμε με κάποιον editor το αρχείο &#8216;Contents/Info.plist&#8217;</li>
<li>Εντοπίζουμε τη γραμμή με την επιλογή JVMVersion, αντικαθιστούμε την τιμή &#8216;1.5+&#8217; με την τιμή &#8216;1.6+&#8217; και σώζουμε την αλλαγή.</li>
<li>Τέλος, σβήνουμε το αρχείο &#8216;Contents/Resources/Java/jars/MacOS.jar&#8217;</li>
</ol>
<div>To jEdit θα πρέπει να εκκινεί κανονικά.</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Hello World]]></title>
<link>http://fishhead2567.wordpress.com/2008/07/07/hello-world-2/</link>
<pubDate>Mon, 07 Jul 2008 17:05:28 +0000</pubDate>
<dc:creator>fishhead2567</dc:creator>
<guid>http://fishhead2567.wordpress.com/2008/07/07/hello-world-2/</guid>
<description><![CDATA[Hello everyone, It seemed appropriate to start off this blog with a hello world post. So&#8230; hell]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hello everyone,</p>
<p>It seemed appropriate to start off this blog with a hello world post. So&#8230; hello&#8230; world. I am a PHP programmer / Web Designer / Server Maintainer / indentured servant at the Wonderful Acadiana Educational Endowment. We are a nonprofit group supporting education throughout the U.S. by hosting a nonprofit bookstore, <a title="http://booksxyz.com" href="http://booksxyz.com" target="_blank"><span style="color:#888888;">http://booksxyz.com</span></a>. We also serve the Acadiana area (where we are located) with <a title="http://cajunfun.com" href="http://cajunfun.com" target="_blank">http://cajunfun.com </a>and<a title="http://ultoday.com" href="http://ultoday.com" target="_blank"> http://ultoday.com</a>.</p>
<p>I was encouraged to start this blog in an effort to record my issues with various platforms on the web so I won&#8217;t forget and so others find them. I work in straight PHP 5, the Zend Framework, and ezPublish for the sites I work on, and I hope that in reading this, you resolve whatever issues I might be able to help with.</p>
<p>Being that this is a hello world post&#8230; I&#8217;ll start by making some short notes on my recent activities as a programmer.<br />
<strong>ezPublish</strong>: All in all, and no offense to it&#8217;s developers, but I do not like ezP. To be fair, I had little experience with the underlying framework, ezComponents, going in. However, the documentation is poor, and the templating engine is&#8230; in a word&#8230; bad. It also creates an enormous database (this is not directly an issue, lots of software needs a big database, but in this case&#8230; it is difficult to find what you are looking for in that thing).</p>
<p><strong>Zend FrameWork</strong>: I started working with ZF about two weeks ago. I love it.  I have been working in PHP about two years, and I still don&#8217;t know the deep internals of the language, but this was no limitation with ZF. The documentation is superb, and, most importantly, updated regularly. It has a fluid API and just generally makes sense.</p>
<p><strong>Jedit:</strong> Last thing I want to comment on is Jedit. Again, I am in love. Up until I started work with the zend framework, I used putty+vim to do all the editing on the site. A good friend of mine recommended Jedit when he found out I was working in ZF, so i thought I&#8217;d give it a shot.<br />
My plugins are as follows: FTP, ssh console, CSSeditor, Editor Scheme Selector(just for ease on the eyes), and PHPParser Plugin. Using the setup I have, jEdit is essentially an IDE allowing me to work remotely on the server with multiple files without all the annoyance of xMing tunneling (which I have found to be unreliable).<br />
It has code folding, a full featured file browser (which supports remote directory listing), and a really effecient docking system. Plugins are easy to install and integrate&#8230; it just generally rocks.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The last programmer's editor for Linux and Windows Part #1]]></title>
<link>http://alexandredasilva.wordpress.com/2008/06/15/the-last-programmers-editor-for-linux-and-windows-part-1/</link>
<pubDate>Sun, 15 Jun 2008 02:53:36 +0000</pubDate>
<dc:creator>Alexandre</dc:creator>
<guid>http://alexandredasilva.wordpress.com/2008/06/15/the-last-programmers-editor-for-linux-and-windows-part-1/</guid>
<description><![CDATA[This page has been moved to (Esta página foi movida para):  http://blog.siverti.com.br/2008/06/15/th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>This page has been moved to (Esta página foi movida para):  <a href="http://blog.siverti.com.br/2008/06/15/the-last-programmers-editor-for-linux-and-windows-part-1/">http://blog.siverti.com.br/2008/06/15/the-last-programmers-editor-for-linux-and-windows-part-1/</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[O último editor de texto para programadores Linux e Windows Parte #1]]></title>
<link>http://alexandredasilva.wordpress.com/2008/06/09/o-ultimo-editor-de-texto-para-programadores-linux-e-windows-parte-1/</link>
<pubDate>Mon, 09 Jun 2008 04:56:30 +0000</pubDate>
<dc:creator>Alexandre</dc:creator>
<guid>http://alexandredasilva.wordpress.com/2008/06/09/o-ultimo-editor-de-texto-para-programadores-linux-e-windows-parte-1/</guid>
<description><![CDATA[UPDATE: Hoje eu ja voltei a utilizar o Gedit, Se você usa linux não deixe de conferir meus posts sob]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>UPDATE: Hoje eu ja voltei a utilizar o Gedit, Se você usa linux não deixe de conferir meus posts sobre o gedit:</p>
<ul>
<li><a href="http://alexandredasilva.wordpress.com/tag/gedit">Todos os posts relacionados</a></li>
<li><a href="http://alexandredasilva.wordpress.com/2008/10/02/exended-ruby-syntax">Melhorias no gtksourceview</a></li>
<li><a href="http://alexandredasilva.wordpress.com/gmate">Projeto Gmate -&#62; Coleção de plugins e melhorias para o Gedit para usar com Rails</a></li>
<li><a href="http://alexandredasilva.wordpress.com/2008/11/29/rails-footnotes-suporte-completo-para-linux">Rails Footnotes para Linux</a></li>
</ul>
<p>(<a href="http://alexandredasilva.wordpress.com/2008/06/15/the-last-programmers-editor-for-linux-and-windows-part-1">See this post in English</a>)</p>
<p>Eu adorei utilizar o Gedit como meu editor de texto favorito durante o ultimo ano, ele foi realmente muito útil, inclusive eu estava mantendo um plugin muito útil para uso com ele. Porém alguma força maior fez com que meu pequenino plugin parasse de funcionar, ainda não sei a causa real mas parece ser relacionado aos url-handlers, eu não consegui mais fazê-los funcionar assim como funcionavam na versão anterior do Ubuntu e Firefox. Algumas cabeçadas depois e sem muito tempo para tentar resolver o problema, resolvi dar uma pequena busca por outro editor de texto para Programadores&#8230;. em 99% das buscas as respostas são : TextMate, Vim, Emacs.</p>
<p>Bem, como eu ainda não sou um &#8220;Feliz proprietário&#8221; de um computador Mac, não tenho a possibilidade de utilizar o &#8220;Número 1&#8243;, restando os dois últimos, que para os felizardos usuários do Mac também estão disponíveis como opção para eles <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Eles são realmente ótimos editores de texto, eu uso o Vim com certa tranquilidade para editar arquivos de configuração, e já domei muitas de suas funcionalidades, por outro lado o Emacs eu dei apenas algumas testadas algum tempo atráz, editor muito bom, com features de code completion assim como o Vim você consegue habilitar tanto para Python quanto para Ruby, que são as duas linguagens que eu tenho trabalhado ultimamente.</p>
<p>Tudo ótimo tudo muito bonito, uma gama bastante grande de plugins disponíveis para ambos, e a personalização do Vim é incontestável. (uma dica para os que estão começando em se arrepiam ao terem que entrar no vi/vim/gvim&#8230; existe uma configuração chamada <a href="http://cream.sourceforge.net/home.html">Cream</a> que facilita 100% o uso do editor para novatos, sem perder a flexibilidade). Porém o Vim e o Emacs não são os Editores que eu procurava. eu queria algo que fosse poderoso e ao mesmo tempo simples assim como o Gedit.</p>
<p>Coincidência ou não acabei encontrando o<a href="http://www.jedit.org/"> jEdit</a>. Não , não é erro de grafia, é jEdit mesmo, em português a pronúncia é a mesma do <a href="http://www.gnome.org/projects/gedit/">Gedit</a>, mas na verdade o jEdit trata-se de um editor para programadores que foi escrito em Java, portanto ele é totalmente multiplataforma, testado por mim mesmo em um computador com Windows e no meu computador com o Ubuntu (Hardy).</p>
<p>Feitos alguns testes e&#8230; o melhor editor que eu já usei até hoje!</p>
<p><em><strong>Algumas Features:</strong></em></p>
<ul>
<li>Multiplataforma</li>
<li>Filebrowser</li>
<li>Personalizável por linguagem</li>
<li>Fácil adição de suporte a novas linguages</li>
<li>Vasta quantidade de plugins disponíveis</li>
<li>Macros</li>
<li>Console integrado [plugin]</li>
<li>Integração com softwares de Versionamento (SVN, CVS, etc) [plugin]</li>
<li>Busca por expressões regulares</li>
<li>Code Complete [plugin]</li>
<li>Text Autocomplete [plugin]</li>
<li>Diff [plugin]</li>
<li>Task List (TODO List similar ao plugin mantido por mim do Gedit) [plugin]</li>
<li>SuperAbbrevs (Code Snippets) [plugin]</li>
<li>Tabbed Documents(e outros modos inteligentes de alternar arquivos) [plugin]</li>
<li>Code Folding</li>
<li>Sintax Highlight bastante completo e personalizável</li>
<li>e muito mais</li>
</ul>
<p>Realmente vale a pena você instalar e testar em seu computador&#8230; afinal não custa nada, é OpenSource.</p>
<p>Pequeninos screenshots:</p>
<p><img src="http://alexandredasilva.wordpress.com/files/2008/06/screenshot1.png" alt="" width="680" height="442" /></p>
<p><img src="http://alexandredasilva.wordpress.com/files/2008/06/screenshot2.png" alt="" width="680" height="442" /></p>
<p><img src="http://alexandredasilva.wordpress.com/files/2008/06/screenshot3.png" alt="" width="679" height="441" /></p>
<p><img src="http://alexandredasilva.wordpress.com/files/2008/06/screenshot4.png" alt="" width="678" height="456" /></p>
<p>Muito em breve estarei postando mais a respeito deste fantástico editor e algumas de suas features, espero que todos apreciem.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[IDE para desenvolvimento PHP, qual a melhor?]]></title>
<link>http://hlibco.wordpress.com/2008/05/22/ide-para-desenvolvimento-php-qual-a-melhor/</link>
<pubDate>Thu, 22 May 2008 04:25:38 +0000</pubDate>
<dc:creator>hlibco</dc:creator>
<guid>http://hlibco.wordpress.com/2008/05/22/ide-para-desenvolvimento-php-qual-a-melhor/</guid>
<description><![CDATA[Tenho certeza que não sou o único desenvolvedor PHP que vive com esta pergunta no fundo da alma. Aba]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Tenho certeza que não sou o único desenvolvedor PHP que vive com esta pergunta no fundo da alma.</p>
<p>Abaixo vou colocar uma lista com algumas das IDEs que já testei, outras que baixei mas não usei ainda, e alguns editores, agradeço se vocês comentarem dizendo quais IDEs usam e seus motivos (pontos fortes e fracos)</p>
<p><strong>Zend Studio</strong> &#8211; ótima interface, PHPDoc embutido, hide/expand os métodos, mas o FTP é bem ruim&#8230;</p>
<p><strong>HTML-Kit</strong> &#8211; Editor muito leve, FTP ótimo, muitas opções de configurações e plugins, não te deixa na mão, mas peca na interface. Adicionando vários plugins ele fica bem legal, e bem pesado também.</p>
<p><strong>jEdit</strong> &#8211; Simples demais, passei uns 10 minutos usando, mas achei que faltava muita coisa, me parecia estar usando a calculadora básica do windows, mas sem o botão de &#8220;scientific mode&#8221;.</p>
<p><strong>Aptana Studio</strong> &#8211; visual cool, apesar da minha primeira experiência com ele foi de cara uma tela de erro do windows com relação ao Java, é muito interessante, com recursos similares ao Zend Studio. Uma feature legal é um grid com as tarefas que você pode adicionar e depois validando como realizada ou não. Isso evita você ficar perdido no projeto.</p>
<p><strong>PHPed</strong> &#8211; usei há muito tempo atrás, teve várias mudanças, será que alguém é a favor?</p>
<p>Não mencionei aqui IDE nem editores pra MAC, I´m sorry.</p>
<p>Conto com a participação de vocês para dizer quais IDEs usam e porquê.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[jEdit pod Ubuntu]]></title>
<link>http://masterixzone.wordpress.com/2008/05/13/jedit-pod-ubuntu/</link>
<pubDate>Tue, 13 May 2008 18:20:07 +0000</pubDate>
<dc:creator>masterix</dc:creator>
<guid>http://masterixzone.wordpress.com/2008/05/13/jedit-pod-ubuntu/</guid>
<description><![CDATA[jEdit w wersji na systemy uniksowe ma instalkę w postaci pliku .jar. Po instalacji również nie tworz]]></description>
<content:encoded><![CDATA[jEdit w wersji na systemy uniksowe ma instalkę w postaci pliku .jar. Po instalacji również nie tworz]]></content:encoded>
</item>
<item>
<title><![CDATA[Meme desordenado: Aplicaciones y plugins que uso a diario]]></title>
<link>http://ecksblog.wordpress.com/2008/03/12/meme-desordenado-aplicaciones-y-plugins-que-uso-a-diario/</link>
<pubDate>Tue, 11 Mar 2008 23:37:07 +0000</pubDate>
<dc:creator>eckelon</dc:creator>
<guid>http://ecksblog.wordpress.com/2008/03/12/meme-desordenado-aplicaciones-y-plugins-que-uso-a-diario/</guid>
<description><![CDATA[No se si por la tarjeta gráfica o por mi monitor, pero ninguna distribución de Linux me pilla la res]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://farm3.static.flickr.com/2246/2189661294_092e83ede9_m.jpg" alt="PC" align="left" height="180" width="240" />No se si por la tarjeta gráfica o por mi monitor, pero ninguna distribución de Linux me pilla la resolución adecuada, y configura el monitor a 800&#215;600, lo que no hace, precisamente, cómodo el trabajo.</p>
<p>Como no tengo tiempo (ni tampoco ganas) de ponerme a arreglarlo en este momento, me he instalado una Windows XP (aunque no se qué es mas incómodo, la verdad) para pasar estos días entre que lo intento arreglar y no.</p>
<p>Lo primero que hice después de pegarme cuarenta minutos larguísimos de instalación, fue meterle unas cuantas aplicaciones para hacerme la convivencia con Windows menos tediosa. Se me ha ocurrido hacer una lista con todas las aplicaciones que uso a diario, y una alternativa. No se si es un meme o no, pero puede resultar útil a quién como yo, se vea obligado por una razón u otra a usar Windows. Menos mal que me queda mi fiel portátil, que si no&#8230;</p>
<ul>
<li><a href="http://www.mozilla-europe.org/es/products/firefox/" title="Firefox" target="_blank">Mozilla Firefox</a> (¿hay alguna alternativa <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ?)</li>
<li><a href="http://pidgin.im" title="Pidgin">Pidgin</a>: Cliente de messenger multiprotocolo bastante conocido, bonito y estable. Antes se llama Gaim.</li>
<li><a href="http://www.jetbrains.com/idea/" title="IntelliJ Idea">IntelliJ Idea</a>: Entorno de desarrollo de Java. Me enamoré de él nada mas usarlo. También se puede usar Eclipse, de código abierto, y también muy, muy potente.</li>
<li><a href="http://www.vim.org" title="Vim">Vim</a>. ¿Qué puedo decir del que en mi opinión es el mejor editor de texto que hay?. Lo uso para tomar apuntes en Java, editar código PHP, Ruby on Rails, e incluso LaTEX, ganando una barbaridad de tiempo gracias a sus macros y scripts, con lo que me evito repetir siempre las mismas acciones. Se puede hacer todo y mas, y además lo complemento con los siguientes scripts:
<ul>
<li><a href="http://www.vim.org/scripts/script.php?script_id=1658" title="NERDTree">NERDTree</a>: Un explorador de textos muy simple de usar, que permite abrir los archivos en pestañas, y muchas cosas mas.</li>
<li><a href="http://www.vim.org/scripts/script.php?script_id=1218" title="NerdCommenter">NERDCommenter</a>: mediante unos simples comandos, permite comentar y descomentar bloques de código en una infinidad de lenguajes.</li>
<li><a href="http://vim-latex.sourceforge.net/" title="Vim Latex">Vim-Latex</a>: Entorno de desarrollo en LaTEX.</li>
<li><a href="http://www.vim.org/scripts/script.php?script_id=1213" title="VJDE">VJDE</a>: Entorno de desarrollo en Java.</li>
<li><a href="http://www.vim.org/scripts/script.php?script_id=1318" title="SnippetsEmu">SnippetsEmu</a>: El plugin que mas me gusta de todos los que tengo. Arma nuestro Vim con unos Snippets muy similares a los de Textmate o E Text Editor. hace, por ejemplo, que si ponemos en un archivo de código java, &#8220;<code>main</code>&#8221; y pulsamos la tecla de tabulador, obtendremos automáticamente:<code><br />
public static void main (String args [])<br />
{<br />
}</code><br />
Ya os imaginaréis la cantidad de tiempo que nos ahorra este pequeño plugin.</li>
</ul>
<p>¿Alternativas a Vim? <a href="http://jedit.org/" title="JEdit">JEdit</a> es una buena aplicación: potente, extensible, eficiente, multiplataforma&#8230;Pero está hecho en Java, y la Máquina Virtual consume bastantes recursos, así que si tenéis una máquina antigua, no es una buena idea. <a href="http://www.scintilla.org/SciTE.html" title="Scite">SciTE</a> también es multiplataforma y se puede extender bastante, pero es mas limitado que los dos anteriores. Otra posibilidad sería <a href="http://editra.org/" title="Editra">Editra</a>, un editor, también multiplataforma bastante reciente y que está bastante verde, pero tiene muy buena pinta. Espero que sigan desarrollándolo.</li>
<li><a href="http://www.videolan.org/vlc/" title="VLC">VLC</a>: de lo mejorcito para reproducir archivos multimedia. Libre y multiplataforma.</li>
<li><a href="http://www.openoffice.org/" title="OpenOffice.org">OpenOffice.org</a>: Suite ofimática compatible con los archivos de Microsoft Office. Libre,<br />
multiplataforma y potentísimo. Me encanta.</li>
<li><a href="http://audacity.sourceforge.net/" title="Audacity">Audacity</a>: El famosísimo editor de audio opensource y multiplataforma que tanta gente utiliza para grabar y editar podcasts. ¡¡Ostras mi podcast!! Qué cabeza la mía&#8230;debería ponerlo al día.</li>
</ul>
<p>Bueno, pues así son las cosas y así se las hemos contado. Espero aumentar mi ritmo de actualización en estos próximos días <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Popüler Programlama Araçları]]></title>
<link>http://positivist.wordpress.com/2007/07/16/populer-programlama-araclari/</link>
<pubDate>Mon, 16 Jul 2007 20:56:26 +0000</pubDate>
<dc:creator>positivist</dc:creator>
<guid>http://positivist.wordpress.com/2007/07/16/populer-programlama-araclari/</guid>
<description><![CDATA[Web tasarım alanında 2-3 yıldır süren çabalarım ve çalışmalarım sonucu tanıştığım, kullandığım, kull]]></description>
<content:encoded><![CDATA[Web tasarım alanında 2-3 yıldır süren çabalarım ve çalışmalarım sonucu tanıştığım, kullandığım, kull]]></content:encoded>
</item>
<item>
<title><![CDATA[4 Alternativas ao TextMate]]></title>
<link>http://sixhat.wordpress.com/2007/06/26/4-alternativas-ao-textmate/</link>
<pubDate>Mon, 25 Jun 2007 23:13:03 +0000</pubDate>
<dc:creator>David Rodrigues</dc:creator>
<guid>http://sixhat.wordpress.com/2007/06/26/4-alternativas-ao-textmate/</guid>
<description><![CDATA[Por muitos adorado, o TextMate pode não ser para todos. Há alternativas gratuitas que podem muito be]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Por muitos adorado, o <a href="http://macromates.com/" title="TextMate" target="_blank">TextMate</a> pode não ser para todos. Há alternativas gratuitas que podem muito bem fazer o mesmo trabalho e que podem muito bem ser inspiradoras:</p>
<ul>
<li><a href="http://smultron.sourceforge.net/" title="Smultron" target="_blank">Smultron </a> &#8211; O editor com o melhor ícone do MacOSX, para além disso está recheado de funcionalidades. Desta lista é aquele parece mais familiar para quem migrar do Textmate.</li>
<li><a href="http://macvim.org/OSX/index.php" title="Vim for MAC" target="_blank">Vim</a> &#8211; Um must para todos os geeks do unix. Se acha o rato a pior invenção do século XX, então este é o editor de eleição. É um verdadeiro canivete Suíço.</li>
<li><a href="http://www.barebones.com/products/textwrangler/" title="TextWrangler" target="_blank">TextWrangler</a> &#8211; Esta é a versão pobre do BBedit (pago) que é tão louvado por tantos utilizadores. Apesar disso é muito completo e integra-se muito bem com outras aplicações como por exemplo o <a href="http://cyberduck.ch/" title="Cyberduck" target="_blank">Cyberduck</a>(FTP).</li>
<li><a href="http://www.jedit.org/" title="jEdit" target="_blank">jEdit</a> &#8211; Escrito em Java tem muitas funcionalidades interessantes, como os painéis simultâneos. Para quem quiser manter-se num mesmo ambiente entre Linux, OSX, Win, (e não está para aprender a trabalhar com o Vim) esta é escolha lógica. Contudo, ser em Java, fá-lo parecer um pouco lento e pesado.</li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Essentials to make Windows almost bareable]]></title>
<link>http://sinewalker.wordpress.com/2007/06/07/essential-tools-to-make-windows-almost-bareable/</link>
<pubDate>Wed, 06 Jun 2007 23:16:44 +0000</pubDate>
<dc:creator>sinewalker</dc:creator>
<guid>http://sinewalker.wordpress.com/2007/06/07/essential-tools-to-make-windows-almost-bareable/</guid>
<description><![CDATA[Okay, so I hate working in Windows, but on my employer&#8217;s equipment at least, I must live with ]]></description>
<content:encoded><![CDATA[Okay, so I hate working in Windows, but on my employer&#8217;s equipment at least, I must live with ]]></content:encoded>
</item>
<item>
<title><![CDATA[Textmate on Windows]]></title>
<link>http://symple.wordpress.com/2007/02/08/textmate-on-windows/</link>
<pubDate>Thu, 08 Feb 2007 14:25:23 +0000</pubDate>
<dc:creator>symple</dc:creator>
<guid>http://symple.wordpress.com/2007/02/08/textmate-on-windows/</guid>
<description><![CDATA[For months I&#8217;ve been on the windows-based text-editor trail. To no avail I&#8217;ve finally ru]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>For months I&#8217;ve been on the windows-based text-editor trail. To no avail I&#8217;ve finally run into a great product. While this product is commercial, its very much in beta. Welcome to <strong>E. </strong>I never thought I&#8217;d ever see an editor like this hit the streets.</p>
<p><!--more--><strong>E </strong>is a collaborative text editor taylored for the windows platform. While there are plans for *nix versions, windows is the only platform it runs on.</p>
<p>If you want to get your hands on this editor, just simply head over to <a href="http://www.e-texteditor.com" title="E Collaborative Text Editor" target="_blank">www.e-texteditor.com</a>.</p>
<p><strong>An Intergrated Development Environment Gets in the Way</strong></p>
<p>I&#8217;ve been developing websites for quite some time. In that time I have grown accustomed to the likes of Dreamweaver and Golive for designing and publishing my web projects. While these IDE&#8217;s are great for what they accomplish, I always felt frustrated and hindered.</p>
<p>Overtime I began to cut back on the features required to get the job done. I realized that a boat load of features didn&#8217;t really help improve anything. As of late I&#8217;m back to the basics, a simple text editor.  Its interesting as your career progresses you end up needing less to accomplish the same tasks.</p>
<p><strong>Welcome to E </strong></p>
<p>When I heard about this apparent Textmate port to windows, I was ecstatic yet skeptical. There were a lot of things that I&#8217;ve come to expect especially in the breath of comparisons to textmate. Needless to say my expectations were somewhat met.</p>
<p><strong>Using E</strong></p>
<p>The user interface is simply elegant and this alone lets you get straight to coding. While I&#8217;ve grown use to having 20+ toolbar icons staring at me daily, I certainly don&#8217;t miss them.</p>
<p>Using E was fairly effortless. However, the beta at the time was lacking and very buggy. Syntax coloring was a bit skiddish. Overall this editor was destined to be great with rough edges. Aside from all the problems, I still got things done.</p>
<p>E touts a strong adherence to collaboration and sharing code. In E you can set milestones and see updates by other developers as they happen. Code and syntax coloring is a joy to modify as well. Having been a user of jEdit (yet another text editor) I found E&#8217;s ability color my syntax refreshingly flexible.</p>
<p>Project management is dead simple. Open a directory as a project and go to it. The whole idea of E is to bring a light weight effective editor to table. Sure their is a liscense requirement to continue using it but don&#8217;t fret. The developers of E have made it free until its out of beta.</p>
<p>In part two of this series I will be touching on bundles and code snippets/abbreviations.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Monospace fonts]]></title>
<link>http://sinewalker.wordpress.com/2006/06/23/monospace-fonts/</link>
<pubDate>Fri, 23 Jun 2006 03:01:13 +0000</pubDate>
<dc:creator>sinewalker</dc:creator>
<guid>http://sinewalker.wordpress.com/2006/06/23/monospace-fonts/</guid>
<description><![CDATA[I finally got fed up enough with Courier New to start searching for a legible, monospace font to use]]></description>
<content:encoded><![CDATA[I finally got fed up enough with Courier New to start searching for a legible, monospace font to use]]></content:encoded>
</item>
<item>
<title><![CDATA[jEdit macros, vs. Emacs functions]]></title>
<link>http://sinewalker.wordpress.com/2006/06/07/jedit-macros-vs-emacs-functions/</link>
<pubDate>Wed, 07 Jun 2006 00:03:13 +0000</pubDate>
<dc:creator>sinewalker</dc:creator>
<guid>http://sinewalker.wordpress.com/2006/06/07/jedit-macros-vs-emacs-functions/</guid>
<description><![CDATA[I&#8217;ve been playing with customising jEdit a little bit, and decided to have a go at writing som]]></description>
<content:encoded><![CDATA[I&#8217;ve been playing with customising jEdit a little bit, and decided to have a go at writing som]]></content:encoded>
</item>
<item>
<title><![CDATA[Accesando a archivos sobre SFTP desde el editor jEdit]]></title>
<link>http://abaqueiro.wordpress.com/2005/11/10/accesando-a-archivos-sobre-sftp-desde-el-editor-jedit/</link>
<pubDate>Thu, 10 Nov 2005 00:25:00 +0000</pubDate>
<dc:creator>abaqueiro</dc:creator>
<guid>http://abaqueiro.wordpress.com/2005/11/10/accesando-a-archivos-sobre-sftp-desde-el-editor-jedit/</guid>
<description><![CDATA[Instal&eacute; el plugin de FTP para el jEdit ya que as&iacute; puedo tener acceso a archivos remoto]]></description>
<content:encoded><![CDATA[Instal&eacute; el plugin de FTP para el jEdit ya que as&iacute; puedo tener acceso a archivos remoto]]></content:encoded>
</item>

</channel>
</rss>
