<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Bernard&#039;s Technocratic Blog</title>
	<atom:link href="http://bernytech.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bernytech.wordpress.com</link>
	<description>Techno</description>
	<lastBuildDate>Mon, 14 Nov 2011 07:35:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bernytech.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Bernard&#039;s Technocratic Blog</title>
		<link>http://bernytech.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bernytech.wordpress.com/osd.xml" title="Bernard&#039;s Technocratic Blog" />
	<atom:link rel='hub' href='http://bernytech.wordpress.com/?pushpress=hub'/>
		<item>
		<title>PHP &#8211; Why is your image rendering the PHP file name?</title>
		<link>http://bernytech.wordpress.com/2011/05/05/php-why-is-your-image-rendering-the-php-file-name/</link>
		<comments>http://bernytech.wordpress.com/2011/05/05/php-why-is-your-image-rendering-the-php-file-name/#comments</comments>
		<pubDate>Thu, 05 May 2011 10:29:06 +0000</pubDate>
		<dc:creator>bernytech</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://bernytech.wordpress.com/?p=174</guid>
		<description><![CDATA[Don&#8217;t be like me racking my brain for hours trying to figure out why my xxx.php file outputs http://localhost/xxx.php as a one line response. Why? Most likely, you have either: 1. white spaces before or after the php tags 2. need to set header(&#8216;Content-type: image/jpeg&#8217;); 3. if you have required files&#8230;be sure nothing is outputted&#8230;no [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=174&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t be like me racking my brain for hours trying to figure out why my xxx.php file outputs http://localhost/xxx.php as a one line response.</p>
<p>Why?</p>
<p>Most likely, you have either:</p>
<p>1. white spaces before or after the php tags<br />
2. need to set header(&#8216;Content-type: image/jpeg&#8217;);<br />
3. if you have required files&#8230;be sure nothing is outputted&#8230;no test print statements because page expects image information<br />
4.  there is an error in your code</p>
<p>In my case, it was 4.  There is a reason why the function call base64decode does not work&#8230;</p>
<p>It&#8217;s actually: base64_decode()</p>
<p>By the way, other ways to validate your image encoded in base64 is to use the following tag:</p>
<p>echo &#8216;&lt;img src=&#8221;data:image/jpeg;base64,&#8217;.$row['IMAGE'].&#8217;&#8221; alt=&#8221;photo&#8221;&gt;&#8217;;</p>
<p>I was pulling a blob encoded base 64 data from mysql database and trying to render it on a page</p>
<p>I hope this helps someone.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bernytech.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bernytech.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bernytech.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bernytech.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bernytech.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bernytech.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bernytech.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bernytech.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bernytech.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bernytech.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bernytech.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bernytech.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bernytech.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bernytech.wordpress.com/174/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=174&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bernytech.wordpress.com/2011/05/05/php-why-is-your-image-rendering-the-php-file-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bb2b671a11579f8713e572082d45704c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bernytech</media:title>
		</media:content>
	</item>
		<item>
		<title>To ESB or not to ESB?</title>
		<link>http://bernytech.wordpress.com/2011/04/23/to-esb-or-not-to-esb/</link>
		<comments>http://bernytech.wordpress.com/2011/04/23/to-esb-or-not-to-esb/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 06:05:31 +0000</pubDate>
		<dc:creator>bernytech</dc:creator>
				<category><![CDATA[Enterprise Service Bus]]></category>
		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://bernytech.wordpress.com/?p=171</guid>
		<description><![CDATA[ESB stands for enterprise service bus.  It&#8217;s basically a layer that acts as a provider for many other services.  Supposedly, it&#8217;s lightweight and robust. Upon my research for Mule (ESB candidate), I found out that it adds a medium learning curve in implementation.  Imagine mapping endpoints and services in a configuration file that will inevitably [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=171&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>ESB stands for enterprise service bus.  It&#8217;s basically a layer that acts as a provider for many other services.  Supposedly, it&#8217;s lightweight and robust.</p>
<p>Upon my research for <a href="http://www.mulesoft.org/">Mule</a> (ESB candidate), I found out that it adds a medium learning curve in implementation.  Imagine mapping endpoints and services in a configuration file that will inevitably grow as more consumers are integrated into this layer.  -1 for maintenance  (It reminds me of the spring configuration file.)</p>
<p>Also, the binary file provides a self-contained server that runs Mule.  There are no instructions on how to integrate the mule jar file with an existing application server &#8211; tomcat, jboss, or weblogic server</p>
<p>As a blog writer states clearly:  It&#8217;s an architect&#8217;s dream, but a developer&#8217;s nightmare. (<a href="http://erik.doernenburg.com/2009/07/making-esb-pain-visible/">http://erik.doernenburg.com/2009/07/making-esb-pain-visible/</a>)</p>
<p>The developer&#8217;s question that first comes to mind is:  Why?</p>
<p>Why should one insert a services layer in front of another framework such as struts?</p>
<p>Why can&#8217;t APIs be opened via different urls mapped to a servlet? How does that NOT work?</p>
<p>All valid questions.  But to support ESBs, here is a blog and checklist for those thinking about using a ESB:</p>
<div><a href="http://blogs.mulesoft.org/to-esb-or-not-to-esb/">http://blogs.mulesoft.org/to-esb-or-not-to-esb/</a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bernytech.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bernytech.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bernytech.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bernytech.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bernytech.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bernytech.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bernytech.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bernytech.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bernytech.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bernytech.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bernytech.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bernytech.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bernytech.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bernytech.wordpress.com/171/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=171&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bernytech.wordpress.com/2011/04/23/to-esb-or-not-to-esb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bb2b671a11579f8713e572082d45704c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bernytech</media:title>
		</media:content>
	</item>
		<item>
		<title>Struts 2 &amp; Weblogic 7001 Listening Port Issues</title>
		<link>http://bernytech.wordpress.com/2011/04/23/struts-2-weblogic-7001-listening-port-issues/</link>
		<comments>http://bernytech.wordpress.com/2011/04/23/struts-2-weblogic-7001-listening-port-issues/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 06:03:50 +0000</pubDate>
		<dc:creator>bernytech</dc:creator>
				<category><![CDATA[struts 2]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://bernytech.wordpress.com/?p=169</guid>
		<description><![CDATA[So if you are seeing 7001 listening port issues like me when I try to deploy my war file to Weblogic 11g, then this may as well resolve your issue. Option 1 You need to manually place the freemarker.jar and javaassist.jar in the lib directory of your weblogic domain. For some reason, Weblogic doesn&#8217;t pick [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=169&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So if you are seeing 7001 listening port issues like me when I try to deploy my war file to Weblogic 11g, then this may as well resolve your issue.</p>
<p><span style="text-decoration:underline;"><strong>Option 1</strong></span></p>
<p>You need to manually place the freemarker.jar and javaassist.jar in the lib directory of your weblogic domain.</p>
<p>For some reason, Weblogic doesn&#8217;t pick it up from the WEB-INF/lib from your war/ear file.</p>
<p>Thanks to <a href="http://www.experts-exchange.com/M_2000835.html">sbweitzman</a> :  http://www.experts-exchange.com/Programming/Languages/Java/Q_26609564.html</p>
<p><span style="text-decoration:underline;"><strong>Option 2</strong></span></p>
<p>If you are integrated with the Eclipse environment, you may see errors such as listening ports are already used.</p>
<p>I tried deleting the server and re-configuring a new one.  If that doesn&#8217;t work, it might have to do with your JRE.</p>
<p>Click on properties of the project, go to Java Class Path.  sometimes, I see the JRE for my Mac OS is &#8220;<strong>unbounded&#8221;</strong>.</p>
<p>If I remove it and search for the JRE library again and re-add it back, then re-build and deploy the project&#8230;everything seems to work fine.</p>
<p>Hope this helps someone out there.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bernytech.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bernytech.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bernytech.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bernytech.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bernytech.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bernytech.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bernytech.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bernytech.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bernytech.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bernytech.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bernytech.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bernytech.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bernytech.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bernytech.wordpress.com/169/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=169&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bernytech.wordpress.com/2011/04/23/struts-2-weblogic-7001-listening-port-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bb2b671a11579f8713e572082d45704c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bernytech</media:title>
		</media:content>
	</item>
		<item>
		<title>Struts 2: The Beginning</title>
		<link>http://bernytech.wordpress.com/2011/04/23/struts-2-the-beginning/</link>
		<comments>http://bernytech.wordpress.com/2011/04/23/struts-2-the-beginning/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 05:58:25 +0000</pubDate>
		<dc:creator>bernytech</dc:creator>
				<category><![CDATA[struts 2]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://bernytech.wordpress.com/?p=166</guid>
		<description><![CDATA[It&#8217;s not so often that  I get to play around with new frameworks.  But since there is a project that will live as an independent system, I have decided to make the leap to Struts 2.  Yes, it&#8217;s been out there for quite a few years, but if you work in a corporate environment like [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=166&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s not so often that  I get to play around with new frameworks.  But since there is a project that will live as an independent system, I have decided to make the leap to Struts 2.  Yes, it&#8217;s been out there for quite a few years, but if you work in a corporate environment like I do, there isn&#8217;t an opportunity for an upgrade until &#8230; well&#8230; never.</p>
<p>So since I am the architect on the project, I choose to go with Struts 2. You would think downloading the full distribution would work fine:</p>
<p><a href="http://struts.apache.org/download.cgi#struts2211">http://struts.apache.org/download.cgi#struts2211</a></p>
<p>But learning the hard way, it doesn&#8217;t.</p>
<p>I copied the HelloWorld sample from:</p>
<p><a href="http://code.google.com/p/struts2-examples/downloads/list">http://code.google.com/p/struts2-examples/downloads/list</a></p>
<p>and attempted to deploy and run it in my Eclipse setup.  But then I see multiple stack trace issues.</p>
<p>After searching in forums for a few hours, I still didn&#8217;t find any good leads.  As a last attempt, I decided to register to the mailing list:</p>
<p><a href="mailto:user@struts.apache.org">user@struts.apache.org</a></p>
<p>Dave Newton (I think he&#8217;s a Struts 2 master) responded that if I didn&#8217;t need any jar plugins, then I should remove them.</p>
<p>This doesn&#8217;t make sense to me because if I want to run a full distribution version, then it should run out-of-the-box, shouldn&#8217;t it?</p>
<p>Maybe it&#8217;s because i&#8217;m running Tomcat 5.5.?  Whatever the reason, I felt I wasted my time trying to debug something that doesn&#8217;t work out-of-the box.</p>
<p>So I went back to the downloads page and downloaded the essential dependencies bundle:</p>
<p><a href="http://struts.apache.org/download.cgi#struts2211">http://struts.apache.org/download.cgi#struts2211</a></p>
<p>You would think this would work, but it doesn&#8217;t.</p>
<p>I had to debug exception errors and stacktrace errors  by looking at various forums.  Here is the list of plugins and jars that I needed to remove from my lib directory so that I can get the Hello World application to work:</p>
<p>struts2-jsf-*<br />
struts2-osgi-*<br />
struts2-portlet-*<br />
struts2-codebehind-*</p>
<p>No more stack trace issues.</p>
<p>But when I hit the url, that screen throws a NoMethodFound Exception on HelloWorldAction.index() error.</p>
<p>Back to the forums&#8230;</p>
<p>Someone in the mailing list recommended that I remove the:</p>
<p>struts2-rest-plugin-2.2.1.1.jar</p>
<p>This did the trick.</p>
<p>Finally, I see my HelloWorld app working fine.</p>
<p>Whew!!!</p>
<p>P.S. Be sure to place the struts.xml in the /WEB-INF/classes directory.  In eclipse, just put it on the top level of your src directory for eclipse deployment</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bernytech.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bernytech.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bernytech.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bernytech.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bernytech.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bernytech.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bernytech.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bernytech.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bernytech.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bernytech.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bernytech.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bernytech.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bernytech.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bernytech.wordpress.com/166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=166&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bernytech.wordpress.com/2011/04/23/struts-2-the-beginning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bb2b671a11579f8713e572082d45704c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bernytech</media:title>
		</media:content>
	</item>
		<item>
		<title>Another Cool HTML 5 Site</title>
		<link>http://bernytech.wordpress.com/2010/08/30/another-cool-html-5-site/</link>
		<comments>http://bernytech.wordpress.com/2010/08/30/another-cool-html-5-site/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 19:02:16 +0000</pubDate>
		<dc:creator>bernytech</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://bernytech.wordpress.com/?p=151</guid>
		<description><![CDATA[My coworker sent me this.  I think it can be played in Chrome.  But it&#8217;s pretty artistic file integrating google maps: http://www.thewildernessdowntown.com/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=151&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My coworker sent me this.  I think it can be played in Chrome.  But it&#8217;s pretty artistic file integrating google maps:</p>
<p><a href="http://www.thewildernessdowntown.com/">http://www.thewildernessdowntown.com/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bernytech.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bernytech.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bernytech.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bernytech.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bernytech.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bernytech.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bernytech.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bernytech.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bernytech.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bernytech.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bernytech.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bernytech.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bernytech.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bernytech.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=151&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bernytech.wordpress.com/2010/08/30/another-cool-html-5-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bb2b671a11579f8713e572082d45704c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bernytech</media:title>
		</media:content>
	</item>
		<item>
		<title>The type java.lang.Enum cannot be resolved. It is indirectly referenced from required .class files</title>
		<link>http://bernytech.wordpress.com/2010/08/28/the-type-java-lang-enum-cannot-be-resolved-it-is-indirectly-referenced-from-required-class-files/</link>
		<comments>http://bernytech.wordpress.com/2010/08/28/the-type-java-lang-enum-cannot-be-resolved-it-is-indirectly-referenced-from-required-class-files/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 10:11:23 +0000</pubDate>
		<dc:creator>bernytech</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JVM]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://bernytech.wordpress.com/?p=146</guid>
		<description><![CDATA[Are you having these types of Eclipse-related errors??? The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Enum. Fix the build path then try building this project The type java.lang.Enum cannot be resolved. It is indirectly referenced from required .class files    XXX.java So this issue took me [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=146&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Are you having these types of Eclipse-related errors???</p>
<p><strong><em>The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Enum. Fix the build path then try building this project</em></strong></p>
<p><strong><em>The type java.lang.Enum cannot be resolved. It is indirectly referenced from required .class files    XXX.java</em></strong></p>
<p>So this issue took me a few hours to resolve.  I&#8217;ve looked at other blogs and people say that you should check if your eclipse is pointing to the wrong JVM. e.g. 1.6 vs 1.5</p>
<p>But this wasn&#8217;t the cause of the issue for me.  So I work on MBP.  With the latest OS updates, the JVM directories are overridden.  This is a pain especially if you are working with legacy applications using JVM 1.5.</p>
<p>I tried to download a 1.5 JDK/JVM version, but that copy appears to be incomplete or corrupted.  So the best thing to do and you may not have been doing this, is to restore the java directories using time machine.  On my machine, I would go to:</p>
<p>/System/Library/Frameworks/JavaVM.framework/Versions/</p>
<p>Then enter time machine, and replace all the directories with that past version that worked.  BTW, don&#8217;t delete the A directory.  You would think it&#8217;s some junk directory, but it&#8217;s not.  It&#8217;s a required directory that some engineer did not think to name properly.</p>
<p>In eclipse, I went to Preferences -&gt; Java -&gt; Installed JREs and selected the JVM 1.5. If it&#8217;s not there, click on the Search button. This will search your system for all installed JREs.</p>
<p>Next, go to Project -&gt; Properties -&gt; Java Build Path and make sure the JVM 1.5 JRE System Library is added to the list.  If not, you should click on the Add Library button , select JRE System Library and select workspace default JRE (JVM 1.5).</p>
<p>This took me 3 hours to debug!!!  And it&#8217;s 3 am&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bernytech.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bernytech.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bernytech.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bernytech.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bernytech.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bernytech.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bernytech.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bernytech.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bernytech.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bernytech.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bernytech.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bernytech.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bernytech.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bernytech.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=146&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bernytech.wordpress.com/2010/08/28/the-type-java-lang-enum-cannot-be-resolved-it-is-indirectly-referenced-from-required-class-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bb2b671a11579f8713e572082d45704c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bernytech</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP, MySQL, PHPAdmin, PEAR &#8211; Manual Installation</title>
		<link>http://bernytech.wordpress.com/2010/08/21/php-mysql-phpadmin-pear-manual-installation/</link>
		<comments>http://bernytech.wordpress.com/2010/08/21/php-mysql-phpadmin-pear-manual-installation/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 04:18:39 +0000</pubDate>
		<dc:creator>bernytech</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PEAR]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://bernytech.wordpress.com/?p=139</guid>
		<description><![CDATA[I got through part of the installation on my own and then I came across this blog: http://www.klauskomenda.com/archives/2008/10/07/installing-apache-mysql-and-php-on-leopard/ PEAR is awesome.  It&#8217;s like the Java API, but it&#8217;s open source for PHP.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=139&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I got through part of the installation on my own and then I came across this blog:</p>
<p><a href="http://www.klauskomenda.com/archives/2008/10/07/installing-apache-mysql-and-php-on-leopard/">http://www.klauskomenda.com/archives/2008/10/07/installing-apache-mysql-and-php-on-leopard/</a></p>
<p>PEAR is awesome.  It&#8217;s like the Java API, but it&#8217;s open source for PHP.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bernytech.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bernytech.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bernytech.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bernytech.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bernytech.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bernytech.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bernytech.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bernytech.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bernytech.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bernytech.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bernytech.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bernytech.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bernytech.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bernytech.wordpress.com/139/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=139&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bernytech.wordpress.com/2010/08/21/php-mysql-phpadmin-pear-manual-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bb2b671a11579f8713e572082d45704c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bernytech</media:title>
		</media:content>
	</item>
		<item>
		<title>improving Page Download Speeds via Javascript</title>
		<link>http://bernytech.wordpress.com/2010/08/20/improving-page-download-speeds-via-javascript/</link>
		<comments>http://bernytech.wordpress.com/2010/08/20/improving-page-download-speeds-via-javascript/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 18:39:44 +0000</pubDate>
		<dc:creator>bernytech</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Performance]]></category>

		<guid isPermaLink="false">http://bernytech.wordpress.com/2010/08/20/improving-page-download-speeds-via-javascript/</guid>
		<description><![CDATA[I was reading another blog about page performance and I thought it would be a good read for you. This blog touches upon more improvement considerations depending on the web application: http://encosia.com/2010/08/18/dont-let-jquerys-document-ready-slow-you-down/ The gist is that one doesn&#8217;t need to register event handlers on document load. It&#8217;s a common practice; however, it may slow down [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=136&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was reading another blog about page performance and I thought it would be a good read for you.</p>
<p>This blog touches upon more improvement considerations depending on the web application:</p>
<p><a href="http://encosia.com/2010/08/18/dont-let-jquerys-document-ready-slow-you-down/">http://encosia.com/2010/08/18/dont-let-jquerys-document-ready-slow-you-down/</a></p>
<p>The gist is that one doesn&#8217;t need to register event handlers on document load.  It&#8217;s a common practice; however, it may slow down the page if the page has numerous assets.</p>
<p>If one registers the event handlers in the head tag section, it will speed up the page a little faster because the registration of the events is dynamic &#8211; when the element is read by the browser and inserted into the DOM, the browser registers the event handler to that element.  This will speed the registration of event handlers as the page load as opposed to waiting for the page to load and then traverse the DOM to search for the elements for event handler registration.</p>
<p>Another point is something intuitive.  If one was to make an AJAX request using JSONP, that request should also be inserted early in the page as opposed to when the document loads.  This will help the page retrieve the data faster as the JSONP is a asynchronous request.</p>
<p>All in all, it was a good read whether it refreshes your memory or is something new.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bernytech.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bernytech.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bernytech.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bernytech.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bernytech.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bernytech.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bernytech.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bernytech.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bernytech.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bernytech.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bernytech.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bernytech.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bernytech.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bernytech.wordpress.com/136/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=136&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bernytech.wordpress.com/2010/08/20/improving-page-download-speeds-via-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bb2b671a11579f8713e572082d45704c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bernytech</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting up SVN Server and Making your Server Secure</title>
		<link>http://bernytech.wordpress.com/2010/08/11/setting-up-svn-server-and-making-your-server-secure/</link>
		<comments>http://bernytech.wordpress.com/2010/08/11/setting-up-svn-server-and-making-your-server-secure/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 23:53:17 +0000</pubDate>
		<dc:creator>bernytech</dc:creator>
				<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://bernytech.wordpress.com/2010/08/11/setting-up-svn-server-and-making-your-server-secure/</guid>
		<description><![CDATA[This is really cool!!! http://www.sonzea.com/articles/subversion-trac.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=134&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is really cool!!!</p>
<p><a href="http://www.sonzea.com/articles/subversion-trac.html">http://www.sonzea.com/articles/subversion-trac.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bernytech.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bernytech.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bernytech.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bernytech.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bernytech.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bernytech.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bernytech.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bernytech.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bernytech.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bernytech.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bernytech.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bernytech.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bernytech.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bernytech.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=134&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bernytech.wordpress.com/2010/08/11/setting-up-svn-server-and-making-your-server-secure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bb2b671a11579f8713e572082d45704c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bernytech</media:title>
		</media:content>
	</item>
		<item>
		<title>Having problems deploying your WAR file after upgrading to Snow Leopard?</title>
		<link>http://bernytech.wordpress.com/2010/04/28/having-problems-compiling-deploying-your-java-code-after-upgrading-to-snow-leopard/</link>
		<comments>http://bernytech.wordpress.com/2010/04/28/having-problems-compiling-deploying-your-java-code-after-upgrading-to-snow-leopard/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 00:18:59 +0000</pubDate>
		<dc:creator>bernytech</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Tomcat]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bernytech.wordpress.com/?p=124</guid>
		<description><![CDATA[Although I have upgraded a few months back, I felt compelled to re-visit the issue I faced when upgrading from Leopard to Snow Leopard.  For some odd reason, my code was throwing errors of java version incompatibilities. It took me a while to realize that I wanted to use Java 1.5 and my environment variable [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=124&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Although I have upgraded a few months back, I felt compelled to re-visit the issue I faced when upgrading from Leopard to Snow Leopard.  For some odd reason, my code was throwing errors of java version incompatibilities.</p>
<p>It took me a while to realize that I wanted to use Java 1.5 and my environment variable was pointing to the 1.5 directory:</p>
<p>/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0</p>
<p>However, the actual java files inside this directory were overridden during the upgrade to be 1.6.0.  They were either overridden or the symbolic link created was pointing to 1.6.</p>
<p>I&#8217;m still trying to get a grasp why there are symbolic links in this directory and why can&#8217;t the system just reference that particular directory explicitly.</p>
<p>But in any case, this led to a few hours of debugging when I realized 1.5 did not exist.  So I had to reinstall JDK 1.5 from Sun (now Oracle) site.  It fixed the issue. But recently, I had to install a corporate software on my machine.  It kept on crashing and I raised a ticket to the appropriate team.</p>
<p>There were a lot of back and forth correspondence indicating that Snow Leopard works with 1.6 only.  This is contrary to what I have been running the last few months.  Everything works fine except for this one software install.</p>
<p>So I had to remove Java 1.5 so that the software can be installed correctly.  Then, I reintroduced Java 1.5 back into the system.  It really is some weird thing going on.</p>
<p>I was referred to this url:  http://wiki.oneswarm.org/index.php/OS_X_10.6_Snow_Leopard</p>
<p>The directions are very good.  The part about setting up 1.5 is odd as you have to create a few symbolic links in order to tell the OS that this directory is in fact 1.5.  It&#8217;s not intuitive at all.</p>
<p>In fact, if you execute:  ls -al</p>
<p>You see the java versions have many different symbolic links pointing to actual java versions, or CurrentJDK, or Current.  Then I found another article where it would be ideal to set your $JAVA_HOME environment var to be:  /System/Library/Frameworks/JavaVM.framework/Home</p>
<p>Guess what?  This is yet ANOTHER symbolic link pointing to the &#8230;/CurrentJDK/Home</p>
<p>I understand that this helps in changing JDK version across the whole system, but I find it difficult to discover this without research and testing.  Why was it done this way, I do not know.</p>
<p>Do you?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bernytech.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bernytech.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bernytech.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bernytech.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bernytech.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bernytech.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bernytech.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bernytech.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bernytech.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bernytech.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bernytech.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bernytech.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bernytech.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bernytech.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bernytech.wordpress.com&amp;blog=8296513&amp;post=124&amp;subd=bernytech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bernytech.wordpress.com/2010/04/28/having-problems-compiling-deploying-your-java-code-after-upgrading-to-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bb2b671a11579f8713e572082d45704c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bernytech</media:title>
		</media:content>
	</item>
	</channel>
</rss>
