<?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>zoap</title>
	<atom:link href="http://zoap.org/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://zoap.org</link>
	<description>about stuff...</description>
	<lastBuildDate>Mon, 06 Sep 2010 13:03:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Playing with queues</title>
		<link>http://zoap.org/?p=623</link>
		<comments>http://zoap.org/?p=623#comments</comments>
		<pubDate>Mon, 06 Sep 2010 13:03:21 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[asterisk]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[telephony]]></category>

		<guid isPermaLink="false">http://zoap.org/?p=623</guid>
		<description><![CDATA[The company I work for, is changing the proprietary phone system to an open source one: asterisk. That is a big fat yay of course! Since I&#8217;m the only one at this company who knows his way around linux, it&#8217;s my job to set things up. Since I like goofing around in .conf files, it is no [...]]]></description>
			<content:encoded><![CDATA[<p>The company I work for, is changing the proprietary phone system to an open source one: <a href="http://asterisk.org">asterisk</a>. That is a big fat yay of course! Since I&#8217;m the only one at this company who knows his way around <a href="http://linux.org">linux</a>, it&#8217;s my job to set things up. Since I like goofing around in .conf files, it is no punishment. Not at all! Anyway, the reason we move to <a href="http://asterisk.org">asterisk</a>, is that we have our call-center systems working on <a href="http://vicidial.org">vicidial</a>, which, you might have guessed, works on <a href="http://asterisk.org">asterisk</a>. Besides the call-center applications, we also have &#8220;regular&#8221; telephone traffic, and that is what I&#8217;m setting up now. And the reason I&#8217;m posting this here, is that there might be somebody out there who can benefit from this info.</p>
<p>So, what had to be done is the following. We have two divisions at the office here (we have 3 offices in total, but this setup is only for one of them, the main office). We have a service-desk and a administration-desk. We have one main phone number, which refers to both of these divisions. The caller is presented an ivr menu, where they make their choice of needed service. The choices we have here, are only 3 different ones. At choice 1, they get redirected to another office, choice 2 takes them to the service-desk and choice 3  takes them to administration. Since the divisions we have here are not that large, we have to take into account that one of both divisions can be totally understaffed at any given time. To solve this, I have the phone ring on division X for 30 seconds and if there is no pickup, it will ring on both divisions after that. So, how do we get this done in <a href="http://asterisk.org">asterisk</a>?</p>
<p>First we need to have a inbound did on the incoming phone number. I use <a href="http://vicidial.org">vicidial</a> here, which has a gui to create dids and call-menus, so that works a little different, but the outcome is the same. You need to put something like this in you extensions.conf:<br />
<code><br />
exten =&gt; _inboundnumber,1,Answer<br />
exten =&gt; _inboundnumber,2,Playback(some_welcome_message)<br />
exten =&gt; _inboundnumber,3,GoTo(MenuSecion,s,1)<br />
exten =&gt; _inboundnumber,4,Hangup()<br />
</code><br />
This will play a welcome message and then forwards the incoming number to a section in your extensions.conf, called <strong>MenuSection</strong> (just using clear names here, call it whatever you like). The <strong>MenuSection</strong> looks something like this:<br />
<code><br />
[MenuSection]<br />
exten =&gt; s,1,log_menu_call_with_agi<br />
exten =&gt; s,n,Background(Option1)<br />
exten =&gt; s,n,Background(Option2)<br />
exten =&gt; s,n,Background(Option3)<br />
exten =&gt; s,n,WaitExten(10)<br />
exten =&gt; s,n,Background(Option1)<br />
exten =&gt; s,n,Background(Option2)<br />
exten =&gt; s,n,Background(Option3)<br />
exten =&gt; s,n,WaitExten(10)</code></p>
<p><code>; Option1<br />
exten =&gt; 1,1,Goto(from-internal,phone_number_of_other_office,1)<br />
; Option2<br />
exten =&gt; 2,1,Goto(default,666705,1)<br />
; Option3<br />
exten =&gt; 3,1,Goto(default,666706,1)</code></p>
<p><code> </code></p>
<p><code>; Timeout<br />
exten =&gt; t,1,Playback(no_choice_made_sound)<br />
exten =&gt; t,n,Hangup<br />
; Invalid<br />
exten =&gt; i,1,Playback(invalid_choice_made_sound)<br />
exten =&gt; i,2,Goto(MenuSection,s,1)<br />
; hangup<br />
exten =&gt; h,1,log_things_with_agi_or_whatever<br />
</code><br />
This is your menu. First a log will be made, because well, I like to log stuff. Then the menu options will be played, after which a caller has 10 seconds to make his/her choice. No choice after 10 seconds, plays the choices again. A timeout (t) will hangup the call and an invalid (i) choice will reroute back to the start of the call-menu. A hangup will log stuff, just because I want to log that, but it is not necessary. Ok, what is the interesting part here, are the options! I&#8217;ll explain those here:</p>
<p>- A caller presses 1</p>
<p>This will forward the caller to another office. The reason it is a simple forward here, is that we make use of oldskool copper lines and there is no VoIP implemented (yet).</p>
<p>- A caller presses 2</p>
<p>The call is rerouted to extension 666705 in the <strong>default</strong> section of extensions.conf</p>
<p>- A caller presses 3</p>
<p>The call is rerouted to extension 666706 in the <strong>default</strong> section of extensions.conf</p>
<p>The 66670X extensions are just number I made up myself for this purpose. I start all my extensions with 666, don&#8217;t ask me why, I just do. But you can use any number you want, that does not matter. So, what happens in <strong>666705</strong>?<br />
<code><br />
exten =&gt; 666705,1,Answer<br />
exten =&gt; 666705,n,Playback(message_hold_on_a_second)<br />
exten =&gt; 666705,n,Queue(SD||||30)<br />
exten =&gt; 666705,n,GoTo(VM,2,1)<br />
exten =&gt; 666705,n,Hangup()<br />
</code><br />
So, this extension gets answered, then playbacks a message stating to hold on a sec please, then goes into a queue for 30 seconds and when it gets out of the queue after 30 seconds, it goes to the <strong>VM</strong> section, extension 2. What does all this mean? Well, the caller gets thrown into a queue where he/she will hear some sexy music while waiting for an agent to pick up the call. A queue is setup in queues.conf and the queue I use here, looks something like this:<br />
<code><br />
[SD]<br />
musicclass = MOHMAIN<br />
strategy = ringall<br />
servicelevel = 60<br />
timeout = 30<br />
retry = 10<br />
wrapuptime = 30<br />
autofill = yes<br />
autopause = no<br />
maxlen = 0<br />
joinempty = yes<br />
announce-frequency = 0<br />
periodic-announce-frequency = 15<br />
announce-holdtime = no<br />
periodic-announce = message_one_moment_please<br />
reportholdtime = yes<br />
ringinuse = no<br />
memberdelay = 1<br />
member =&gt; Sip/201<br />
member =&gt; Sip/202<br />
member =&gt; Sip/203<br />
member =&gt; Sip/204<br />
member =&gt; Sip/205<br />
</code><br />
So, what does all that stuff mean? Well, here we go:<br />
musicclass: this is the on hold music class used and contains the settings for the played music. Mine is called MOHMAIN<br />
strategy: this is the ring strategy used. I chose the ringall, but there are more choices you can make here, eg:</p>
<ul>
<li>ringall &#8211; ring all available channels unil one answers</li>
<li>roundrobin &#8211; take turns ringing each available interface</li>
<li>leastrecent &#8211; ring interface which was least recently called by this queue</li>
<li>fewestcalls &#8211; ring the one with the fewest calls from this queue</li>
<li>random &#8211; ring a random interface</li>
<li>rrmemory &#8211; roundrobin with memory, remember where left off last ring pass</li>
</ul>
<p>servicelevel: only used for reporting, see how many calls got answered within the service-level<br />
timeout: how long the phone rings before it is a timeout, in other words: the amount of seconds to keep ringing<br />
retry: the amount of seconds before we give it another go<br />
wrapuptime: the amount of seconds the called agent will not get another call to give them time to &#8220;wrap up&#8221;<br />
autofill: this has to do with old behavior, just set it to yes<br />
autopause: pauses a station if it does not answer<br />
maxlen: maximum callers waiting in the queue, set to 0 for unlimited<br />
joinempty: this has 3 settings, eg:</p>
<ul>
<li>yes: callers can join a queue with no members or only unavailable members</li>
<li>no: callers cannot join a queue with no members</li>
<li>strict: callers cannot join a queue with no members or only unavailable members</li>
</ul>
<p>announce-frequency: how often to announce queue position and/or estimated holdtime to caller (0=off)<br />
periodic-announce-frequency: number of seconds when to make a periodic announce<br />
announce-holdtime: yes|no|once to caller<br />
periodic-announce: sound-file to play for periodic announce<br />
reportholdtime: report the hold-time of the caller to the callee. I find this useful. Agents can prepare for customers who have been waiting way to long and probably will be pissed.<br />
ringinuse: send calls to &#8220;in-use&#8221; stations (only available on SIP channels)<br />
memberdelay: the delay before a caller gets set trough to the callee after pick-up<br />
member: members of this queue, which in this case, are the phones of the service division.</p>
<p>If the call does not get picked up within the 30 seconds, the call is thrown out of the queue and goes to the <strong>VM</strong> section, since that is the next step in extension <strong>666706</strong>. The <strong>VM</strong> section looks something like this:</p>
<p><code>[VM]<br />
exten =&gt; 1,1,Answer<br />
exten =&gt; 1,n,Playback(message_voicemail)<br />
exten =&gt; 1,n,Goto(85026666666667250,1)<br />
exten =&gt; 1,n,Hangup</p>
<p>exten =&gt; _85026666666667.,1,Wait(1)<br />
exten =&gt; _85026666666667.,2,Voicemail(${EXTEN:14}|s)<br />
exten =&gt; _85026666666667.,3,Playback(message_thankyou)<br />
exten =&gt; _85026666666667.,4,Hangup</p>
<p>exten =&gt; i,1,Playback(message_invalid)<br />
exten =&gt; i,n,Goto(1)<br />
exten =&gt; i,n,Hangup()</p>
<p>exten =&gt; 2,1,Background(message_you_can_wait_or_do_voicemail)<br />
exten =&gt; 2,n,WaitExten(1)</p>
<p></code></p>
<p><code>exten =&gt; t,1,Answer<br />
exten =&gt; t,n,Queue(WITHVM||||3600)<br />
exten =&gt; t,n,Hangup()<br />
</code><br />
Ok, so the call goes to extension <strong>2</strong> in the <strong>VM</strong> section. This plays a message that the caller can wait, or leave a voicemail. A caller has to press <strong>1</strong> to leave a voicemail, which takes him to extension <strong>1</strong>. This routes the caller to extension <strong>85026666666667250</strong> where he/she can leave a voicemail. This is just an extension number I use, were <strong>250</strong> is the voice-mailbox number. If the caller does not make his/her choice in 1 seconds, the caller goes to the timeout extension (t), which puts it in the queue <strong>WITHVM</strong> for an hour. If nobody answered the phone within an hour, there really is something wrong in this organisation, so guess that will work out ok&#8230; Ok, queue <strong>WITHVM</strong> looks something like this:</p>
<p><code> </code></p>
<p><code>[WITHVM]<br />
musicclass = MOHMAIN<br />
strategy = ringall<br />
servicelevel = 60<br />
timeout = 30<br />
retry = 10<br />
wrapuptime = 30<br />
autofill = yes<br />
autopause = no<br />
maxlen = 0<br />
joinempty = yes<br />
announce-frequency = 0<br />
periodic-announce-frequency = 30<br />
announce-holdtime = no<br />
periodic-announce = periodic_announce_message<br />
reportholdtime = yes<br />
ringinuse = no<br />
context = VM<br />
memberdelay = 1<br />
member =&gt; Sip/201<br />
member =&gt; Sip/202<br />
member =&gt; Sip/203<br />
member =&gt; Sip/204<br />
member =&gt; Sip/205<br />
member =&gt; Sip/101<br />
member =&gt; Sip/102<br />
member =&gt; Sip/103<br />
member =&gt; Sip/104<br />
member =&gt; Sip/105<br />
member =&gt; Sip/106<br />
</code><br />
Now, this looks almost the same as queue <strong>SD</strong>, with the difference the administration phones are members of this queue as well, so their phones will also ring! A context is also added: <strong>VM</strong>. This means, that if this queue is left, because somebody pressed a digit, it goes to the <strong>VM</strong> section, where a extension <strong>1</strong> will take the caller to the voicemail.</p>
<p>This is more or less how I fixed it for this office, The administration works almost the same, except it uses queue <strong>ADM</strong>, where only the administration stations are linked and goes to the same <strong>WITHVM</strong> queue after the 30 seconds time-out. So, this is just my way of implementing this. If anybody knows any better/cooler/faster ways of implementing this stuff, please let me know. Always eager to learn!</p>
<p>If you want more info on queues, take a look <a href="http://www.voip-info.org/wiki/view/Asterisk+call+queues">here</a>, <a href="http://www.voip-info.org/wiki/view/Asterisk+cmd+Queue">here</a> or <a href="http://www.orderlyq.com/asteriskqueues.html">here</a>.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Playing%20with%20queues%20-%20http%3A%2F%2Fzoap.org%2F%3Fp%3D623" title="Twitter"><img src="http://zoap.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;title=Playing%20with%20queues&amp;body=The%20company%20I%20work%20for%2C%20is%20changing%20the%C2%A0proprietary%C2%A0phone%20system%20to%20an%20open%20source%20one%3A%20asterisk.%20That%20is%20a%20big%20fat%20yay%20of%20course%21%20Since%20I%27m%20the%20only%20one%20at%20this%20company%20who%20knows%20his%20way%20around%20linux%2C%20it%27s%20my%20job%20to%20set%20things%20up.%20Since%20I%20like%20goo" title="Ping.fm"><img src="http://zoap.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://hellotxt.com/?status=Playing%20with%20queues+http%3A%2F%2Fzoap.org%2F%3Fp%3D623" title="HelloTxt"><img src="http://zoap.org/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;title=Playing%20with%20queues&amp;bodytext=The%20company%20I%20work%20for%2C%20is%20changing%20the%C2%A0proprietary%C2%A0phone%20system%20to%20an%20open%20source%20one%3A%20asterisk.%20That%20is%20a%20big%20fat%20yay%20of%20course%21%20Since%20I%27m%20the%20only%20one%20at%20this%20company%20who%20knows%20his%20way%20around%20linux%2C%20it%27s%20my%20job%20to%20set%20things%20up.%20Since%20I%20like%20goo" title="Digg"><img src="http://zoap.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;title=Playing%20with%20queues&amp;notes=The%20company%20I%20work%20for%2C%20is%20changing%20the%C2%A0proprietary%C2%A0phone%20system%20to%20an%20open%20source%20one%3A%20asterisk.%20That%20is%20a%20big%20fat%20yay%20of%20course%21%20Since%20I%27m%20the%20only%20one%20at%20this%20company%20who%20knows%20his%20way%20around%20linux%2C%20it%27s%20my%20job%20to%20set%20things%20up.%20Since%20I%20like%20goo" title="del.icio.us"><img src="http://zoap.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;t=Playing%20with%20queues" title="Facebook"><img src="http://zoap.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;title=Playing%20with%20queues" title="Mixx"><img src="http://zoap.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;title=Playing%20with%20queues&amp;annotation=The%20company%20I%20work%20for%2C%20is%20changing%20the%C2%A0proprietary%C2%A0phone%20system%20to%20an%20open%20source%20one%3A%20asterisk.%20That%20is%20a%20big%20fat%20yay%20of%20course%21%20Since%20I%27m%20the%20only%20one%20at%20this%20company%20who%20knows%20his%20way%20around%20linux%2C%20it%27s%20my%20job%20to%20set%20things%20up.%20Since%20I%20like%20goo" title="Google Bookmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;Title=Playing%20with%20queues" title="BlinkList"><img src="http://zoap.org/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Playing%20with%20queues&amp;body=http%3A%2F%2Fzoap.org%2F%3Fp%3D623" title="email"><img src="http://zoap.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Furl"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Furl" alt="Furl" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;title=Playing%20with%20queues" title="Live"><img src="http://zoap.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Ma.gnolia"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fzoap.org%2F%3Fp%3D623" title="Sphinn"><img src="http://zoap.org/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;bm_description=Playing%20with%20queues&amp;plugin=soc" title="MisterWong"><img src="http://zoap.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;t=Playing%20with%20queues" title="MySpace"><img src="http://zoap.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;title=Playing%20with%20queues" title="Reddit"><img src="http://zoap.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;title=Playing%20with%20queues" title="blogmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D623" title="Propeller"><img src="http://zoap.org/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;title=Playing%20with%20queues" title="StumbleUpon"><img src="http://zoap.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fzoap.org%2F%3Fp%3D623" title="Technorati"><img src="http://zoap.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.hyves.nl/profilemanage/add/tips/?name=Playing%20with%20queues&amp;text=The%20company%20I%20work%20for%2C%20is%20changing%20the%C2%A0proprietary%C2%A0phone%20system%20to%20an%20open%20source%20one%3A%20asterisk.%20That%20is%20a%20big%20fat%20yay%20of%20course%21%20Since%20I%27m%20the%20only%20one%20at%20this%20company%20who%20knows%20his%20way%20around%20linux%2C%20it%27s%20my%20job%20to%20set%20things%20up.%20Since%20I%20like%20goo+http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;rating=5" title="Hyves"><img src="http://zoap.org/wp-content/plugins/sociable/images/hyves.png" title="Hyves" alt="Hyves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fzoap.org%2F%3Fp%3D623" title="Identi.ca"><img src="http://zoap.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fzoap.org%2F%3Fp%3D623&amp;title=Playing%20with%20queues&amp;selection=The%20company%20I%20work%20for%2C%20is%20changing%20the%C2%A0proprietary%C2%A0phone%20system%20to%20an%20open%20source%20one%3A%20asterisk.%20That%20is%20a%20big%20fat%20yay%20of%20course%21%20Since%20I%27m%20the%20only%20one%20at%20this%20company%20who%20knows%20his%20way%20around%20linux%2C%20it%27s%20my%20job%20to%20set%20things%20up.%20Since%20I%20like%20goo" title="Posterous"><img src="http://zoap.org/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://zoap.org/?feed=rss2&amp;p=623</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cloud? Yes please!</title>
		<link>http://zoap.org/?p=621</link>
		<comments>http://zoap.org/?p=621#comments</comments>
		<pubDate>Mon, 30 Aug 2010 19:36:38 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[computer]]></category>

		<guid isPermaLink="false">http://zoap.org/?p=621</guid>
		<description><![CDATA[The cloud, much can be said about it, and much has. Privacy issues, lock in, integrity, whatever. The only thing I know, is that it is freaking awesome! Reason I think so, is something happened today. My pc @ work broke down&#8230; Hardware failure, can happen&#8230; So, took another pc from the stock, powered it up [...]]]></description>
			<content:encoded><![CDATA[<p>The cloud, much can be said about it, and much has. Privacy issues, lock in, integrity, whatever. The only thing I know, is that it is freaking awesome! Reason I think so, is something happened today. My pc @ work broke down&#8230; Hardware failure, can happen&#8230; So, took another pc from the stock, powered it up a bit, you know, extra ram, better video, installed <a href="http://ubuntu.com">ubuntu</a>, installed <a href="http://dropbox.com">dropbox</a>, et voila, back to work!</p>
<p>Ok, not exactly that fast, because I had to install several other programs, fix my ssh keys and setup a static ip, and wait a pretty long time to get all data synced back, but that was about it. Up and running again! I have my mail at <a href="http://google.com">google</a>, data at <a href="http://dropbox.com">dropbox</a> and notes at <a href="http://evernote.com">evernote</a>. Sadly enough I also have to use m$ stuff to develop on, but ey, got that on a virtual machine running somewhere on the network. And yes, got a <a href="http://dropbox.com">dropbox</a> installed there too, so no worries.</p>
<p>So, cloud? Yes please! I know, you gotta take some precautions, because you never know if one of those services will go down or just quits. That is why I like <a href="http://dropbox.com">dropbox</a>: I have local copies of all my files! And not just at work, but at all my machines! Mail is backed up trough a machine that does nothing but popping it, so nothing can get lost.</p>
<p>And if you have really, really private files, like some sex tape or whatever, yeah, do NOT put that one in the cloud. But I think that is pretty obvious, right?</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Cloud%3F%20Yes%20please%21%20-%20http%3A%2F%2Fzoap.org%2F%3Fp%3D621" title="Twitter"><img src="http://zoap.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;title=Cloud%3F%20Yes%20please%21&amp;body=The%20cloud%2C%20much%20can%20be%20said%20about%20it%2C%20and%20much%20has.%20Privacy%20issues%2C%20lock%20in%2C%C2%A0integrity%2C%20whatever.%20The%20only%20thing%20I%20know%2C%20is%20that%20it%20is%20freaking%20awesome%21%20Reason%20I%20think%20so%2C%20is%20something%20happened%20today.%20My%20pc%20%40%20work%20broke%20down...%20Hardware%20failure%2C%20can" title="Ping.fm"><img src="http://zoap.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://hellotxt.com/?status=Cloud%3F%20Yes%20please%21+http%3A%2F%2Fzoap.org%2F%3Fp%3D621" title="HelloTxt"><img src="http://zoap.org/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;title=Cloud%3F%20Yes%20please%21&amp;bodytext=The%20cloud%2C%20much%20can%20be%20said%20about%20it%2C%20and%20much%20has.%20Privacy%20issues%2C%20lock%20in%2C%C2%A0integrity%2C%20whatever.%20The%20only%20thing%20I%20know%2C%20is%20that%20it%20is%20freaking%20awesome%21%20Reason%20I%20think%20so%2C%20is%20something%20happened%20today.%20My%20pc%20%40%20work%20broke%20down...%20Hardware%20failure%2C%20can" title="Digg"><img src="http://zoap.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;title=Cloud%3F%20Yes%20please%21&amp;notes=The%20cloud%2C%20much%20can%20be%20said%20about%20it%2C%20and%20much%20has.%20Privacy%20issues%2C%20lock%20in%2C%C2%A0integrity%2C%20whatever.%20The%20only%20thing%20I%20know%2C%20is%20that%20it%20is%20freaking%20awesome%21%20Reason%20I%20think%20so%2C%20is%20something%20happened%20today.%20My%20pc%20%40%20work%20broke%20down...%20Hardware%20failure%2C%20can" title="del.icio.us"><img src="http://zoap.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;t=Cloud%3F%20Yes%20please%21" title="Facebook"><img src="http://zoap.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;title=Cloud%3F%20Yes%20please%21" title="Mixx"><img src="http://zoap.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;title=Cloud%3F%20Yes%20please%21&amp;annotation=The%20cloud%2C%20much%20can%20be%20said%20about%20it%2C%20and%20much%20has.%20Privacy%20issues%2C%20lock%20in%2C%C2%A0integrity%2C%20whatever.%20The%20only%20thing%20I%20know%2C%20is%20that%20it%20is%20freaking%20awesome%21%20Reason%20I%20think%20so%2C%20is%20something%20happened%20today.%20My%20pc%20%40%20work%20broke%20down...%20Hardware%20failure%2C%20can" title="Google Bookmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;Title=Cloud%3F%20Yes%20please%21" title="BlinkList"><img src="http://zoap.org/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Cloud%3F%20Yes%20please%21&amp;body=http%3A%2F%2Fzoap.org%2F%3Fp%3D621" title="email"><img src="http://zoap.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Furl"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Furl" alt="Furl" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;title=Cloud%3F%20Yes%20please%21" title="Live"><img src="http://zoap.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Ma.gnolia"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fzoap.org%2F%3Fp%3D621" title="Sphinn"><img src="http://zoap.org/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;bm_description=Cloud%3F%20Yes%20please%21&amp;plugin=soc" title="MisterWong"><img src="http://zoap.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;t=Cloud%3F%20Yes%20please%21" title="MySpace"><img src="http://zoap.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;title=Cloud%3F%20Yes%20please%21" title="Reddit"><img src="http://zoap.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;title=Cloud%3F%20Yes%20please%21" title="blogmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D621" title="Propeller"><img src="http://zoap.org/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;title=Cloud%3F%20Yes%20please%21" title="StumbleUpon"><img src="http://zoap.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fzoap.org%2F%3Fp%3D621" title="Technorati"><img src="http://zoap.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.hyves.nl/profilemanage/add/tips/?name=Cloud%3F%20Yes%20please%21&amp;text=The%20cloud%2C%20much%20can%20be%20said%20about%20it%2C%20and%20much%20has.%20Privacy%20issues%2C%20lock%20in%2C%C2%A0integrity%2C%20whatever.%20The%20only%20thing%20I%20know%2C%20is%20that%20it%20is%20freaking%20awesome%21%20Reason%20I%20think%20so%2C%20is%20something%20happened%20today.%20My%20pc%20%40%20work%20broke%20down...%20Hardware%20failure%2C%20can+http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;rating=5" title="Hyves"><img src="http://zoap.org/wp-content/plugins/sociable/images/hyves.png" title="Hyves" alt="Hyves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fzoap.org%2F%3Fp%3D621" title="Identi.ca"><img src="http://zoap.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fzoap.org%2F%3Fp%3D621&amp;title=Cloud%3F%20Yes%20please%21&amp;selection=The%20cloud%2C%20much%20can%20be%20said%20about%20it%2C%20and%20much%20has.%20Privacy%20issues%2C%20lock%20in%2C%C2%A0integrity%2C%20whatever.%20The%20only%20thing%20I%20know%2C%20is%20that%20it%20is%20freaking%20awesome%21%20Reason%20I%20think%20so%2C%20is%20something%20happened%20today.%20My%20pc%20%40%20work%20broke%20down...%20Hardware%20failure%2C%20can" title="Posterous"><img src="http://zoap.org/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://zoap.org/?feed=rss2&amp;p=621</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Electric deluxe</title>
		<link>http://zoap.org/?p=620</link>
		<comments>http://zoap.org/?p=620#comments</comments>
		<pubDate>Sat, 28 Aug 2010 15:45:25 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Party]]></category>

		<guid isPermaLink="false">http://zoap.org/?p=620</guid>
		<description><![CDATA[Mysteryland Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<div class="pp_items">
<div class="pp_item" align="center"><img src="http://static.pixelpipe.com/c17a0be6-d413-49c2-86f9-af33ac056618_b.jpg" style="max-width: 100%;" />
<p>Mysteryland </p>
</div>
</div>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Electric%20deluxe%20-%20http%3A%2F%2Fzoap.org%2F%3Fp%3D620" title="Twitter"><img src="http://zoap.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;title=Electric%20deluxe&amp;body=Mysteryland%20" title="Ping.fm"><img src="http://zoap.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://hellotxt.com/?status=Electric%20deluxe+http%3A%2F%2Fzoap.org%2F%3Fp%3D620" title="HelloTxt"><img src="http://zoap.org/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;title=Electric%20deluxe&amp;bodytext=Mysteryland%20" title="Digg"><img src="http://zoap.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;title=Electric%20deluxe&amp;notes=Mysteryland%20" title="del.icio.us"><img src="http://zoap.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;t=Electric%20deluxe" title="Facebook"><img src="http://zoap.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;title=Electric%20deluxe" title="Mixx"><img src="http://zoap.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;title=Electric%20deluxe&amp;annotation=Mysteryland%20" title="Google Bookmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;Title=Electric%20deluxe" title="BlinkList"><img src="http://zoap.org/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Electric%20deluxe&amp;body=http%3A%2F%2Fzoap.org%2F%3Fp%3D620" title="email"><img src="http://zoap.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Furl"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Furl" alt="Furl" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;title=Electric%20deluxe" title="Live"><img src="http://zoap.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Ma.gnolia"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fzoap.org%2F%3Fp%3D620" title="Sphinn"><img src="http://zoap.org/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;bm_description=Electric%20deluxe&amp;plugin=soc" title="MisterWong"><img src="http://zoap.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;t=Electric%20deluxe" title="MySpace"><img src="http://zoap.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;title=Electric%20deluxe" title="Reddit"><img src="http://zoap.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;title=Electric%20deluxe" title="blogmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D620" title="Propeller"><img src="http://zoap.org/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;title=Electric%20deluxe" title="StumbleUpon"><img src="http://zoap.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fzoap.org%2F%3Fp%3D620" title="Technorati"><img src="http://zoap.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.hyves.nl/profilemanage/add/tips/?name=Electric%20deluxe&amp;text=Mysteryland%20+http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;rating=5" title="Hyves"><img src="http://zoap.org/wp-content/plugins/sociable/images/hyves.png" title="Hyves" alt="Hyves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fzoap.org%2F%3Fp%3D620" title="Identi.ca"><img src="http://zoap.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fzoap.org%2F%3Fp%3D620&amp;title=Electric%20deluxe&amp;selection=Mysteryland%20" title="Posterous"><img src="http://zoap.org/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://zoap.org/?feed=rss2&amp;p=620</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Q dance</title>
		<link>http://zoap.org/?p=619</link>
		<comments>http://zoap.org/?p=619#comments</comments>
		<pubDate>Sat, 28 Aug 2010 14:56:18 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Party]]></category>

		<guid isPermaLink="false">http://zoap.org/?p=619</guid>
		<description><![CDATA[Mysteryland Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<div class="pp_items">
<div class="pp_item" align="center"><img src="http://static.pixelpipe.com/7f1ed87b-7c1f-4c21-92de-aff358249e81_b.jpg" style="max-width: 100%;" />
<p>Mysteryland </p>
</div>
</div>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Q%20dance%20-%20http%3A%2F%2Fzoap.org%2F%3Fp%3D619" title="Twitter"><img src="http://zoap.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;title=Q%20dance&amp;body=Mysteryland%20" title="Ping.fm"><img src="http://zoap.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://hellotxt.com/?status=Q%20dance+http%3A%2F%2Fzoap.org%2F%3Fp%3D619" title="HelloTxt"><img src="http://zoap.org/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;title=Q%20dance&amp;bodytext=Mysteryland%20" title="Digg"><img src="http://zoap.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;title=Q%20dance&amp;notes=Mysteryland%20" title="del.icio.us"><img src="http://zoap.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;t=Q%20dance" title="Facebook"><img src="http://zoap.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;title=Q%20dance" title="Mixx"><img src="http://zoap.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;title=Q%20dance&amp;annotation=Mysteryland%20" title="Google Bookmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;Title=Q%20dance" title="BlinkList"><img src="http://zoap.org/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Q%20dance&amp;body=http%3A%2F%2Fzoap.org%2F%3Fp%3D619" title="email"><img src="http://zoap.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Furl"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Furl" alt="Furl" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;title=Q%20dance" title="Live"><img src="http://zoap.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Ma.gnolia"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fzoap.org%2F%3Fp%3D619" title="Sphinn"><img src="http://zoap.org/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;bm_description=Q%20dance&amp;plugin=soc" title="MisterWong"><img src="http://zoap.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;t=Q%20dance" title="MySpace"><img src="http://zoap.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;title=Q%20dance" title="Reddit"><img src="http://zoap.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;title=Q%20dance" title="blogmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D619" title="Propeller"><img src="http://zoap.org/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;title=Q%20dance" title="StumbleUpon"><img src="http://zoap.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fzoap.org%2F%3Fp%3D619" title="Technorati"><img src="http://zoap.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.hyves.nl/profilemanage/add/tips/?name=Q%20dance&amp;text=Mysteryland%20+http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;rating=5" title="Hyves"><img src="http://zoap.org/wp-content/plugins/sociable/images/hyves.png" title="Hyves" alt="Hyves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fzoap.org%2F%3Fp%3D619" title="Identi.ca"><img src="http://zoap.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fzoap.org%2F%3Fp%3D619&amp;title=Q%20dance&amp;selection=Mysteryland%20" title="Posterous"><img src="http://zoap.org/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://zoap.org/?feed=rss2&amp;p=619</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysteryland</title>
		<link>http://zoap.org/?p=618</link>
		<comments>http://zoap.org/?p=618#comments</comments>
		<pubDate>Sat, 28 Aug 2010 13:24:16 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Party]]></category>

		<guid isPermaLink="false">http://zoap.org/?p=618</guid>
		<description><![CDATA[Cool! Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<div class="pp_items">
<div class="pp_item" align="center"><img src="http://static.pixelpipe.com/54c69838-179f-4f30-a0d5-c62c57a426b3_b.jpg" style="max-width: 100%;" />
<p>Cool!</p>
</div>
</div>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Mysteryland%20%20-%20http%3A%2F%2Fzoap.org%2F%3Fp%3D618" title="Twitter"><img src="http://zoap.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;title=Mysteryland%20&amp;body=Cool%21" title="Ping.fm"><img src="http://zoap.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://hellotxt.com/?status=Mysteryland%20+http%3A%2F%2Fzoap.org%2F%3Fp%3D618" title="HelloTxt"><img src="http://zoap.org/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;title=Mysteryland%20&amp;bodytext=Cool%21" title="Digg"><img src="http://zoap.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;title=Mysteryland%20&amp;notes=Cool%21" title="del.icio.us"><img src="http://zoap.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;t=Mysteryland%20" title="Facebook"><img src="http://zoap.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;title=Mysteryland%20" title="Mixx"><img src="http://zoap.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;title=Mysteryland%20&amp;annotation=Cool%21" title="Google Bookmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;Title=Mysteryland%20" title="BlinkList"><img src="http://zoap.org/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Mysteryland%20&amp;body=http%3A%2F%2Fzoap.org%2F%3Fp%3D618" title="email"><img src="http://zoap.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Furl"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Furl" alt="Furl" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;title=Mysteryland%20" title="Live"><img src="http://zoap.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Ma.gnolia"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fzoap.org%2F%3Fp%3D618" title="Sphinn"><img src="http://zoap.org/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;bm_description=Mysteryland%20&amp;plugin=soc" title="MisterWong"><img src="http://zoap.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;t=Mysteryland%20" title="MySpace"><img src="http://zoap.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;title=Mysteryland%20" title="Reddit"><img src="http://zoap.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;title=Mysteryland%20" title="blogmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D618" title="Propeller"><img src="http://zoap.org/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;title=Mysteryland%20" title="StumbleUpon"><img src="http://zoap.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fzoap.org%2F%3Fp%3D618" title="Technorati"><img src="http://zoap.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.hyves.nl/profilemanage/add/tips/?name=Mysteryland%20&amp;text=Cool%21+http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;rating=5" title="Hyves"><img src="http://zoap.org/wp-content/plugins/sociable/images/hyves.png" title="Hyves" alt="Hyves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fzoap.org%2F%3Fp%3D618" title="Identi.ca"><img src="http://zoap.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fzoap.org%2F%3Fp%3D618&amp;title=Mysteryland%20&amp;selection=Cool%21" title="Posterous"><img src="http://zoap.org/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://zoap.org/?feed=rss2&amp;p=618</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whoopie</title>
		<link>http://zoap.org/?p=617</link>
		<comments>http://zoap.org/?p=617#comments</comments>
		<pubDate>Wed, 25 Aug 2010 16:26:44 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Animals]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://zoap.org/?p=617</guid>
		<description><![CDATA[Mom in law&#8217;s cool dog. With his toys in the background Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<div class="pp_items">
<div class="pp_item" align="center"><img src="http://static.pixelpipe.com/27547280-759d-4013-8ff9-6449c58bca7e_b.jpg" style="max-width: 100%;" />
<p>Mom in law&#8217;s cool dog. With his toys in the background <img src='http://zoap.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>
</div>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Whoopie%20-%20http%3A%2F%2Fzoap.org%2F%3Fp%3D617" title="Twitter"><img src="http://zoap.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;title=Whoopie&amp;body=Mom%20in%20law%27s%20cool%20dog.%20With%20his%20toys%20in%20the%20background%20%3A%29" title="Ping.fm"><img src="http://zoap.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://hellotxt.com/?status=Whoopie+http%3A%2F%2Fzoap.org%2F%3Fp%3D617" title="HelloTxt"><img src="http://zoap.org/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;title=Whoopie&amp;bodytext=Mom%20in%20law%27s%20cool%20dog.%20With%20his%20toys%20in%20the%20background%20%3A%29" title="Digg"><img src="http://zoap.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;title=Whoopie&amp;notes=Mom%20in%20law%27s%20cool%20dog.%20With%20his%20toys%20in%20the%20background%20%3A%29" title="del.icio.us"><img src="http://zoap.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;t=Whoopie" title="Facebook"><img src="http://zoap.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;title=Whoopie" title="Mixx"><img src="http://zoap.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;title=Whoopie&amp;annotation=Mom%20in%20law%27s%20cool%20dog.%20With%20his%20toys%20in%20the%20background%20%3A%29" title="Google Bookmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;Title=Whoopie" title="BlinkList"><img src="http://zoap.org/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Whoopie&amp;body=http%3A%2F%2Fzoap.org%2F%3Fp%3D617" title="email"><img src="http://zoap.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Furl"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Furl" alt="Furl" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;title=Whoopie" title="Live"><img src="http://zoap.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Ma.gnolia"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fzoap.org%2F%3Fp%3D617" title="Sphinn"><img src="http://zoap.org/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;bm_description=Whoopie&amp;plugin=soc" title="MisterWong"><img src="http://zoap.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;t=Whoopie" title="MySpace"><img src="http://zoap.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;title=Whoopie" title="Reddit"><img src="http://zoap.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;title=Whoopie" title="blogmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D617" title="Propeller"><img src="http://zoap.org/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;title=Whoopie" title="StumbleUpon"><img src="http://zoap.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fzoap.org%2F%3Fp%3D617" title="Technorati"><img src="http://zoap.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.hyves.nl/profilemanage/add/tips/?name=Whoopie&amp;text=Mom%20in%20law%27s%20cool%20dog.%20With%20his%20toys%20in%20the%20background%20%3A%29+http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;rating=5" title="Hyves"><img src="http://zoap.org/wp-content/plugins/sociable/images/hyves.png" title="Hyves" alt="Hyves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fzoap.org%2F%3Fp%3D617" title="Identi.ca"><img src="http://zoap.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fzoap.org%2F%3Fp%3D617&amp;title=Whoopie&amp;selection=Mom%20in%20law%27s%20cool%20dog.%20With%20his%20toys%20in%20the%20background%20%3A%29" title="Posterous"><img src="http://zoap.org/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://zoap.org/?feed=rss2&amp;p=617</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another nice bike</title>
		<link>http://zoap.org/?p=616</link>
		<comments>http://zoap.org/?p=616#comments</comments>
		<pubDate>Tue, 24 Aug 2010 11:28:33 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://zoap.org/?p=616</guid>
		<description><![CDATA[Not motorized, but another nice looking bike i found at work Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<div class="pp_items">
<div class="pp_item" align="center"><img src="http://static.pixelpipe.com/78740723-3831-4af6-8afa-6da401491523_b.jpg" style="max-width: 100%;" />
<p>Not motorized, but another nice looking bike i found at work </p>
</div>
</div>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Another%20nice%20bike%20-%20http%3A%2F%2Fzoap.org%2F%3Fp%3D616" title="Twitter"><img src="http://zoap.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;title=Another%20nice%20bike&amp;body=Not%20motorized%2C%20but%20another%20nice%20looking%20bike%20i%20found%20at%20work%20" title="Ping.fm"><img src="http://zoap.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://hellotxt.com/?status=Another%20nice%20bike+http%3A%2F%2Fzoap.org%2F%3Fp%3D616" title="HelloTxt"><img src="http://zoap.org/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;title=Another%20nice%20bike&amp;bodytext=Not%20motorized%2C%20but%20another%20nice%20looking%20bike%20i%20found%20at%20work%20" title="Digg"><img src="http://zoap.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;title=Another%20nice%20bike&amp;notes=Not%20motorized%2C%20but%20another%20nice%20looking%20bike%20i%20found%20at%20work%20" title="del.icio.us"><img src="http://zoap.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;t=Another%20nice%20bike" title="Facebook"><img src="http://zoap.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;title=Another%20nice%20bike" title="Mixx"><img src="http://zoap.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;title=Another%20nice%20bike&amp;annotation=Not%20motorized%2C%20but%20another%20nice%20looking%20bike%20i%20found%20at%20work%20" title="Google Bookmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;Title=Another%20nice%20bike" title="BlinkList"><img src="http://zoap.org/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Another%20nice%20bike&amp;body=http%3A%2F%2Fzoap.org%2F%3Fp%3D616" title="email"><img src="http://zoap.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Furl"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Furl" alt="Furl" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;title=Another%20nice%20bike" title="Live"><img src="http://zoap.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Ma.gnolia"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fzoap.org%2F%3Fp%3D616" title="Sphinn"><img src="http://zoap.org/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;bm_description=Another%20nice%20bike&amp;plugin=soc" title="MisterWong"><img src="http://zoap.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;t=Another%20nice%20bike" title="MySpace"><img src="http://zoap.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;title=Another%20nice%20bike" title="Reddit"><img src="http://zoap.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;title=Another%20nice%20bike" title="blogmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D616" title="Propeller"><img src="http://zoap.org/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;title=Another%20nice%20bike" title="StumbleUpon"><img src="http://zoap.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fzoap.org%2F%3Fp%3D616" title="Technorati"><img src="http://zoap.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.hyves.nl/profilemanage/add/tips/?name=Another%20nice%20bike&amp;text=Not%20motorized%2C%20but%20another%20nice%20looking%20bike%20i%20found%20at%20work%20+http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;rating=5" title="Hyves"><img src="http://zoap.org/wp-content/plugins/sociable/images/hyves.png" title="Hyves" alt="Hyves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fzoap.org%2F%3Fp%3D616" title="Identi.ca"><img src="http://zoap.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fzoap.org%2F%3Fp%3D616&amp;title=Another%20nice%20bike&amp;selection=Not%20motorized%2C%20but%20another%20nice%20looking%20bike%20i%20found%20at%20work%20" title="Posterous"><img src="http://zoap.org/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://zoap.org/?feed=rss2&amp;p=616</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tapes</title>
		<link>http://zoap.org/?p=615</link>
		<comments>http://zoap.org/?p=615#comments</comments>
		<pubDate>Tue, 24 Aug 2010 10:30:24 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://zoap.org/?p=615</guid>
		<description><![CDATA[Changing the tapes Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<div class="pp_items">
<div class="pp_item" align="center"><img src="http://static.pixelpipe.com/708c8c8c-b7c3-4061-9141-ef43cc8e4072_b.jpg" style="max-width: 100%;" />
<p>Changing the tapes</p>
</div>
</div>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Tapes%20-%20http%3A%2F%2Fzoap.org%2F%3Fp%3D615" title="Twitter"><img src="http://zoap.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;title=Tapes&amp;body=Changing%20the%20tapes" title="Ping.fm"><img src="http://zoap.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://hellotxt.com/?status=Tapes+http%3A%2F%2Fzoap.org%2F%3Fp%3D615" title="HelloTxt"><img src="http://zoap.org/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;title=Tapes&amp;bodytext=Changing%20the%20tapes" title="Digg"><img src="http://zoap.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;title=Tapes&amp;notes=Changing%20the%20tapes" title="del.icio.us"><img src="http://zoap.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;t=Tapes" title="Facebook"><img src="http://zoap.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;title=Tapes" title="Mixx"><img src="http://zoap.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;title=Tapes&amp;annotation=Changing%20the%20tapes" title="Google Bookmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;Title=Tapes" title="BlinkList"><img src="http://zoap.org/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Tapes&amp;body=http%3A%2F%2Fzoap.org%2F%3Fp%3D615" title="email"><img src="http://zoap.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Furl"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Furl" alt="Furl" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;title=Tapes" title="Live"><img src="http://zoap.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Ma.gnolia"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fzoap.org%2F%3Fp%3D615" title="Sphinn"><img src="http://zoap.org/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;bm_description=Tapes&amp;plugin=soc" title="MisterWong"><img src="http://zoap.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;t=Tapes" title="MySpace"><img src="http://zoap.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;title=Tapes" title="Reddit"><img src="http://zoap.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;title=Tapes" title="blogmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D615" title="Propeller"><img src="http://zoap.org/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;title=Tapes" title="StumbleUpon"><img src="http://zoap.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fzoap.org%2F%3Fp%3D615" title="Technorati"><img src="http://zoap.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.hyves.nl/profilemanage/add/tips/?name=Tapes&amp;text=Changing%20the%20tapes+http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;rating=5" title="Hyves"><img src="http://zoap.org/wp-content/plugins/sociable/images/hyves.png" title="Hyves" alt="Hyves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fzoap.org%2F%3Fp%3D615" title="Identi.ca"><img src="http://zoap.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fzoap.org%2F%3Fp%3D615&amp;title=Tapes&amp;selection=Changing%20the%20tapes" title="Posterous"><img src="http://zoap.org/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://zoap.org/?feed=rss2&amp;p=615</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New projects, new style</title>
		<link>http://zoap.org/?p=611</link>
		<comments>http://zoap.org/?p=611#comments</comments>
		<pubDate>Tue, 24 Aug 2010 09:10:48 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[open source]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://zoap.org/?p=611</guid>
		<description><![CDATA[I&#8217;m going to start on a new project at work soon: porting the main legacy application to a more modern and flexible piece of equipment. The application is pretty huge and completely clipper based. It will be a pretty daunting task to port it, but ey, challenges are good! So, I already decided to port [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to start on a new project at work soon: porting the main legacy application to a more modern and flexible piece of equipment. The application is pretty huge and completely <a href="http://en.wikipedia.org/wiki/Clipper_(programming_language)">clipper</a> based. It will be a pretty daunting task to port it, but ey, challenges are good! So, I already decided to port it to a web based application. Why? Because I find web based applications way easier to maintain then client apps. I mean, I just update once and everybody is updated! Sure, there are ways to achieve that for clients too of course, I just prefer this way.</p>
<p>Another great advantage is, there is no need to install anything on site! And I love that! Also, all users can login from anywhere, so no more excuses when they are on holidays! So, what technique to use? We use loads of <a href="http://www.asp.net/">asp.net</a> here, loaded up with <a href="http://telerik.com">telerik</a> stuff. Sure, pretty nice stuff, but man, I&#8217;ve seen too many times shit just breaks! I mean, <a href="http://msdn.microsoft.com/en-us/vstudio/default.aspx">visual studio</a> is a pretty sweet tool, but when it breaks, you&#8217;re fcuked!</p>
<p>I know, you can write your apps in <a href="http://en.wikipedia.org/wiki/Notepad_(software)">notepad</a> if really necessary, and compile from the prompt, but sjees, that just does not work very well. Well, not for me at least. So, decided to go for <a href="http://php.net">php</a>. I will use <a href="http://codeigniter.com/">codeigniter</a> as a framework, because, well, why built your own? Sure, building your own is cool, but just don&#8217;t have the time to do that. Yeah, I work in a business. And well, you know, time == money!</p>
<p>For me, using <a href="http://php.net">php</a> has several advantages over using <a href="http://asp.net">asp.net</a>:</p>
<ul>
<li>no need to compile, so can implement fixes really fast</li>
<li>make use of opensource IDE</li>
<li>run <a href="http://apache.org">apache</a> on <a href="http://linux.org">linux</a> (my favorite choice of OS)</li>
<li>no need to buy any licenses (and that makes the bosses happy, right?)</li>
<li><a href="http://vicidial.org">dialer software</a> is also php, so one technology for all</li>
</ul>
<p>So, looking forward to get started here! Gotta do loads of paperwork first though&#8230; Digg into the legacy application and analyze it thoroughly before I can write any code at all. Nothing on paper is a guaranteed fail! Not the favorite part, but ey, what&#8217;s gotta be done, has gotta be done!</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=New%20projects%2C%20new%20style%20-%20http%3A%2F%2Fzoap.org%2F%3Fp%3D611" title="Twitter"><img src="http://zoap.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;title=New%20projects%2C%20new%20style&amp;body=I%27m%20going%20to%20start%20on%20a%20new%20project%20at%20work%20soon%3A%20porting%20the%20main%20legacy%20application%20to%20a%20more%20modern%20and%20flexible%20piece%20of%20equipment.%20The%20application%20is%20pretty%20huge%20and%20completely%20clipper%20based.%20It%20will%20be%20a%20pretty%20daunting%20task%20to%20port%20it%2C%20but%20ey%2C" title="Ping.fm"><img src="http://zoap.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://hellotxt.com/?status=New%20projects%2C%20new%20style+http%3A%2F%2Fzoap.org%2F%3Fp%3D611" title="HelloTxt"><img src="http://zoap.org/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;title=New%20projects%2C%20new%20style&amp;bodytext=I%27m%20going%20to%20start%20on%20a%20new%20project%20at%20work%20soon%3A%20porting%20the%20main%20legacy%20application%20to%20a%20more%20modern%20and%20flexible%20piece%20of%20equipment.%20The%20application%20is%20pretty%20huge%20and%20completely%20clipper%20based.%20It%20will%20be%20a%20pretty%20daunting%20task%20to%20port%20it%2C%20but%20ey%2C" title="Digg"><img src="http://zoap.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;title=New%20projects%2C%20new%20style&amp;notes=I%27m%20going%20to%20start%20on%20a%20new%20project%20at%20work%20soon%3A%20porting%20the%20main%20legacy%20application%20to%20a%20more%20modern%20and%20flexible%20piece%20of%20equipment.%20The%20application%20is%20pretty%20huge%20and%20completely%20clipper%20based.%20It%20will%20be%20a%20pretty%20daunting%20task%20to%20port%20it%2C%20but%20ey%2C" title="del.icio.us"><img src="http://zoap.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;t=New%20projects%2C%20new%20style" title="Facebook"><img src="http://zoap.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;title=New%20projects%2C%20new%20style" title="Mixx"><img src="http://zoap.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;title=New%20projects%2C%20new%20style&amp;annotation=I%27m%20going%20to%20start%20on%20a%20new%20project%20at%20work%20soon%3A%20porting%20the%20main%20legacy%20application%20to%20a%20more%20modern%20and%20flexible%20piece%20of%20equipment.%20The%20application%20is%20pretty%20huge%20and%20completely%20clipper%20based.%20It%20will%20be%20a%20pretty%20daunting%20task%20to%20port%20it%2C%20but%20ey%2C" title="Google Bookmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;Title=New%20projects%2C%20new%20style" title="BlinkList"><img src="http://zoap.org/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=New%20projects%2C%20new%20style&amp;body=http%3A%2F%2Fzoap.org%2F%3Fp%3D611" title="email"><img src="http://zoap.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Furl"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Furl" alt="Furl" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;title=New%20projects%2C%20new%20style" title="Live"><img src="http://zoap.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Ma.gnolia"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fzoap.org%2F%3Fp%3D611" title="Sphinn"><img src="http://zoap.org/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;bm_description=New%20projects%2C%20new%20style&amp;plugin=soc" title="MisterWong"><img src="http://zoap.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;t=New%20projects%2C%20new%20style" title="MySpace"><img src="http://zoap.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;title=New%20projects%2C%20new%20style" title="Reddit"><img src="http://zoap.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;title=New%20projects%2C%20new%20style" title="blogmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D611" title="Propeller"><img src="http://zoap.org/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;title=New%20projects%2C%20new%20style" title="StumbleUpon"><img src="http://zoap.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fzoap.org%2F%3Fp%3D611" title="Technorati"><img src="http://zoap.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.hyves.nl/profilemanage/add/tips/?name=New%20projects%2C%20new%20style&amp;text=I%27m%20going%20to%20start%20on%20a%20new%20project%20at%20work%20soon%3A%20porting%20the%20main%20legacy%20application%20to%20a%20more%20modern%20and%20flexible%20piece%20of%20equipment.%20The%20application%20is%20pretty%20huge%20and%20completely%20clipper%20based.%20It%20will%20be%20a%20pretty%20daunting%20task%20to%20port%20it%2C%20but%20ey%2C+http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;rating=5" title="Hyves"><img src="http://zoap.org/wp-content/plugins/sociable/images/hyves.png" title="Hyves" alt="Hyves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fzoap.org%2F%3Fp%3D611" title="Identi.ca"><img src="http://zoap.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fzoap.org%2F%3Fp%3D611&amp;title=New%20projects%2C%20new%20style&amp;selection=I%27m%20going%20to%20start%20on%20a%20new%20project%20at%20work%20soon%3A%20porting%20the%20main%20legacy%20application%20to%20a%20more%20modern%20and%20flexible%20piece%20of%20equipment.%20The%20application%20is%20pretty%20huge%20and%20completely%20clipper%20based.%20It%20will%20be%20a%20pretty%20daunting%20task%20to%20port%20it%2C%20but%20ey%2C" title="Posterous"><img src="http://zoap.org/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://zoap.org/?feed=rss2&amp;p=611</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smoke lounge</title>
		<link>http://zoap.org/?p=610</link>
		<comments>http://zoap.org/?p=610#comments</comments>
		<pubDate>Mon, 16 Aug 2010 09:03:10 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://zoap.org/?p=610</guid>
		<description><![CDATA[The place where i have my smokes at work. Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<div class="pp_items">
<div class="pp_item" align="center"><img src="http://static.pixelpipe.com/33886ada-cec9-4a2f-9bff-301baa36ec4b_b.jpg" style="max-width: 100%;" />
<p>The place where i have my smokes at work.</p>
</div>
</div>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Smoke%20lounge%20-%20http%3A%2F%2Fzoap.org%2F%3Fp%3D610" title="Twitter"><img src="http://zoap.org/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;title=Smoke%20lounge&amp;body=The%20place%20where%20i%20have%20my%20smokes%20at%20work." title="Ping.fm"><img src="http://zoap.org/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://hellotxt.com/?status=Smoke%20lounge+http%3A%2F%2Fzoap.org%2F%3Fp%3D610" title="HelloTxt"><img src="http://zoap.org/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;title=Smoke%20lounge&amp;bodytext=The%20place%20where%20i%20have%20my%20smokes%20at%20work." title="Digg"><img src="http://zoap.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;title=Smoke%20lounge&amp;notes=The%20place%20where%20i%20have%20my%20smokes%20at%20work." title="del.icio.us"><img src="http://zoap.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;t=Smoke%20lounge" title="Facebook"><img src="http://zoap.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;title=Smoke%20lounge" title="Mixx"><img src="http://zoap.org/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;title=Smoke%20lounge&amp;annotation=The%20place%20where%20i%20have%20my%20smokes%20at%20work." title="Google Bookmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;Title=Smoke%20lounge" title="BlinkList"><img src="http://zoap.org/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Smoke%20lounge&amp;body=http%3A%2F%2Fzoap.org%2F%3Fp%3D610" title="email"><img src="http://zoap.org/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Furl"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Furl" alt="Furl" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;title=Smoke%20lounge" title="Live"><img src="http://zoap.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Ma.gnolia"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fzoap.org%2F%3Fp%3D610" title="Sphinn"><img src="http://zoap.org/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;bm_description=Smoke%20lounge&amp;plugin=soc" title="MisterWong"><img src="http://zoap.org/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;t=Smoke%20lounge" title="MySpace"><img src="http://zoap.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://zoap.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;title=Smoke%20lounge" title="Reddit"><img src="http://zoap.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;title=Smoke%20lounge" title="blogmarks"><img src="http://zoap.org/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D610" title="Propeller"><img src="http://zoap.org/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;title=Smoke%20lounge" title="StumbleUpon"><img src="http://zoap.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fzoap.org%2F%3Fp%3D610" title="Technorati"><img src="http://zoap.org/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.hyves.nl/profilemanage/add/tips/?name=Smoke%20lounge&amp;text=The%20place%20where%20i%20have%20my%20smokes%20at%20work.+http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;rating=5" title="Hyves"><img src="http://zoap.org/wp-content/plugins/sociable/images/hyves.png" title="Hyves" alt="Hyves" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fzoap.org%2F%3Fp%3D610" title="Identi.ca"><img src="http://zoap.org/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fzoap.org%2F%3Fp%3D610&amp;title=Smoke%20lounge&amp;selection=The%20place%20where%20i%20have%20my%20smokes%20at%20work." title="Posterous"><img src="http://zoap.org/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://zoap.org/?feed=rss2&amp;p=610</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
