<?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>Sergey Vlasov - Instant Gratification Addict</title>
	<atom:link href="http://sergeyvlasov.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sergeyvlasov.com</link>
	<description>Just another tagline here</description>
	<lastBuildDate>Wed, 09 May 2012 11:20:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Apache TomEE 1.0 Released</title>
		<link>http://sergeyvlasov.com/apache-tomee-1-0-released/</link>
		<comments>http://sergeyvlasov.com/apache-tomee-1-0-released/#comments</comments>
		<pubDate>Wed, 09 May 2012 11:17:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://sergeyvlasov.com/?p=142</guid>
		<description><![CDATA[<p>The Apache Software Foundation has released Apache TomEE 1.0. Apache TomEE, pronounced &#8220;Tommy&#8221;, is a Java EE 6 Web Profile certified all-Apache stack available under the Apache 2.0 license. TomEE is composed of Tomcat (Servlet, JSP, JSTL), OpenWebBeans (CDI), OpenEJB (EJB), OpenJPA (JPA), MyFaces (JSF), Geronimo Transaction (JTA), Geronimo JavaMail (Javamail) and Apache Bean Validation (Bean Validation). There is also TomEE+, a TomEE distribution that adds Apache CXF (JAX-RS, JAX-WS), ActiveMQ (JMS) and Geronimo Connector (Connector). Apache TomEE is a sub-project of Apache OpenEJB and supersedes what is known as the OpenEJB + Tomcat integration. Apache TomEE 1.0 is based on Apache Tomcat 7.0.27, the latest version of Tomcat with WebSocket support.</p>
<p><a href="http://sergeyvlasov.com/apache-tomee-1-0-released/" class="more-link">Read more on Apache TomEE 1.0 Released&#8230;</a></p>
]]></description>
			<content:encoded><![CDATA[<p>The Apache Software Foundation has released Apache TomEE 1.0. Apache TomEE, pronounced &#8220;Tommy&#8221;, is a Java EE 6 Web Profile certified all-Apache stack available under the Apache 2.0 license. TomEE is composed of Tomcat (Servlet, JSP, JSTL), OpenWebBeans (CDI), OpenEJB (EJB), OpenJPA (JPA), MyFaces (JSF), Geronimo Transaction (JTA), Geronimo JavaMail (Javamail) and Apache Bean Validation (Bean Validation). There is also TomEE+, a TomEE distribution that adds Apache CXF (JAX-RS, JAX-WS), ActiveMQ (JMS) and Geronimo Connector (Connector). Apache TomEE is a sub-project of Apache OpenEJB and supersedes what is known as the OpenEJB + Tomcat integration. Apache TomEE 1.0 is based on Apache Tomcat 7.0.27, the latest version of Tomcat with WebSocket support.</p>
<p>Apache TomEE 1.0 has improved startup times for large applications over earlier versions. This was achieved through reduced classloading, and enhanced annotation and TLD file scanning. Tuning was focused on large applications like Confluence, Ralio, and Lift, which resulted in 369%, 128% and 166% faster startup times, respectively. Server startup time has also improved. On a modern MacBookPro, startup time should be ~1200ms from the command line or ~700ms from within Eclipse.</p>
<p>Other new features include the ability to pinpoint which classes and JARs should be scanned via the scan.xml file. There is also now a remote adapter for Arquillian. Shipped in a separate zip file is an experimental new feature for provisioning applications using online Maven repositories.</p>
<p>Apache TomEE is assembled from the standard Apache Tomcat distribution. The extra JAR files, configurations files and the TomEE webapp are then added and repackaged. This Tomcat with EE distribution runs without any additional memory requirements and is compatible with existing Tomcat web applications and tools. There is also a more detailed comparison of the Tomcat and TomEE distributions.</p>
<p>For more information, please visit the official Apache TomEE website. To get started, watch the TomEE Getting Started video on YouTube, and then download TomEE 1.0 from Apache website.</p>
<p>via InfoQ : http://www.infoq.com/news/2012/05/apache-tomee-1.0</p>
]]></content:encoded>
			<wfw:commentRss>http://sergeyvlasov.com/apache-tomee-1-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git Tip &#8211; Clone/Checkout a Specific Remote Branch</title>
		<link>http://sergeyvlasov.com/git-tip-clonecheckout-a-specific-remote-branch/</link>
		<comments>http://sergeyvlasov.com/git-tip-clonecheckout-a-specific-remote-branch/#comments</comments>
		<pubDate>Tue, 08 May 2012 10:55:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://sergeyvlasov.com/?p=130</guid>
		<description><![CDATA[<p>This short tip will help you to checkout a specific Git branch when porting your code into a fresh remote environment.</p>
<p>First, clone a remote git repository and cd into it:</p>
<p><a href="http://sergeyvlasov.com/git-tip-clonecheckout-a-specific-remote-branch/" class="more-link">Read more on Git Tip &#8211; Clone/Checkout a Specific Remote Branch&#8230;</a></p>
]]></description>
			<content:encoded><![CDATA[<p>This short tip will help you to checkout a specific Git branch when porting your code into a fresh remote environment.</p>
<p>First, clone a remote git repository and cd into it:</p>
<pre><code>$ git clone git://example.com/myproject $ cd myproject
</code>
</pre>
<p>Note, there are hidden branches in your repository! You can see these using the -a flag:</p>
<pre><code>$ git branch -a&nbsp;</code>
</pre>
<pre><code>* master origin/HEAD&nbsp;</code>
</pre>
<pre><code>origin/master origin/v1.0-stable&nbsp;</code>
</pre>
<pre><code>origin/experimental
</code>
</pre>
<p>Iif you want to work on that branch, you&#8217;ll need to create a local tracking branch:</p>
<pre><code>$ git checkout -b experimental origin/experimental
</code>
</pre>
<p>Now, if you look at your local branches without -a, this is what you&#8217;ll see:</p>
<pre><code>$ git branch master * experimental
</code>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://sergeyvlasov.com/git-tip-clonecheckout-a-specific-remote-branch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP_LIst_Table Essential Resources</title>
		<link>http://sergeyvlasov.com/wp_list_table-essential-resources/</link>
		<comments>http://sergeyvlasov.com/wp_list_table-essential-resources/#comments</comments>
		<pubDate>Thu, 03 May 2012 07:20:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Smashing Magazine]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[WP Engineer]]></category>

		<guid isPermaLink="false">http://sergeyvlasov.com/?p=116</guid>
		<description><![CDATA[<p>#1</p>
<p>An easy practical introductory tutorial from <a class="zem_slink" title="WP Engineer" href="http://wpengineer.com/" rel="homepage" target="_blank">WP Engineer</a> :</p>
<p><a href="http://wpengineer.com/2426/wp_list_table-a-step-by-step-guide/">http://wpengineer.com/2426/wp_list_table-a-step-by-step-guide/</a></p>
<p>&#160;</p>
<p>#2</p>
<p><span style="background-color: #ffffff; color: #333333; font-family: 'Proxima Nova Regular', 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 16px; line-height: 22px;">WordPress </span>Codex Documentation &#8211; the most complete reference</p>
<p>&#160;</p>
<p><a href="http://codex.wordpress.org/Function_Reference/WP_List_Table">http://codex.wordpress.org/Function_Reference/WP_List_Table</a></p>
<p>&#160;</p>
<p>&#160;</p>
<p>#3</p>
<p>Documented WordPress plugin with WP_List_Table examples (recommended by Codex):</p>
<p><a href="http://wordpress.org/extend/plugins/custom-list-table-example/">http://wordpress.org/extend/plugins/custom-list-table-example/</a></p>
<p>&#160;</p>
<p><a href="http://sergeyvlasov.com/wp_list_table-essential-resources/" class="more-link">Read more on WP_LIst_Table Essential Resources&#8230;</a></p>
]]></description>
			<content:encoded><![CDATA[<p>#1</p>
<p>An easy practical introductory tutorial from <a class="zem_slink" title="WP Engineer" href="http://wpengineer.com/" rel="homepage" target="_blank">WP Engineer</a> :</p>
<p><a href="http://wpengineer.com/2426/wp_list_table-a-step-by-step-guide/">http://wpengineer.com/2426/wp_list_table-a-step-by-step-guide/</a></p>
<p>&nbsp;</p>
<p>#2</p>
<p><span style="background-color: #ffffff; color: #333333; font-family: 'Proxima Nova Regular', 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 16px; line-height: 22px;">WordPress </span>Codex Documentation &#8211; the most complete reference</p>
<p>&nbsp;</p>
<p><a href="http://codex.wordpress.org/Function_Reference/WP_List_Table">http://codex.wordpress.org/Function_Reference/WP_List_Table</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>#3</p>
<p>Documented WordPress plugin with WP_List_Table examples (recommended by Codex):</p>
<p><a href="http://wordpress.org/extend/plugins/custom-list-table-example/">http://wordpress.org/extend/plugins/custom-list-table-example/</a></p>
<p>&nbsp;</p>
<p>#4</p>
<p>&#8220;WordPress Tutorials&#8221; eBook from Smashing Magazine has a dedicated section about WP_List_Table</p>
<p><a href="https://shop.smashingmagazine.com/wordpress-tutorials-1.html">https://shop.smashingmagazine.com/wordpress-tutorials-1.html</a></p>
<p>Disclaimer &#8211; I&#8217;m not affiliated with Smashed (yet), and I had not read the book (yet again)</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=d0ccb69b-7d8e-4af0-9cfa-6c33bad7e37a" alt=" WP LIst Table Essential Resources"  title="WP LIst Table Essential Resources" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://sergeyvlasov.com/wp_list_table-essential-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m an Android Owner Now!</title>
		<link>http://sergeyvlasov.com/im-an-android-owner-now/</link>
		<comments>http://sergeyvlasov.com/im-an-android-owner-now/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 21:46:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Generic]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[galaxy]]></category>
		<category><![CDATA[purchases]]></category>

		<guid isPermaLink="false">http://sergeyvlasov.com/im-an-android-owner-now/</guid>
		<description><![CDATA[<p>Seriously! Didn&#8217;t you think everyone and his dog in this world has a smartphone?<br />
But I am being such a guy &#8211; showing up late at the party&#8230; You may call me a caveman as well. Just for the record &#8211; I still haven&#8217;t an auto and a TV box at home.<br />
So, this is a Samsung Galaxy Mini, with Android 2.3 installed and I&#8217;m typing tbis pretty stupid post from the free WordPress application. My fingers definitely weren&#8217;t designed for such small keyboard, but for the sake of training, it&#8217;s worth trying.<br />
I&#8217;ll definitely hack some ugly code for this thing, well, when I figure out how&#8230;<br />
Meanwhile the caveman goes to keep up with other things&#8230; His arm hurts and eyes are tired&#8230;
</p>
<p><a href="http://sergeyvlasov.com/im-an-android-owner-now/" class="more-link">Read more on I&#8217;m an Android Owner Now!&#8230;</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Seriously! Didn&#8217;t you think everyone and his dog in this world has a smartphone?<br />
But I am being such a guy &#8211; showing up late at the party&#8230; You may call me a caveman as well. Just for the record &#8211; I still haven&#8217;t an auto and a TV box at home.<br />
So, this is a Samsung Galaxy Mini, with Android 2.3 installed and I&#8217;m typing tbis pretty stupid post from the free WordPress application. My fingers definitely weren&#8217;t designed for such small keyboard, but for the sake of training, it&#8217;s worth trying.<br />
I&#8217;ll definitely hack some ugly code for this thing, well, when I figure out how&#8230;<br />
Meanwhile the caveman goes to keep up with other things&#8230; His arm hurts and eyes are tired&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://sergeyvlasov.com/im-an-android-owner-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework 1.11.11 (&#8220;All Ones&#8221;) Released</title>
		<link>http://sergeyvlasov.com/zend-framework-1-11-11-all-ones-released/</link>
		<comments>http://sergeyvlasov.com/zend-framework-1-11-11-all-ones-released/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 11:41:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Generic]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://sergeyvlasov.com/?p=106</guid>
		<description><![CDATA[<p>In fact, besides it&#8217;s an &#8220;all ones&#8221; version, it&#8217;s also a &#8220;double eleven&#8221; release number. Strictly technically speaking, this version introduces near thirty bug fixes.</p>
]]></description>
			<content:encoded><![CDATA[<p>In fact, besides it&#8217;s an &#8220;all ones&#8221; version, it&#8217;s also a &#8220;double eleven&#8221; release number. Strictly technically speaking, this version introduces near thirty bug fixes.</p>
]]></content:encoded>
			<wfw:commentRss>http://sergeyvlasov.com/zend-framework-1-11-11-all-ones-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manning&#8217;s Blockbuster Week</title>
		<link>http://sergeyvlasov.com/mannings-blockbuster-week/</link>
		<comments>http://sergeyvlasov.com/mannings-blockbuster-week/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 21:37:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Books]]></category>

		<guid isPermaLink="false">http://sergeyvlasov.com/?p=103</guid>
		<description><![CDATA[<p>Today Manning got to release seven new books on various topics &#8211; Rails, Android, Objective-C etc. Three of them being about Server Side Java, where two of them talk about portlets (Liferay in Action and Portlets in Action).</p>
<p><a href="http://sergeyvlasov.com/mannings-blockbuster-week/" class="more-link">Read more on Manning&#8217;s Blockbuster Week&#8230;</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Today Manning got to release seven new books on various topics &#8211; Rails, Android, Objective-C etc. Three of them being about Server Side Java, where two of them talk about portlets (Liferay in Action and Portlets in Action).</p>
<p>Take a look at the list:</p>
<p><span style="color: #555555; font-size: 13px; background-color: #ffffff;">
<ol>
<li><a style="color: #4888a5; text-decoration: none;" rel="nofollow" href="http://www.manning.com/katz" target="_blank">Rails 3 in Action&nbsp;</a></li>
<li><a style="color: #4888a5; text-decoration: none;" rel="nofollow" href="http://www.manning.com/collins" target="_blank">Android in Practice&nbsp;</a></li>
<li><a style="color: #4888a5; text-decoration: none;" rel="nofollow" href="http://www.manning.com/fairbairn" target="_blank">Objective-C Fundamentals&nbsp;</a></li>
<li><a style="color: #4888a5; text-decoration: none;" rel="nofollow" href="http://www.manning.com/sezov" target="_blank">Liferay in Action&nbsp;</a></li>
<li><a style="color: #4888a5; text-decoration: none;" rel="nofollow" href="http://www.manning.com/sarin" target="_blank">Portlets in Action&nbsp;</a></li>
<li><a style="color: #4888a5; text-decoration: none;" rel="nofollow" href="http://www.manning.com/templier" target="_blank">Spring Batch in Action&nbsp;</a></li>
<li><a style="color: #4888a5; text-decoration: none;" rel="nofollow" href="http://www.manning.com/seemann" target="_blank">Dependency Injection in .NET</a></li>
</ol>
<p></span></p>
<p>Thus, portlets made the topic of the week!</p>
<p>Also they announced some October releases. Notably, Mahout and Tika apparently going to make Text Mining the theme of the next month!</p>
<p>By the way, this week&#8217;s promotin says, you can get a discount (depending on the volume). Here is the exact quote:</p>
<p>&#8220;&#8230;</p>
<p><span style="font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; background-color: #ebebeb; font-size: medium;"><br />
<h1 style="margin-top: 0px; margin-right: 0px; margin-bottom: 4px; margin-left: 0px; font-family: Helvetica, Arial, sans-serif; font-size: 13px;">Weekly Special</h1>
<p style="line-height: 18px; margin-top: 0px; font-family: Helvetica, Arial, sans-serif; margin-bottom: 0px; color: #555555; font-size: 13px; padding: 0px;"><strong>Save 37%</strong>&nbsp;on any order&nbsp;<strong>under $50</strong>. Use promo code&nbsp;<strong>a1837</strong><br />
<strong>Save 42%</strong>&nbsp;on any order&nbsp;<strong>over $50</strong>. Use promo code&nbsp;<strong>a1842</strong><br />
<strong>Save 50%</strong>&nbsp;on any order&nbsp;<strong>over $100</strong>. Use promo code&nbsp;<strong>a1850</strong></p>
<p style="line-height: 18px; margin-top: 0px; font-family: Helvetica, Arial, sans-serif; margin-bottom: 0px; color: #555555; font-size: 13px; padding: 0px;"><strong>&#8230;&#8221;</strong></p>
<p style="line-height: 18px; margin-top: 0px; font-family: Helvetica, Arial, sans-serif; margin-bottom: 0px; color: #555555; font-size: 13px; padding: 0px;">&nbsp;</p>
<p style="line-height: 18px; margin-top: 0px; font-family: Helvetica, Arial, sans-serif; margin-bottom: 0px; color: #555555; font-size: 13px; padding: 0px;"><strong><br />
</strong></p>
<p style="line-height: 18px; margin-top: 0px; font-family: Helvetica, Arial, sans-serif; margin-bottom: 0px; color: #555555; font-size: 13px; padding: 0px;">&nbsp;</p>
<p style="line-height: 18px; margin-top: 0px; font-family: Helvetica, Arial, sans-serif; margin-bottom: 0px; color: #555555; font-size: 13px; padding: 0px;"><strong><br />
</strong></p>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://sergeyvlasov.com/mannings-blockbuster-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Truck Driver is Hottest Trending Job on Indeed.com Right Now</title>
		<link>http://sergeyvlasov.com/why-truck-driver-is-hottest-trending-job-on-indeed-com-right-now/</link>
		<comments>http://sergeyvlasov.com/why-truck-driver-is-hottest-trending-job-on-indeed-com-right-now/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 10:23:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Generic]]></category>
		<category><![CDATA[indeed.com]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[trends]]></category>

		<guid isPermaLink="false">http://sergeyvlasov.com/why-truck-driver-is-hottest-trending-job-on-indeed-com-right-now/</guid>
		<description><![CDATA[<p><span style="font-size: medium;">I love Indeed.com, because it is a great tool for both job search and performing some kinds of research. Today I decided to checkout <a href="http://www.indeed.com/jobtrends">top job trends</a>. HTML5, Mobile, Android, jQuery&#8230; So far so good. You know that techy stuff is really hot right now. But Twitter and Facebook both drew my attention because they both are heavily related to social networking, &#160;marketing and such. </span></p>
<p><a href="http://sergeyvlasov.com/why-truck-driver-is-hottest-trending-job-on-indeed-com-right-now/" class="more-link">Read more on Why Truck Driver is Hottest Trending Job on Indeed.com Right Now&#8230;</a></p>
]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: medium;">I love Indeed.com, because it is a great tool for both job search and performing some kinds of research. Today I decided to checkout <a href="http://www.indeed.com/jobtrends">top job trends</a>. HTML5, Mobile, Android, jQuery&#8230; So far so good. You know that techy stuff is really hot right now. But Twitter and Facebook both drew my attention because they both are heavily related to social networking, &nbsp;marketing and such. </span></p>
<p><span style="font-size: medium;">So I went to to see which kinds of<a href="http://www.indeed.com/q-Twitter-jobs.html"> job titles</a> are more prevalent in those categories. Naturally, what I expected to see is something like &#8220;Facebook app developer&#8221; or &#8220;Twitter media advertiser&#8221; or whatever&#8230;&nbsp;</span></p>
<p><span style="font-size: medium;">But what I have seen just struck me! Was it odd? Man it was weird! Ta-raaaam&#8230; meet the bachelors! <a href="http://www.indeed.com/jobs?q=Twitter&amp;rbt=Truck+Driver&amp;jtid=71c9e2043ce0478d">TRUCK DRIVER</a>!!! I didn&#8217;t beleive my eyes! What the @#$% &#8220;truck driver&#8221; doing here?Then I found this line &#8220;&#8230;<span style="font-family: Arial, sans-serif; background-color: #ffffff;">Please follow us on&nbsp;<strong style="unicode-bidi: embed;">Twitter</strong>, Myspace and Facebook&#8230;&#8221; and the matter became clearer. Oh! Thank goodness, they have Twitter and Facebook accounts!</span></span></p>
<p><span style="font-family: Arial, sans-serif; background-color: #ffffff; font-size: medium;"><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://sergeyvlasov.com/why-truck-driver-is-hottest-trending-job-on-indeed-com-right-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top Twenty Most Demanded Java Development Skills</title>
		<link>http://sergeyvlasov.com/top-twenty-most-demanded-java-development-skills/</link>
		<comments>http://sergeyvlasov.com/top-twenty-most-demanded-java-development-skills/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 23:50:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[skills]]></category>
		<category><![CDATA[trends]]></category>

		<guid isPermaLink="false">http://sergeyvlasov.com/?p=79</guid>
		<description><![CDATA[<div>
I have been in Java development for several years, doing mostly server-side(J2EE or custom) programming. But last two years I stepped aside into PHP &#38; JavaScript. Long story short, today I&#8217;m considering to attack Java world once more. Sure, Java development landscape drifted around. So,  to keep up with latest trends I need to choose wisely which skills to pick for acquiring/refreshing.
</div>
<p></p>
<div>So I did my own little research.</div>
<p></p>
<div>The algorithm of the research was pretty simple.</div>
<div>
</div>
<p><a href="http://sergeyvlasov.com/top-twenty-most-demanded-java-development-skills/" class="more-link">Read more on Top Twenty Most Demanded Java Development Skills&#8230;</a></p>
]]></description>
			<content:encoded><![CDATA[<div>
I have been in Java development for several years, doing mostly server-side(J2EE or custom) programming. But last two years I stepped aside into PHP &amp; JavaScript. Long story short, today I&#8217;m considering to attack Java world once more. Sure, Java development landscape drifted around. So,  to keep up with latest trends I need to choose wisely which skills to pick for acquiring/refreshing.
</div>
<p><br/></p>
<div>So I did my own little research.</div>
<p><br/></p>
<div>The algorithm of the research was pretty simple.</div>
<div>
<ol>
<li>Log into Linkedin.com.</li>
<li>In the upper menu go to &#8220;More&#8221;, then &#8220;Skills&#8221;.</li>
<li>Search for &#8220;Java&#8221;.</li>
<li>Write down into a spreadsheet all the related skills (with relative growth %), leave irrelevant ones. I ditched Lisp, Prolog and Scheme. I also left alone JBuilder and Swing, because they just irrelevant for me. I&#8217;m not going to make UI in Java, and not in JBuilder anyway.</li>
<li>Repeat this process for every one of the skills in the first round. Eliminate duplicates. I got something like 100 skills.</li>
<li>Open indeed.com and for each skill in skill list perform search. Write down its % of matching  job postings.</li>
<li>Sort by % of matching postings.</li>
</ol>
</div>
<div>Here goes my top 20 list:</div>
<div>
<ol>
<li> Spring</li>
<li>JSP</li>
<li>Hibernate</li>
<li>Tomcat</li>
<li>Eclipse</li>
<li>Struts</li>
<li>JBoss</li>
<li>Stripes</li>
<li>Servlets</li>
<li>JDBC</li>
<li>JMS</li>
<li>Ant</li>
<li>JUnit</li>
<li>EJB</li>
<li>Maven</li>
<li>JSF</li>
<li>Hudson</li>
<li>Axis</li>
<li>Velocity</li>
<li>GWT</li>
</ol>
</div>
<div>This list is not full or precise, but gives a perception of what is going on there in Java jobs world. Then again, I threw things I dislike left and right, so you probably will get slightly different picture.</div>
<div><br/>But let&#8217;s go a bit further. What about our trends? I&#8217;ve added another column, named &#8220;projected&#8221;, which calculated as amount of job postings next year (given the trend will remain the same). So, what I have get.</div>
<p><br/></p>
<div>
<ol>
<li>Spring (remains the leader)</li>
<li>Hibernate (1 position up)</li>
<li>JSP (1 down)</li>
<li>Tomcat (~)</li>
<li>Stripes (3 up)</li>
<li>JBoss (1 up)</li>
<li>Eclipse (2 down)</li>
<li>Struts (2 down)</li>
<li>JMS  (2 up)</li>
<li>Hudson (7 up!)</li>
<li>JDBC (1 down)</li>
<li>Servlets (3 down)</li>
<li>JUnit (~)</li>
<li>Ant (2 down)</li>
<li>EJB (1 down)</li>
<li>Maven (1 down)</li>
<li>JSF (1 down)</li>
<li>Axis (~)</li>
<li>GWT (1 up)</li>
<li>Velocity  (1 down)</li>
</ol>
</div>
<div>If you look at next 10, you&#8217;ll see there some interesting items: Groovy, Grails, JPA(probably it contains JPA v2 too), iBatis, Ivy. All they have strong upward trends, and probably worth consideration.</div>
<div>Conclusion? It seems like Spring, Hibernate, JSP and Tomcat are must for server-side Java development. Then I should pick several upward trending topics like Hudson, Stripes and JMS(pure backend) and/or GWT(pure frontend). It&#8217;s clear even without spreadsheets, that things like Eclipse, JUnit, Ant and Maven are here to stay for at least another several years.</div>
]]></content:encoded>
			<wfw:commentRss>http://sergeyvlasov.com/top-twenty-most-demanded-java-development-skills/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SpringSource released Spring Data Graph 1.0 with Neo4j support</title>
		<link>http://sergeyvlasov.com/springsource-released-spring-data-graph-1-0-with-neo4j-support/</link>
		<comments>http://sergeyvlasov.com/springsource-released-spring-data-graph-1-0-with-neo4j-support/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 11:01:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Generic]]></category>

		<guid isPermaLink="false">http://sergeyvlasov.com/?p=77</guid>
		<description><![CDATA[<blockquote><p>Here is an overview of Spring Data Graph features:</p>
<ul>
<li>Support for property graphs (nodes connected via relationships, each with arbitrary properties)</li>
<li>Transparent mapping of annotated POJO entities</li>
<li>Neo4jTemplate with convenient API, exception translation and optional transaction management</li>
</ul>
</blockquote>
<p><a href="http://sergeyvlasov.com/springsource-released-spring-data-graph-1-0-with-neo4j-support/" class="more-link">Read more on SpringSource released Spring Data Graph 1.0 with Neo4j support&#8230;</a></p>
]]></description>
			<content:encoded><![CDATA[<blockquote><p>Here is an overview of Spring Data Graph features:</p>
<ul>
<li>Support for property graphs (nodes connected via relationships, each with arbitrary properties)</li>
<li>Transparent mapping of annotated POJO entities</li>
<li>Neo4jTemplate with convenient API, exception translation and optional transaction management</li>
<li>Different type representation strategies for keeping type information in the graph</li>
<li>Dynamic type projections (duck typing)</li>
<li>Spring Data Commons Repositories Support</li>
<li>Cross-store support for partial JPA – Graph Entities</li>
<li>Neo4j Traversal support on dynamic fields and via repository methods</li>
<li>Neo4j Indexing support (including full-text and numeric range queries)</li>
<li>Support for JSR-303 (Bean Validation)</li>
<li>Support for the Neo4j Server</li>
<li>Support for running as extensions in the Neo4j Server</li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://sergeyvlasov.com/springsource-released-spring-data-graph-1-0-with-neo4j-support/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JRuby 1.6.1 Released</title>
		<link>http://sergeyvlasov.com/jruby-1-6-1-released/</link>
		<comments>http://sergeyvlasov.com/jruby-1-6-1-released/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 23:20:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud]]></category>

		<guid isPermaLink="false">http://sergeyvlasov.com/jruby-1-6-1-released/</guid>
		<description><![CDATA[<p>Just a short update</p>
<blockquote><p>JRuby 1.6.1 is our first update to 1.6.0. The primary goal of the 1.6.x series is to round out our 1.9 support by fixing any reported incompatibilities. Of course, as with any JRuby release, we will continue fixing any found incompatibilities and also improve performance. All users of 1.6.0 (and lower) are encouraged to upgrade to 1.6.1.</p>
</blockquote>
<p><a href="http://sergeyvlasov.com/jruby-1-6-1-released/" class="more-link">Read more on JRuby 1.6.1 Released&#8230;</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Just a short update</p>
<blockquote><p>JRuby 1.6.1 is our first update to 1.6.0. The primary goal of the 1.6.x series is to round out our 1.9 support by fixing any reported incompatibilities. Of course, as with any JRuby release, we will continue fixing any found incompatibilities and also improve performance. All users of 1.6.0 (and lower) are encouraged to upgrade to 1.6.1.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://sergeyvlasov.com/jruby-1-6-1-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: sergeyvlasov.com @ 2012-05-20 20:50:54 -->
