<?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>web2.0goodies.com &#187; web</title>
	<atom:link href="http://web2.0goodies.com/blog/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://web2.0goodies.com/blog</link>
	<description>Tips, Tricks, and How To's for Web 2.0</description>
	<lastBuildDate>Tue, 03 Jan 2012 05:34:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Why you NEED to become framiliar with Maven.</title>
		<link>http://web2.0goodies.com/blog/java/why-you-need-to-become-framiliar-with-maven/</link>
		<comments>http://web2.0goodies.com/blog/java/why-you-need-to-become-framiliar-with-maven/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 21:23:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[spring]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://web2.0goodies.com/blog/java/why-you-need-to-become-framiliar-with-maven/</guid>
		<description><![CDATA[If you program in Java, you NEED to become fluent in Maven. Why?&#160; Because it simplifies working on projects a lot.&#160; Specifics: Lots of utilities that can be run on any and all maven projects at any time with only one command, and without downloading anything manual. Generate Javadocs instantly.(mvn javadoc:javadoc) Run all tests with [...]]]></description>
			<content:encoded><![CDATA[<p>If you program in Java, you NEED to become fluent in Maven.</p>
<p>Why?&nbsp; Because it simplifies working on projects a lot.&nbsp; </p>
<p>Specifics:
<ul>
<li>Lots of utilities that can be run on any and all maven projects at any time with only one command, and without downloading anything manual.</li>
<li>Generate Javadocs instantly.(mvn javadoc:javadoc)</li>
<li>Run all tests with one command and receive pretty html reports of your test results.(mvn test)</li>
<li>View Test Code coverage with one command and no downloading. (mvn cobertura:cobertra)</li>
<li>Almost instantly use the latest Java libraries, like Apache Commons. (IDE detects unknown class and prompts you to add a dependency to your project).</li>
<li>Do selenium testing with one command. (mvn selenium:start-server)</li>
<li>Generate web projects that include Hibernate, Spring, and more in minutes. (mvn archetype generate)</li>
<li>Run your tomcat projects with a single command. (mvn tomcat:run)</li>
<li>And more!!!&nbsp; If you develop in Java,&nbsp; learning Maven will increase productivity a lot.</li>
</ul>
<p>So, LEARN IT</p>
<p>Start off with this video: <span class="youtube">
<object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/rdhqAzHZkwc?color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;rel=1" />
<param name="allowFullScreen" value="true" />
<param name="allowscriptaccess" value="always">
<embed src="http://www.youtube.com/v/rdhqAzHZkwc?color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;rel=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="425" height="355"></embed>
</object>
</span><p><a href="http://www.youtube.com/watch?v=rdhqAzHZkwc">www.youtube.com/watch?v=rdhqAzHZkwc</a></p></p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=0c0efc65-12b5-8af1-836c-fe21da3e2210" /></div>
]]></content:encoded>
			<wfw:commentRss>http://web2.0goodies.com/blog/java/why-you-need-to-become-framiliar-with-maven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Never ever ever make a php config file not a php file&#8230;</title>
		<link>http://web2.0goodies.com/blog/php5/never-ever-ever-make-a-php-config-file-not-a-php-file/</link>
		<comments>http://web2.0goodies.com/blog/php5/never-ever-ever-make-a-php-config-file-not-a-php-file/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 21:55:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[http]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://web2.0goodies.com/blog/php5/never-ever-ever-make-a-php-config-file-not-a-php-file/</guid>
		<description><![CDATA[I was using a php sdk today where the config file is NOT a php file, but rather a file named .cfg&#8230; The problem?&#160; You have to restrict access to this file with a .htaccess file to prevent someone from reading it.&#160; Whereas, if it were a php file, not only would you not have [...]]]></description>
			<content:encoded><![CDATA[<p>I was using a php sdk today where the config file is NOT a php file, but rather a file named .cfg&#8230; </p>
<p>The problem?&nbsp; You have to restrict access to this file with a .htaccess file to prevent someone from reading it.&nbsp; Whereas, if it were a php file, not only would you not have to prevent access to it, you also don&#8217;t have to write your own parser.</p>
<p>Lesson&#8230;&nbsp; Don&#8217;t use a cfg file, where a php config file will do.</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=2f61917a-08ac-8f23-80ac-5d4252cc2ef7" /></div>
]]></content:encoded>
			<wfw:commentRss>http://web2.0goodies.com/blog/php5/never-ever-ever-make-a-php-config-file-not-a-php-file/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HttpFox Rocks!!! (Better than Tamper Data)</title>
		<link>http://web2.0goodies.com/blog/web/httpfox-rocks-better-than-tamper-data/</link>
		<comments>http://web2.0goodies.com/blog/web/httpfox-rocks-better-than-tamper-data/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 17:28:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[debugging]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://web2.0goodies.com/blog/web/httpfox-rocks-better-than-tamper-data/</guid>
		<description><![CDATA[I used to rely on the Firefox Plugin Tamper Data to get the nitty gritty deatails of http requests.&#160; Firebug has a feature that is similar as well (the net tab).&#160; But I find it buggy.&#160; Recently, a fellow developer introduced me to the HttpFox Firefox plug-in, and it is awesome! I now use it [...]]]></description>
			<content:encoded><![CDATA[<p>I used to rely on the Firefox Plugin Tamper Data to get the nitty gritty deatails of http requests.&nbsp; Firebug has a feature that is similar as well (the net tab).&nbsp; But I find it buggy.&nbsp; Recently, a fellow developer introduced me to the HttpFox Firefox plug-in, and it is awesome!</p>
<p>I now use it all the time.</p>
<p>The only caveat,&nbsp; is only start it when you need it, and stop it when you are done.&nbsp; Leaving HttpFox running and capturing for long periods of time slows Firefox a lot.</p>
<p>Check it out:&nbsp; <a target="_blank" href="http://code.google.com/p/httpfox/">http://code.google.com/p/httpfox/</a></p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=6c1ff6c8-f2d8-843f-bd72-3d3bf0902e5f" /></div>
]]></content:encoded>
			<wfw:commentRss>http://web2.0goodies.com/blog/web/httpfox-rocks-better-than-tamper-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uniserver &#8211; Things I Learned Today</title>
		<link>http://web2.0goodies.com/blog/php5/uniserver-things-i-learned-today/</link>
		<comments>http://web2.0goodies.com/blog/php5/uniserver-things-i-learned-today/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 06:49:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://web2.0goodies.com/blog/php5/uniserver-things-i-learned-today/</guid>
		<description><![CDATA[Uniserver on Windows REQUIRES the .htaccess file to have the &#8220;Options +ExecCGI +FollowSymLinks&#8221; line in it&#8230; Or else you get a 403 forbidden on every page you try to access.]]></description>
			<content:encoded><![CDATA[<p>Uniserver on Windows REQUIRES the .htaccess file to have the &#8220;Options +ExecCGI +FollowSymLinks&#8221; line in it&#8230; Or else you get a 403 forbidden on every page you try to access.</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=34bda74f-2b19-8be6-b827-9b5d4a06a083" /></div>
]]></content:encoded>
			<wfw:commentRss>http://web2.0goodies.com/blog/php5/uniserver-things-i-learned-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things I Learned Today</title>
		<link>http://web2.0goodies.com/blog/php5/things-i-learned-today/</link>
		<comments>http://web2.0goodies.com/blog/php5/things-i-learned-today/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 05:13:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php5]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://web2.0goodies.com/blog/php5/things-i-learned-today/</guid>
		<description><![CDATA[Uniserver on Windows REQUIRES the .htaccess file to have the &#8220;Options +ExecCGI +FollowSymLinks&#8221; line in it&#8230; Or else you get a 403 forbidden on every page you try to access.]]></description>
			<content:encoded><![CDATA[<p>Uniserver on Windows REQUIRES the .htaccess file to have the &#8220;Options +ExecCGI +FollowSymLinks&#8221; line in it&#8230; Or else you get a 403 forbidden on every page you try to access.</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=ae4d07ac-462b-8b0b-9334-1f6df4e05f49" /></div>
]]></content:encoded>
			<wfw:commentRss>http://web2.0goodies.com/blog/php5/things-i-learned-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpMiniAdmin</title>
		<link>http://web2.0goodies.com/blog/php5/phpminiadmin/</link>
		<comments>http://web2.0goodies.com/blog/php5/phpminiadmin/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 00:06:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://web2.0goodies.com/blog/?p=94</guid>
		<description><![CDATA[I&#8217;ve used phpMyAdmin for a while, but I find it to be a little heavyweight at times. Sometimes I just want to run a simple query. The MySQL client is obtuse to use sometimes. So I went on a search for alternatives. I now use phpMiniAdmin almost exclusively. It&#8217;s extremely light weight, fast and has [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve used phpMyAdmin for a while, but I find it to be a little heavyweight at times.  Sometimes I just want to run a simple query.  The MySQL client is obtuse to use sometimes.  So I went on a search for alternatives.</p>
<p>I now use <a href="http://phpminiadmin.sourceforge.net/">phpMiniAdmin</a> almost exclusively.  It&#8217;s extremely light weight, fast and has LOTS of neat features.  It provides everything I need 99.9% of the time. And it&#8217;s easier to configure then phpMyAdmin.</p>
]]></content:encoded>
			<wfw:commentRss>http://web2.0goodies.com/blog/php5/phpminiadmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Atmosphere Talk &#8211; Mobile Internet</title>
		<link>http://web2.0goodies.com/blog/web/google-atmosphere-talk-mobile-internet/</link>
		<comments>http://web2.0goodies.com/blog/web/google-atmosphere-talk-mobile-internet/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 20:50:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://web2.0goodies.com/blog/uncategorized/google-atmosphere-talk-mobile-internet/</guid>
		<description><![CDATA[I watched this talk on You Tube by Mary Meeker who is the Managing Director for Morgan Stanley (A Big Wall Street Company, A Good One). It is extremely informative and filled with facts. httpv://www.youtube.com/eventsatgoogle#p/u/8/X1w1FvgdZnE]]></description>
			<content:encoded><![CDATA[<p>I watched this talk on You Tube by Mary Meeker who is the Managing Director for Morgan Stanley (A Big Wall Street Company,  A Good One).  It is extremely informative and filled with facts.</p>
<p><center>httpv://www.youtube.com/eventsatgoogle#p/u/8/X1w1FvgdZnE</center></p>
]]></content:encoded>
			<wfw:commentRss>http://web2.0goodies.com/blog/web/google-atmosphere-talk-mobile-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I create a website icon?</title>
		<link>http://web2.0goodies.com/blog/web/how-do-i-create-a-website-icon/</link>
		<comments>http://web2.0goodies.com/blog/web/how-do-i-create-a-website-icon/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 03:09:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://web2.0goodies.com/blog/?p=73</guid>
		<description><![CDATA[It&#8217;s a piece of cake&#8230; Just create a file called favicon.ico (an icon file) and put it in the root of your domain. Optionaly, you can include a meta tag to do it. More information is here: http://en.wikipedia.org/wiki/Favicon Also, here is an online generator: http://www.favicon.cc/ There is one gotcha&#8230; On your browser, the icon is [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a piece of cake&#8230; </p>
<p>Just create a file called favicon.ico (an icon file) and put it in the root of your domain.  Optionaly, you can include a meta tag to do it.</p>
<p>More information is here: http://en.wikipedia.org/wiki/Favicon</p>
<p>Also, here is an online generator: http://www.favicon.cc/</p>
<p>There is one gotcha&#8230;  On your browser, the icon is almost NEVER updated, unless you load just the icon, i.e.  http://yoursite.com/favicon.ico  then it will refresh the cache, and the new icon will always appear.</p>
]]></content:encoded>
			<wfw:commentRss>http://web2.0goodies.com/blog/web/how-do-i-create-a-website-icon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

