<?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>The Business of Social Media Beyond Web 2.0 &#187; Web 2.0</title>
	<atom:link href="http://webtechman.com/blog/category/web-20/feed/" rel="self" type="application/rss+xml" />
	<link>http://webtechman.com/blog</link>
	<description>The future of Social Media, getting back to the basics</description>
	<lastBuildDate>Wed, 01 Feb 2012 13:12:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How to Install Apache Tomcat Web App Server in 10 Minutes</title>
		<link>http://webtechman.com/blog/2011/03/09/how-to-install-apache-tomcat-web-app-server-in-10-minutes/</link>
		<comments>http://webtechman.com/blog/2011/03/09/how-to-install-apache-tomcat-web-app-server-in-10-minutes/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 13:30:34 +0000</pubDate>
		<dc:creator>Daniel Hudson</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Platforms]]></category>
		<category><![CDATA[Tomcat]]></category>

		<guid isPermaLink="false">http://webtechman.com/blog/?p=1532</guid>
		<description><![CDATA[How to Install Apache Tomcat on Mac OS X Snow Leopard This tutorial will guide the user through the steps of installing Apache Tomcat on Mac OS X. Prepare the Mac OS X to use the cURL command as Wget &#8230; <a href="http://webtechman.com/blog/2011/03/09/how-to-install-apache-tomcat-web-app-server-in-10-minutes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>How to Install Apache Tomcat on Mac OS X Snow Leopard</h2>
<p>This tutorial will guide the user through the steps of installing Apache Tomcat on Mac OS X.</p>
<p><strong>Prepare the Mac OS X to use the <a href="http://en.wikipedia.org/wiki/CURL" target="_blank">cURL</a> command as <a href="http://en.wikipedia.org/wiki/Wget" target="_blank">Wget</a></strong> : Open a Terminal Window (Applications -&gt; Utilities -&gt; Terminal) and add wget as an alias for curl to the bash_profile file with the following command.  Close the Terminal Window when complete.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Add the wget alias for curl to the end of the bash_profile file</span>
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">'alias wget=&quot;curl -O&quot;'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> ~<span style="color: #000000; font-weight: bold;">/</span>.bash_profile</pre></div></div>

<h3>Apache Tomcat Web App Server</h3>
<p>Apache Tomcat is developed in an open and participatory environment and released under the <a href="http://www.apache.org/licenses">Apache License version 2</a>.  Apache Tomcat is intended to be a collaboration of the best-of-breed developers from around the world. There is an open invitation to participate in this open development project.  To learn more about getting involved, <a href="http://tomcat.apache.org/getinvolved.html">click here</a>.</p>
<p>Apache Tomcat powers numerous large-scale, mission-critical web applications across a diverse range of industries and organizations.  Some of these users and their stories are listed on the <a href="http://wiki.apache.org/tomcat/PoweredBy">PoweredBy</a> wiki page.  Learn more <a href="http://tomcat.apache.org/" target="_blank">here</a>.</p>
<p><a href="http://tomcat.apache.org/"><img class="alignnone size-large wp-image-1542" title="apache-tomcat" src="http://webtechman.com/blog/wp-content/uploads/apache-tomcat-500x65.png" alt="" width="500" height="65" /></a></p>
<h3>Mac OS X Snow Leopard</h3>
<p>Mac OS X is renowned for its simplicity, its reliability, and its ease  of use. So when it came to designing Snow Leopard, Apple engineers had a  single goal: to make a great thing even better.  Learn more <a href="http://www.apple.com/macosx/" target="_blank">here</a>.</p>
<p><a href="http://www.apple.com/macosx/"><img class="alignnone size-large wp-image-1541" title="mac-os-x" src="http://webtechman.com/blog/wp-content/uploads/mac-os-x-500x251.png" alt="" width="500" height="251" /></a></p>
<h2>7 Steps for Installing Tomcat on Mac OS X</h2>
<p>Open a Terminal Window and follow these seven steps to install and configure Tomcat on Mac OS X.  Application developers can download Tomcat and configure it with various editors, but the method described here can save time and reduce mistakes.  This method also supports remote installation.  The steps described here, with a modification to step six, can be used to remotely install Tomcat on Unix based systems.  This is helpful in &#8220;Cloud Computing&#8221; environments.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #666666; font-style: italic;"># 1. ) Navigate to your &quot;projects&quot; directory</span>
<span style="color: #666666; font-style: italic;"># The path for this guide is &quot;/projects/&quot;, but the reader's path may be different.</span>
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>projects
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #666666; font-style: italic;"># 2. ) Create a new directory named &quot;tomcats&quot; and navigate into &quot;tomcats&quot;</span>
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> tomcats
<span style="color: #7a0874; font-weight: bold;">cd</span> tomcats
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #666666; font-style: italic;"># 3. ) Download Apache Tomcat</span>
<span style="color: #666666; font-style: italic;"># Note: Visit http://tomcat.apache.org to get the URL of the needed version of Tomcat</span>
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>apache.cs.utah.edu<span style="color: #000000; font-weight: bold;">/</span>tomcat<span style="color: #000000; font-weight: bold;">/</span>tomcat-<span style="color: #000000;">7</span><span style="color: #000000; font-weight: bold;">/</span>v7.0.10<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>apache-tomcat-7.0.10.tar.gz
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #666666; font-style: italic;"># 4. ) Unpack Tomcat and delete apache-tomcat-7.0.10.tar.gz</span>
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xzvf</span> apache-tomcat-7.0.10.tar.gz
<span style="color: #c20cb9; font-weight: bold;">rm</span> apache-tomcat-7.0.10.tar.gz
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #666666; font-style: italic;"># 5. ) Rename &quot;apache-tomcat-7.0.10&quot; to &quot;tomcat&quot;</span>
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #c20cb9; font-weight: bold;">mv</span> apache-tomcat-7.0.10 tomcat
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #666666; font-style: italic;"># 6. ) Edit &quot;tomcat/bin/startup.sh&quot; to add JAVA_HOME</span>
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #c20cb9; font-weight: bold;">nano</span> tomcat<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>startup.sh
<span style="color: #666666; font-style: italic;"># Add the following line after the one that starts with EXECUATBLE:</span>
<span style="color: #666666; font-style: italic;"># export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home</span>
<span style="color: #666666; font-style: italic;"># Save changes, press Ctrl+o ; return ; Ctrl+x</span>
<span style="color: #666666; font-style: italic;"># Note: Application developers can browse &quot;/System/Library/Frameworks/JavaVM.framework/Versions&quot;</span>
<span style="color: #666666; font-style: italic;"># and substitute the appropriate version of Java</span>
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #666666; font-style: italic;"># 7. ) Start Tomcat</span>
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #c20cb9; font-weight: bold;">sh</span> tomcat<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>startup.sh
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #666666; font-style: italic;"># Open a web browser and navigate to http://localhost:8080</span>
<span style="color: #666666; font-style: italic;"># Tomcat can be shut down with sh tomcat/bin/shutdown.sh</span>
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span></pre></div></div>

<h3>Apache Tomcat App Server Successfully Installed on Mac OS X</h3>
<p>Open a web browser and navigate to http://localhost:8080  Application developers should see the main Tomcat page displayed in their web browser.</p>
<p><img class="alignnone size-large wp-image-1539" title="apache-tomcat-successfully-installed" src="http://webtechman.com/blog/wp-content/uploads/apache-tomcat-successfully-installed-500x289.png" alt="" width="500" height="289" /></p>
<h3>How to Access Tomcat Virtual Host Manager</h3>
<p>Application developers should also configure authorization for the Tomcat Virtual Host Manager.<br />
<img class="alignnone size-large wp-image-1537" title="how-to-access-Tomcat-Virtual-Host-Manager" src="http://webtechman.com/blog/wp-content/uploads/how-to-access-Tomcat-Virtual-Host-Manager-500x251.png" alt="" width="500" height="251" /></p>
<h3>How to Access Tomcat Application Manager</h3>
<p>Application developers should also configure authorization for the Tomcat Application Manager.<br />
<img class="alignnone size-large wp-image-1536" title="how-to-access-Tomcat-Web-Application-Manager" src="http://webtechman.com/blog/wp-content/uploads/how-to-access-Tomcat-Web-Application-Manager-500x296.png" alt="" width="500" height="296" /></p>
<h3>How to Configure Authorization for Tomcat Administrators</h3>
<p>Go back to the Terminal Window and edit &#8220;tomcat/conf/tomcat-users.xml&#8221; to add roles and users to &#8220;tomcat-users&#8221; that can access the Tomcat Administrator areas.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #666666; font-style: italic;"># 1. ) edit &quot;tomcat/conf/tomcat-users.xml&quot;</span>
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #c20cb9; font-weight: bold;">nano</span> tomcat<span style="color: #000000; font-weight: bold;">/</span>conf<span style="color: #000000; font-weight: bold;">/</span>tomcat-users.xml
<span style="color: #666666; font-style: italic;"># Save changes when complete, press Ctrl+o ; return ; Ctrl+x</span>
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;tomcat-users<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #808080; font-style: italic;">&lt;!-- comments and default content in this area --&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;role</span> <span style="color: #000066;">rolename</span>=<span style="color: #ff0000;">&quot;manager-gui&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;role</span> <span style="color: #000066;">rolename</span>=<span style="color: #ff0000;">&quot;admin-gui&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;user</span> <span style="color: #000066;">username</span>=<span style="color: #ff0000;">&quot;tomcat&quot;</span> <span style="color: #000066;">password</span>=<span style="color: #ff0000;">&quot;s3cret&quot;</span> <span style="color: #000066;">roles</span>=<span style="color: #ff0000;">&quot;manager-gui,admin-gui&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/tomcat-users<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p><img class="alignnone size-full wp-image-1535" title="edit-tomcat-users.xml" src="http://webtechman.com/blog/wp-content/uploads/edit-tomcat-users.xml_.png" alt="" width="496" height="361" /></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #666666; font-style: italic;"># 2. ) Restart Tomcat to apply changes in configuration</span>
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span>
<span style="color: #c20cb9; font-weight: bold;">sh</span> tomcat<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>shutdown.sh
<span style="color: #c20cb9; font-weight: bold;">sh</span> tomcat<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>startup.sh
<span style="color: #666666; font-style: italic;">#----------------------------------------------------------------------------#</span></pre></div></div>

<h3>Apache Tomcat Web Application Manager</h3>
<p>Authorization has now been configured for the Tomcat Application Manager.<br />
<img class="alignnone size-large wp-image-1534" title="tomcat-web-application-manager" src="http://webtechman.com/blog/wp-content/uploads/tomcat-web-application-manager-500x308.png" alt="" width="500" height="308" /></p>
<h3>Apache Tomcat Virtual Host Manager</h3>
<p>Authorization has now been configured for the Tomcat Virtual Host Manager<br />
<img class="alignnone size-large wp-image-1533" title="tomcat-virtual-host-manager" src="http://webtechman.com/blog/wp-content/uploads/tomcat-virtual-host-manager-500x412.png" alt="" width="500" height="412" /></p>
<h2>Tomcat Mac OS X Resources</h2>
<ul>
<li><a href="http://developer.apple.com/internet/java/tomcat1.html" target="_blank">TomcatOnMacOS Apache Tomcat Wiki</a></li>
<li><a href="http://developer.apple.com/internet/java/tomcat1.html" target="_blank">Apple Developer Site: Java and Tomcat on Mac OS X</a></li>
<li><a href="http://www.editrocket.com/articles/tomcat_mac.html" target="_blank">Installing Tomcat on Mac OS X</a></li>
<li> <a href="http://www.malisphoto.com/tips/tomcatonosx.html" target="_blank">Installing Apache Tomcat 6 on Mac OS X Snow Leopard</a></li>
<li><a href="http://orkus.wordpress.com/2010/08/31/howto-install-tomcat-7-on-debian-lenny/" target="_blank">Howto Install Tomcat 7 on Debian (Lenny)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://webtechman.com/blog/2011/03/09/how-to-install-apache-tomcat-web-app-server-in-10-minutes/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>How to Install Zend Framework</title>
		<link>http://webtechman.com/blog/2011/03/05/how-to-install-zend-framework/</link>
		<comments>http://webtechman.com/blog/2011/03/05/how-to-install-zend-framework/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 04:30:00 +0000</pubDate>
		<dc:creator>Daniel Hudson</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Platforms]]></category>
		<category><![CDATA[Zend]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://webtechman.com/blog/?p=1510</guid>
		<description><![CDATA[What are Frameworks? A Framework is a collection of reusable items or steps in a repeatable process.  A software application framework is a well-defined Application programming interface (API) that serves as abstraction layers that separate business logic from application logic.  &#8230; <a href="http://webtechman.com/blog/2011/03/05/how-to-install-zend-framework/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>What are Frameworks?</h1>
<p>A Framework is a collection of reusable items or steps in a repeatable process.  A software application framework is a well-defined Application programming interface (API) that serves as abstraction layers that separate business logic from application logic.  Application frameworks usually leverage object-oriented programming techniques to extend the current purpose to serve custom needs.  Combining server-side frameworks with client-side frameworks improves development time and reduces cost while supporting the concepts of Rapid Application Development (RAD).  A popular framework architectural pattern is Model-View-Controller (MVC).  The MVC architectural pattern increases application flexibility and reduces the complexity in architectural design by decoupling models and views.</p>
<p><a href="http://framework.zend.com/"><img class="alignnone size-full wp-image-1511" title="Zend-Framework" src="http://webtechman.com/blog/wp-content/uploads/Zend-Framework.png" alt="" width="498" height="131" /></a></p>
<h2>What is Zend Framework?</h2>
<p>The <a href="http://framework.zend.com/" target="_blank">Zend Framework</a> extends the art &amp; spirit of PHP, Zend Framework is based     on simplicity, object-oriented best practices, corporate friendly licensing,     and a rigorously tested agile codebase.  Zend Framework is focused on building     more secure, reliable, and modern Web 2.0 applications &amp; web services, and     consuming widely available APIs from leading vendors like     <a href="http://code.google.com/apis/gdata" target="_blank">Google</a>,     <a href="http://aws.amazon.com/" target="_blank">Amazon</a>,     <a href="http://developer.yahoo.com/" target="_blank">Yahoo!</a>,     <a href="http://flickr.com/services/" target="_blank">Flickr</a>,     as well as API providers and cataloguers like     <a href="http://www.strikeiron.com/" target="_blank">StrikeIron</a> and     <a href="http://www.programmableweb.com/" target="_blank">ProgrammableWeb</a>.</p>
<h2>Installing Zend Framework</h2>
<p>Connect to your server with a command line tool like <a href="http://www.chiark.greenend.org.uk/%7Esgtatham/putty/" target="_blank">PuTTY</a>, Apple Mac users can simply use a Terminal window.  Navigate to a directory that is NOT the Document Root or any directory in the web server&#8217;s &#8220;include&#8221; path.  The Zend Framework installation described here will allow the user to change the version of Zend Framework at will by using a symbolic link for the Zend installation files.  This method will allow developers to change versions &#8220;on-the-fly&#8221; without the need for restarting web servers.  Learn how to setup a web server at &#8220;<a href="http://webtechman.com/blog/2011/02/24/how-to-setup-a-virtual-web-server-in-10-minutes/" target="_blank">How to Setup a Virtual Web Server in 10 Minutes</a>&#8220;.</p>
<h3>Install Zend Framework with Wget</h3>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #adadad; font-style: italic;"># 1. ) Get file package from site.</span>
wget http://framework.zend.com/releases/ZendFramework-1.11.4/ZendFramework-1.11.4.tar.gz
<span style="color: #adadad; font-style: italic;"># 2. ) Decompress the file.</span>
tar -xzvf ZendFramework-1.11.4.tar.gz
<span style="color: #adadad; font-style: italic;"># 3. ) Delete the compressed file.</span>
rm ZendFramework-1.11.4.tar.gz
<span style="color: #adadad; font-style: italic;"># 4. ) Rename installation directory to &quot;ZendFramework&quot;</span>
mv ZendFramework-1.11.4 ZendFramework</pre></div></div>

<h3>Install Zend Framework with Subversion</h3>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #adadad; font-style: italic;"># 1. ) Get file package from site.</span>
svn checkout http://framework.zend.com/svn/framework/standard/branches/release-<span style="color: #ff0000;">1.11</span>/
<span style="color: #adadad; font-style: italic;"># 2. ) Rename installation directory to &quot;ZendFramework&quot;</span>
mv release-<span style="color: #ff0000;">1.11</span> ZendFramework</pre></div></div>

<h2>Zend Framework Web Server Integration</h2>
<p>Use the wGet or Subversion method above to get the package files, then integrate the framework into the existing web server with the following steps.</p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #adadad; font-style: italic;"># 1. ) Create a symbolic link named &quot;Zend&quot; to the &quot;ZendFramework&quot; directory.</span>
<span style="color: #adadad; font-style: italic;"># This step will allow changing versions of Zend Framework without the need for restarting the web server.</span>
ln -s ZendFramework Zend
<span style="color: #adadad; font-style: italic;"># 2. ) Add the Zend library to your PHP include path</span>
cd /{full}/{path}/{to php.ini folder}
vi php.ini
<span style="color: #adadad; font-style: italic;"># Search for the &quot;include_path&quot; directive and update it to include full path to &quot;Zend/library&quot;</span>
<span style="color: #adadad; font-style: italic;"># include_path = &quot;.:/php/includes:/{replace this with complete path to parent of Zend symbolic link}/Zend/library&quot;</span>
<span style="color: #adadad; font-style: italic;"># Save file and quit editor</span>
:wq
<span style="color: #adadad; font-style: italic;"># 3. ) Add Zend Tool to the command line by creating an alias in bash_profile</span>
vi ~/.bash_profile
<span style="color: #00007f;">alias</span> zf=/{replace this with complete path to parent of Zend symbolic link}/Zend/bin/zf.sh
<span style="color: #adadad; font-style: italic;"># Save file and quit editor</span>
:wq
<span style="color: #adadad; font-style: italic;">#Exit and completely close command window</span>
<span style="color: #adadad; font-style: italic;">#Open command window and start a new session</span>
<span style="color: #adadad; font-style: italic;"># 4. ) Display zend version by entering this at the prompt</span>
<span style="color: #adadad; font-style: italic;">#This should return Zend Framework Version: 1.11.4</span>
zf show version
<span style="color: #adadad; font-style: italic;"># 5. ) Create a Zend Project</span>
<span style="color: #adadad; font-style: italic;">#Navigate to parent directory of Document Root</span>
zf create project quickstart
<span style="color: #adadad; font-style: italic;"># 6. ) Automatically write code using Zend Tool</span>
<span style="color: #adadad; font-style: italic;"># The following commands will add basic actions to Index</span>
zf create <span style="color: #00007f;">action</span> add index
zf create <span style="color: #00007f;">action</span> edit index
zf create <span style="color: #00007f;">action</span> delete index
<span style="color: #adadad; font-style: italic;"># 7. ) Move the project’s “pubic” folder into  Document Root of Web Server as “quickstart”</span>
<span style="color: #adadad; font-style: italic;"># Note: Replace &quot;public_html&quot; with the real name of document root folder</span>
mv quickstart/public public_html/quickstart
<span style="color: #adadad; font-style: italic;">#Navigate into “public_html/quickstart”</span>
cd public_html/quickstart
<span style="color: #adadad; font-style: italic;"># 8. ) Update &quot;APPLICATION_PATH&quot; value in index.php</span>
<span style="color: #adadad; font-style: italic;"># This should point to &quot;quickstart/application&quot; in parent of document root.</span>
vi index.php
// Define path to application directory
defined(<span style="color: #7f007f;">'APPLICATION_PATH'</span>) || define(<span style="color: #7f007f;">'APPLICATION_PATH'</span>, realpath(dirname(__FILE__) . <span style="color: #7f007f;">'/../../quickstart/application'</span>));
<span style="color: #adadad; font-style: italic;"># Save file and quit editor</span>
:wq
<span style="color: #adadad; font-style: italic;">#Open a web browser and navigate to http://{replace this with host name}/quickstart</span></pre></div></div>

<h2><a href="http://webtechman.com/blog/wp-content/uploads/welcome-to-the-zend-framework.png"><img class="alignnone size-full wp-image-1522" title="welcome-to-the-zend-framework" src="http://webtechman.com/blog/wp-content/uploads/welcome-to-the-zend-framework.png" alt="" width="501" height="334" /></a></h2>
<h2>Welcome to the Zend Framework</h2>
<p>Open a web browser and navigate to &#8220;http://{replace this with real host name}/quickstart&#8221; to see the &#8220;Welcome to the Zend Framework&#8221; message.</p>
<p>Open a web browser and navigate to &#8220;http://{replace this with real host name}/quickstart/index/add&#8221; to see a simple message from the code that was automatically written from using the <a href="http://framework.zend.com/manual/en/zend.tool.project.introduction.html" target="_blank">Zend Tool</a> in the previous steps.</p>
<p>Additional tips and information is available from <a href="http://framework.zend.com/manual/en/learning.quickstart.intro.html" target="_blank">Zend&#8217;s Quick Start Guide</a>.  Software developers can also use Eclipse for application development with <a href="http://www.zend.com/en/community/pdt" target="_blank">Eclipse plug-ins supporting this framework</a> or <a href="http://www.zend.com/products/studio/" target="_blank">Zend Studio</a>.  Adobe Dreamweaver users can support Zend in their IDE as outlined in this article &#8220;<a href="http://webtechman.com/blog/2009/02/17/using-adobe-dreamweaver-to-color-code-modules-zend-templates-other-file-types/" target="_blank">Using Adobe Dreamweaver to color code modules, zend templates, &amp; other file types</a>&#8220;.</p>
<h2>Software Integration Summary</h2>
<ul>
<li><strong>Improved Security</strong> by storing sensitive information such as database user name and password in configuration files outside of document root.</li>
<li><strong>Provided Version Control</strong> by using a symbolic link to software package.  Software developers not using Subversion can change the version of the software by <a href="http://framework.zend.com/download/archives" target="_blank">downloading the required version </a>into a new directory and update the Zend symbolic link to point to the new directory.  Software developers using Subversion can manage the software with simple <a href="http://www.yolinux.com/TUTORIALS/Subversion.html" target="_blank">Subversion  Commands and Scripts</a>.</li>
<li><strong>Automatic Code Generation</strong> by configuring and using Zend Tool to automatically generate code.</li>
<li><strong>Integrated</strong> by integrating this software into an existing web server environment, developers can leverage existing IT investments.  This server-side framework can also be integrated with a client-side framework to support AJAX and Web 2.0 Technologies across multiple devices.  Here are <a href="http://webtechman.com/blog/2010/11/26/3-ajax-frameworks-that-can-support-custom-dashboards-on-apple-ipads/" target="_blank">3 AJAX Frameworks that can support Custom Dashboards on Apple iPads</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://webtechman.com/blog/2011/03/05/how-to-install-zend-framework/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web 2.0 Summit: The Future Strategy of Web Technologies</title>
		<link>http://webtechman.com/blog/2010/11/19/web-2-0-summit-the-future-strategy-of-web-technologies/</link>
		<comments>http://webtechman.com/blog/2010/11/19/web-2-0-summit-the-future-strategy-of-web-technologies/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 15:27:18 +0000</pubDate>
		<dc:creator>Daniel Hudson</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[Platforms]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[strategy]]></category>
		<category><![CDATA[Web Strategy]]></category>

		<guid isPermaLink="false">http://webtechman.com/blog/?p=1190</guid>
		<description><![CDATA[Web 2.0 Summit: Points of Control More than any time in the history of the Web, incumbents in the network economy are consolidating their power and staking new claims to key points of control.  The Web 2.0 Summit, hosted by &#8230; <a href="http://webtechman.com/blog/2010/11/19/web-2-0-summit-the-future-strategy-of-web-technologies/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>Web 2.0 Summit: Points of Control</h1>
<p>More than any time in the history of the Web, incumbents in the network economy are consolidating their power and staking new claims to key points of control.  The <a href="http://www.web2summit.com/web2010" target="_blank">Web 2.0 Summit</a>, hosted by John Battelle ( <a href="http://twitter.com/johnbattelle" target="_blank">@johnbattelle</a> ) and Tim O&#8217;Reilly ( <a href="http://twitter.com/timoreilly" target="_blank">@timoreilly </a>) was packed with brilliant thoughts from intelligent leaders in the web / business space.  New business innovators from Google, Twitter, Facebook, Baidu, and many other properties in the global web space eagerly shared their current insights and ideas about the future.  This year&#8217;s theme was about Points of Control, as you can see in this <a href="http://map.web2summit.com/" target="_blank">interactive Points of Contorl Map</a>.  You can learn more about this map <a href="http://blog.web2summit.com/2010/08/29/points-of-control-the-map/" target="_blank">here</a>.  Thanks to <a href="http://oreilly.com/" target="_blank">O&#8217;Reilly Meida</a> for another great event.</p>
<p><a href="http://map.web2summit.com/#t-81"><img class="size-full wp-image-1191 alignnone" title="Web 2.0 Summit: Points of Control" src="http://webtechman.com/blog/wp-content/uploads/Picture-172.png" alt="Web 2.0 Summit: Points of Control" width="559" height="324" /></a></p>
<h2>Five Key Strategies From The Web 2.0 Summit</h2>
<ol>
<li><strong>Go</strong> Social/Mobile or Become Irrelevant</li>
<li><strong>Build</strong> A Diverse Empire, Measure, Refine</li>
<li><strong>Learn</strong> Everything You Can About Social Behavior</li>
<li><strong>Share</strong> Value of Collective Intelligence</li>
<li><strong>Focus</strong> on User Experience</li>
</ol>
<h2>Fav Five Web 2.0 Summit Videos</h2>
<p>Web 2.0 Summit (formerly named Web 2.0 Conference) brings the intelligence, innovation, and leadership of the Internet industry together in one place at one time. Through incisive plenary sessions, frank onstage conversations, rapid-fire &#8220;high order bits,&#8221; and Launch Pad, visionaries and executives from across the Internet economy present their unique perspective on the Web&#8217;s future. Web 2.0 Summit is brought to you in partnership with O&#8217;Reilly Media, Inc. and TechWeb and moderated by John Battelle, Program Chair, and O&#8217;Reilly CEO and founder, Tim O&#8217;Reilly in association with Federated Media.  You can see all the Web 2.0 Summit videos <a href="http://www.youtube.com/view_play_list?p=2737D508F656CCF8" target="_blank">here</a>.  I have included five of my favorite videos below.</p>
<h3>Web 2.0 Summit 2010: &#8220;A Conversation with Google&#8217;s Eric Schmidt&#8221;</h3>
<p>Watch the conversation with Google&#8217;s Erick Schmidt video <a href="http://www.youtube.com/watch?v=AKOWK2dR4Dg" target="_blank">here</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/AKOWK2dR4Dg?fs=1&amp;hl=en_US&amp;color1=0xe1600f&amp;color2=0xfebd01" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube-nocookie.com/v/AKOWK2dR4Dg?fs=1&amp;hl=en_US&amp;color1=0xe1600f&amp;color2=0xfebd01" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>Web 2.0 Summit 2010: &#8220;A Conversation with Facebook&#8217;s Mark Zuckerberg&#8221;</h3>
<p>Watch this conversation with Facebook&#8217;s Mark Zuckerberg video <a href="http://www.youtube.com/watch?v=Czw-dtTP6oU" target="_blank">here</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/Czw-dtTP6oU?fs=1&amp;hl=en_US&amp;color1=0xe1600f&amp;color2=0xfebd01" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube-nocookie.com/v/Czw-dtTP6oU?fs=1&amp;hl=en_US&amp;color1=0xe1600f&amp;color2=0xfebd01" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>Web 2.0 Summit 2010: &#8220;A Conversation with Twitter&#8217;s Evan Williams&#8221;</h3>
<p>Watch this conversation with Twitter&#8217;s Evan Williams video <a href="http://www.youtube.com/watch?v=c4xZtTYhCDA" target="_blank">here</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/c4xZtTYhCDA?fs=1&amp;hl=en_US&amp;color1=0xe1600f&amp;color2=0xfebd01" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube-nocookie.com/v/c4xZtTYhCDA?fs=1&amp;hl=en_US&amp;color1=0xe1600f&amp;color2=0xfebd01" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>Web 2.0 Summit 2010: Mary Meeker on &#8220;Internet Trends&#8221;</h3>
<p>Watch this &#8220;Internet Trends&#8221; presentation by Mary Meeker video <a href="http://www.youtube.com/watch?v=7yL9yrttESI" target="_blank">here</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/7yL9yrttESI?fs=1&amp;hl=en_US&amp;color1=0xe1600f&amp;color2=0xfebd01" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube-nocookie.com/v/7yL9yrttESI?fs=1&amp;hl=en_US&amp;color1=0xe1600f&amp;color2=0xfebd01" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>Web 2.0 Summit 2010: Zynga&#8217;s Mark Pincus on &#8220;Playing for High Stakes in the New App Economy&#8221;</h3>
<p>Watch this Social Gaming presentation by Zynga&#8217;s Mark Pincus <a href="http://www.youtube.com/watch?v=81F1qSOq3cs" target="_blank">here</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/81F1qSOq3cs?fs=1&amp;hl=en_US&amp;color1=0xe1600f&amp;color2=0xfebd01" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube-nocookie.com/v/81F1qSOq3cs?fs=1&amp;hl=en_US&amp;color1=0xe1600f&amp;color2=0xfebd01" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>Fav Five Places</h2>
<ol>
<li><a href="http://searchengineland.com/live-blogging-baidu-ceo-robin-li-web-20-summit-56061" target="_blank">Live Blogging Baidu CEO Robin Li At Web 2.0 Summit</a></li>
<li><a href="http://techcrunch.com/2010/11/19/the-techcrunch-guide-to-the-web-2-0-summit/" target="_blank">The TechCrunch Guide to the Web 2.0 Summit</a></li>
<li><a href="http://money.cnn.com/2010/11/15/technology/google_schmidt_web2/index.htm?source=cnn_bin&amp;hpt=Sbin" target="_blank">Google CEO: Android update &#8220;could replace credit cards&#8221;</a></li>
<li><a href="http://www.conferencebites.com/2010/11/web-20-summit-november-15-17-san-francsico-part-4.html" target="_blank">Web 2.0 Summit November 15-17 San Francsico, Part 6&#8211;Mark Zuckerberg Keynote Interview</a></li>
<li><a href="http://www.infoworld.com/t/internet/web-20-summit-focuses-mapping-net-economys-points-control-074" target="_blank">Web 2.0 Summit focuses on mapping Net economy&#8217;s &#8216;points of control&#8217;</a></li>
</ol>
<h3>Web 2.0 Expo: The Future of the Web, A Platform Strategy</h3>
<p>You can learn how to use persuasive design to encourage positive user behavior and more from these Web 2.0 Expo videos <a href="http://web2expo.blip.tv/posts?view=archive&amp;nsfw=dc" target="_blank">here</a>.</p>
<p><a href="http://web2expo.blip.tv/posts?view=archive&amp;nsfw=dc"><img class="alignnone size-full wp-image-1199" title="Picture 18" src="http://webtechman.com/blog/wp-content/uploads/Picture-183.png" alt="Picture 18" width="560" height="344" /></a></p>
<h2>Fav Five Faces</h2>
<p><strong>Who is on your &#8220;Fantasy Innovation Team&#8221; this week?</strong></p>
<p>Here are amazing people that have connected me to new friends and new ideas this week.  You might be familiar with &#8220;Fantasy Football Teams&#8221; , well this is my &#8220;<em>Fantasy Innovation Team</em>&#8221; this week.  I recommend following these smart, creative people on Twitter.</p>
<table border="0">
<tbody>
<tr>
<td style="align=left; vertical-align: top; padding:6px;"><a href="http://twitter.com/timoreilly"><img class="alignnone size-full wp-image-1200" title="timoreilly-twitter" src="http://webtechman.com/blog/wp-content/uploads/timoreilly-twitter.jpg" alt="timoreilly-twitter" width="73" height="73" /></a></td>
<td style="align=left; vertical-align: top; padding:6px;"><span>Founder and CEO, O&#8217;Reilly Media. Watching the alpha geeks, sharing their stories, helping the future unfold. </span><a href="http://twitter.com/timoreilly" target="_blank">http://twitter.com/timoreilly</a></td>
</tr>
<tr>
<td style="align=left; vertical-align: top; padding:6px;"><a href="http://twitter.com/johnbattelle"><img class="alignnone size-full wp-image-1201" title="johnbattelle-twitter" src="http://webtechman.com/blog/wp-content/uploads/johnbattelle-twitter.jpg" alt="johnbattelle-twitter" width="73" height="73" /></a></td>
<td style="align=left; vertical-align: top; padding:6px;"><span>Media, Technology, Culture, Business </span><a href="http://twitter.com/johnbattelle" target="_blank">http://twitter.com/johnbattelle</a></td>
</tr>
<tr>
<td style="align=left; vertical-align: top; padding:6px;"><a href="http://twitter.com/ev"><img class="alignnone size-full wp-image-1202" title="ev-twitter" src="http://webtechman.com/blog/wp-content/uploads/ev-twitter.jpg" alt="ev-twitter" width="73" height="73" /></a></td>
<td style="align=left; vertical-align: top; padding:6px;"><span>Farm boy from Nebraska. Husband and father. Co-founder of Twitter. </span><a href="http://twitter.com/ev" target="_blank">http://twitter.com/ev</a></td>
</tr>
<tr>
<td style="align=left; vertical-align: top; padding:6px;"><a href="http://twitter.com/ericschmidt"><img class="alignnone size-full wp-image-1203" title="ericschmidt-twitter" src="http://webtechman.com/blog/wp-content/uploads/ericschmidt-twitter.jpg" alt="ericschmidt-twitter" width="73" height="73" /></a></td>
<td style="align=left; vertical-align: top; padding:6px;"><span>CEO Google </span><a href="http://twitter.com/ericschmidt" target="_blank">http://twitter.com/ericschmidt</a></td>
</tr>
<tr>
<td style="align=left; vertical-align: top; padding:6px;"><a href="http://twitter.com/timberners_lee"><img class="alignnone size-full wp-image-1204" title="timberners_lee-twitter" src="http://webtechman.com/blog/wp-content/uploads/timberners_lee-twitter.jpg" alt="timberners_lee-twitter" width="73" height="73" /></a></td>
<td style="align=left; vertical-align: top; padding:6px;"><span>Director of the World Wide Web Consortium (W3C) w3.org, the place to agree on web standards. Founded new webfoundation.org &#8211; let the web serve humanity </span><a href="http://twitter.com/timberners_lee" target="_blank">http://twitter.com/timberners_lee</a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://webtechman.com/blog/2010/11/19/web-2-0-summit-the-future-strategy-of-web-technologies/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Facebook is not 500 million</title>
		<link>http://webtechman.com/blog/2010/11/12/facebook-is-not-500-million/</link>
		<comments>http://webtechman.com/blog/2010/11/12/facebook-is-not-500-million/#comments</comments>
		<pubDate>Sat, 13 Nov 2010 04:14:57 +0000</pubDate>
		<dc:creator>Daniel Hudson</dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://webtechman.com/blog/?p=1176</guid>
		<description><![CDATA[Facebook is not 500 Million People A popular quote from the Enterpirse 2.0 Conference in Santa Clara was: &#8220;Facebook is not 500 Million People, its 500 Million Networks&#8220; This is a very important point to understand.  A network of netowrks &#8230; <a href="http://webtechman.com/blog/2010/11/12/facebook-is-not-500-million/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>Facebook is not 500 Million People</h1>
<p>A popular quote from the <a href="http://www.e2conf.com/santaclara/" target="_blank">Enterpirse 2.0 Conference in Santa Clara</a> was:</p>
<p><em>&#8220;Facebook is not 500 Million People, <strong>its 500 Million Networks</strong>&#8220;</em></p>
<p>This is a very important point to understand.  A network of netowrks helps us discover the strength of weak ties, discussed in this white paper [pdf]  <a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.128.7760&amp;rep=rep1&amp;type=pdf" target="_blank">THE STRENGTH OF WEAK TIES: A NETWORK THEORY REVISITED Mark Granovetter</a>.</p>
<p>Amy Shuen, author of &#8220;<a href="http://webtechman.com/blog/2008/12/06/web-20-a-strategy-guide-by-amy-shuen/" target="_blank">WEB 2.0 A STRATEGY GUIDE</a>&#8221; does a great job explaining the value of &#8220;Network Effects&#8221; in this <a href="http://www.youtube.com/watch?v=Uj-UKcy1T7o" target="_blank">video</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Uj-UKcy1T7o?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/Uj-UKcy1T7o?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>You can see more of Amy&#8217;s videos and my review of her book at &#8220;<a href="../2008/12/06/web-20-a-strategy-guide-by-amy-shuen/" target="_blank">WEB 2.0 A STRATEGY GUIDE</a>&#8220;.</p>
<p>You can learn more about Web 2.0 and Business Strategy at the <a href="http://www.web2summit.com/web2010" target="_blank">Web 2.0 Summit.</a></p>
<p><a href="http://map.web2summit.com/"><img class="size-full wp-image-1177 alignnone" title="Picture 22" src="http://webtechman.com/blog/wp-content/uploads/Picture-223.png" alt="Picture 22" width="499" height="99" /></a></p>
<h2>Happy Fav Five Friday!</h2>
<h3>Fav Five Places</h3>
<ul>
<li><a href="http://mashable.com/2010/10/25/new-facebook-marketing/" target="_blank">5 New Ways to Market Your Brand on Facebook</a></li>
<li><a href="http://www.watblog.com/2010/08/16/does-your-business-lack-the-distributed-network-effect/" target="_blank">Does Your Business Lack The “Distributed Network” Effect?</a></li>
<li><a href="http://www.cmswire.com/cms/enterprise-20/tying-the-outside-to-the-inside-social-crm-e20-the-social-business-009117.php" target="_blank">Tying the Outside to the Inside: Social CRM + E2.0, the Social Business</a></li>
<li><a href="http://www.pcworld.com/article/210468/social_networks_to_supplant_email_in_business.html" target="_blank">Social Networks to Supplant Email in Business?</a></li>
<li><a href="http://www.pcworld.com/businesscenter/article/166269/social_networks_the_future_of_computing.html" target="_blank">Social Networks: The Future of Computing?</a></li>
</ul>
<h3>Fav Five Faces</h3>
<p><strong>Who is on your &#8220;Fantasy Innovation Team&#8221; this week?</strong></p>
<p>Here are amazing people that have connected me to new friends and new ideas this week.  You might be familiar with &#8220;Fantasy Football Teams&#8221; , well this is my &#8220;<em>Fantasy Innovation Team</em>&#8221; this week.  I recommend following these smart, creative people on Twitter.</p>
<table border="0">
<tbody>
<tr>
<td style="align=left; vertical-align: top; padding:6px;"><a href="http://twitter.com/frogpond"><img class="alignleft size-full wp-image-1181" title="frogpond-twitter" src="http://webtechman.com/blog/wp-content/uploads/frogpond-twitter.jpg" alt="frogpond-twitter" width="73" height="73" /></a></td>
<td style="align=left; vertical-align: top; padding:6px;"><span>the way to Enterprise 2.0 seen from the eyes of a collaboration consultant, (geek) and you name it </span><a href="http://twitter.com/frogpond" target="_blank">http://twitter.com/frogpond</a></td>
</tr>
<tr>
<td style="align=left; vertical-align: top; padding:6px;"><a href="http://twitter.com/AndrewPWilson"><img class="alignleft size-full wp-image-1182" title="AndrewPWilson-twitter" src="http://webtechman.com/blog/wp-content/uploads/AndrewPWilson-twitter.jpg" alt="AndrewPWilson-twitter" width="73" height="73" /></a></td>
<td style="align=left; vertical-align: top; padding:6px;"><span>Do. Learn. Improve. Repeat.  Note: These are my views and my voice alone &#8211; no broader implications implied </span><a href="http://twitter.com/AndrewPWilson" target="_blank">http://twitter.com/AndrewPWilson</a></td>
</tr>
<tr>
<td style="align=left; vertical-align: top; padding:6px;"><a href="http://twitter.com/rawn"><img class="alignleft size-full wp-image-1183" title="rawn-twitter" src="http://webtechman.com/blog/wp-content/uploads/rawn-twitter.jpg" alt="rawn-twitter" width="73" height="73" /></a></td>
<td style="align=left; vertical-align: top; padding:6px;"><span>Understand social software adoption, metrics and value. Author Social Networking for Business http://bit.ly/2eOmwc. My thoughts not those of IBM. </span><a href="http://twitter.com/rawn" target="_blank">http://twitter.com/rawn</a></td>
</tr>
<tr>
<td style="align=left; vertical-align: top; padding:6px;"><a href="http://twitter.com/jennylovett"><img class="alignleft size-full wp-image-1184" title="jennylovett-twitter" src="http://webtechman.com/blog/wp-content/uploads/jennylovett-twitter.jpg" alt="jennylovett-twitter" width="73" height="73" /></a></td>
<td style="align=left; vertical-align: top; padding:6px;"><span>Public Relations, Communications, Information Operations, U.S. Air Force, Writer &#8211; Love politics, news, music, recycling, Marble Slab &amp; Panera Bread </span><a href="http://twitter.com/jennylovett" target="_blank">http://twitter.com/jennylovett</a></td>
</tr>
<tr>
<td style="align=left; vertical-align: top; padding:6px;"><a href="http://twitter.com/Hal_Good"><img class="alignleft size-full wp-image-1185" title="Hal_Good-twitter" src="http://webtechman.com/blog/wp-content/uploads/Hal_Good-twitter.jpg" alt="Hal_Good-twitter" width="73" height="73" /></a></td>
<td style="align=left; vertical-align: top; padding:6px;"><span>Government procurement director, acquisition, Gov2.0, leadership, construction, contracting, sustainability, green, supplychain, innovation </span><a href="http://twitter.com/Hal_Good" target="_blank">http://twitter.com/Hal_Good</a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://webtechman.com/blog/2010/11/12/facebook-is-not-500-million/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 AJAX Libraries/Frameworks You Should Know for Web 2.0</title>
		<link>http://webtechman.com/blog/2009/11/27/5-ajax-librariesframeworks-you-should-know-for-web-2-0/</link>
		<comments>http://webtechman.com/blog/2009/11/27/5-ajax-librariesframeworks-you-should-know-for-web-2-0/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 15:51:36 +0000</pubDate>
		<dc:creator>Daniel Hudson</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Mashups]]></category>

		<guid isPermaLink="false">http://webtechman.com/blog/?p=689</guid>
		<description><![CDATA[The use of AJAX libraries and frameworks serves as an abstraction layer supporting rapid application development by reducing the need to know of the detailed behaviors in an exhastive list of devices across a multitude of platforms. <a href="http://webtechman.com/blog/2009/11/27/5-ajax-librariesframeworks-you-should-know-for-web-2-0/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>AJAX Libraries/Frameworks for Awesome Web 2.0</h1>
<h3>Happy Fav Five Friday!</h3>
<h3>What is AJAX?</h3>
<p>AJAX is shorthand for (<a title="Asynchronous I/O" href="http://en.wikipedia.org/wiki/Asynchronous_I/O">Asynchronous</a> <a title="JavaScript" href="http://en.wikipedia.org/wiki/JavaScript">JavaScript</a> + <a title="XML" href="http://en.wikipedia.org/wiki/XML">XML</a>).  This is a blend of technologies used to improve the user experience and can reduce web server load while increasing your network speed.  This is accomplished by reducing client trips to the server and only requesting the required information instead of complete page loads.</p>
<h2>Why use AJAX Libraries/Frameworks?</h2>
<p>Developing Web 2.0 applications can be difficult because content can be received on multiple devices in many environments.  These devices include web browsers, their versions, and the platform in which they are installed.  We are a mobile culture, so we also need to understand display and behavior on mobile devices.  The use of AJAX libraries and frameworks serves as an abstraction layer supporting rapid application development by reducing the need to know of the detailed behaviors in an exhastive list of devices across a multitude of platforms.</p>
<h2>5 Great Web 2.0 AJAX Libraries/Frameworks</h2>
<h3>The Yahoo User Interface Library</h3>
<p><span>When I think about &#8220;Enterprise Level&#8221; AJAX, the YUI library is the first thing on my mind.  Yahoo, the grandfather of social media and enterprise level code has a proven track record that spans several years.  The Yahoo User Interface Library also has an impressive set of documentation.</p>
<p>The YUI Library is a set of utilities and controls, written with JavaScript and CSS, for building richly interactive web applications using techniques such as DOM scripting, DHTML and AJAX. YUI is available under a <a href="http://developer.yahoo.com/yui/license.html">BSD license</a> and is free for all uses.</p>
<p>YUI is <strong>proven</strong>, <strong>scalable</strong>, <strong>fast</strong>, and <strong>robust</strong>. Built by frontend engineers at Yahoo! and contributors from around the world, it&#8217;s an industrial-strength JavaScript library for professionals who love JavaScript.</p>
<p></span></p>
<div id="attachment_690" class="wp-caption alignnone" style="width: 561px"><a href="http://developer.yahoo.com/yui/"><img class="size-full wp-image-690" title="YUI Library" src="http://webtechman.com/blog/wp-content/uploads/Picture-19.png" alt="YUI Library" width="551" height="190" /></a><p class="wp-caption-text">YUI Library</p></div>
<p><a href="http://developer.yahoo.com/yui/" target="_blank">http://developer.yahoo.com/yui/</a></p>
<h2></h2>
<h3>The jQuery JavaScript Library</h3>
<p>jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.</p>
<div id="attachment_692" class="wp-caption alignnone" style="width: 560px"><a href="http://jquery.com/"><img class="size-full wp-image-692" title="The jQuery JavaScript Library" src="http://webtechman.com/blog/wp-content/uploads/Picture-20.png" alt="The jQuery JavaScript Library" width="550" height="242" /></a><p class="wp-caption-text">The jQuery JavaScript Library</p></div>
<p><a href="http://jquery.com/" target="_blank">http://jquery.com/</a></p>
<h3>Dojo the Open Source JavaScript DHTML Toolkit</h3>
<p>Dojo is an Open Source DHTML toolkit written in JavaScript. It builds on several contributed code bases (nWidgets, Burstlib, f(m)), which is why we refer to it sometimes as a &#8220;unified&#8221; toolkit. Dojo aims to solve some long-standing historical problems with DHTML which prevented mass adoption of dynamic web application development.</p>
<div id="attachment_693" class="wp-caption alignnone" style="width: 560px"><a href="http://dojotoolkit.org"><img class="size-full wp-image-693" title="Dojo the Open Source JavaScript DHTML Toolkit" src="http://webtechman.com/blog/wp-content/uploads/Picture-21.png" alt="Dojo the Open Source JavaScript DHTML Toolkit" width="550" height="173" /></a><p class="wp-caption-text">Dojo the Open Source JavaScript DHTML Toolkit</p></div>
<p><a href="http://dojotoolkit.org" target="_blank">http://dojotoolkit.org</a></p>
<h3>Prototype JavaScript Framework</h3>
<p>Prototype features a unique, easy-to-use toolkit for class-driven development and the nicest Ajax library around, Prototype is quickly becoming the codebase of choice for web application developers everywhere.</p>
<div id="attachment_694" class="wp-caption alignnone" style="width: 561px"><a href="http://www.prototypejs.org/"><img class="size-full wp-image-694" title="Prototype JavaScript Framework" src="http://webtechman.com/blog/wp-content/uploads/Picture-22.png" alt="Prototype JavaScript Framework" width="551" height="114" /></a><p class="wp-caption-text">Prototype JavaScript Framework</p></div>
<p><a href="http://www.prototypejs.org/" target="_blank">http://www.prototypejs.org/</a></p>
<h3>Script.aculo.us Web 2.0 JavaScript</h3>
<p><a href="http://script.aculo.us/">script.aculo.us</a> is a set of JavaScript libraries to enhance the user interface of web sites. It provides an visual effects engine, a drag and drop library (including sortable lists), a couple of controls (Ajax-based autocompletion, in-place editing, sliders) and more. Be sure to <a href="http://wiki.github.com/madrobby/scriptaculous/demos">have a look at the demos</a>!</p>
<div id="attachment_695" class="wp-caption alignnone" style="width: 560px"><a href="http://script.aculo.us/"><img class="size-full wp-image-695" title="Script.aculo.us Web 2.0 JavaScript" src="http://webtechman.com/blog/wp-content/uploads/Picture-23.png" alt="Script.aculo.us Web 2.0 JavaScript" width="550" height="322" /></a><p class="wp-caption-text">Script.aculo.us Web 2.0 JavaScript</p></div>
<p><a href="http://script.aculo.us/" target="_blank">http://script.aculo.us/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webtechman.com/blog/2009/11/27/5-ajax-librariesframeworks-you-should-know-for-web-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Web Video Ever: HTML 5, Mobile Web, Social Networks, &amp; more from the Masters!</title>
		<link>http://webtechman.com/blog/2009/10/24/best-web-video-ever-html-5-mobile-web-social-networks-more-from-the-masters/</link>
		<comments>http://webtechman.com/blog/2009/10/24/best-web-video-ever-html-5-mobile-web-social-networks-more-from-the-masters/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 03:56:03 +0000</pubDate>
		<dc:creator>Daniel Hudson</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Change]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[strategy]]></category>
		<category><![CDATA[Web Strategy]]></category>

		<guid isPermaLink="false">http://webtechman.com/blog/?p=592</guid>
		<description><![CDATA[Web 2.0 Summit 09: Sir Tim Berners-Lee and Tim O&#8217;Reilly This video is amazing! The Web&#8217;s Founding Fathers @timberners_lee &#38; @timOReilly cover so much on Web 2.0, semantic web, FOAF, micro formats, social networks, HTML 5, mobile web,.. You really &#8230; <a href="http://webtechman.com/blog/2009/10/24/best-web-video-ever-html-5-mobile-web-social-networks-more-from-the-masters/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Web 2.0 Summit 09: Sir Tim Berners-Lee and Tim O&#8217;Reilly</h2>
<p>This video is amazing! The Web&#8217;s Founding Fathers <a href="http://twitter.com/timberners_lee" target="_blank">@timberners_lee</a> &amp; <a href="http://twitter.com/timoreilly" target="_blank">@timOReilly</a> cover so much on Web 2.0, semantic web, FOAF, micro formats, social networks, HTML 5, mobile web,..</p>
<p>You really need﻿ to watch this a few times and take notes. This video is 33 minutes of pure genius!</p>
<h2>If you only watch one video about the web this year, this is it!</h2>
<p><object width="560" height="340" data="http://www.youtube-nocookie.com/v/KY5skobffk0&amp;hl=en&amp;fs=1&amp;color1=0xe1600f&amp;color2=0xfebd01" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/KY5skobffk0&amp;hl=en&amp;fs=1&amp;color1=0xe1600f&amp;color2=0xfebd01" /><param name="allowfullscreen" value="true" /></object></p>
<h2>What is your favorite part of this video?</h2>
<h2><a href="http://twitter.com/home?status=RT+%40webtechman+Best+Web+Video+Ever%3A+HTML+5%2C+Mobile+Web%2C+Social+Networks%2C+%26+more+from+the+Masters!+http%3A%2F%2Fbit.ly%2F2hIHL5+%23w2s" target="_blank">RETWEET THIS</a></h2>
]]></content:encoded>
			<wfw:commentRss>http://webtechman.com/blog/2009/10/24/best-web-video-ever-html-5-mobile-web-social-networks-more-from-the-masters/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Web 2.0 Summit 2009 on Mobile, Google, Twitter, Bing, Facebook, &amp; More &#8211; Web Squared</title>
		<link>http://webtechman.com/blog/2009/10/23/web-20-summit-2009-on-mobile-google-twitter-bing-facebook-more-web-squared/</link>
		<comments>http://webtechman.com/blog/2009/10/23/web-20-summit-2009-on-mobile-google-twitter-bing-facebook-more-web-squared/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 16:55:56 +0000</pubDate>
		<dc:creator>Daniel Hudson</dc:creator>
				<category><![CDATA[Fav Five Friday]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Change]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[strategy]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Web Strategy]]></category>

		<guid isPermaLink="false">http://webtechman.com/blog/?p=575</guid>
		<description><![CDATA[The Amazing Web 2.0 Summit 2009 &#8211; O&#8217;Reilly Media #w2s Happy Fav Five Friday! The Web 2.0 Summit conversation is no longer just about the Web. Now is the time to put the power of the Web to work—its technologies, &#8230; <a href="http://webtechman.com/blog/2009/10/23/web-20-summit-2009-on-mobile-google-twitter-bing-facebook-more-web-squared/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>The Amazing Web 2.0 Summit 2009 &#8211; O&#8217;Reilly Media #w2s</h1>
<h3>Happy Fav Five Friday!</h3>
<p><a href="http://www.web2summit.com/web2009"><img class="alignnone size-full wp-image-577" title="Web 2.0 Summit 2009" src="http://webtechman.com/blog/wp-content/uploads/picture-621.png" alt="Web 2.0 Summit 2009" width="600" height="179" /></a></p>
<p>The Web 2.0 Summit conversation is no longer just about the Web. Now is the time to put the power of the Web to work—its technologies, its business models, and perhaps most importantly, its philosophies of openness, collective intelligence, and transparency. <a href="http://www.web2summit.com/web2009" target="_blank">http://www.web2summit.com/web2009</a></p>
<h2>The Web 2.0 Event of the Year &#8211; Web 2.0 Summit &#8211; Web Squared #w2s</h2>
<p>There were so many great events in the past few days. The big events that caught my eye were: <a href="http://www.web2summit.com/web2009" target="_blank">Web 2.0 Summit 2009 #w2s</a> , <a href="http://www.blogworldexpo.com/" target="_blank">Blog World &#8211; New Media Expo 2009 #bwe09</a>, and <a href="http://twtrcon.com/" target="_blank">TWTRCON DC 09 #twtrcon</a>. The Summit was outstanding and easy to follow online.  John Battelle, Tim O&#8217;Reilly, and all the people supporting this event did an outstanding job!  There was an avalanche of news released about all levels of technology, including Twitter, Google, Bing, Facebook, and so much more.  This event was like an intellectual amusement park with thrill after thrill.  Thanks to <a href="http://twitter.com/JohnBattelle" target="_blank">@JohnBattelle</a>, <a href="http://twitter.com/timoreilly" target="_blank">@timoreilly</a>, and the crew at <a href="http://twitter.com/web2summit" target="_blank">@web2summit</a> for another thrilling event. Thanks to all the guests, attendees, and fans for sharing <a href="https://twitter.com/#search?q=%23w2s" target="_blank">#w2s</a></p>
<h2>5 Web 2.0 Summit Resources to Help Plan Your 2010 Strategy</h2>
<h3>Economy + Internet Trends Presentation by Mary Meeker</h3>
<p>You can get Mary Meeker&#8217;s Economy + Internet Trends Presentation <a href="http://www.morganstanley.com/institutional/techresearch/internet_ad_trends102009.html" target="_blank">here</a>.</p>
<p><img class="alignnone size-large wp-image-600" title="Internet Trends Presentation - Web 2.0 Summit 2009" src="http://webtechman.com/blog/wp-content/uploads/picture-611-1024x765.png" alt="Internet Trends Presentation - Web 2.0 Summit 2009" width="600" height="448" /></p>
<h2>Web 2.0 Summit Videos on blip.tv</h2>
<p><object width="600" height="385" data="http://blip.tv/play/AwGFmUw?showplaylist=true" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://blip.tv/play/AwGFmUw?showplaylist=true" /><param name="allowfullscreen" value="true" /><param name="showplaylist" value="true" /></object></p>
<h3>Web 2.0 Summit 2009 Videos on YouTube</h3>
<p>Web 2.0 Summit (formerly named Web 2.0 Conference) brings the intelligence, innovation, and leadership of the Internet industry together in one place at one time. Through incisive plenary sessions, frank onstage conversations, rapid-fire &#8220;high order bits,&#8221; and Launch Pad, visionaries and executives from Internet businesses present their unique perspective on the Web&#8217;s future-in-flux. Web 2.0 Summit is brought to you in partnership with O&#8217;Reilly Media, Inc. and TechWeb and moderated by John Battelle, Program Chair, and O&#8217;Reilly CEO and founder, Tim O&#8217;Reilly.</p>
<p><object width="600" height="482" data="http://www.youtube.com/p/F664D8C553A57C93&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/p/F664D8C553A57C93&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<h3>Web 2.0 Summit 2009 Photos on Flickr by <a target="_blank" href="http://www.flickr.com/photos/oreillyconf/">O&#8217;Reilly Conferences</a></h3>
<p><div><iframe align="center" src="http://www.flickr.com/slideShow/index.gne?user_id=23226290@N02&#038;set_id=72157622503953167" frameBorder="0" "width=600" height="600" scrolling="no"></iframe>
</div>
</p>
<h3>
Web 2.0 Summit 09: Aneesh Chopra and Tim O&#8217;Reilly</h3>
<p>Aneesh Chopra (Federal Office of Science and Technology Policy), Tim O&#8217;Reilly (O&#8217;Reilly Media, Inc.), &#8220;A Conversation with Aneesh Chopra&#8221;</p>
<p><object width="600" height="385" data="http://blip.tv/play/gfIUgam_YAI" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://blip.tv/play/gfIUgam_YAI" type="application/x-shockwave-flash"><param name="allowFull" /><param name="allowfullscreen" value="true" /><param name="showplaylist" value="true" /></object>
</p>
<h2>Welcome to the &#8220;New World&#8221;!</h2>
<p><strong>If you think something is important? Share it!</strong></p>
<h3>Thoughts?</h3>
]]></content:encoded>
			<wfw:commentRss>http://webtechman.com/blog/2009/10/23/web-20-summit-2009-on-mobile-google-twitter-bing-facebook-more-web-squared/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WEB 2.0 A STRATEGY GUIDE By Amy Shuen</title>
		<link>http://webtechman.com/blog/2008/12/06/web-20-a-strategy-guide-by-amy-shuen/</link>
		<comments>http://webtechman.com/blog/2008/12/06/web-20-a-strategy-guide-by-amy-shuen/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 04:45:41 +0000</pubDate>
		<dc:creator>Daniel Hudson</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Enterprise 2.0]]></category>
		<category><![CDATA[Strategy 2.0]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://webtechman.com/blog/?p=48</guid>
		<description><![CDATA[Amy Shuen has a firm grip on the long tail. Get your face in this book and don’t blink while she takes you on a fascinating journey to the tipping point fueled by the wisdom of crowds. My space on &#8230; <a href="http://webtechman.com/blog/2008/12/06/web-20-a-strategy-guide-by-amy-shuen/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_49" class="wp-caption alignleft" style="width: 144px"><a title="Take a look inside at Amazon.com" href="http://www.amazon.com/gp/product/0596529961?ie=UTF8&amp;tag=highlevelmedi-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0596529961" target="_blank"><img class="size-full wp-image-49" title="web-20-a-strategy-guide-look-inside" src="http://webtechman.com/blog/wp-content/uploads/web-20-a-strategy-guide-look-inside.jpg" alt="Web 2.0: A Strategy Guide" width="134" height="192" /></a><p class="wp-caption-text">Web 2.0: A Strategy Guide</p></div>
<p class="MsoNormal">Amy Shuen has a firm grip on the long tail.<span> </span><a title="Amazon" href="http://www.amazon.com/gp/product/0596529961?ie=UTF8&amp;tag=highlevelmedi-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0596529961" target="_blank">Get your face in this book</a> and don’t blink while she takes you on a fascinating journey to the tipping point fueled by the wisdom of crowds.<span> </span>My space on the shelf for this book is empty because her book is always in my hand.<span> </span>I bought several copies of her book as gifts for friends.</p>
<p class="MsoNormal">Amy Shuen is to the world of Web 2.0 as Ludwig van Beethoven’s influence is to the world of music.<span> </span>Her impact on web strategy is comparable to da Vinci’s impact on art.<span> </span>She is ahead of her time.<span> </span><a title="Amazon" href="http://www.amazon.com/gp/product/0596529961?ie=UTF8&amp;tag=highlevelmedi-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0596529961" target="_blank">Get her book</a> before the ground swell from tribes of new influencers leaves you in a wikinomic downturn.</p>
<p class="MsoNormal">I have been in the web business since the early 90s.<span> </span>I am a professional technology consultant and thought leader.<span> </span>I have a huge collection of books, papers, &amp; resources related to my industry and <a title="Amazon" href="http://www.amazon.com/gp/product/0596529961?ie=UTF8&amp;tag=highlevelmedi-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0596529961" target="_blank">Amy’s book</a> is my most prized possession. I recommend getting extra copies for you and your colleagues.</p>
<p class="MsoNormal">One snippet from this book clearly explains how a small strategy adjustment saved a tremendous amount of money for a well known company.<span> </span>Depending on your reach, this tiny snippet can help save you $1,000’s &#8211; $1,000,000’s.<span> </span>I would spend far more than the price of this whole book for this one snippet.</p>
<p class="MsoNormal">One last flckr of thought.<span> </span>What if your competition already has this book?</p>
<p class="MsoNormal"><a title="Amazon" href="http://www.amazon.com/gp/product/0596529961?ie=UTF8&amp;tag=highlevelmedi-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0596529961" target="_blank">Get yours now.</a></p>
<p class="MsoNormal">Please feel free to <a title="web strategy on youtube" href="http://www.youtube.com/view_play_list?p=2AF175D25E2CD409" target="_blank">check these youtube videos</a> of Amy presenting some of the information in this amazing book.</p>
<p class="MsoNormal">
<h2><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;">WEB 2.0 A STRATEGY GUIDE<br />
Amy Shuen on How Users Create Value</span></h2>
<div class="video"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/HU7W5ae-_rg&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/HU7W5ae-_rg&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<div><a title="You Tube Link" href="http://www.youtube.com/watch?v=HU7W5ae-_rg" target="_blank">YouTube link for WEB 2.0 A STRATEGY GUIDE<br />
Amy Shuen on How Users Create Value</a></div>
<h2><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;">WEB 2.0 A STRATEGY GUIDE<br />
Amy Shuen on How People Build Connections</span></h2>
<div class="video"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/6kjLjM8NGFs&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/6kjLjM8NGFs&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<div><a title="You Tube Link" href="http://www.youtube.com/watch?v=6kjLjM8NGFs" target="_blank">YouTube link for WEB 2.0 A STRATEGY GUIDE<br />
Amy Shuen on How People Build Connections</a></div>
<h2><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;">WEB 2.0 A STRATEGY GUIDE<br />
Amy Shuen on how Networks Multiply Effects</span></h2>
<div class="video"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Uj-UKcy1T7o&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/Uj-UKcy1T7o&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<div><a title="You Tube Link" href="http://www.youtube.com/watch?v=Uj-UKcy1T7o" target="_blank">YouTube link for WEB 2.0 A STRATEGY GUIDE<br />
Amy Shuen on how Networks Multiply Effects</a></div>
<div></div>
<h2></h2>
<div><a title="Amazon" href="http://www.amazon.com/gp/product/0596529961?ie=UTF8&amp;tag=highlevelmedi-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0596529961" target="_blank">Save money today and get this book now.</a></div>
<div></div>
<h2></h2>
<div><iframe src="http://rcm.amazon.com/e/cm?t=highlevelmedi-20&#038;o=1&#038;p=8&#038;l=as1&#038;asins=0596529961&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=0000FF&#038;bc1=FFFFFF&#038;bg1=FFFFFF&#038;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://webtechman.com/blog/2008/12/06/web-20-a-strategy-guide-by-amy-shuen/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Google API video overview</title>
		<link>http://webtechman.com/blog/2008/11/30/google-api-video-overview/</link>
		<comments>http://webtechman.com/blog/2008/11/30/google-api-video-overview/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 16:22:06 +0000</pubDate>
		<dc:creator>Daniel Hudson</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Strategy 2.0]]></category>

		<guid isPermaLink="false">http://webtechman.com/blog/?p=27</guid>
		<description><![CDATA[The Google Data APIs provide a simple standard protocol for reading and writing data on the web. These REST-style APIs are based on the Atom Publishing Protocol (AtomPub), using the standard Atom syndication format to represent data and HTTP to &#8230; <a href="http://webtechman.com/blog/2008/11/30/google-api-video-overview/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The Google Data APIs provide a simple standard protocol for reading and writing data on the web.</p>
<p>These REST-style APIs are based on the Atom Publishing Protocol (AtomPub), using the standard Atom syndication format to represent data and HTTP to handle communication. The Google Data API protocol also extends AtomPub for processing queries, authentication, batch requests, and providing alternate output formats (JSON, RSS).</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/ADos_xW4_J0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/ADos_xW4_J0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" allowfullscreen="true"></embed></object></p>
<p>Learn more about the Google API at <a title="Google API help" href="http://code.google.com/apis/gdata/index.html" target="_blank">http://code.google.com/apis/gdata/index.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webtechman.com/blog/2008/11/30/google-api-video-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free SEO benefits from future proof URLs</title>
		<link>http://webtechman.com/blog/2008/11/30/free-seo-benefits-from-future-proof-urls/</link>
		<comments>http://webtechman.com/blog/2008/11/30/free-seo-benefits-from-future-proof-urls/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 16:19:35 +0000</pubDate>
		<dc:creator>Daniel Hudson</dc:creator>
				<category><![CDATA[Strategy 2.0]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://webtechman.com/blog/?p=23</guid>
		<description><![CDATA[Future Proof URLs gives you free Search Engine Optimization (SEO) benefits and hide the technology for future modifications of server technology. Most users don&#8217;t care about the technology and true social media shares it&#8217;s information across multiple platforms. It&#8217;s not &#8230; <a href="http://webtechman.com/blog/2008/11/30/free-seo-benefits-from-future-proof-urls/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://webtechman.com/blog/wp-content/uploads/badurl.gif"><img class="alignnone size-full wp-image-24" title="Future Proof URLs" src="http://webtechman.com/blog/wp-content/uploads/badurl.gif" alt="" width="500" height="206" /></a></p>
<p>Future Proof URLs gives you <em>free Search Engine Optimization (SEO) </em>benefits and hide the technology for future modifications of server technology. Most users don&#8217;t care about the technology and true social media shares it&#8217;s information across multiple platforms.</p>
<p>It&#8217;s not easy to understand what this page is about from just a URL that looks like this:</p>
<p><strong>http://trickmandan.com/blog/?p=11</strong></p>
<h2>Transform ugly URLs into Search Engine, People friendly URLs with these simple steps in the WordPress Admin Interface.</h2>
<h3>1. Go to Settings/Permalinks</h3>
<div id="attachment_25" class="wp-caption alignnone" style="width: 509px"><a href="http://webtechman.com/blog/wp-content/uploads/permalinks.gif"><img class="size-full wp-image-25" title="permalinks view on WordPress Admin" src="http://webtechman.com/blog/wp-content/uploads/permalinks.gif" alt="permalinks view on WordPress Admin" width="499" height="275" /></a><p class="wp-caption-text">permalinks view on WordPress Admin</p></div>
<h3><strong>2. Select &#8220;Day and name&#8221;, then click &#8220;save changes&#8221;</strong></h3>
<p>That will change the URL</p>
<p>from this: <strong>http://trickmandan.com/blog/?p=11</strong></p>
<p>to this: <strong>http://trickmandan.com/blog/2008/11/23/redirect-root-requests-to-your-blog/</strong></p>
<h2>This strategy will give Search Engines some clues on how to index this page. User friendly URLs will also give users an extra clue on what the page is about.</h2>
<p><strong>NOTE:</strong> You may need to update your htaccess file in your WordPress directory.<br />
<code><br />
&lt;IfModule mod_rewrite.c&gt;<br />
RewriteEngine On<br />
RewriteBase /blog/<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /blog/index.php [L]<br />
&lt;/IfModule&gt;<br />
</code><br />
This will redirect all requests that are not for actual files or directories to /blog/index.php</p>
<p>The [L] flag says this is the last rule.</p>
<p>Learn more about <a title="Learn more about htaccess" href="http://httpd.apache.org/docs/1.3/howto/htaccess.html" target="_blank">htaccess here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webtechman.com/blog/2008/11/30/free-seo-benefits-from-future-proof-urls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

