<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for (blog-of &quot;Alex Shabanov&quot;)</title>
	<atom:link href="http://alexshabanov.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexshabanov.com</link>
	<description>Geek&#039;s blog about software and other stuff</description>
	<lastBuildDate>Fri, 20 Apr 2012 12:04:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on How to install and use Common Lisp on Linux/Windows/Mac OS X by Alex</title>
		<link>http://alexshabanov.com/2010/01/26/how-to-install-and-use-common-lisp-on-linuxwindows/comment-page-1/#comment-523</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Fri, 20 Apr 2012 12:04:32 +0000</pubDate>
		<guid isPermaLink="false">http://alexshabanov.com/?p=13#comment-523</guid>
		<description>For Ubuntu you may install the required packages by using

sudo apt-get install slime cl-asdf

And then refer to them in your config:

;; in .emacs
(add-to-list &#039;load-path &quot;/usr/share/common-lisp/source/slime/&quot;)

;; in .clisprc
(load &quot;/usr/share/common-lisp/source/cl-asdf/asdf.lisp&quot;)</description>
		<content:encoded><![CDATA[<p>For Ubuntu you may install the required packages by using</p>
<p>sudo apt-get install slime cl-asdf</p>
<p>And then refer to them in your config:</p>
<p>;; in .emacs<br />
(add-to-list &#8216;load-path &#8220;/usr/share/common-lisp/source/slime/&#8221;)</p>
<p>;; in .clisprc<br />
(load &#8220;/usr/share/common-lisp/source/cl-asdf/asdf.lisp&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create self-sufficient JAR with maven by admin</title>
		<link>http://alexshabanov.com/2011/11/30/create-self-sufficient-jar-with-maven/comment-page-1/#comment-515</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 23 Feb 2012 10:15:34 +0000</pubDate>
		<guid isPermaLink="false">http://alexshabanov.com/?p=206#comment-515</guid>
		<description>Спасибо за замечание, буду иметь в виду :)</description>
		<content:encoded><![CDATA[<p>Спасибо за замечание, буду иметь в виду <img src='http://alexshabanov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create self-sufficient JAR with maven by Никита</title>
		<link>http://alexshabanov.com/2011/11/30/create-self-sufficient-jar-with-maven/comment-page-1/#comment-514</link>
		<dc:creator>Никита</dc:creator>
		<pubDate>Wed, 22 Feb 2012 19:17:47 +0000</pubDate>
		<guid isPermaLink="false">http://alexshabanov.com/?p=206#comment-514</guid>
		<description>Этот плагин не всегда хорошо работает. У меня со Spring были проблемы. Этот получше: maven-shade-plugin</description>
		<content:encoded><![CDATA[<p>Этот плагин не всегда хорошо работает. У меня со Spring были проблемы. Этот получше: maven-shade-plugin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create self-sufficient JAR with maven by NiS</title>
		<link>http://alexshabanov.com/2011/11/30/create-self-sufficient-jar-with-maven/comment-page-1/#comment-477</link>
		<dc:creator>NiS</dc:creator>
		<pubDate>Mon, 02 Jan 2012 15:20:43 +0000</pubDate>
		<guid isPermaLink="false">http://alexshabanov.com/?p=206#comment-477</guid>
		<description>Merci.</description>
		<content:encoded><![CDATA[<p>Merci.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on REST API how to: JAX RS + Restlet + Spring + Maven by admin</title>
		<link>http://alexshabanov.com/2011/04/29/rest-api-how-to-jax-rs-restlet-spring-maven/comment-page-1/#comment-397</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 18 Nov 2011 19:38:55 +0000</pubDate>
		<guid isPermaLink="false">http://alexshabanov.com/?p=151#comment-397</guid>
		<description>Если на Restlet немного всего завязано - предлагаю начать с Jersey, он крайне простой и мощный (Restlet тоже не сложный, но сериализацию в JSON там сложно кастомизовать), с JAX RS-ом у меня было значительно меньше проблем.

Если все же хочется использовать Restlet, то, кажется, будет правильнее взять 2-ю версию, по крайней мере, насколько я помню, под нее проще писать, проще настраивать и тестировать.</description>
		<content:encoded><![CDATA[<p>Если на Restlet немного всего завязано &#8211; предлагаю начать с Jersey, он крайне простой и мощный (Restlet тоже не сложный, но сериализацию в JSON там сложно кастомизовать), с JAX RS-ом у меня было значительно меньше проблем.</p>
<p>Если все же хочется использовать Restlet, то, кажется, будет правильнее взять 2-ю версию, по крайней мере, насколько я помню, под нее проще писать, проще настраивать и тестировать.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on REST API how to: JAX RS + Restlet + Spring + Maven by Maryan</title>
		<link>http://alexshabanov.com/2011/04/29/rest-api-how-to-jax-rs-restlet-spring-maven/comment-page-1/#comment-396</link>
		<dc:creator>Maryan</dc:creator>
		<pubDate>Fri, 18 Nov 2011 18:56:40 +0000</pubDate>
		<guid isPermaLink="false">http://alexshabanov.com/?p=151#comment-396</guid>
		<description>Спасибо, нашел. Они ее разделили немного в версии 2.0

Например, было (для 1.X.X):
http://maven.restlet.org/org/restlet/org.restlet/

Стало (для 2.X.X):
http://maven.restlet.org/org/restlet/jse/org.restlet/

Осталось принять решение, что использовать. :-)

Есть люди в проекте использовавшие 1.0 без аннотаций.
Или же начать новый проект с перехода на 2.0 с аннотациями.</description>
		<content:encoded><![CDATA[<p>Спасибо, нашел. Они ее разделили немного в версии 2.0</p>
<p>Например, было (для 1.X.X):<br />
<a href="http://maven.restlet.org/org/restlet/org.restlet/" rel="nofollow">http://maven.restlet.org/org/restlet/org.restlet/</a></p>
<p>Стало (для 2.X.X):<br />
<a href="http://maven.restlet.org/org/restlet/jse/org.restlet/" rel="nofollow">http://maven.restlet.org/org/restlet/jse/org.restlet/</a></p>
<p>Осталось принять решение, что использовать. <img src='http://alexshabanov.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Есть люди в проекте использовавшие 1.0 без аннотаций.<br />
Или же начать новый проект с перехода на 2.0 с аннотациями.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on REST API how to: JAX RS + Restlet + Spring + Maven by admin</title>
		<link>http://alexshabanov.com/2011/04/29/rest-api-how-to-jax-rs-restlet-spring-maven/comment-page-1/#comment-395</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 18 Nov 2011 18:07:18 +0000</pubDate>
		<guid isPermaLink="false">http://alexshabanov.com/?p=151#comment-395</guid>
		<description>ну как так? %) http://maven.restlet.org/org/restlet/jee/org.restlet.lib.org.json/2.0/org.restlet.lib.org.json-2.0.pom
посмотрите внимательнее - там есть и 2-я версия (на сайте).</description>
		<content:encoded><![CDATA[<p>ну как так? %) <a href="http://maven.restlet.org/org/restlet/jee/org.restlet.lib.org.json/2.0/org.restlet.lib.org.json-2.0.pom" rel="nofollow">http://maven.restlet.org/org/restlet/jee/org.restlet.lib.org.json/2.0/org.restlet.lib.org.json-2.0.pom</a><br />
посмотрите внимательнее &#8211; там есть и 2-я версия (на сайте).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on REST API how to: JAX RS + Restlet + Spring + Maven by Maryan</title>
		<link>http://alexshabanov.com/2011/04/29/rest-api-how-to-jax-rs-restlet-spring-maven/comment-page-1/#comment-394</link>
		<dc:creator>Maryan</dc:creator>
		<pubDate>Fri, 18 Nov 2011 17:51:43 +0000</pubDate>
		<guid isPermaLink="false">http://alexshabanov.com/?p=151#comment-394</guid>
		<description>Maryan wrote:

Спасибо за статью.

Скажите, каким образом вы “Take restlet.version based on the latest stable release of the Restlet library, I’ve taken 2.0.1 for my project. “? – если в http://maven.restlet.org/org/restlet/org.restlet/
есть только версия 1.1.10 ?</description>
		<content:encoded><![CDATA[<p>Maryan wrote:</p>
<p>Спасибо за статью.</p>
<p>Скажите, каким образом вы “Take restlet.version based on the latest stable release of the Restlet library, I’ve taken 2.0.1 for my project. “? – если в <a href="http://maven.restlet.org/org/restlet/org.restlet/" rel="nofollow">http://maven.restlet.org/org/restlet/org.restlet/</a><br />
есть только версия 1.1.10 ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Design patterns in a functional way by Amberlee</title>
		<link>http://alexshabanov.com/2010/05/28/design-patterns-in-a-functional-way/comment-page-1/#comment-380</link>
		<dc:creator>Amberlee</dc:creator>
		<pubDate>Fri, 21 Oct 2011 14:12:44 +0000</pubDate>
		<guid isPermaLink="false">http://alexshabanov.com/?p=101#comment-380</guid>
		<description>Good point. I hadn\&#039;t thoghut about it quite that way. :)</description>
		<content:encoded><![CDATA[<p>Good point. I hadn\&#8217;t thoghut about it quite that way. <img src='http://alexshabanov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Block internet access for application in Mac OS X by Lex</title>
		<link>http://alexshabanov.com/2011/06/26/block-internet-access-for-application-in-mac-os-x/comment-page-1/#comment-290</link>
		<dc:creator>Lex</dc:creator>
		<pubDate>Mon, 27 Jun 2011 08:06:37 +0000</pubDate>
		<guid isPermaLink="false">http://alexshabanov.com/?p=175#comment-290</guid>
		<description>You may block internet access for app by using snitch utility. It is not free though :)</description>
		<content:encoded><![CDATA[<p>You may block internet access for app by using snitch utility. It is not free though <img src='http://alexshabanov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

