<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0">
  <channel>
    <docs>This is an RSS file.  It is intended to be read by a software program called a "feed reader". Search on Google for more details.</docs>
    <title><![CDATA[mshook's Feed]]></title>
    <link>http://www.simpy.com/user/mshook</link>
    <url>http://www.simpy.com/</url>
    <description><![CDATA[mshook's Feed]]></description>
    <image>
      <url>http://www.simpy.com/img/simpy-icon-16x16.png</url>
      <title>Simpy</title>
      <link>http://www.simpy.com/user/mshook</link>
    </image>
    <lastBuildDate></lastBuildDate>
    <ttl>1440</ttl>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[Short interview with jPolite (lightweight jQuery framework for iGoogle/netvibes-like portals) author Wayne Lee | http://bit.ly/2]]></title>
        <link><![CDATA[http://openvoice.ossreleasefeed.com/2009/11/wayne-lee-on-jpolite-lightweight-jquery-based-portal-framework/]]></link>
        <description><![CDATA[via http://twitter.com/programmingjoy/status/5857692995
<blockquote>
<p>I decided to re-engineer it from the ground up. JPolite V2 is then a complete re-design from the ground up with nothing from V1 except for the look & feel. The code structure is much clearer which makes it easier for customization, as well as integration with other jQuery plugins.
</p>
<p>
A new feature that is now being tested with JPolite is called XDO (XML Data Object), which currently supports JSON objects only. The whole idea is based on some discussion around “Thin Server Architecture” and REST architecture style, that a browser client first construct the foundation of a web app with STATIC content (HTML, CSS and JavaScript) from a web server, and then exchange only DATA (XML, JSON, TXT) with the application server, which relieves the server from the burden of generating  HTML markup. This feature is still experimental with lots enhancements expected.
</p>
</blockquote>
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://openvoice.ossreleasefeed.com/2009/11/wayne-lee-on-jpolite-lightweight-jquery-based-portal-framework/"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://openvoice.ossreleasefeed.com/2009/11/wayne-lee-on-jpolite-lightweight-jquery-based-portal-framework/" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22jquery%22">jquery</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22jpolite%22">jpolite</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22interview%22">interview</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22javascript%22">javascript</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22portal%22">portal</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22igoogle%22">igoogle</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22netvibes%22">netvibes</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22why%22">why</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22json%22">json</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22gadget%22">gadget</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22framework%22">framework</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22rest%22">rest</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22architecture%22">architecture</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22xdo%22">xdo</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22interesting%22">interesting</a>,


]]>
</description>
        
        <category><![CDATA[jquery]]></category>
        
        <category><![CDATA[jpolite]]></category>
        
        <category><![CDATA[interview]]></category>
        
        <category><![CDATA[javascript]]></category>
        
        <category><![CDATA[portal]]></category>
        
        <category><![CDATA[igoogle]]></category>
        
        <category><![CDATA[netvibes]]></category>
        
        <category><![CDATA[why]]></category>
        
        <category><![CDATA[json]]></category>
        
        <category><![CDATA[gadget]]></category>
        
        <category><![CDATA[framework]]></category>
        
        <category><![CDATA[rest]]></category>
        
        <category><![CDATA[architecture]]></category>
        
        <category><![CDATA[xdo]]></category>
        
        <category><![CDATA[interesting]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Thu, 19 Nov 2009 10:20:00 -0500</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[Simple UDP server & client examples in Python - tested on XP & Ubuntu | http://www.evolt.org/node/60276]]></title>
        <link><![CDATA[http://www.evolt.org/node/60276]]></link>
        <description><![CDATA[<pre>
# Server program

from socket import *

# Set the socket parameters
host = "localhost"
port = 21567
buf = 1024
addr = (host,port)

# Create socket and bind to address
UDPSock = socket(AF_INET,SOCK_DGRAM)
UDPSock.bind(addr)

# Receive messages
while 1:
	data,addr = UDPSock.recvfrom(buf)
	if not data:
		print "Client has exited!"
		break
	else:
		print "nReceived message '", data,"'"

# Close socket
UDPSock.close()
</pre>
<hr>
<pre>
# Client program

from socket import *

# Set the socket parameters
host = "localhost"
port = 21567
buf = 1024
addr = (host,port)

# Create socket
UDPSock = socket(AF_INET,SOCK_DGRAM)

def_msg = "===Enter message to send to server===";
print "n",def_msg

# Send messages
while (1):
	data = raw_input('>> ')
	if not data:
		break
	else:
		if(UDPSock.sendto(data,addr)):
			print "Sending message '",data,"'....."

# Close socket
UDPSock.close()
</pre>
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.evolt.org/node/60276"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.evolt.org/node/60276" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22test%22">test</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22python%22">python</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22udp%22">udp</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22example%22">example</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22code%22">code</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22simple%22">simple</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22useful%22">useful</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22works%22">works</a>,


]]>
</description>
        
        <category><![CDATA[test]]></category>
        
        <category><![CDATA[python]]></category>
        
        <category><![CDATA[udp]]></category>
        
        <category><![CDATA[example]]></category>
        
        <category><![CDATA[code]]></category>
        
        <category><![CDATA[simple]]></category>
        
        <category><![CDATA[useful]]></category>
        
        <category><![CDATA[works]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Sat, 14 Nov 2009 06:27:00 -0500</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[An test embedded Google Voice message | http://mshook.appspot.com/z/d4m.htm?/mshook/22+october+2009+a]]></title>
        <link><![CDATA[http://mshook.appspot.com/z/d4m.htm?/mshook/22+october+2009+a]]></link>
        <description><![CDATA[<object type="application/x-shockwave-flash" data="https://clients4.google.com/voice/embed/embedPlayer" width="100%" height="64"><param name="movie" value="https://clients4.google.com/voice/embed/embedPlayer" /><param name="wmode" value="transparent" /><param name="FlashVars" value="u=06691608583254001374&k=AHwOX_C5o53CIk-hSr8GVTnMq7kXDuzu23lGI5fO22_GyGF_sogzeZorjDSQZOt6qU68derrLRTHJ-im7bQH3vS9ga8N8JnlAB9N-PTYASPp2vTHdehskB3WuulIKHrmqJnN8N1CloYcL0fioxnDmMaOeA6ISV4JBY8jr8Stigt0fhDyyPKtX3s&baseurl=https://clients4.google.com/voice&autoPlay=false" /></object>
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://mshook.appspot.com/z/d4m.htm?/mshook/22+october+2009+a"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://mshook.appspot.com/z/d4m.htm?/mshook/22+october+2009+a" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22test%22">test</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22google%22">google</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22voice%22">voice</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22gv%22">gv</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22voip%22">voip</a>,


]]>
</description>
        
        <category><![CDATA[test]]></category>
        
        <category><![CDATA[google]]></category>
        
        <category><![CDATA[voice]]></category>
        
        <category><![CDATA[gv]]></category>
        
        <category><![CDATA[voip]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Thu, 22 Oct 2009 12:07:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[I know Bob. The book should be good: Do You Know What I Mean?—Discovering Your Personal Communication Style | http://communicati]]></title>
        <link><![CDATA[http://communicationstyles.us/]]></link>
        <description><![CDATA[Bob Keteyian has been counseling through the communication styles lens, focusing on the natural language of the client. This approach relies on the inherent processing abilities of each individual and is naturally validating. Each of us is unique and therefore has a unique communication style, which is related to our learning style. 
<br><br>
Learning styles theory is at the base of the communication styles approach.  The fundamental question Bob asked many years ago was this: How are learning styles reflected in interpersonal communication? Thinking in words, images, or feelings reflects some of the common, inherent differences that drive individual communication styles. It also helps explain the confusion and communication breakdowns that so readily occur. When you solve the communication style conflicts in relationships, you increase collaboration and give clearer definition to other personal and relational issues.
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://communicationstyles.us/"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://communicationstyles.us/" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22bob%22">bob</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22friend%22">friend</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22local%22">local</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22maine%22">maine</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22communication%22">communication</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22book%22">book</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22interpersonal%22">interpersonal</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22relationship%22">relationship</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22interesting%22">interesting</a>,


]]>
</description>
        
        <category><![CDATA[bob]]></category>
        
        <category><![CDATA[friend]]></category>
        
        <category><![CDATA[local]]></category>
        
        <category><![CDATA[maine]]></category>
        
        <category><![CDATA[communication]]></category>
        
        <category><![CDATA[book]]></category>
        
        <category><![CDATA[interpersonal]]></category>
        
        <category><![CDATA[relationship]]></category>
        
        <category><![CDATA[interesting]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Mon, 05 Oct 2009 10:54:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[Machining a Spur Gear - 4:15 minute video | http://www.youtube.com/watch?v=VHTXaU7GZC0]]></title>
        <link><![CDATA[http://www.youtube.com/watch?v=VHTXaU7GZC0]]></link>
        <description><![CDATA[via
http://www.google.com/search?q=spur+gear&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.youtube.com/watch?v=VHTXaU7GZC0"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.youtube.com/watch?v=VHTXaU7GZC0" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22gear%22">gear</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22machine%22">machine</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22howto%22">howto</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22how%22">how</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22video%22">video</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22manufacturing%22">manufacturing</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22september%22">september</a>,

<a href="http://www.simpy.com/user/mshook/tag/%222009%22">2009</a>,


]]>
</description>
        
        <category><![CDATA[gear]]></category>
        
        <category><![CDATA[machine]]></category>
        
        <category><![CDATA[howto]]></category>
        
        <category><![CDATA[how]]></category>
        
        <category><![CDATA[video]]></category>
        
        <category><![CDATA[manufacturing]]></category>
        
        <category><![CDATA[september]]></category>
        
        <category><![CDATA[2009]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Wed, 23 Sep 2009 03:23:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[Data Binding Solution for jQuery | http://rizqi.namaku.de/2008/08/data-binding-solution-for-jquery/]]></title>
        <link><![CDATA[http://rizqi.namaku.de/2008/08/data-binding-solution-for-jquery/]]></link>
        <description><![CDATA[<blockquote>
<pre>
$('&lt;ul>&lt;li>&lt;span class="library" />&lt;/li>&lt;/ul>')
    .items([
        {library:'Prototype'},
        {library:'jQuery'},
        {library:'Dojo'},
        {library:'MooTools'}
    ])
    .chain();

Chain.js isn’t just bind data automatically to your HTML, but it also maintains and manages your data/items.

var data = {first:'Stephen', last:'Hawking'};
 
// Add one item
$('#persons').items('add', data);
 
// Remove item
$('#persons').items('remove', data);
</pre>
</blockquote>
via http://www.trilancer.com/jpolite2/
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://rizqi.namaku.de/2008/08/data-binding-solution-for-jquery/"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://rizqi.namaku.de/2008/08/data-binding-solution-for-jquery/" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22javascript%22">javascript</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22jquery%22">jquery</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22client%22">client</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22bind%22">bind</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22html%22">html</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22template%22">template</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22history%22">history</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22interesting%22">interesting</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22why%22">why</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22rest%22">rest</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22dom%22">dom</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22via%22">via</a>,


]]>
</description>
        
        <category><![CDATA[javascript]]></category>
        
        <category><![CDATA[jquery]]></category>
        
        <category><![CDATA[client]]></category>
        
        <category><![CDATA[bind]]></category>
        
        <category><![CDATA[html]]></category>
        
        <category><![CDATA[template]]></category>
        
        <category><![CDATA[history]]></category>
        
        <category><![CDATA[interesting]]></category>
        
        <category><![CDATA[why]]></category>
        
        <category><![CDATA[rest]]></category>
        
        <category><![CDATA[dom]]></category>
        
        <category><![CDATA[via]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Fri, 07 Aug 2009 05:20:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[Joe Gregorio's informed thoughts (& critique) of Google's Wave protocols w/ comments by Sam Ruby, James Clark,.. | http://tinyur]]></title>
        <link><![CDATA[http://bitworking.org/news/431/wave-first-thoughts]]></link>
        <description><![CDATA[<blockquote>
<p>
        There are actually 3 protocols and 2 APIs that are used in Wave:
        </p>
<ul>
<li>Federation (XMPP)
            </li><li>The robot protocol (JSONRPC)
            </li><li>The gadget API (OpenSocial)
            </li><li>The wave embed API (Javascript)
            </li><li>The client-server protocol (As defined by GWT)
        </li></ul>

<p>
        The last one in that list is really nothing that needs to be, or will probably ever
        be documented, it is generated by GWT and when you build your own Wave client
        you will need to define how it talks to your Wave server. The rest of the 
        protocols and APIs are based on existing technologies.
        </p>
</blockquote>
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://bitworking.org/news/431/wave-first-thoughts"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://bitworking.org/news/431/wave-first-thoughts" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22wave%22">wave</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22rest%22">rest</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22example%22">example</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22protocol%22">protocol</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22json%22">json</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22xmpp%22">xmpp</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22gwt%22">gwt</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22joegregorio%22">joegregorio</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22good%22">good</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22api%22">api</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22rpc%22">rpc</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22how%22">how</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22why%22">why</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22comments%22">comments</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22gadget%22">gadget</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22robot%22">robot</a>,


]]>
</description>
        
        <category><![CDATA[wave]]></category>
        
        <category><![CDATA[rest]]></category>
        
        <category><![CDATA[example]]></category>
        
        <category><![CDATA[protocol]]></category>
        
        <category><![CDATA[json]]></category>
        
        <category><![CDATA[xmpp]]></category>
        
        <category><![CDATA[gwt]]></category>
        
        <category><![CDATA[joegregorio]]></category>
        
        <category><![CDATA[good]]></category>
        
        <category><![CDATA[api]]></category>
        
        <category><![CDATA[rpc]]></category>
        
        <category><![CDATA[how]]></category>
        
        <category><![CDATA[why]]></category>
        
        <category><![CDATA[comments]]></category>
        
        <category><![CDATA[gadget]]></category>
        
        <category><![CDATA[robot]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Mon, 06 Jul 2009 06:02:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA["how to use the Arduino and an Xport Ethernet module to send and retrieve data to an [PHP] web server"]]></title>
        <link><![CDATA[http://www.glacialwanderer.com/hobbyrobotics/?p=15]]></link>
        <description><![CDATA[<pre>
void httpRequest()
{
  byte theByte;

  xPortSerial.print("GET ");
  xPortSerial.print(PHP_PAGE_LOCATION);

  // value0 = 123 and value1 = 456
  // You should change these to be your sensor values or whatever you want to send
  // (see php code if you want to add more values or change the names value0/value1
  xPortSerial.print("?value0=123&value1=456");
  xPortSerial.print(" HTTP/1.1n");
  xPortSerial.print(WEB_HOST);

  while(!xPortSerial.available()) {} // Just loop until available
  theByte = xPortSerial.read();
  if (theByte != 0)
    Serial.println("Passed.");
  else
    Serial.println("Failed.");
}
</pre>
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.glacialwanderer.com/hobbyrobotics/?p=15"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.glacialwanderer.com/hobbyrobotics/?p=15" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22arduino%22">arduino</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22ethernet%22">ethernet</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22server%22">server</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22client%22">client</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22avr%22">avr</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22howto%22">howto</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22code%22">code</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22php%22">php</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22c%22">c</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22sheild%22">sheild</a>,


]]>
</description>
        
        <category><![CDATA[arduino]]></category>
        
        <category><![CDATA[ethernet]]></category>
        
        <category><![CDATA[server]]></category>
        
        <category><![CDATA[client]]></category>
        
        <category><![CDATA[avr]]></category>
        
        <category><![CDATA[howto]]></category>
        
        <category><![CDATA[code]]></category>
        
        <category><![CDATA[php]]></category>
        
        <category><![CDATA[c]]></category>
        
        <category><![CDATA[sheild]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Thu, 02 Jul 2009 05:44:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[How can I make SVN serve HTML and images with the correct Content-Type? | http://code.google.com/p/support/wiki/FAQ#Subversion]]></title>
        <link><![CDATA[http://code.google.com/p/support/wiki/FAQ]]></link>
        <description><![CDATA[<blockquote>
<pre>
You need to tell subversion what mime-type to use. Just use the command:

svn propset svn:mime-type 'text/html' FILENAME

or

svn propset svn:mime-type 'image/jpeg' FILENAME

For more info: http://svnbook.red-bean.com/en/1.4/svn.advanced.props.file-portability.html#svn.advanced.props.special.mime-type

It's also possible to configure your Subversion client to automatically set
each file's mime-type. For example, by modifying ~/.subversion/config to resemble

[miscellany]
enable-auto-props = yes

[auto-props]
*.html = svn:mime-type=text/html

For more info: http://svnbook.red-bean.com/en/1.1/ch07.html#svn-ch-7-sect-1.3.2 
</pre>
</blockquote>
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://code.google.com/p/support/wiki/FAQ"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://code.google.com/p/support/wiki/FAQ" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22svn%22">svn</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22html%22">html</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22howto%22">howto</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22serve%22">serve</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22server%22">server</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22google%22">google</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22code%22">code</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22image%22">image</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22jpg%22">jpg</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22subversion%22">subversion</a>,


]]>
</description>
        
        <category><![CDATA[svn]]></category>
        
        <category><![CDATA[html]]></category>
        
        <category><![CDATA[howto]]></category>
        
        <category><![CDATA[serve]]></category>
        
        <category><![CDATA[server]]></category>
        
        <category><![CDATA[google]]></category>
        
        <category><![CDATA[code]]></category>
        
        <category><![CDATA[image]]></category>
        
        <category><![CDATA[jpg]]></category>
        
        <category><![CDATA[subversion]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Thu, 25 Jun 2009 10:47:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[Joe Gregorio's Google Code - wiki, atom, rest, app engine, python, sqlite | http://code.google.com/u/joe.gregorio/]]></title>
        <link><![CDATA[http://code.google.com/u/joe.gregorio/]]></link>
        <description><![CDATA[<blockquote>
<pre>
Username:  	 joe.gregorio
Type the characters you see in the picture below.


Letters are not case-sensitive
Project ownership: 	feedvalidator
robaccia
mimeparse
httplib2
uri-templates
atompub-mulitpart-spec
</pre>
</blockquote>
google-app-engine-samples
googleappengine
gae-sqlite
google-app-engine-codelab
app-engine-tutorial
Project membership: 	feedparser
gdata-python-client
doctype
skia
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://code.google.com/u/joe.gregorio/"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://code.google.com/u/joe.gregorio/" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22joegregorio%22">joegregorio</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22code%22">code</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22example%22">example</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22atom%22">atom</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22rest%22">rest</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22wiki%22">wiki</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22google%22">google</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22gae%22">gae</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22good%22">good</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22sqlite%22">sqlite</a>,


]]>
</description>
        
        <category><![CDATA[joegregorio]]></category>
        
        <category><![CDATA[code]]></category>
        
        <category><![CDATA[example]]></category>
        
        <category><![CDATA[atom]]></category>
        
        <category><![CDATA[rest]]></category>
        
        <category><![CDATA[wiki]]></category>
        
        <category><![CDATA[google]]></category>
        
        <category><![CDATA[gae]]></category>
        
        <category><![CDATA[good]]></category>
        
        <category><![CDATA[sqlite]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Fri, 19 Jun 2009 11:47:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[Wind turbine blade from GE in Brazil for Maine projects http://tinyurl.com/l65wso]]></title>
        <link><![CDATA[http://www.workingwaterfront.com/articles/Port-of-Eastport-set-to-handle-shipment-of-wind-turbine-blades/13081/]]></link>
        <description><![CDATA[<pre>
The Port of Eastport was scheduled to handle the import of a shipment of wind turbine blades from Santos, Brazil in late April.

"This all started approximately three years ago," he says. "Talks began with First Wind [a wind energy company based in Newton, Mass.], and then moved to General Electric, and they became our client," Gardner says. "The blades will be shipped from Eastport to projects around the region."

Gardner added that if all goes well with the April shipment, he expects a second shipload in June.

The total of 108 blades, each 125 feet long, are scheduled to arrive aboard the M/V Jade C., according to Tom Critchley, Operations Manager for Federal Marine Terminals, the port's shipping agent. 

"We'll be using mobile truck cranes, then our truckers will move the blades on flatbeds from the pier into the yard," Critchley said. "There, 54 trucks contracted by General Electric will transport them, two to a truck, to their destinations."
</pre>
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.workingwaterfront.com/articles/Port-of-Eastport-set-to-handle-shipment-of-wind-turbine-blades/13081/"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.workingwaterfront.com/articles/Port-of-Eastport-set-to-handle-shipment-of-wind-turbine-blades/13081/" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22wind%22">wind</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22turbine%22">turbine</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22maine%22">maine</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22truck%22">truck</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22detail%22">detail</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22ge%22">ge</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22local%22">local</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22brazil%22">brazil</a>,

<a href="http://www.simpy.com/user/mshook/tag/%222009%22">2009</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22lincoln%22">lincoln</a>,


]]>
</description>
        
        <category><![CDATA[wind]]></category>
        
        <category><![CDATA[turbine]]></category>
        
        <category><![CDATA[maine]]></category>
        
        <category><![CDATA[truck]]></category>
        
        <category><![CDATA[detail]]></category>
        
        <category><![CDATA[ge]]></category>
        
        <category><![CDATA[local]]></category>
        
        <category><![CDATA[brazil]]></category>
        
        <category><![CDATA[2009]]></category>
        
        <category><![CDATA[lincoln]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Sun, 31 May 2009 07:37:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[Amazon.com: RESTful Web Services: Leonard Richardson, Sam Ruby, David Heinemeier Hansson: Books]]></title>
        <link><![CDATA[http://www.amazon.com/RESTful-Web-Services-Leonard-Richardson/dp/0596529260]]></link>
        <description><![CDATA[via http://itc.conversationsnetwork.org/shows/detail4018.html

"I would recommend reading the book in this order:

* Core knowledge
- Introduction, Chapter 1 and 3
- Chapter 4, 8, 9
- Optional: chap 10 (comparison to SOAP).

* REST service examples
- Chapter 5, 6 and 7

* REST clients
- Chapter 2 and 11

The service examples (chapter 5 - 7) should really have been one chapter. The client chapters does not show how to write clients against the provided example services, which is a major mistake. The core knowledge scattered throughout chapter 4, 8 and 9 (like the ATOM publishing protocol which is covered multiple places) should be collected and ordered.

So why the four starts ?. I have to admit that my annoyance with the books topical layout is trumped by the authors knowledge and their ability to pack a surprising number of usable facts into this book. So if you do not loose your way in their topical jungle then you will eventually come through as a REST maven."
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.amazon.com/RESTful-Web-Services-Leonard-Richardson/dp/0596529260"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.amazon.com/RESTful-Web-Services-Leonard-Richardson/dp/0596529260" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22book%22">book</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22wishlist%22">wishlist</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22rest%22">rest</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22via%22">via</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22judell%22">judell</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22django%22">django</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22design%22">design</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22architecture%22">architecture</a>,


]]>
</description>
        
        <category><![CDATA[book]]></category>
        
        <category><![CDATA[wishlist]]></category>
        
        <category><![CDATA[rest]]></category>
        
        <category><![CDATA[via]]></category>
        
        <category><![CDATA[judell]]></category>
        
        <category><![CDATA[django]]></category>
        
        <category><![CDATA[design]]></category>
        
        <category><![CDATA[architecture]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Sat, 21 Feb 2009 11:28:00 -0500</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[Library of Over 500 Free Database Models | Webmasters by Design]]></title>
        <link><![CDATA[http://www.webmastersbydesign.com/2008/08/04/library-of-over-500-free-database-models/]]></link>
        <description><![CDATA["   1. Libraries and Books
   2. Inventory Control for Retail Stores
   3. Hotel Reservations
   4. Video Rentals
   5. School Management
   6. Clients and Fees
   7. CD Collections
   8. Customers and Invoices
   9. Payroll
  10. Apartment Rentals
  11. Customers and Services
  12. ERP
  13. Car Sales
  14. Customers and Addresses
  15. Driving Schools
  16. Health and Fitness Clubs
  17. Hospital Admissions
  18. Inventory of Files in Boxes
  19. Sports Clubs
  20. Airline Reservations

The creator of all of these database models runs multiple database companies; one is in the UK; the other is in the US. He has also created data models that are included in Microsoft SQL Server 2005 Express. He offers his reason for providing these saying, "I design these Data Models for free to give something back to the Database community that has provided me with a good (and interesting) living for the past 15 years" (DatabaseAnswers.org). Be sure to check these out and show some love for all the hard work that went into creating these and offering them for FREE!"
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.webmastersbydesign.com/2008/08/04/library-of-over-500-free-database-models/"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.webmastersbydesign.com/2008/08/04/library-of-over-500-free-database-models/" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22database%22">database</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22design%22">design</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22example%22">example</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22sql%22">sql</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22viapopular%22">viapopular</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22mysql%22">mysql</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22er%22">er</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22free%22">free</a>,


]]>
</description>
        
        <category><![CDATA[database]]></category>
        
        <category><![CDATA[design]]></category>
        
        <category><![CDATA[example]]></category>
        
        <category><![CDATA[sql]]></category>
        
        <category><![CDATA[viapopular]]></category>
        
        <category><![CDATA[mysql]]></category>
        
        <category><![CDATA[er]]></category>
        
        <category><![CDATA[free]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Tue, 05 Aug 2008 09:54:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[The new attack on the RDBMS on Dion Almaer's Blog]]></title>
        <link><![CDATA[http://almaer.com/blog/the-new-attack-on-the-rdbms]]></link>
        <description><![CDATA["It is happening on the client. SQLite seems to be everywhere. Your operating system, phone, browser, applications, everywhere. I bet I have around 20 SQLite engines on my system right now, and growing. Why is this happening? Well, instead of coming up with your own data format, parser, and search engine, why not just use SQLite and be done. It is very faster, perfect for single user mode, so everyone is a winner.

So, SQL has a looooong future ahead of it, but it will be interesting to see how the RDBMS"
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://almaer.com/blog/the-new-attack-on-the-rdbms"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://almaer.com/blog/the-new-attack-on-the-rdbms" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22viapopular%22">viapopular</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22sql%22">sql</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22mysql%22">mysql</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22couchdb%22">couchdb</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22simpledb%22">simpledb</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22analysis%22">analysis</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22rdbms%22">rdbms</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22dbms%22">dbms</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22flat%22">flat</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22scale%22">scale</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22interesting%22">interesting</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22oo%22">oo</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22javascript%22">javascript</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22rails%22">rails</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22json%22">json</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22sqlite%22">sqlite</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22rest%22">rest</a>,


]]>
</description>
        
        <category><![CDATA[viapopular]]></category>
        
        <category><![CDATA[sql]]></category>
        
        <category><![CDATA[mysql]]></category>
        
        <category><![CDATA[couchdb]]></category>
        
        <category><![CDATA[simpledb]]></category>
        
        <category><![CDATA[analysis]]></category>
        
        <category><![CDATA[rdbms]]></category>
        
        <category><![CDATA[dbms]]></category>
        
        <category><![CDATA[flat]]></category>
        
        <category><![CDATA[scale]]></category>
        
        <category><![CDATA[interesting]]></category>
        
        <category><![CDATA[oo]]></category>
        
        <category><![CDATA[javascript]]></category>
        
        <category><![CDATA[rails]]></category>
        
        <category><![CDATA[json]]></category>
        
        <category><![CDATA[sqlite]]></category>
        
        <category><![CDATA[rest]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Mon, 21 Apr 2008 05:27:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[Welcome to JWChat at jwchat.org]]></title>
        <link><![CDATA[http://jwchat.org/]]></link>
        <description><![CDATA["Welcome to JWChat at jwchat.org
A web based Jabber/XMPP client"
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://jwchat.org/"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://jwchat.org/" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22javascript%22">javascript</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22jabber%22">jabber</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22client%22">client</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22chat%22">chat</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22xmpp%22">xmpp</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22example%22">example</a>,


]]>
</description>
        
        <category><![CDATA[javascript]]></category>
        
        <category><![CDATA[jabber]]></category>
        
        <category><![CDATA[client]]></category>
        
        <category><![CDATA[chat]]></category>
        
        <category><![CDATA[xmpp]]></category>
        
        <category><![CDATA[example]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Mon, 31 Mar 2008 02:59:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[Category:Software architecture summaries from Wikipedia via DBpedia & http://mshook.googlepages.com/dbpediacategorylist.html]]></title>
        <link><![CDATA[http://mshook.googlepages.com/dbpediacategorylist.html?url=http://en.wikipedia.org/wiki/Category:Software_architecture]]></link>
        <description><![CDATA["    * RM-ODP
    * Repository Open Service Interface Definition
    * Representational State Transfer
    * Examples of Representational State Transfer
    * Resource oriented architecture
    * Reverse Ajax
    * Rich Client Platform
    * Rich Internet Client
    * Rich Internet application

S

    * Scaffold (programming)
    * Scheduling Open Service Interface Definition
    * Search oriented architecture
    * Semantic service oriented architecture
    * Service-Oriented Development of Applications
    * Service-oriented architecture implementation framework
    * Simulated reality
    * Situational application
    * Smart client
    * Software Architectural Model"
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://mshook.googlepages.com/dbpediacategorylist.html?url=http://en.wikipedia.org/wiki/Category:Software_architecture"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://mshook.googlepages.com/dbpediacategorylist.html?url=http://en.wikipedia.org/wiki/Category:Software_architecture" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22software%22">software</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22architecture%22">architecture</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22summary%22">summary</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22wikipedia%22">wikipedia</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22list%22">list</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22dbpedia%22">dbpedia</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22wcs%22">wcs</a>,


]]>
</description>
        
        <category><![CDATA[software]]></category>
        
        <category><![CDATA[architecture]]></category>
        
        <category><![CDATA[summary]]></category>
        
        <category><![CDATA[wikipedia]]></category>
        
        <category><![CDATA[list]]></category>
        
        <category><![CDATA[dbpedia]]></category>
        
        <category><![CDATA[wcs]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Mon, 31 Mar 2008 09:44:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[RESTClient]]></title>
        <link><![CDATA[http://restclient.org/]]></link>
        <description><![CDATA["REST is cool. Playing with REST servers is hard. RESTClient seeks to make working with REST servers for demos and the like more easy. This client was created at Dev House Boston 3."
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://restclient.org/"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://restclient.org/" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22via%22">via</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22rest%22">rest</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22popular%22">popular</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22python%22">python</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22client%22">client</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22demo%22">demo</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22test%22">test</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22video%22">video</a>,


]]>
</description>
        
        <category><![CDATA[via]]></category>
        
        <category><![CDATA[rest]]></category>
        
        <category><![CDATA[popular]]></category>
        
        <category><![CDATA[python]]></category>
        
        <category><![CDATA[client]]></category>
        
        <category><![CDATA[demo]]></category>
        
        <category><![CDATA[test]]></category>
        
        <category><![CDATA[video]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Tue, 16 Oct 2007 02:53:00 -0400</pubDate>
      </item>
    
      
      
      


  
    
  
  
  


      <item>
        <title><![CDATA[lemonyellow.com]]></title>
        <link><![CDATA[http://web.archive.org/web/20000523231148/www.lemonyellow.com/essays/essay_preprod.htm]]></link>
        <description><![CDATA["Pre-Production Design (with an emphasis on project management)

------------------------------------

The following document steps through the pre-production process. The steps are roughly in the correct/ intuitive order, although some will overlap. If you manage to address each one, you should be able to generate a cohesive design document that will serve to provide an exhaustive reference for both technical design and creative direction throughout the production process. It will demonstrate your knowledge of the target demographic and will communicate your enthusiasm to the client.

Define client goals"
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://web.archive.org/web/20000523231148/www.lemonyellow.com/essays/essay_preprod.htm"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://web.archive.org/web/20000523231148/www.lemonyellow.com/essays/essay_preprod.htm" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22lemonyellow%22">lemonyellow</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22design%22">design</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22project%22">project</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22management%22">management</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22client%22">client</a>,

<a href="http://www.simpy.com/user/mshook/tag/%22ibm%22">ibm</a>,


]]>
</description>
        
        <category><![CDATA[lemonyellow]]></category>
        
        <category><![CDATA[design]]></category>
        
        <category><![CDATA[project]]></category>
        
        <category><![CDATA[management]]></category>
        
        <category><![CDATA[client]]></category>
        
        <category><![CDATA[ibm]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Sat, 21 Jul 2007 09:07:00 -0400</pubDate>
      </item>
    
      
      
      


  
  
    
  
  


      <item>
        <title><![CDATA[magazine: Introducing the Microcontent Client]]></title>
        <link><![CDATA[http://www.anildash.com/magazine/2002/11/introducing_the.html]]></link>
        <description><![CDATA[
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.anildash.com/magazine/2002/11/introducing_the.html"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.anildash.com/magazine/2002/11/introducing_the.html" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22fromdelicious%22">fromdelicious</a>,


]]>
</description>
        
        <category><![CDATA[fromdelicious]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Thu, 27 May 2004 03:06:00 -0400</pubDate>
      </item>
    
      
      
      


  
  
    
  
  


      <item>
        <title><![CDATA[Sci-Fi Hi-Fi » Blog Archive » Cocoa Del.icio.us Client]]></title>
        <link><![CDATA[http://www.scifihifi.com/weblog/software/Cocoa-Delicious-Client.html]]></link>
        <description><![CDATA[
          <img src="http://www.simpy.com/t/fir.gif"/>
<!--
	  <br/>
          <a href="http://www.pheedo.com/click.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.scifihifi.com/weblog/software/Cocoa-Delicious-Client.html"><img
             src="http://www.pheedo.com/img.phdo?x=0b8a1e9c81c14341a5689c3f903dd631&u=http://www.scifihifi.com/weblog/software/Cocoa-Delicious-Client.html" border="0"/></a>
          <p/>
-->
          Tagged by <a href="http://www.simpy.com/user/mshook">mshook</a> under 
         
<a href="http://www.simpy.com/user/mshook/tag/%22fromdelicious%22">fromdelicious</a>,


]]>
</description>
        
        <category><![CDATA[fromdelicious]]></category>
        
        <author><![CDATA[mshook]]></author>
        <pubDate>Thu, 27 May 2004 03:06:00 -0400</pubDate>
      </item>
    
  </channel>
</rss>
