<?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>Кибер-Фанк v2.0 &#187; config</title>
	<atom:link href="http://www.shatlovsky.ru/category/config/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shatlovsky.ru</link>
	<description>Information must be free</description>
	<lastBuildDate>Thu, 29 Apr 2010 16:23:13 +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>Создание /etc/init.d/nginx на debian 5.0 lenny</title>
		<link>http://www.shatlovsky.ru/2009/06/05/sozdanie-etcinitdnginx-na-debian-50-lenny/</link>
		<comments>http://www.shatlovsky.ru/2009/06/05/sozdanie-etcinitdnginx-na-debian-50-lenny/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 07:05:14 +0000</pubDate>
		<dc:creator>Alex Shatlovsky</dc:creator>
				<category><![CDATA[config]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[заметки на полях]]></category>

		<guid isPermaLink="false">http://www.shatlovsky.ru/2009/06/05/sozdanie-etcinitdnginx-na-debian-50-lenny/</guid>
		<description><![CDATA[$ sudo vim /etc/init.d/nginx Вставляем нижеследующий код (помним про команду ‘set :paste’ для вставки в VIM): #!/bin/sh ### BEGIN INIT INFO # Provides: nginx # Required-Start: $remote_fs $syslog $named $network $time # Required-Stop: $remote_fs $syslog $named $network # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start nginx at boot time [...]]]></description>
			<content:encoded><![CDATA[<pre class="bash">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> vim /etc/init.d/nginx</pre>
<p>Вставляем нижеследующий код (помним про команду ‘set :paste’ для вставки в VIM):</p>
<pre class="bash"><span style="color: #808080; font-style: italic;">#!/bin/sh</span>
<span style="color: #808080; font-style: italic;">### BEGIN INIT INFO</span>
<span style="color: #808080; font-style: italic;"># Provides:          nginx</span>
<span style="color: #808080; font-style: italic;"># Required-Start:    <span style="color: #007800;">$remote_fs</span> <span style="color: #007800;">$syslog</span> <span style="color: #007800;">$named</span> <span style="color: #007800;">$network</span> <span style="color: #007800;">$time</span></span>
<span style="color: #808080; font-style: italic;"># Required-Stop:     <span style="color: #007800;">$remote_fs</span> <span style="color: #007800;">$syslog</span> <span style="color: #007800;">$named</span> <span style="color: #007800;">$network</span></span>
<span style="color: #808080; font-style: italic;"># Default-Start:     <span style="color: #000000;">2</span> <span style="color: #000000;">3</span> <span style="color: #000000;">4</span> <span style="color: #000000;">5</span></span>
<span style="color: #808080; font-style: italic;"># Default-Stop:      <span style="color: #000000;">0</span> <span style="color: #000000;">1</span> <span style="color: #000000;">6</span></span>
<span style="color: #808080; font-style: italic;"># Short-Description: Start nginx at boot time</span>
<span style="color: #808080; font-style: italic;"># Description:       Enable service provided by nginx.</span>
<span style="color: #808080; font-style: italic;">### END INIT INFO</span>
<span style="color: #808080; font-style: italic;"># <span style="color: #007800;">$Id</span>$</span>
&nbsp;
<span style="color: #007800;">NGINXHOME=</span>/usr/<span style="color: #7a0874; font-weight: bold;">local</span>/nginx
<span style="color: #007800;">NGINXPID=</span><span style="color: #007800;">$NGINXHOME</span>/logs/nginx.pid
&nbsp;
<span style="color: #007800;">PATH=</span>/usr/<span style="color: #7a0874; font-weight: bold;">local</span>/sbin:/usr/<span style="color: #7a0874; font-weight: bold;">local</span>/bin:/sbin:/bin:/usr/sbin:/usr/bin
<span style="color: #007800;">DAEMON=</span><span style="color: #007800;">$NGINXHOME</span>/sbin/nginx
<span style="color: #007800;">NAME=</span>nginx
<span style="color: #007800;">DESC=</span>nginx
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> ! -x <span style="color: #007800;">$DAEMON</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
   <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Couldn't find $DAEMON. Please set path to DAEMON.&quot;</span>
   <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">0</span>
<span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
<span style="color: #808080; font-style: italic;"># Include nginx defaults <span style="color: #000000; font-weight: bold;">if</span> available</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> -f /etc/default/nginx <span style="color: #7a0874; font-weight: bold;">&#93;</span> ; <span style="color: #000000; font-weight: bold;">then</span>
	. /etc/default/nginx
<span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">set</span> -e
&nbsp;
<span style="color: #000000; font-weight: bold;">case</span> <span style="color: #ff0000;">&quot;$1&quot;</span> <span style="color: #000000; font-weight: bold;">in</span>
  start<span style="color: #7a0874; font-weight: bold;">&#41;</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> -n <span style="color: #ff0000;">&quot;Starting $DESC: &quot;</span>
	start-stop-daemon --start --pidfile <span style="color: #007800;">$NGINXPID</span> \
		--<span style="color: #7a0874; font-weight: bold;">exec</span> <span style="color: #007800;">$DAEMON</span> -- <span style="color: #007800;">$DAEMON_OPTS</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;$NAME.&quot;</span>
	;;
  stop<span style="color: #7a0874; font-weight: bold;">&#41;</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> -n <span style="color: #ff0000;">&quot;Stopping $DESC: &quot;</span>
	start-stop-daemon --stop --pidfile <span style="color: #007800;">$NGINXPID</span> \
		--<span style="color: #7a0874; font-weight: bold;">exec</span> <span style="color: #007800;">$DAEMON</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;$NAME.&quot;</span>
	;;
  restart|force-reload<span style="color: #7a0874; font-weight: bold;">&#41;</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> -n <span style="color: #ff0000;">&quot;Restarting $DESC: &quot;</span>
	start-stop-daemon --stop --pidfile \
		<span style="color: #007800;">$NGINXHOME</span>/run/<span style="color: #007800;">$NAME</span>.pid --<span style="color: #7a0874; font-weight: bold;">exec</span> <span style="color: #007800;">$DAEMON</span>
	<span style="color: #c20cb9; font-weight: bold;">sleep</span> <span style="color: #000000;">1</span>
	start-stop-daemon --start --pidfile \
		<span style="color: #007800;">$NGINXPID</span> --<span style="color: #7a0874; font-weight: bold;">exec</span> <span style="color: #007800;">$DAEMON</span> -- <span style="color: #007800;">$DAEMON_OPTS</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;$NAME.&quot;</span>
	;;
  reload<span style="color: #7a0874; font-weight: bold;">&#41;</span>
      <span style="color: #7a0874; font-weight: bold;">echo</span> -n <span style="color: #ff0000;">&quot;Reloading $DESC configuration: &quot;</span>
      start-stop-daemon --stop --signal HUP --pidfile <span style="color: #007800;">$NGINXPID</span> \
          --<span style="color: #7a0874; font-weight: bold;">exec</span> <span style="color: #007800;">$DAEMON</span>
      <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;$NAME.&quot;</span>
      ;;
  *<span style="color: #7a0874; font-weight: bold;">&#41;</span>
	<span style="color: #007800;">N=</span>/etc/init.d/<span style="color: #007800;">$NAME</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Usage: $N {start|stop|restart|force-reload}&quot;</span> &gt;&amp;<span style="color: #000000;">2</span>
	<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>
	;;
<span style="color: #000000; font-weight: bold;">esac</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">0</span></pre>
<p>Сохраняем скрипт и выходим из vim.</p>
<p>Делаем скрипт исполняемым:</p>
<pre class="bash">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">755</span> /etc/init.d/nginx</pre>
<p>Указываем, что <em>nginx</em> нужно запускать при запуске и остановке сервера:</p>
<pre class="bash">$  <span style="color: #c20cb9; font-weight: bold;">sudo</span> /usr/sbin/update-rc.d -f nginx defaults</pre>
<p>UPD: Блок, заключенный между строками
<pre class="bash"><span style="color: #808080; font-style: italic;">### BEGIN INIT INFO</span>
<span style="color: #808080; font-style: italic;">### END INIT INFO</span></pre>
<p> обеспечивает LSB-совместимость. Подробнее см. <a href="http://wiki.debian.org/LSBInitScripts">http://wiki.debian.org/LSBInitScripts</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shatlovsky.ru/2009/06/05/sozdanie-etcinitdnginx-na-debian-50-lenny/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu: x-term в UTF-8, соединение с удаленным хостом в KOI8-R</title>
		<link>http://www.shatlovsky.ru/2008/11/27/ubuntu-x-term-v-utf-8-soedinenie-s-udalennym-xostom-v-koi8-r/</link>
		<comments>http://www.shatlovsky.ru/2008/11/27/ubuntu-x-term-v-utf-8-soedinenie-s-udalennym-xostom-v-koi8-r/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 21:53:54 +0000</pubDate>
		<dc:creator>Alex Shatlovsky</dc:creator>
				<category><![CDATA[config]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[koi8-r]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[locale]]></category>
		<category><![CDATA[luit]]></category>
		<category><![CDATA[slogin]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[utf-8]]></category>
		<category><![CDATA[xorg]]></category>
		<category><![CDATA[xterm]]></category>

		<guid isPermaLink="false">http://shatlovsky.ru/blog/2008/11/27/ubuntu-x-term-v-utf-8-soedinenie-s-udalennym-xostom-v-koi8-r/</guid>
		<description><![CDATA[Дано: X-терминал в Ubuntu настроен на работу в локали ru_RU.UTF-8. Удаленный сервер может адекватно работать только с кодировкой ru_RU.KOI8-R. Что делать? Решение: перекодировать на лету Для этого удобно использовать утилиту luit, входящую в дистрибутив и устанавливаемую по умолчанию в составе пакета x11-utils. $ LANG=ru_RU.KOI8-R luit $ ssh user@koi8.host.tld Если случилось так, что у вас нет [...]]]></description>
			<content:encoded><![CDATA[<p>Дано: X-терминал в Ubuntu настроен на работу в локали ru_RU.UTF-8. Удаленный сервер может адекватно работать только с кодировкой ru_RU.KOI8-R. Что делать?</p>
<p>Решение: перекодировать на лету<br />
Для этого удобно использовать утилиту <code>luit</code>, входящую в дистрибутив и устанавливаемую по умолчанию в составе пакета <code>x11-utils</code>.</p>
<pre class="bash">$ <span style="color: #007800;">LANG=</span>ru_RU.KOI8-R luit
$ <span style="color: #c20cb9; font-weight: bold;">ssh</span> user@koi8.host.tld</pre>
<p>Если случилось так, что у вас нет локали KOI8-R, то придется ее создать:</p>
<pre class="bash">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> locale-gen ru_RU.KOI8-R</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.shatlovsky.ru/2008/11/27/ubuntu-x-term-v-utf-8-soedinenie-s-udalennym-xostom-v-koi8-r/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>цветное приглашение bash prompt</title>
		<link>http://www.shatlovsky.ru/2008/10/15/cvetnoe-priglashenie-bash-prompt/</link>
		<comments>http://www.shatlovsky.ru/2008/10/15/cvetnoe-priglashenie-bash-prompt/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 08:04:14 +0000</pubDate>
		<dc:creator>Alex Shatlovsky</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://shatlovsky.ru/blog/2008/10/15/cvetnoe-priglashenie-bash-prompt/</guid>
		<description><![CDATA[В unix-консоли, а в частности в приглашении bash можно использовать ANSI-последовательности для задания цветового вывода: &#160; PS1='[\\e[01;32m]\\u@\\h[\e[00m]:[\\e[01;34m]\\w[\\e[00m]$ '; export PS1 Цвет задается последовательностью вида \e[ATTR;FG;BGm, где ATTR - необязательный аттрибут, FG - цвет переднего плана, BG - цвет фона. Сброс цвета к значению по умолчанию - \e[0m Краткую таблицу соответствия кодов конкретным цветам опубликовал в [...]]]></description>
			<content:encoded><![CDATA[<p>В unix-консоли, а в частности в приглашении <code>bash</code> можно использовать ANSI-последовательности для задания цветового вывода:</p>
<pre class="bash">&nbsp;
<span style="color: #007800;">PS1=</span><span style="color: #ff0000;">'[<span style="color: #000099; font-weight: bold;">\\</span>e[01;32m]<span style="color: #000099; font-weight: bold;">\\</span>u@<span style="color: #000099; font-weight: bold;">\\</span>h[<span style="color: #000099; font-weight: bold;">\e</span>[00m]:[<span style="color: #000099; font-weight: bold;">\\</span>e[01;34m]<span style="color: #000099; font-weight: bold;">\\</span>w[<span style="color: #000099; font-weight: bold;">\\</span>e[00m]$ '</span>; <span style="color: #7a0874; font-weight: bold;">export</span> PS1</pre>
<p>Цвет задается последовательностью вида <code>\e[<strong>ATTR</strong>;<strong>FG</strong>;<strong>BG</strong>m</code>, где ATTR - необязательный аттрибут, FG - цвет переднего плана, BG - цвет фона.</p>
<p>Сброс цвета к значению по умолчанию - <code>\e[0m</code></p>
<p>Краткую таблицу соответствия кодов конкретным цветам опубликовал в статье <a href="http://www.funtoo.org/en/articles/linux/tips/prompt/">"Prompt Magic"</a> Дэниел Роббинс:</p>
<p><img src="http://shatlovsky.ru/blog/wp-content/colortable.gif" alt="colortable.gif" /></p>
<p>С помощью <code>ATTR</code> можно делать текст полужирным, подчеркнутым, мигающим, и т.п.:</p>
<table border="1" cellpadding="3" cellspacing="3">
<tr>
<td>0</td>
<td>по-умолчанию</td>
</tr>
<tr>
<td>1</td>
<td>жирный</td>
</tr>
<tr>
<td>22</td>
<td>не жирный</td>
</tr>
<tr>
<td>4</td>
<td>подчеркнутый</td>
</tr>
<tr>
<td>24</td>
<td>не подчеркнутый</td>
</tr>
<tr>
<td>5</td>
<td>мигающий</td>
</tr>
<tr>
<td>25</td>
<td>не мигающий</td>
</tr>
<tr>
<td>7</td>
<td>инвертированный</td>
</tr>
<tr>
<td>27</td>
<td>не инвертированный</td>
</tr>
</table>
<p>В качестве примера полезно посмотреть <a href="http://www.linuxfocus.org/common/src2/article335/showansicol.tar.gz">небольшой скрипт</a>, выводящий на консоль таблицу возможных цветовых комбинаций:</p>
<pre class="bash"><span style="color: #808080; font-style: italic;">#!/bin/sh</span>
<span style="color: #808080; font-style: italic;">############################################################</span>
<span style="color: #808080; font-style: italic;"># Nico Golde &amp;lt;nico<span style="color: #7a0874; font-weight: bold;">&#40;</span>at<span style="color: #7a0874; font-weight: bold;">&#41;</span>ngolde.de&amp;gt; Homepage: http://www.ngolde.de</span>
<span style="color: #808080; font-style: italic;"># Last change: Mon Feb <span style="color: #000000;">16</span> <span style="color: #000000;">16</span>:<span style="color: #000000;">24</span>:<span style="color: #000000;">41</span> CET <span style="color: #000000;">2004</span></span>
<span style="color: #808080; font-style: italic;">############################################################</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">for</span> attr <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000;">0</span> <span style="color: #000000;">1</span> <span style="color: #000000;">4</span> <span style="color: #000000;">5</span> <span style="color: #000000;">7</span> ; <span style="color: #000000; font-weight: bold;">do</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;----------------------------------------------------------------&quot;</span>
    <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;ESC[%s;Foreground;Background - <span style="color: #000099; font-weight: bold;">\\</span>n&quot;</span> <span style="color: #007800;">$attr</span>
    <span style="color: #000000; font-weight: bold;">for</span> fore <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000;">30</span> <span style="color: #000000;">31</span> <span style="color: #000000;">32</span> <span style="color: #000000;">33</span> <span style="color: #000000;">34</span> <span style="color: #000000;">35</span> <span style="color: #000000;">36</span> <span style="color: #000000;">37</span>; <span style="color: #000000; font-weight: bold;">do</span>
        <span style="color: #000000; font-weight: bold;">for</span> back <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000;">40</span> <span style="color: #000000;">41</span> <span style="color: #000000;">42</span> <span style="color: #000000;">43</span> <span style="color: #000000;">44</span> <span style="color: #000000;">45</span> <span style="color: #000000;">46</span> <span style="color: #000000;">47</span>; <span style="color: #000000; font-weight: bold;">do</span>
            <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">'<span style="color: #000099; font-weight: bold;">\\</span>033[%s;%s;%sm %02s;%02s  '</span> <span style="color: #007800;">$attr</span> <span style="color: #007800;">$fore</span> <span style="color: #007800;">$back</span> <span style="color: #007800;">$fore</span> <span style="color: #007800;">$back</span>
        <span style="color: #000000; font-weight: bold;">done</span>
    <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">'<span style="color: #000099; font-weight: bold;">\\</span>n'</span>
    <span style="color: #000000; font-weight: bold;">done</span>
    <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">'<span style="color: #000099; font-weight: bold;">\\</span>033[0m'</span>
<span style="color: #000000; font-weight: bold;">done</span>
&nbsp;</pre>
<p>Ссылки по теме:</p>
<ul>
<li><a href="http://www.funtoo.org/en/articles/linux/tips/prompt/">Linux Tips: Prompt Magic</a>, by Daniel Robbins</li>
<li><a href="http://www.linuxfocus.org/English/May2004/article335.shtml">Colorful Shells -- Using ANSI Color Codes</a>, by Nico Golde</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.shatlovsky.ru/2008/10/15/cvetnoe-priglashenie-bash-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vim: old-skool h0tkeyz</title>
		<link>http://www.shatlovsky.ru/2008/09/23/vim-old-skool-h0tkeyz/</link>
		<comments>http://www.shatlovsky.ru/2008/09/23/vim-old-skool-h0tkeyz/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 15:12:26 +0000</pubDate>
		<dc:creator>Alex Shatlovsky</dc:creator>
				<category><![CDATA[config]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://shatlovsky.ru/blog/2008/09/23/vim-old-skool-h0tkeyz/</guid>
		<description><![CDATA[&#160; &#34; F2 = Save file map &#60;silent&#62; &#60;f2&#62; :write&#60;cr&#62; imap &#60;silent&#62; &#60;f2&#62; &#60;esc&#62;:write&#60;cr&#62; &#160; &#34; F10 = Exit without save map &#60;silent&#62; &#60;f10&#62; :quit&#60;cr&#62; imap &#60;silent&#62; &#60;f10&#62; &#60;esc&#62;:q&#60;cr&#62; &#160;]]></description>
			<content:encoded><![CDATA[<pre class="text">&nbsp;
&quot; F2 = Save file
map  &lt;silent&gt; &lt;f2&gt;    :write&lt;cr&gt;
imap  &lt;silent&gt; &lt;f2&gt;    &lt;esc&gt;:write&lt;cr&gt;
&nbsp;
&quot; F10 = Exit without save
map   &lt;silent&gt; &lt;f10&gt;    :quit&lt;cr&gt;
imap  &lt;silent&gt; &lt;f10&gt;    &lt;esc&gt;:q&lt;cr&gt;
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.shatlovsky.ru/2008/09/23/vim-old-skool-h0tkeyz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VIM + Perl : .vimrc, perl-support</title>
		<link>http://www.shatlovsky.ru/2008/09/16/8/</link>
		<comments>http://www.shatlovsky.ru/2008/09/16/8/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 09:40:49 +0000</pubDate>
		<dc:creator>Alex Shatlovsky</dc:creator>
				<category><![CDATA[config]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://shatlovsky.ru/blog/2008/09/16/8/</guid>
		<description><![CDATA[Мой .vimrc + плагины (perl, tt2). Для комфортной разработки на Perl рекомендуется также плагин perl-support .]]></description>
			<content:encoded><![CDATA[<p>Мой <a href="http://shatlovsky.ru/blog/wp-content/vimrc-shatlovsky.tgz" title=".vimrc + perl + tt2">.vimrc + плагины (perl, tt2)</a>.</p>
<p>Для комфортной разработки на Perl рекомендуется также плагин <a href="http://www.vim.org/scripts/script.php?script_id=556">perl-support</a> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shatlovsky.ru/2008/09/16/8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
