<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>webJestic.NET</title>
	
	<link>http://webjestic.net</link>
	<description>Making Internet Development Simple</description>
	<lastBuildDate>Wed, 18 Aug 2010 18:43:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/webjestic" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="webjestic" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Is Java Better than PHP for Web Applications?</title>
		<link>http://webjestic.net/blog/is-java-better-than-php-for-web-applications/</link>
		<comments>http://webjestic.net/blog/is-java-better-than-php-for-web-applications/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 18:43:40 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://webjestic.net/?p=1816</guid>
		<description><![CDATA[Yesterday, I wrote about Moving from PHP to Java. Since then, I&#8217;ve had another conversation about why Java is better for web applications than PHP. The two main points of discussion were 1) database use and 2) debugging. Again, when I had finished the conversation, I wasn&#8217;t able to walk away believing that Java is [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://webjestic.net/wp-content/uploads/2010/08/Java.jpg" alt="" style="float:right; margin:0 0 10px 15px;" width="200" height="200"/><br />
Yesterday, I wrote about <a href="http://webjestic.net/blog/moving-from-php-to-java/">Moving from PHP to Java</a>.  Since then, I&#8217;ve had another conversation about why Java is better for web applications than PHP.</p>
<p>The two main points of discussion were 1) database use and 2) debugging.</p>
<p>Again, when I had finished the conversation, I wasn&#8217;t able to walk away believing that Java is the better choice.</p>
<p><strong>Database Processing</strong><br />
The argument concerning the database was about developing serious database applications and not just blogs or small open source applications.  We were talking large corporate applications that run business or SaaS (Software as a Service) applications.  Something with some serious meat to it.  Applications with databases designs containing over 100 tables.</p>
<p>The opinion was that PHP is great for little web applications with less than a dozen tables in the database, but once you start producing pages that hit a dozen or so queries to build financial statements (or whatever) then PHP starts to fall apart.  The entire conversation was that in development you want you programmers producing code and not having to write tons of queries to extract the necessary data for that screen.  Additionally, programmers should be accessing objects as opposed to generating queries and pulling data.</p>
<p>The conversation went to how PHP suffers when you want to add new fields or new tables.  It seems that you have to rewrite entire sections of your PHP application to adjust to this style of change.</p>
<p>My response?</p>
<p>Design.  Small open source projects are fine for embedding queries directly into the construction of the page.  However, for actual applications I would hope that Views and Stored Procedures would be used to supply data.  I would also hope that your framework took care of data transactions and that your designs took advantage of objects.</p>
<p>Designing is where you find solutions for these problems, not language.</p>
<p><strong>Debugging</strong><br />
Java is compiled and has excellent debugging utilities, while PHP requires echo statements and a lot of extra code.</p>
<p>My response?  </p>
<p>Eclipse for PHP has an actual debugger and writing test units never hurt development.  Yet, I will say that Java does have a stronger debugging environment, but not by much.</p>
]]></content:encoded>
			<wfw:commentRss>http://webjestic.net/blog/is-java-better-than-php-for-web-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving from PHP to Java</title>
		<link>http://webjestic.net/blog/moving-from-php-to-java/</link>
		<comments>http://webjestic.net/blog/moving-from-php-to-java/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 20:37:02 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SpringSource]]></category>

		<guid isPermaLink="false">http://webjestic.net/?p=1796</guid>
		<description><![CDATA[Recently, the opportunity for me to get involved with Java has presented itself for the second time in my career. I&#8217;ve been a PHP developer for almost 10 years. About a decade ago I worked for a prestigious consulting firm and during that time, two groups surfaced. One was the Java group and they were [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://springsource.com" rel="nofollow" target="_blank"><img alt="Java" src="http://webjestic.net/wp-content/uploads/2010/08/springsource-weblogo.jpg" style="float:right; margin:0 0 10px 15px;"/></a></p>
<p>Recently, the opportunity for me to get involved with Java has presented itself for the second time in my career.  I&#8217;ve been a PHP developer for almost 10 years.  About a decade ago I worked for a prestigious consulting firm and during that time, two groups surfaced.</p>
<p>One was the Java group and they were headstrong and excited about developing Java beans and compiling applications that could run anywhere you could install a JRE.  </p>
<p>The other group was a little more humble but excited about Linux commands.  I was more fond of Linux at the time and PHP offered a very simple and practical approach to web development.  However, the applications could only be ran on Apache servers (we could put them on Microsoft stuff, but why?).</p>
<p>I chose the PHP/MySQL path and have been very satisfied.</p>
<p>Today, I have the opportunity to work with Java once again.  <a href="http://www.springsource.com/">SpringSource</a> to be exact. </p>
<p>I&#8217;m a little excited about it and more so than I imagined I would be.  For one thing, the <a href="http://code.google.com/appengine/">Google AppEngine</a> is a Java engine.  This is big for me, as I love Google and would like to become more involved in using their AppEngine, but it&#8217;s not native to PHP.  So, for me to take advantage of the Google AppEngine, I must know and understand Java.</p>
<p>SourceSpring provides a customized Eclipse IDE.  I use <a href="http://www.eclipse.org/pdt/">Eclipse for PHP</a> as my IDE along with the <a href="http://framework.zend.com/">Zend Framework</a> for my MVC.  So, I&#8217;m already familiar with the IDE.  I&#8217;m also familiair with web applications, object oriented concepts, and the <a rel="nofollow" href="http://en.wikipedia.org/wiki/Model%E2%80%93View%E2%80%93Controller">MVC architecture</a>.  </p>
<p>I believe developing in SourceSpring is within my reach and worth exploring.</p>
<p>However, I remember how &#8220;Java&#8221; is complex.  The language itself is elegant and wonderful, but the complexity of stacking your environment with dependencies and integrating code architecture is a bit much.  I am a huge believer that software development as well as the software itself, should be simple.  Keep it simple.  I feel that Java web development has stepped outside the circle of simplicity.</p>
<p>There must be a reason for this.  </p>
<p>I can appreciate an object hierarchy and it&#8217;s usefulness.  I understand the need to know what objects are inherited from what other objects.  However, this has nothing to do with the language itself.  Most object oriented languages do this and this is accomplished with libraries in PHP.  So, I don&#8217;t consider having a solid class hierarchy an advantage specific for &#8220;Java&#8221;.  </p>
<p>I also realize that PHP is interrupted and Java is known for it&#8217;s speed.  This could be considered an advantage for Java, but the same could be said for .NET.  </p>
<p>PHP is by no means slow.  Besides, all good architectural designs will strive to serve cached pages and it takes little resources to serve a PHP form.  PHP takes the &#8220;speed hit&#8221; in every debate, but I don&#8217;t feel it is just.  I believe speed comes from good design and properly written code.</p>
<p>So, I&#8217;m beginning the quest to understand why Java is so highly praised as a development environment by corporations.  Most Java developers I know seem to look down upon PHP for some reason.  I&#8217;m not exactly sure why and whenever I have an actual debate over it, I never walk away feeling they&#8217;ve given me any good reason to believe Java is superior for web applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://webjestic.net/blog/moving-from-php-to-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Google TV Plans to Simplify Television</title>
		<link>http://webjestic.net/blog/how-google-tv-plans-to-simplify-television/</link>
		<comments>http://webjestic.net/blog/how-google-tv-plans-to-simplify-television/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 16:47:09 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Developer]]></category>

		<guid isPermaLink="false">http://webjestic.net/?p=1736</guid>
		<description><![CDATA[Google announces Google TV and plans to aggressively challenge the devices that currently make television what it is today.]]></description>
			<content:encoded><![CDATA[<p>
<img width="194" height="168" src="http://webjestic.net/wp-content/uploads/2010/07/GoogleTV.jpg" alt="Google TV" style="float:right; margin:0 0 10px 15px;"/>
<p>I love Google.</p>
<p>Any modern day developer who is actively developing Android and iPhone applications should be very excited to know that Google is headed for TV...  And they have a developer kit.</p>
<p>Having entered into a partnership with Intel and Sony, Google is aggressively planning to get Google TV into your living room as early as this fall.</p> 
<p>Google plans to use Android phones as a device capable of communicating with Google TV, just like a remote control does today.  Search for television programs you want to watch on TV using your Android phone and have the results displayed directly on your Google TV.</p>
<p>Like it or not, Google has the resources and experience to change the way we look at television.  Google has full intention of merging the web with television and has created a business model that will clearly challenge Apple, TiVo, and perhaps even cable itself.</p>
<p>For the first time in history, Google will provide an open development platform that will usher in a whole new era of software development.  Developers from all over the world will have the opportunity to create interactive applications designed to run on your TV.</p>
<p>With Flash support expected to be built right into Google TV, users will be able to experience applications such as Farmville, right on their big screen HDTV. Although this style of application might be best suited for notebook computers, Flash support for television does open doors for new application concepts and opportunities.</p>
<p>Personally, I believe Google has done much for the open source community, business, and obviously the internet. And with an informal slogan of <em>"don't be evil"</em>... I'm excited to see how this venture changes our world and creates new business and opportunity for the little guys.</p>
<p>To learn more, visit the official site for <a href="http://www.google.com/tv/">Google TV</a>.</p>
</p>
]]></content:encoded>
			<wfw:commentRss>http://webjestic.net/blog/how-google-tv-plans-to-simplify-television/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Social Networking Hazardous to Your Career?</title>
		<link>http://webjestic.net/blog/is-social-networking-hazardous-to-your-career/</link>
		<comments>http://webjestic.net/blog/is-social-networking-hazardous-to-your-career/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 03:16:11 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://webjestic.net/?p=1446</guid>
		<description><![CDATA[Is your social networking potentially causing problems to your career?  It certainly has the ability to discourage potential employers as you search for jobs, but is it effecting your current job?]]></description>
			<content:encoded><![CDATA[<p><img height="252" width="252" src="http://webjestic.net/wp-content/uploads/2010/06/iStock_000007651615XSmall.jpg" style="float:right; margin:0 0 10px 15px;" alt="" />I respect privacy and I don&#8217;t blast my name all over the internet.  In fact, I have a number of writing aliases that I use to help protect my privacy.</p>
<p>My name is Michael and I&#8217;ll almost always use my real first name, but I never use my whole name.  Painful as it is, I use different passwords for different website accounts too.</p>
<p>I love the internet&#8230; I just don&#8217;t trust it.</p>
<p>When I first got on Facebook, I did so because my family was there and wanted to include me.  So, I created an account and within a week I had 30 friends.  The social circle is wide open with the friends of friends concept.</p>
<p>The thing is, I don&#8217;t want people from my elementary years contacting me.  That&#8217;s just not my style.  So, I deactivated my account and created and alias account, applied all the privacy settings and informed my family.</p>
<p>If you are using your real name in the social networks, then your current employer and peers can find you.  When you are searching for work and start sending out your resume, just remember the recipients might be able to easily find you.  Twitter, Facebook, LinkedIn, Flickr&#8230; whatever.  Are you 100% sure of your privacy?</p>
<p>While on Facebook, I had old high school buddies sending me shots of whiskey, rolled up joints, and a number of useless stupid crap.  I also had old high school girlfriends sending me retarded sex quizzes and other items that I wanted nothing to do with.  </p>
<p>As entertaining as these things are, I can&#8217;t help but wonder why a professional accountant would be using Facebook to write a paragraph on their wall about how hammered they was last night.  He was kind enough to inform everybody he wasn&#8217;t able to go to work that day, because of the party last night.</p>
<p>Now seriously?  How smart is this?</p>
<p>If you ship out your resume to a company and the interested/resourceful hiring manager finds your MySpace page and discovers racial jokes, religious opinions, party pictures, or crazy comments from friends&#8230; what do you suppose their first impression will be?</p>
<p>Social Networking is a growing trend and you cannot assume potential or existing employers won&#8217;t search on your name.  It&#8217;s happening everyday and the more savvy they are the more they will use it to find information about you.  You should count on it.</p>
<p>Considering this, you might want to protect your image and build beneficial content by:</p>
<ul>
<li><strong>Being Careful</strong>: Don&#8217;t post anything you wouldn&#8217;t want your employer to see.  Avoid foul language, poor attitudes, and negativity.</li>
<li><strong>Being Discreet</strong>: Take advantage of privacy settings as much as possible.  You might want to turn off comments if you have wild friends you can&#8217;t control.</li>
<li><strong>Being Prepared</strong>: Monitor your social accounts regularly to ensure nothing appears you don&#8217;t want.  Even comments from friends and other people can be viewed in negative light. Be prepared to have unwanted content removed.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://webjestic.net/blog/is-social-networking-hazardous-to-your-career/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back from Vegas</title>
		<link>http://webjestic.net/blog/back-from-vegas/</link>
		<comments>http://webjestic.net/blog/back-from-vegas/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 01:19:44 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[webJestic.NET]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[webJestic]]></category>

		<guid isPermaLink="false">http://webjestic.net/?p=1408</guid>
		<description><![CDATA[My wife and I are married now&#8230; And Vegas was swesome. Las Vegas is also the perfect place for nice, simple, romantic weddings. Vegas weddings. Everything went according to plan and we had a great time. The wedding was memorable and eventful. Thanks to everyone who attended the web-cam ceremony. While in Vegas and since [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float:right; margin:0 0 10px 15px;"  src="http://webjestic.net/wp-content/uploads/2010/06/WedPic.jpg" alt="" /><br />
My wife and I are married now&#8230;  And Vegas was swesome.  </p>
<p>Las Vegas is also the perfect place for nice, simple, romantic weddings.  <a href="http://webjestic.net/blog/las-vegas-wedding/">Vegas weddings</a>.  </p>
<p>Everything went according to plan and we had a great time.  The wedding was memorable and eventful.  </p>
<p>Thanks to everyone who attended the web-cam ceremony.</p>
<p>While in Vegas and since I&#8217;ve been home, I&#8217;ve been updating my resume and checking out opportunities.  I looked around in Vegas, but it doesn&#8217;t seem like the type of town I&#8217;d like to live in.  </p>
<p>No, I&#8217;m thinking somewhere along the ocean.  </p>
<p>Tampa maybe?</p>
]]></content:encoded>
			<wfw:commentRss>http://webjestic.net/blog/back-from-vegas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Las Vegas Wedding</title>
		<link>http://webjestic.net/blog/las-vegas-wedding/</link>
		<comments>http://webjestic.net/blog/las-vegas-wedding/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 05:01:44 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[webJestic.NET]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[webJestic]]></category>

		<guid isPermaLink="false">http://webjestic.net/?p=1382</guid>
		<description><![CDATA[June 16th, 2010. This is my wedding day! I'm excited even though I've been with Amy long enough we already feel we're married. For many, a Las Vegas wedding seems cheesy, but for Amy and I... a Las Vegas wedding is perfect and satisfies all our ideas of a dream wedding. She's from China and [...]]]></description>
			<content:encoded><![CDATA[
<div style="float:right; margin:0 0 10px 15px;">
<img src="http://webjestic.net/wp-content/uploads/2010/06/VegasWedding.jpg" alt=""/>
</div>
<p><strong>June 16th, 2010.</strong>  This is <a href="http://webjestic.net/blog/about-michael/">my</a> wedding day!</p>
<p>I'm excited even though I've been with <a href="http://blog.myspace.cn/1306269459">Amy</a> long enough we already feel we're married.</p>
<p>For many, a <a href="http://www.702wedding.com/" rel="nofollow">Las Vegas wedding</a> seems cheesy, but for Amy and I... a Las Vegas wedding is perfect and satisfies all our ideas of a dream wedding.</p>  
<p>She's from China and her family is in China, while my roots are in the eastern United States.  Just as her family is unable to attend a wedding here in the USA, a Las Vegas wedding does the same to mine.</p>
<p>We're not going to experience a <em>"drive-thru wedding"</em> by any means.  In fact, we've arranged for a nice, simple, event filled wedding, which will be <a href="http://www.702wedding.com/">broadcast</a> over the internet at 9:00pm Vegas time.</p>
<p> Historically, Amy hasn't been much of a picture person, but the past year or so she has become just that.  So, we've arranged for a photographer to follow us around in a limo after the ceremony.</p>
<p>Finally, we've arranged for a <a href="http://www.sundancehelicopters.com/" rel="nofollow">Sunset Helicopter</a> tour of the Vegas strip and a champaign landing in the Grand Canyon.</p>
<p>I'll be back in a week.</p>
]]></content:encoded>
			<wfw:commentRss>http://webjestic.net/blog/las-vegas-wedding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Keyword Research to Identify Your Niche</title>
		<link>http://webjestic.net/blog/using-keyword-research-to-identify-your-niche/</link>
		<comments>http://webjestic.net/blog/using-keyword-research-to-identify-your-niche/#comments</comments>
		<pubDate>Fri, 28 May 2010 17:47:45 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[SEO Developer]]></category>
		<category><![CDATA[keyword research]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://webjestic.net/?p=1218</guid>
		<description><![CDATA[I like to try and create a plan based on keyword research for whatever site I create or develop. I’ll sometimes find a heavy competitive keyword phrase and make it a long term goal, but I’ll always find long-tail keywords I can use to get the site started.]]></description>
			<content:encoded><![CDATA[<img style="float:right; margin:0 0 15px 10px;" src="http://webjestic.net/wp-content/uploads/2010/05/KeyWords.jpg" alt"Keyword Research"/>
<p>How are you identifying your niche?</p>

<p>A few weeks ago, I created a simple video on <a href="http://webjestic.net/blog/basic-keyword-research-application/">Basic Keyword Research</a>.  I&#8217;d produced that article to help a Chinese friend who had decided to create a website offering Chinese travel tours.  After publishing their site they realized they weren&#8217;t getting any web traffic, despite their traditional marketing efforts.</p>

<p>I decided to do a quick analysis on their site and realized it had been put together without any strategic planning or keyword research.  Not being a direct close friend or directly associated, I didn&#8217;t have time or the desire to sit down and explain what some of the problems were.</p>  

<p>However, making a quick 10 minute video was easy and somewhat enlightening, but still nothing more than an extremely simple introduction.  I&#8217;m not the best video producer by any means and I failed to explain the basic concepts of understanding the data. </p>

<p>If you do a Google search for &#8220;<em>chinese travel</em>&#8221; and get About 140,000,000 results, that should tell you there is heavy competition for that specific keyword.  If you want to get your site to show up on the front page for that search term, you have a lot of work ahead of you.</p>

<p>If you run the &#8220;<em>chinese travel</em>&#8221; search term through the Keyword Tool by Google, you find that globally there were around 49,500 searches and 33,100 locally for the month of April.  My &#8220;locally&#8221; covers North America.</p>

<p>Finally, if you examine the search terms with the Traffic Estimator, you discover that you could expect between 14 &#8211; 23 visitors per day if you held the a position in the top 3 positions.</p>

<p>Without any more research efforts, this data should tell you something.  It should tell you, that it&#8217;s a long climb to the top and the results are somewhat minimal in the end.  You would of course piggy back on a variety of keywords along the way, but you have to ask yourself if this is the correct keyword to capture?  Are there better ones?</p>

<p>Ideally, you want to find keyword combinations that have a lot less page results from your search and have a higher rate of traffic once you&#8217;ve made it to the front page.  This is due diligence work but vital to the success of your site and it&#8217;s marketing campaigns.</p>

<p>I like to try and create a plan based on <a href="http://webjestic.net/blog/basic-keyword-research-application/">keyword research</a> for whatever site I create or develop.  I&#8217;ll sometimes find a heavy competitive keyword phrase and make it a long term goal, but I&#8217;ll always find long-tail keywords I can use to get the site started.</p>]]></content:encoded>
			<wfw:commentRss>http://webjestic.net/blog/using-keyword-research-to-identify-your-niche/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Google Apps Reseller Program</title>
		<link>http://webjestic.net/blog/google-apps-reseller-program/</link>
		<comments>http://webjestic.net/blog/google-apps-reseller-program/#comments</comments>
		<pubDate>Fri, 28 May 2010 02:20:00 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[Reseller]]></category>

		<guid isPermaLink="false">http://webjestic.net/?p=1134</guid>
		<description><![CDATA[Google has implemented a Google Apps Reseller, which should be of great interest to IT solution providers and professionals around the world.  This offers an opportunity to strengthen relationships with existing clients and generate revenue by having Google as your partner.]]></description>
			<content:encoded><![CDATA[<img style="float:right; margin:0 0 15px 10px;" width="244" height="220" src="http://webjestic.net/wp-content/uploads/2010/05/GoogleApps.jpg" alt="Google Apps"/>

<p>I feel there isn&#8217;t enough time in the day to do all the things I would like.  Exploring Google and all they have to offer small business is something for which I do not have enough time.  Even still, I would love to become well versed in their technology.</p>

<p>Google has implemented a Google Apps Reseller, which should be of great interest to IT solution providers and professionals around the world.  I have passion for internet technologies and Google has become a vital component of successful online businesses and careers.  As an IT consultant, I don&#8217;t have the luxury of using time as an excuse.  I need to know Google.</p>

<p>I may not be a Google Authorized Reseller, but at least I&#8217;m taking advantage of Google technologies and services for my business and personal use.  Google and their many webmaster tools has become a best friend for small businesses. They contribute to the open source community too, which I respect.</p>  

<p>If you&#8217;re in consulting business or an IT professional and you&#8217;re just using Google as a search engine, you&#8217;re missing out on some of today&#8217;s most important internet technologies.  GMail is awesome email software and the convenience of Google Docs puts commercial applications to shame.  But, it&#8217;s the <a href="http://code.google.com/">Google API</a> that truly makes it all so powerful.</p>

<p>If you&#8217;re already in the IT industry and taking advantage of <a href="http://www.google.com/apps/">Google Apps</a> for your business, you now have the opportunity to add Google Apps to your existing VAR business model. The <a href="http://www.google.com/apps/intl/en/business/resellers/index.html">Google Apps Reseller</a> Program is an opportunity to strengthen relationships with existing clients and generate revenue by having Google as your partner. </p>

<img src="http://webjestic.net/wp-content/uploads/2010/05/pageRip.jpg" alt=""/>

<center><object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/tuVUZQCtcbg&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/tuVUZQCtcbg&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></center>]]></content:encoded>
			<wfw:commentRss>http://webjestic.net/blog/google-apps-reseller-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple webJestic.NET Update</title>
		<link>http://webjestic.net/blog/simple-webjestic-net-update/</link>
		<comments>http://webjestic.net/blog/simple-webjestic-net-update/#comments</comments>
		<pubDate>Tue, 11 May 2010 02:03:37 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[SEO Developer]]></category>
		<category><![CDATA[webJestic.NET]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[webJestic]]></category>

		<guid isPermaLink="false">http://webjestic.net/?p=998</guid>
		<description><![CDATA[I&#8217;ve been updating my pages and my webJestic.NET social wheel and haven&#8217;t had too much time for development. I am glad to say that I&#8217;ve improved my sound and video quality since I made all those Delphi for PHP videos. For those of you who don&#8217;t know, I&#8217;ve been becoming more involved with SEO services [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been updating my pages and my webJestic.NET social wheel and haven&#8217;t had too much time for development.  I am glad to say that I&#8217;ve improved my sound and video quality since I made all those <a href="http://webjestic.net/category/delphi-for-php/">Delphi for PHP</a> videos.</p>
<p>For those of you who don&#8217;t know, I&#8217;ve been becoming more involved with <a href="http://webjestic.net/seo-services/">SEO services</a> recently.  So, I&#8217;d like to just share this with you.  Automated SEO software is generally not worth looking at, but <a href="http://bit.ly/ba46fz" rel="nofollow">SEO Power Suite</a> (aff) is an SEO audit tool that I wouldn&#8217;t want to live without.</p>
]]></content:encoded>
			<wfw:commentRss>http://webjestic.net/blog/simple-webjestic-net-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Social Networking Wheel</title>
		<link>http://webjestic.net/blog/the-social-networking-wheel/</link>
		<comments>http://webjestic.net/blog/the-social-networking-wheel/#comments</comments>
		<pubDate>Sun, 09 May 2010 12:48:31 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[webJestic.NET]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[webJestic]]></category>

		<guid isPermaLink="false">http://webjestic.net/?p=981</guid>
		<description><![CDATA[I&#8217;ve spent the weekend updating my pages. I&#8217;ve been &#8220;live drafting&#8221; my static pages on this site, because I find it interesting to observe the spiders as they come and investigate my site. The final content is designed specifically for human readers, but I do my best to make them SEO friendly. I&#8217;ve also set [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent the weekend updating my pages.  I&#8217;ve been &#8220;live drafting&#8221; my static pages on this site, because I find it interesting to observe the spiders as they come and investigate my site.  The final content is designed specifically for human readers, but I do my best to make them SEO friendly.  </p>
<p>I&#8217;ve also set up the <a href="http://webjestic.net/about/">social network</a> for webJestic.NET.  Generally, I&#8217;m not much of a social person.  I just don&#8217;t have it in me to give enough attention to the web 2.0 properties to make it worth while.  Never-the-less, I&#8217;ve established my little social wheel for webJestic.NET and I do have a plan for each of the spokes.</p>
<p>Finally, now that I&#8217;m back in the USA, I&#8217;ve made some equipment upgrades and have the ability to produce better sound quality for my videos.  However, I doubt I fix the sound on any of my previous videos.</p>
]]></content:encoded>
			<wfw:commentRss>http://webjestic.net/blog/the-social-networking-wheel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
