<?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>Proudcloud&#187; PROUDCLOUD | BLOG</title>
	<atom:link href="http://blog.proudcloud.net/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.proudcloud.net</link>
	<description>BLOG</description>
	<lastBuildDate>Mon, 19 Jul 2010 00:10:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Is Scala the New Ruby?</title>
		<link>http://blog.proudcloud.net/2009/05/is-scala-is-the-new-ruby/</link>
		<comments>http://blog.proudcloud.net/2009/05/is-scala-is-the-new-ruby/#comments</comments>
		<pubDate>Sat, 23 May 2009 19:31:14 +0000</pubDate>
		<dc:creator>Paul Pajo</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Debasish Gosh]]></category>
		<category><![CDATA[Lift]]></category>
		<category><![CDATA[Scala]]></category>
		<category><![CDATA[Steve Vinoski]]></category>
		<category><![CDATA[Web Development Framework]]></category>

		<guid isPermaLink="false">http://blog.proudcloud.net/?p=289</guid>
		<description><![CDATA[You&#8217;ve probably always have associated Ruby on Rails with Twitter, but Scala has recently been getting the attention after Twitter&#8217;s back-end code are slowly being migrated from Ruby on Rails to Scala: &#8220;For Payne, who oversees Twitter&#8217;s API development, your ticket to the web promised land is Scala, the next-generation language developed by Martin Odersky [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ve probably always have associated Ruby on Rails with Twitter, but 
<a title="Scala on the Web"  href="http://www.scala-lang.org/" target="_self" onclick="javascript:pageTracker._trackPageview('/external/www.scala-lang.org/');" >Scala</a> has recently been getting the attention after Twitter&#8217;s back-end code are slowly being migrated from 
<a title="Twitter jilts Ruby for Scala"  href="http://www.theregister.co.uk/2009/04/01/twitter_on_scala/" target="_self" onclick="javascript:pageTracker._trackPageview('/external/www.theregister.co.uk/2009/04/01/twitter_on_scala/');" >Ruby on Rails to Scala</a>:</p>
<blockquote><p>&#8220;For Payne, who oversees Twitter&#8217;s API development, your ticket to the web promised land is Scala, the next-generation language developed by Martin Odersky at Switzerland&#8217;s École Polytechnique Fédérale de Lausanne.</p>
<p>Sometime in 2007, Twitter came to the realization that its Ruby-based message queuing system couldn&#8217;t keep up with all that Web2.0rhea. &#8220;It grew with us for a number of months, and then, at a certain point, it just hit a wall,&#8221; Payne said. &#8220;And that wall was not so much it code but in limitations in Ruby virtual machine. There&#8217;s a lot of things that Ruby is great at, but long running processes? Particularly memory intensive ones? Not so much.&#8221;</p>
<p>By mid-2008, one of these Ruby message queues completely crashed and developers needed two and a half hours to shove the dropped Tweets back through the system. When your game is micro-blogging, that&#8217;s a lifetime. Then, in his spare time, one developer ported the code to Scala. According to Payne, the Scala queue could process the same message backlog in 20 seconds.&#8221;</p></blockquote>
<p>If you&#8217;re a Ruby lover, you&#8217;d be asking the same question in your head &#8211; why would you want to use Scala (especially for Twitter-like applications)?:</p>
<blockquote><p>&#8220;<strong>Bill Venners</strong>: <span style="color: #ff0000;">I’m curious, and the Ruby folks will want it spelled out: Can you elaborate on what you felt the Ruby language lacked in the area of reliable, high performance code</span>?</p>
<p><strong>Steve Jenson</strong>:One of the things that I’ve found throughout my career is the need to have long-lived processes. And Ruby, like many scripting languages, has trouble being an environment for long lived processes. But the JVM is very good at that, because it’s been optimized for that over the last ten years. So Scala provides a basis for writing long-lived servers, and that’s primarily what we use it for at Twitter right now. Another thing we really like about Scala is static typing that’s not painful. Sometimes it would be really nice in Ruby to say things like, here’s an optional type annotation. This is the type we really expect to see here. And we find that really useful in Scala, to be able to specify the type information.</p>
<p><strong>Robey Pointer</strong>: Also, Ruby doesn’t really have good thread support yet. It’s getting better, but when we were writing these servers, green threads were the only thing available. Green threads don&#8217;t use the actual operating system’s kernel threads. They sort of emulate threads by periodically stopping what they are doing and checking whether another “thread” wants to run. So Ruby is emulating threads within a single core or a processor. We wanted to run on multi-core servers that don’t have an infinite amount of memory. And if you don’t have good threading support, you really need multiple processes. And because Ruby’s garbage collector is not quite as good as Java’s, each process uses up a lot of memory. We can’t really run very many Ruby daemon processes on a single machine without consuming large amounts of memory. Whereas with running things on the JVM we can run many threads in the same heap, and let that one process take all the machine’s memory for its playground.&#8221;</p></blockquote>
<p>Curious now? If you want to learn more about
<a title="Home of Scala"  href="http://www.scala-lang.org/" target="_self" onclick="javascript:pageTracker._trackPageview('/external/www.scala-lang.org/');" > Scala</a> try this 
<a title="Scala on the Web"  href="http://www.scala-lang.org/" target="_self" onclick="javascript:pageTracker._trackPageview('/external/www.scala-lang.org/');" >site</a> and of course play around with 
<a title="Lift, Scala Web Framework"  href="http://liftweb.net/" target="_self" onclick="javascript:pageTracker._trackPageview('/external/liftweb.net/');" >Lift, the web framework for Scala</a>. Here&#8217;s a 
<a title="Scala and Lift - Functional Recipes for the Web"  href="http://steve.vinoski.net/pdf/IC-Scala_and_Lift.pdf" target="_self" onclick="javascript:pageTracker._trackPageview('/external/steve.vinoski.net/pdf/IC-Scala_and_Lift.pdf');" >great .pdf file by Debasish Gosh and Steve Vinoski on Scala and Lift</a></p>
<p>Oh yes, there will still be those who will defend 
<a title="Ruby vs. Scala"  href="http://unlimitednovelty.com/2009/04/twitter-blaming-ruby-for-their-mistakes.html" target="_self" onclick="javascript:pageTracker._trackPageview('/external/unlimitednovelty.com/2009/04/twitter-blaming-ruby-for-their-mistakes.html');" >Ruby for Twitter</a>:</p>
<blockquote><p>&#8220;I would be curious to hear what arguments, if any, Twitter had against JRuby, or other message queues. The public arguments I&#8217;ve seen, and the decision making process I&#8217;m inferring from it, seem like an incredibly inept one. This belies something I&#8217;ve heard about those who deal with the Twitter people: their scaling problems come not so much from Ruby but from bad design decisions.</p>
<p>Overall, I think they&#8217;re missing the point of Ruby. Ruby shines as an automation and &#8220;glue code&#8221; language, providing you with a swiss army knife that lets you easily integrate many software components writen in whatever language you want into a single, cohesive application. Message queues are commoditized in the software world, and clients exist for virtually all of them in the Ruby world. AMQP, XMPP, Stomp, you name it and chances are Ruby speaks it. The 
<a  href="http://www.engineyard.com/" onclick="javascript:pageTracker._trackPageview('/external/www.engineyard.com/');" >EngineYard</a> folks are doing wonderful things with Ruby and XMPP/AMQP in their 
<a  href="http://www.engineyard.com/vertebra/" onclick="javascript:pageTracker._trackPageview('/external/www.engineyard.com/vertebra/');" >Vertebra</a> and 
<a  href="http://www.infoq.com/news/2008/11/nanite" onclick="javascript:pageTracker._trackPageview('/external/www.infoq.com/news/2008/11/nanite');" >Nanite</a> projects. The Twitter folks are&#8230; off reinventing message queues in Ruby, then blaming Ruby when their implementation turns out to be slow.&#8221;</p></blockquote>
<p>Posted by Paul
<a title="The Pageman in Multiply"  href="http://pageman.multiply.com" target="_self" onclick="javascript:pageTracker._trackPageview('/external/pageman.multiply.com');" > &#8220;The Pageman&#8221;</a> Pajo</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.proudcloud.net/2009/05/is-scala-is-the-new-ruby/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Socialsapien Effect</title>
		<link>http://blog.proudcloud.net/2009/05/the-socialsapien-effect/</link>
		<comments>http://blog.proudcloud.net/2009/05/the-socialsapien-effect/#comments</comments>
		<pubDate>Tue, 05 May 2009 08:30:04 +0000</pubDate>
		<dc:creator>Jay Fajardo</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ambient webstream]]></category>
		<category><![CDATA[ambient-awareness]]></category>
		<category><![CDATA[cocooning]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[hyper-connected]]></category>
		<category><![CDATA[jollibee]]></category>
		<category><![CDATA[lifestreams]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[social networks]]></category>
		<category><![CDATA[social-isolation]]></category>
		<category><![CDATA[social-sapien]]></category>
		<category><![CDATA[socialsapien]]></category>
		<category><![CDATA[tropical-hut-hamburger]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://blog.proudcloud.net/?p=4</guid>
		<description><![CDATA[Apparently, the notion of isolation was totally wrong. We're more social than ever!]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-280" style="margin: 10px;" title="social-hub" src="http://blog.proudcloud.net/wp-content/uploads/2009/05/social-hub.jpg" alt="social-hub" width="283" height="160" />I remember when critics of the internet warned how it would drive society into withdrawn lifestyles, shunning  healthy &#8216;real-world&#8217; relationships as we all retreat into our technology shielded holes.</p>
<p>
<a title="Definition of Cocooning"  href="http://en.wikipedia.org/wiki/Cocooning" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/en.wikipedia.org/wiki/Cocooning');" >Cocooning</a>&#8211; a trend that surfaced in the 90&#8242;s, gained significant momentum with the introduction of the web.</p>
<p>When Web 2.0 and social media hit, this trend was totally reversed as social networks connected us to a massive web of colleagues, business relations, classmates, relatives, and friends both old and new. As the platforms evolved into life streams, we became aware of every trivial event &#8211;sometimes in real-time&#8211;  that occur in the lives within our network.</p>
<p>The most dramatic result of this is the hyper-interaction we found ourselves in. The previously shallow and platonic exchanges we had with acquaintances had been transformed into active and sustained relationships. Even with those we had not seen in many years, the personality of the conversations are as if you&#8217;d only last spoken to them yesterday. Even the awareness of wide geographic distance is lost.</p>
<p>Here&#8217;s a sample exchange brought about by a Facebook status update I did.</p>
<p><strong>Jomike</strong> is a friend I now only see once a year at the La Salle Green Hills homecoming.</p>
<p><strong>Jonathan</strong> was a college classmate from De La Salle University I had last seen in 1989.</p>
<p>Neither personally knows each other but are both my connections.</p>
<blockquote><p>Me (Manila): &#8220;I just became aware of the 1/3 pound burger being sold by 
<a title="Jollibee on Wikipedia"  href="http://en.wikipedia.org/wiki/Jollibee" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/en.wikipedia.org/wiki/Jollibee');" >Jollibee</a>.&#8221;</p>
<p>Jomike (Cebu): &#8220;I still prefer the classic hamburger taste of Tropical Hut.&#8221;</p>
<p>Jonathan (Sydney): &#8220;You&#8217;ll be surprised to know that the Jollibee recipe is derived from the Tropical Hut one.&#8221;</p>
<p>Jomike (Cebu): &#8220;I still prefer Tropical Hut, it leaves that classic after-taste when you burp!&#8221;</p>
<p>Me (Manila): &#8220;Now I&#8217;m hungry.&#8221;</p></blockquote>
<p>Apparently, the notion of isolation was totally wrong. We&#8217;re more social than ever!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.proudcloud.net/2009/05/the-socialsapien-effect/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>LiveClick Interactive Streaming</title>
		<link>http://blog.proudcloud.net/2009/05/cloudworks-sneak-peek-liveclick-interactive-streaming/</link>
		<comments>http://blog.proudcloud.net/2009/05/cloudworks-sneak-peek-liveclick-interactive-streaming/#comments</comments>
		<pubDate>Sat, 02 May 2009 11:53:02 +0000</pubDate>
		<dc:creator>Jay Fajardo</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Cloudworks]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[interactive video]]></category>
		<category><![CDATA[ProudCloud]]></category>
		<category><![CDATA[streaming video]]></category>
		<category><![CDATA[video tags]]></category>

		<guid isPermaLink="false">http://blog.proudcloud.net/?p=252</guid>
		<description><![CDATA[Here's an early look at LiveClick, real-time clickable video streaming that takes interactive video on the web to a new level. You can click on the degfined hotspots in the running video even without pausing it.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;"><img class="aligncenter size-full wp-image-271" title="clickable3" src="http://blog.proudcloud.net/wp-content/uploads/2009/05/clickable3.jpg" alt="clickable3" /></p>
<p style="text-align: left;">The ProudCLoud team have many exciting things brewing in the 
<a  href="http://www.proudcloud.net/technology_-_PROUDCLOUD.NET.html" target="_blank"><strong>CLOUDWORKS</strong></a>, our innovation group that develops and incubates Web 2.0 and social computing technologies and ideas before releasing them into the wild.</p>
<p style="text-align: left;">Here&#8217;s an early look at <strong>LiveClick</strong>, real-time clickable video streaming that takes interactive video on the web to a new level. You can click on the pre-defined hotspots in the running video even without pausing it. 
<a title="LiveClick Demo"  href="http://www.proudcloud.net/LiveClick_-_PROUDCLOUD.NET.html" target="_blank">Click here to view our alpha demo.</a></p>
<p style="text-align: left;">Currently, videos are tagged and processed in-house. When we release LiveClick as a beta, user-defined tagging will allow users to upload their own videos and define clickable hotspots and the data links. Also, tags can be applied to label people and objects within the running video similar to Facebook&#8217;s photo tagging.</p>
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://blog.proudcloud.net/2009/05/cloudworks-sneak-peek-liveclick-interactive-streaming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Legends In Our Own Minds (Part 5)</title>
		<link>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-5/</link>
		<comments>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-5/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 23:21:50 +0000</pubDate>
		<dc:creator>Karl Quirino</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[advocacy]]></category>
		<category><![CDATA[Amazon.com]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[brand identity]]></category>
		<category><![CDATA[Charities]]></category>
		<category><![CDATA[communications]]></category>
		<category><![CDATA[communications strategy]]></category>
		<category><![CDATA[community development]]></category>
		<category><![CDATA[constituents]]></category>
		<category><![CDATA[content management systems]]></category>
		<category><![CDATA[Convergent Digital Solutions]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[donors]]></category>
		<category><![CDATA[eBay]]></category>
		<category><![CDATA[email newsletters]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[fundraising]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[grant applications]]></category>
		<category><![CDATA[information systems]]></category>
		<category><![CDATA[Karl Quirino]]></category>
		<category><![CDATA[Karl Quirino & Associates]]></category>
		<category><![CDATA[mashups]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[New Zealand]]></category>
		<category><![CDATA[NGOs]]></category>
		<category><![CDATA[Nonprofits]]></category>
		<category><![CDATA[Online forums]]></category>
		<category><![CDATA[open APIs]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[requests for proposals]]></category>
		<category><![CDATA[resonate]]></category>
		<category><![CDATA[Schools]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[sponsors]]></category>
		<category><![CDATA[TradeMe]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[virals]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[website builds]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[website development]]></category>
		<category><![CDATA[Wikipedia]]></category>
		<category><![CDATA[Wikis]]></category>

		<guid isPermaLink="false">http://blog.proudcloud.net/?p=236</guid>
		<description><![CDATA[MODELS OF TECH-SAVVY NONPROFITS USING SOCIAL MEDIA If you lead a social service organisation that isn’t doing as well as others, have you ever wondered why people don’t readily pick your noprofit organisation as their preferred charity or cause to support? Well, the plain truth is that people don’t decide who to give to on [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:11pt;font-family:&quot;"><strong>MODELS OF TECH-SAVVY NONPROFITS USING SOCIAL MEDIA</strong></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;" lang="EN"><img class="alignleft size-full wp-image-306" style="margin: 10px;" title="karlquirino-wordpress-image-legends-models-of-tech" src="http://karlquirino.wordpress.com/files/2009/04/karlquirino-wordpress-image-legends-models-of-tech.jpg" alt="karlquirino-wordpress-image-legends-models-of-tech" width="280" height="290" />If you lead a social service organisation that isn’t doing as well as others, have you ever wondered why people don’t readily pick your noprofit organisation as their preferred charity or cause to support? </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;" lang="EN">Well, the plain truth is that people don’t decide who to give to on the basis of facts, ratios and donation buttons. They decide who to give to based on the causes they care about or the charity brands that they have heard of and trust. </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;" lang="EN">If you think your nonprofit organisation deserves more public attention with an eye on acquiring some following, influence, social capital and reputation, then it&#8217;s time you started studying how others, who are ahead of you on the curve, are doing it right these days. Have a look at the websites of a few organisations whose links are listed below and get a feel of what social media is doing for them and what it can possibly do for you. </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p style="text-align:justify;margin:0;"><strong><span style="font-size:11pt;color:#666400;font-family:&quot;" lang="EN">
<a  href="http://www.oxfam.org.uk/" onclick="javascript:pageTracker._trackPageview('/external/www.oxfam.org.uk/');" ><span style="color:#666400;">OXFAM</span></a></span></strong></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;" lang="EN">A UK-founded charity, OXFAM’s website is a good example of how a nonprofit organisation has planned well its foray into to thw world of Web 2.0. This site contains some very good examples of broad areas of social media that other nonprofit organisations will find useful adopting when considering their jump into Web 2.0 -– <span style="color:#8c8900;">
<a  href="http://www.convergentdigital.co.nz/solutions/engage/#tagLine" onclick="javascript:pageTracker._trackPageview('/external/www.convergentdigital.co.nz/solutions/engage/?tagLine');" ><span style="color:#8c8900;">engage</span></a></span>, <span style="color:#8c8900;">
<a  href="http://www.convergentdigital.co.nz/solutions/communicate/#tagLine" onclick="javascript:pageTracker._trackPageview('/external/www.convergentdigital.co.nz/solutions/communicate/?tagLine');" ><span style="color:#8c8900;">communicate</span></a></span>, <span style="color:#8c8900;">
<a  href="http://www.convergentdigital.co.nz/solutions/resonate/#tagLine" onclick="javascript:pageTracker._trackPageview('/external/www.convergentdigital.co.nz/solutions/resonate/?tagLine');" ><span style="color:#8c8900;">resonate</span></a></span>, <span style="color:#8c8900;">
<a  href="http://www.convergentdigital.co.nz/solutions/participate/#tagLine" onclick="javascript:pageTracker._trackPageview('/external/www.convergentdigital.co.nz/solutions/participate/?tagLine');" ><span style="color:#8c8900;">participate</span></a></span> and <span style="color:#8c8900;">
<a  href="http://www.convergentdigital.co.nz/solutions/reachout/#tagLine" onclick="javascript:pageTracker._trackPageview('/external/www.convergentdigital.co.nz/solutions/reachout/?tagLine');" ><span style="color:#8c8900;">reaching out</span></a></span>.<span> </span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:11pt;color:#666400;font-family:&quot;">
<a  href="http://laptop.org/en/participate/get-involved.shtml" onclick="javascript:pageTracker._trackPageview('/external/laptop.org/en/participate/get-involved.shtml');" ><span style="color:#666400;">ONE LAPTOP PER CHILD</span></a></span></strong></p>
<p style="text-align:justify;margin:0;">
<p style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">OLPC was founded by Nicholas Negroponte with a core of Media Lab veterans, but quickly expanded to include a wide range of exceptionally talented and dedicated people from academia, industry, the arts, business, and the open-source community. Each individual involved brings a unique skill set, and a deep personal passion, to the project. The link provided above opens to a page which encourages site visitors to participate in the project and get involved by displaying a number of options. </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:11pt;color:#666400;font-family:&quot;">
<a  href="http://www.robinhood.org/home.aspx" onclick="javascript:pageTracker._trackPageview('/external/www.robinhood.org/home.aspx');" ><span style="color:#666400;">ROBIN HOOD FOUNDATION</span></a></span></strong></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">The Robin Hood Foundation, a charitable operation based in </span><span style="font-size:10pt;font-family:&quot;">New York</span><span style="font-size:10pt;font-family:&quot;"> </span><span style="font-size:10pt;font-family:&quot;">USA</span><span style="font-size:10pt;font-family:&quot;"> has 82% of its operating revenues come from private support and the rest from internal funding. It is one of those large nonprofit organisations that do not depend on any form of government financial support. Its website is extremely simple, uncluttered, straightforward and Web resource-efficient. It is a good model to emulate. The foundation has learned to employ just a few social media features on its homepage with maximum effect. They’ve chosen what works best for them.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:11pt;color:#666400;font-family:&quot;">
<a  href="http://www.theafghanschool.org/" onclick="javascript:pageTracker._trackPageview('/external/www.theafghanschool.org/');" ><span style="color:#666400;">THE AFGHAN SCHOOL PROJECT</span></a></span></strong></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;" lang="EN">Some charities look to bring tech to poverty-stricken children around the world. This one is special for many reasons. It’s a small school based in Kandahar, which teaches mostly female students tech and business skills so they can get jobs and improve their country. After clicking the link above, notice how AFSJ prominently displays a number of features such as their RSS feeds, news updates, comments by site visitors and supporters, their Facebook page and a host of other applications that help get them noticed in search engines.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:11pt;color:#666400;font-family:&quot;">
<a  href="http://www.focusonthefamily.com/" onclick="javascript:pageTracker._trackPageview('/external/www.focusonthefamily.com/');" ><span style="color:#666400;">FOCUS ON THE FAMILY</span></a><span> </span></span></strong></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">A nonprofit who promotes family values and who operates out of Colorado Springs USA, FOTF relies even more on private support funding (91%) and internally generated funds (9%) to support its annual operations. Here’s another site on the Web devoted to social service which has its communications strategy spot on towards social media. It engages, communicates, resonates, participates and reaches out. Can you guess which social media features I’m talking about here that makes FOTF successful? </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">Like the Robin Hood Foundation, it’s no wonder that FOTH has been voted by Forbes magazine as one of the Top 200 Charity Organisations in the </span><span style="font-size:10pt;font-family:&quot;">United States</span><span style="font-size:10pt;font-family:&quot;">.</span><span style="font-size:8pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:10pt;color:black;font-family:&quot;">SUMMARY</span></strong></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:black;font-family:&quot;">The world’s smartest nonprofit organisations are using social media and turning to the Web in an effort to increase awareness of their missions and to help connect with their constituencies.<span> </span>While these organisations are known for their nonprofit status and their fundraising campaigns, they demonstrate an acute awareness of the importance of Web 2.0 strategies in meeting their objectives.<span> </span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:black;font-family:&quot;">They are highly engaged with their audiences in a variety of ways using Web 2.0 technologies. </span><span style="font-size:10pt;font-family:&quot;">Social media is an important part of the marketing communications strategy of highly successful nonprofit organisations. They are beginning to outpace businesses and even academic institutions in their familiarity, use, and monitoring activities. </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">The five examples I have provided on this page are but a few of some of the top socially-oriented organisations who have discovered a new and exciting way to win the hearts (and maybe the dollars) of potential donors along with the support of their advocates, volunteers and friends. </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">Charities, schools and other nonprofit organisations operating in </span><span style="font-size:10pt;font-family:&quot;">New Zealand</span><span style="font-size:10pt;font-family:&quot;"> shouldn’t be labeled as techno-peasants because they’re not. It’s just that we have this quirky laid-back attribute of waiting a year or so before catching up on what’s good with the rest of the world. Maybe it’s partly because of the fresh clean air we breathe, the lush greenery and the stunningly beautiful countryside we enjoy here. If it is, then maybe that’s the excuse we can use when being accused of being legends in our own minds.<span> </span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">To learn more about what the 
<a  href="http://www.google.com/profiles/111565466709363139028" onclick="javascript:pageTracker._trackPageview('/external/www.google.com/profiles/111565466709363139028');" >author</a> of this blog and his company do for nonprofits, please click on this 
<a  href="http://www.convergentdigital.co.nz/" onclick="javascript:pageTracker._trackPageview('/external/www.convergentdigital.co.nz/');" >link</a>.</span></p>
<p style="text-align:justify;margin:0;">
<p style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">RELATED LINKS USED IN THIS SERIES:</span><span style="font-size:4pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/');" >http://karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/');" >http://karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/');" >http://karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/');" >http://karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/important-points-to-consider/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/important-points-to-consider/');" >http://karlquirino.wordpress.com/2009/04/30/important-points-to-consider/</a></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/');" >http://karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Legends In Our Own Minds (Part 4)</title>
		<link>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-4/</link>
		<comments>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-4/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 23:14:32 +0000</pubDate>
		<dc:creator>Karl Quirino</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[advocacy]]></category>
		<category><![CDATA[Amazon.com]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[brand identity]]></category>
		<category><![CDATA[Charities]]></category>
		<category><![CDATA[communications]]></category>
		<category><![CDATA[communications strategy]]></category>
		<category><![CDATA[community development]]></category>
		<category><![CDATA[constituents]]></category>
		<category><![CDATA[content management systems]]></category>
		<category><![CDATA[Convergent Digital Solutions]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[donors]]></category>
		<category><![CDATA[eBay]]></category>
		<category><![CDATA[email newsletters]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[fundraising]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[grant applications]]></category>
		<category><![CDATA[information systems]]></category>
		<category><![CDATA[Karl Quirino]]></category>
		<category><![CDATA[Karl Quirino & Associates]]></category>
		<category><![CDATA[mashups]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[New Zealand]]></category>
		<category><![CDATA[NGOs]]></category>
		<category><![CDATA[Nonprofits]]></category>
		<category><![CDATA[Online forums]]></category>
		<category><![CDATA[open APIs]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[requests for proposals]]></category>
		<category><![CDATA[resonate]]></category>
		<category><![CDATA[Schools]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[sponsors]]></category>
		<category><![CDATA[TradeMe]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[virals]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[website builds]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[website development]]></category>
		<category><![CDATA[Wikipedia]]></category>
		<category><![CDATA[Wikis]]></category>

		<guid isPermaLink="false">http://blog.proudcloud.net/?p=222</guid>
		<description><![CDATA[IMPORTANT POINTS TO CONSIDER As I’ve mentioned in Part 3 of this series, today’s web-based technologies can enable nonprofit organisations to get much closer to audiences than TV, radio or print – particularly to those who may be able to contribute directly to your organisation’s needs, well-being and sustainability. The audiences you seek and attract [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:11pt;font-family:&quot;"><strong><img class="alignleft size-full wp-image-329" style="margin: 10px;" title="karlquirino-wordpress-image-legends-important-points2" src="http://karlquirino.wordpress.com/files/2009/04/karlquirino-wordpress-image-legends-important-points2.jpg" alt="karlquirino-wordpress-image-legends-important-points2" width="280" height="280" />IMPORTANT POINTS TO CONSIDER</strong></span></p>
<p><span style="font-size:10pt;font-family:&quot;"><span style="font-size:10pt;color:black;font-family:&quot;">As I’ve mentioned in Part 3 of this series, today’s web-based technologies can enable nonprofit organisations to get much closer to audiences than TV, radio or print – particularly to those who may be able to contribute directly to your organisation’s needs, well-being and sustainability.</span><span style="font-size:4pt;color:black;font-family:&quot;"> </span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:black;font-family:&quot;">The audiences you seek and attract will likely tell you exactly what they’re thinking because the principles of effective communications are built into the DNA of Web 2.0 as a real, two-way conversation channel.</span><span style="font-size:4pt;color:black;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:black;font-family:&quot;">But there are also other important points to consider before your organisation decides to act, prepare and get itself engaged in this new sphere.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:10pt;color:#008200;font-family:&quot;">1. Budget Basics. Know Thyself. Everyone Has Limits.</span></strong><strong><span style="font-size:10pt;font-family:&quot;"> </span></strong><span style="font-size:10pt;font-family:&quot;">Do your needs assessment first, be mindful of the costs, start moderately, and do things in phases or stages. Being crystal clear about what you want for the longer term determines what you should reasonably spend at the first stage build-up phase. Employing this approach enables you to launch and execute your plans for growing your network in a rationale way that is sustainable over time.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:10pt;color:#008200;font-family:&quot;">2. Get Your Staffing Mix In Order.</span></strong><strong><span style="font-size:10pt;font-family:&quot;"> </span></strong><span style="font-size:10pt;font-family:&quot;">Weigh in different staffing solutions in your plan to get you going. Your newly-minted website as communication service doesn’t operate anymore as simply as the old static one you’ve had. It’s not going to be a paste-your-lost-and-found-poster-on-the-community-board affair. This may involve a skilled employee, a volunteer or a communications consultant or a mix thereof. Your new Web 2.0 presence will require people with some skills and experience to nurture it.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:10pt;color:#008200;font-family:&quot;">3. It Is More Important Than You Can Imagine.</span></strong><strong><span style="font-size:10pt;font-family:&quot;"> </span></strong><span style="font-size:10pt;font-family:&quot;">Make sure that what your new website contains is effective in terms of its clarity, content and functionality. Can people easily sign up as members of its online forum? Are the action prompts clear and direct? If it has some interactivity built in, who’s on the other end of the stick? Have you linked your website to other public or issue sites related to your cause or campaign and like-minded online forums and social networking websites?</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:10pt;color:#008200;font-family:&quot;">4. Manage Your Data Sets And Cultivate Your Friends and Friends Of Friends.</span></strong><strong><span style="font-size:10pt;font-family:&quot;"> </span></strong><span style="font-size:10pt;font-family:&quot;">You need to pay attention to your ‘treasure trove’ largely because it will contain valuable information stored on user-generated content pages, membership profile lists, email addresses and any other segmentation deemed appropriate, whether it’s based on giving levels, issue areas, forum recommendations or other matters of importance to your organisation.</span><span style="font-size:4pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">Any technology system incorporated as a functionality should be able to address some of your nonprofit organisation’s needs. Therefore, cultivate friends and those who forward your message to the most friends. In the Web 2.0 world the friend of your friend can also become an important ally and a valuable resource.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:10pt;color:#008200;font-family:&quot;">5. Go For Quality. Resist The Tyranny Of Numbers.</span></strong><strong><span style="font-size:10pt;font-family:&quot;"> </span></strong><span style="font-size:10pt;font-family:&quot;">You might think that it would be great to have five thousand members registered in your database. But to what end? Seek quality over quantity, and incorporate systems that can scale effectively depending on need.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">It’s OK to think small at first if that means some measure of success for you. If you are a local community-based organisation that succeeds by sharing messages to only 500 of your most loyal supporters that could translate to significant action that will get noticed on the Web<strong>. </strong><span>Why? Because those 500 supporters have 4 or 5 other friends who trust their</span></span><span style="font-size:10pt;font-family:&quot;" lang="EN-NZ"> judgement</span><span style="font-size:10pt;font-family:&quot;"> and are likely to be invited to also support your organisation’s cause in one way or another. This is what I call – the Power of the Nth.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:10pt;color:#008200;font-family:&quot;">6. Keep Your Doors Open To Many Options.</span></strong><strong><span style="font-size:10pt;font-family:&quot;"> </span></strong><span style="font-size:10pt;font-family:&quot;">Your organisation can choose to adapt an approach that channels people towards one act, such as signing on to an action alert listserve, or instead diversify the action options by making it easy for anyone to choose what level of involvement they may want to commit themselves to. The clearer you are with what options are available, the greater response rate you will see across the board. Leaving your door open to many options helps you better understand your stakeholders.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:10pt;color:#008200;font-family:&quot;">7. Mind How You Say Things. It’s What Builds Credibility And Reputation.</span></strong><span style="font-size:10pt;font-family:&quot;"> It matters <span>how<em> </em></span>you say what you want to say and if you don’t know how to say it invest the services of a professional writer if you need to. Make sure your website’s style and voice is consistent with your organisation’s brand identity. More importantly, make sure that what is said is clear, personal, and direct. In this medium, your message is the foundation for establishing relationships and credibility.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:10pt;color:#008200;font-family:&quot;">8. Timing Is Crucial. Get It Right And Your Off On A Good Start.</span></strong><strong><span style="font-size:10pt;font-family:&quot;"> </span></strong><span style="font-size:10pt;font-family:&quot;">After your organisation has built up a decent enough following, launch an online campaign or two. Be opportunistic but think about when to deliver what messages to whom, and what events or moments present the best opportunities to do so. It’s important to also pay attention to what’s in the news. What your organisation is working on can be tied to current events.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:10pt;color:#008200;font-family:&quot;">9. Letting The Left Hand Know What The Right Hand Is Doing.</span></strong><strong><span style="font-size:10pt;font-family:&quot;"> </span></strong><span style="font-size:10pt;font-family:&quot;">One of the biggest blocks to effective online advocacy building is the “divide” that exist in offices where staff possesses widely divergent knowledge. If communications strategy doesn’t tie in with advocacy strategy nothing you launch will make sense to your public. You will appear to be dysfunctional.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">Nonprofit organisations must become more integrated particularly in how they communicate, fundraise, and</span><span style="font-size:10pt;font-family:&quot;" lang="EN-NZ"> mobilise</span><span style="font-size:10pt;font-family:&quot;" lang="EN-NZ"> </span><span style="font-size:10pt;font-family:&quot;">friends, supporters, constituents and communities. Requests for proposals, grant applications and fundraising appeals are more powerful and successful when they ride the coat tails of successful advocacy campaigns in-step with a well-crafted communications strategy.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:10pt;color:#008200;font-family:&quot;">10. Mind Your Website’s Performance And Metrics.</span></strong><strong><span style="font-size:10pt;font-family:&quot;"> </span></strong><span style="font-size:10pt;font-family:&quot;">Pay attention to the metrics generated when users visit your website. Tracking and metrics are powerful tools to ensure that you adapt and refine your practices. Using tools like these can really change the way your organisation operates at every level.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:#333333;font-family:Verdana;">Click </span><strong><span style="font-size:10pt;color:blue;font-family:Verdana;">
<a  href="http://www.karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/" onclick="javascript:pageTracker._trackPageview('/external/www.karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/');" >here</a></span></strong><span style="font-size:10pt;color:#333333;font-family:Verdana;"> to read </span><strong><span style="font-size:10pt;color:green;font-family:Verdana;">Part 5 </span></strong><strong><span style="font-size:10pt;color:black;font-family:Verdana;">–</span></strong><strong><span style="font-size:10pt;color:green;font-family:Verdana;"> </span></strong><strong><span style="font-size:10pt;color:#8c8900;font-family:Verdana;">Models Of Tech Savvy Nonprofits Using Social Media</span></strong></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong></strong></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong></strong><span style="font-size:10pt;font-family:&quot;">To learn more about what the 
<a  href="http://www.google.com/profiles/111565466709363139028" onclick="javascript:pageTracker._trackPageview('/external/www.google.com/profiles/111565466709363139028');" >author</a> of this blog and his company do for nonprofits, please click on this 
<a  href="http://www.convergentdigital.co.nz/" onclick="javascript:pageTracker._trackPageview('/external/www.convergentdigital.co.nz/');" >link</a>.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span style="font-size:10pt;font-family:&quot;">RELATED LINKS USED IN THIS SERIES:</span></span><span style="font-size:10pt;font-family:&quot;"><span style="font-size:4pt;font-family:&quot;"> </span></span></p>
<p style="text-align:justify;margin:0;">
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/');" >http://karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/');" >http://karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/');" >http://karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/');" >http://karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/important-points-to-consider/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/important-points-to-consider/');" >http://karlquirino.wordpress.com/2009/04/30/important-points-to-consider/</a></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/');" >http://karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/</a></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Legends In Our Own Minds (Part 3)</title>
		<link>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-3/</link>
		<comments>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-3/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 22:54:41 +0000</pubDate>
		<dc:creator>Karl Quirino</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[advocacy]]></category>
		<category><![CDATA[Amazon.com]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[brand identity]]></category>
		<category><![CDATA[Charities]]></category>
		<category><![CDATA[communications]]></category>
		<category><![CDATA[communications strategy]]></category>
		<category><![CDATA[community development]]></category>
		<category><![CDATA[constituents]]></category>
		<category><![CDATA[content management systems]]></category>
		<category><![CDATA[Convergent Digital Solutions]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[donors]]></category>
		<category><![CDATA[eBay]]></category>
		<category><![CDATA[email newsletters]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[fundraising]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[grant applications]]></category>
		<category><![CDATA[information systems]]></category>
		<category><![CDATA[Karl Quirino]]></category>
		<category><![CDATA[Karl Quirino & Associates]]></category>
		<category><![CDATA[mashups]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[New Zealand]]></category>
		<category><![CDATA[NGOs]]></category>
		<category><![CDATA[Nonprofits]]></category>
		<category><![CDATA[Online forums]]></category>
		<category><![CDATA[open APIs]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[requests for proposals]]></category>
		<category><![CDATA[resonate]]></category>
		<category><![CDATA[Schools]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[sponsors]]></category>
		<category><![CDATA[TradeMe]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[virals]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[website builds]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[website development]]></category>
		<category><![CDATA[Wikipedia]]></category>
		<category><![CDATA[Wikis]]></category>

		<guid isPermaLink="false">http://blog.proudcloud.net/?p=210</guid>
		<description><![CDATA[THERE’S GOOD ADVICE FROM PEOPLE OUT THERE GETTING IT RIGHT DOESN’T HAPPEN INSTANTLY To recap what has been said previously in Parts 1 and 2, communications before the advent of Web 2.0 was all about costly and time-consuming production models. Today, we’re helping charities, schools and other types of nonprofit organisations to use and adapt [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:11pt;font-family:&quot;"><strong>THERE’S GOOD ADVICE FROM PEOPLE OUT THERE</strong></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:11pt;font-family:&quot;"><span style="font-size:11pt;font-family:&quot;"><img class="alignleft size-full wp-image-292" style="margin: 10px;" title="karlquirino-wordpress-image-legends-good-advice1" src="http://karlquirino.wordpress.com/files/2009/04/karlquirino-wordpress-image-legends-good-advice1.jpg" alt="karlquirino-wordpress-image-legends-good-advice1" width="280" height="280" />GETTING IT RIGHT </span></span></strong><strong><span style="font-size:11pt;font-family:&quot;"><span style="font-size:11pt;font-family:&quot;">DOESN’T HAPPEN </span></span></strong><strong><span style="font-size:11pt;font-family:&quot;"><span style="font-size:11pt;font-family:&quot;">INSTANTLY</span></span></strong></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">To recap what has been said previously in Parts 1 and 2, <span style="color:black;">communications before the advent of Web 2.0 was all about costly and time-consuming production models. Today, we’re helping charities, schools and other types of nonprofit organisations to use and adapt to new web technologies that make communication faster, more two-way and more extensible. To take advantage of the benefits of the new paradigm they will need to align organisational structures that exploit these new mechanisms and tactics. This in itself should be good news – after all, it’s easier to manage a discussion than it is to navigate an Airbus jumbo jet.</span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:black;font-family:&quot;">With this operating principle in mind, entities that operate within the social service sector of our society can start enjoying big fringe benefits such as heightened visibility and improved performance in search engines. For example, Google loves deep resources of well-structured content that function better and whereby back catalogue content is given new life by being made more accessible and presentable to users. </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:11pt;color:black;font-family:&quot;">COMMUNICATIONS IS A PROCESS</span></strong></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:black;font-family:&quot;">When my company and I get involved to structure a new website or transform an existing one into a communications hub, it is less of an ‘ivory tower’ exercise. This is because, rather than second guessing it, the planning and design parameters employed responds to and builds upon user demand. In other words, the discipline of communications becomes all about the process of communicating. To support this, underlying technologies and tactics employed become lighter, easier to use and more adaptive. </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:black;font-family:&quot;">But getting it right doesn’t always happen instantly. It’s not about pushing a button and leaving the room. A lot of what goes on afterwards has to do with how the organisation uses and leverages what is already an inherently powerful tool set. They need to be drivers-behind-the-wheel to get things moving to arrive at the destinations they’ve set ahead of them. </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:black;font-family:&quot;">In employing their websites more intelligently with a return on investment objective, the savviest thing nonprofit organisations can do is connect audiences around their interest areas, help them find things with close enough commonalities, and provide relevant content and information along the way. Only then will they begin to ‘
<a  href="http://www.convergentdigital.co.nz/solutions/resonate/#tagLine" onclick="javascript:pageTracker._trackPageview('/external/www.convergentdigital.co.nz/solutions/resonate/?tagLine');" >resonate</a>’ with people. That’s the tipping point which transforms a nonprofit from being a relative nobody to a significant somebody in the world of Web 2.0.</span><span style="font-size:8pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:#333333;font-family:Verdana;">Click </span><strong><span style="font-size:10pt;color:blue;font-family:Verdana;">
<a  href="http://www.karlquirino.wordpress.com/2009/04/30/important-points-to-consider/" onclick="javascript:pageTracker._trackPageview('/external/www.karlquirino.wordpress.com/2009/04/30/important-points-to-consider/');" >here</a></span></strong><span style="font-size:10pt;color:#333333;font-family:Verdana;"> to read </span><strong><span style="font-size:10pt;color:green;font-family:Verdana;">Part 4 </span></strong><strong><span style="font-size:10pt;color:black;font-family:Verdana;">–</span></strong><strong><span style="font-size:10pt;color:green;font-family:Verdana;"> </span></strong><strong><span style="font-size:10pt;color:#8c8900;font-family:Verdana;">Important Points To Consider</span></strong><span style="font-size:8pt;font-family:&quot;"> </span></p>
<p><span style="font-size:10pt;font-family:&quot;">To learn more about what the 
<a  href="http://www.google.com/profiles/111565466709363139028" onclick="javascript:pageTracker._trackPageview('/external/www.google.com/profiles/111565466709363139028');" >author</a> of this blog and his company do for nonprofits, please click on this 
<a  href="http://www.convergentdigital.co.nz/" onclick="javascript:pageTracker._trackPageview('/external/www.convergentdigital.co.nz/');" >link</a>.</span></p>
<p style="margin:0;"><span style="font-size:10pt;font-family:&quot;">RELATED LINKS USED IN THIS SERIES:</span></p>
<p style="margin:0;">
<p style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/');" >http://karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/');" >http://karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/');" >http://karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/');" >http://karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/important-points-to-consider/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/important-points-to-consider/');" >http://karlquirino.wordpress.com/2009/04/30/important-points-to-consider/</a></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/');" >http://karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Legends In Our Own Minds (Part 2)</title>
		<link>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-2/</link>
		<comments>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-2/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 22:43:17 +0000</pubDate>
		<dc:creator>Karl Quirino</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[advocacy]]></category>
		<category><![CDATA[Amazon.com]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[brand identity]]></category>
		<category><![CDATA[Charities]]></category>
		<category><![CDATA[communications]]></category>
		<category><![CDATA[communications strategy]]></category>
		<category><![CDATA[community development]]></category>
		<category><![CDATA[constituents]]></category>
		<category><![CDATA[content management systems]]></category>
		<category><![CDATA[Convergent Digital Solutions]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[donors]]></category>
		<category><![CDATA[eBay]]></category>
		<category><![CDATA[email newsletters]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[fundraising]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[grant applications]]></category>
		<category><![CDATA[information systems]]></category>
		<category><![CDATA[Karl Quirino]]></category>
		<category><![CDATA[Karl Quirino & Associates]]></category>
		<category><![CDATA[mashups]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[New Zealand]]></category>
		<category><![CDATA[NGOs]]></category>
		<category><![CDATA[Nonprofits]]></category>
		<category><![CDATA[Online forums]]></category>
		<category><![CDATA[open APIs]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[requests for proposals]]></category>
		<category><![CDATA[resonate]]></category>
		<category><![CDATA[Schools]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[sponsors]]></category>
		<category><![CDATA[TradeMe]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[virals]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[website builds]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[website development]]></category>
		<category><![CDATA[Wikipedia]]></category>
		<category><![CDATA[Wikis]]></category>

		<guid isPermaLink="false">http://blog.proudcloud.net/?p=193</guid>
		<description><![CDATA[INFORMATION IS YOUR TREASURE TROVE “Brands are typically built on awareness, a created desire to be a part of a larger group, and emotional decisions. The Web works with one-to-many and many-to-many, dialogue-enabling activities and rational, considered decisions.” – Bob Stone and Ron Jacobs, authors. WEBSITES AS THE NEW COMMUNICATION SERVICE In the exciting new [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:11pt;font-family:&quot;"><strong>INFORMATION IS YOUR TREASURE TROVE</strong></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><em><span style="font-size:10pt;font-family:&quot;">“Brands are typically built on awareness, a created desire to be a part of a larger group, and emotional decisions. The Web works with one-to-many and many-to-many, dialogue-enabling activities and rational, considered decisions.” –</span></em><span style="font-size:10pt;font-family:&quot;"> Bob Stone and Ron Jacobs, authors.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align: left; margin: 0px;"><span style="font-size:10pt;font-family:&quot;"><span style="font-size:11pt;font-family:&quot;"><span style="font-size:11pt;font-family:&quot;"><strong><img class="alignleft size-full wp-image-315" style="margin: 10px;" title="karlquirino-wordpress-image-legends-information-is2" src="http://karlquirino.wordpress.com/files/2009/04/karlquirino-wordpress-image-legends-information-is2.jpg" alt="karlquirino-wordpress-image-legends-information-is2" width="280" height="280" />WEBSITES </strong></span></span></span><span style="font-size:10pt;font-family:&quot;"><span style="font-size:11pt;font-family:&quot;"><span style="font-size:11pt;font-family:&quot;"><strong>AS THE NEW COMMUNICATION SERVICE</strong></span></span></span></p>
<p class="MsoNormal" style="text-align: left; margin: 0px;">
<p class="MsoNormal" style="text-align: left; margin: 0px;">
<p class="MsoNormal" style="text-align: left; margin: 0px;"><span style="font-size:10pt;font-family:&quot;">In the exciting new world of ‘Web 2.0,’ communications can best be described as a process not a destination. The act of communicating on the web now</span><span style="font-size:10pt;font-family:&quot;" lang="EN-NZ"> favours</span><span style="font-size:10pt;font-family:&quot;"> the seeding of new opinions or ideas which may not necessarily be yours alone.</span><span style="font-size:4pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">What the web is teaching us all today is that it’s OK to throw stuff out there, and see what sticks. I often advice my clients that it’s good</span><span style="font-size:10pt;font-family:&quot;" lang="EN-NZ"> practise</span><span style="font-size:10pt;font-family:&quot;"> to set up a variety of different communications channels to suit different purposes, to test them, tweak them and retain the ones that work best.</span><span style="font-size:4pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">The good news for nonprofit organisations operating in New Zealand is that the models developed by my company for these organisations contain a structure that aren’t built as a single, monolithic ‘communications’ framework. Rather, social media applications are grafted fairly quickly. Should they prove successful these grafts become more integrated with other site content over time.</span><span style="font-size:4pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">Citing just a few examples, we make it possible to set up <span style="color:black;">blog for individuals who head nonprofit organisations, launch dedicated online forum or allow users to publish their comments with star rating systems. So, be</span></span><span style="font-size:10pt;color:black;font-family:&quot;"> it blogs, podcasts, wikis, open APIs, virals, website builds, mashups or even a simple email newsletter, the principles we employ to achieve effective communications for nonprofit organisations are built into ‘Web 2.0’ as a real two-way conversation.</span><span style="font-size:4pt;color:black;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:black;font-family:&quot;">And, where the organisation finds conversations happening, they just join in. Why? You may get to learn some valuable insights directly –- the kind of things that for-profit businesses would spend hundreds of thousands of dollars to acquire.</span><span style="font-size:4pt;color:black;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">The relatively lower cost of Web 2.0 initiatives means that the traditional but expensive way of promoting (i.e., TV, radio and print) doesn’t have to apply to nonprofit organisations anymore. None of the things that Web 2.0 provides breaks the bank.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><strong><span style="font-size:11pt;color:black;font-family:&quot;">INFORMATION IS YOUR TREASURE TROVE</span></strong><span style="font-size:4pt;color:black;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:black;font-family:&quot;">As well as monitoring what the Web thinks of you, underlying processes and systems need also to be ‘rewired’ in order to accommodate and re-use public voices. This means rethinking your website as a content-managed database capable of re-presenting content in different ways. Once you’ve captured a piece of content, you can re-purpose it for effect to suit your needs. Therein lays the value of building up a ‘treasure trove’ of information.</span><span style="font-size:4pt;color:black;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:black;font-family:&quot;">The bottom line here is, to become fairly successful on Web 2.0, nonprofit organisations need not over-engineer the production of their content. Rather, they should excel at accepting content from all quarters and publish the resulting data in a creative, engaging way.</span><span style="font-size:4pt;color:black;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">In the very near future, the Web will be a central part of <span>every<em> </em></span>brand and promotional effort whether it involves for-profit businesses or not-for-profit entities. Alongside skill sets and disciplines that are employed to run an organisation will sit a new person – the ‘Web Relations Officer’ or WRO. This person’s role will be to integrate the Web into every aspect of the organisation’s communications strategy, not just as an isolated activity but as a fundamental part of how the organisation operates.</span><span style="font-size:4pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;">
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">The WRO will be expected to be up on all the latest trends and possibilities on the Web; have a good understanding of web technologies; work closely with consultants and the organisation’s IT team; enjoy a discretionary budget; and, have a seat at the decision-making table for all brand-related discussions. The WRO will be that person focused to deal with the public directly though conversations on the Web. And as the organisation’s brand, reputation and influence expand, he or she will also report on a dotted line to the organisation’s chief executive. But before that time comes along, consider having Convergent Digital Solutions get you started on that road.</span><span style="font-size:8pt;color:black;font-family:&quot;"> </span></p>
<p style="text-align:justify;margin:0;">
<p style="text-align:justify;margin:0;">
<p style="text-align:justify;margin:0;"><span style="font-size:10pt;color:#333333;font-family:Verdana;">Click </span><strong><span style="font-size:10pt;color:blue;font-family:Verdana;">
<a  href="http://karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/');" >here</a></span></strong><span style="font-size:10pt;color:#333333;font-family:Verdana;"> to read </span><strong><span style="font-size:10pt;color:green;font-family:Verdana;">Part 3 </span></strong><strong><span style="font-size:10pt;color:black;font-family:Verdana;">–</span></strong><strong><span style="font-size:10pt;color:green;font-family:Verdana;"> </span></strong><strong><span style="font-size:10pt;color:#8c8900;font-family:Verdana;">There’s Good Advice From People Out There</span></strong></p>
<p><span style="font-size:10pt;font-family:&quot;">To learn more about what the 
<a  href="http://www.google.com/profiles/111565466709363139028" onclick="javascript:pageTracker._trackPageview('/external/www.google.com/profiles/111565466709363139028');" >author</a> of this blog and his company do for nonprofits, please click on this 
<a  href="http://www.convergentdigital.co.nz/" onclick="javascript:pageTracker._trackPageview('/external/www.convergentdigital.co.nz/');" >link</a>.</span></p>
<p style="margin:0;"><span style="font-size:10pt;font-family:&quot;">RELATED LINKS USED IN THIS SERIES:</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/');" >http://karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/');" >http://karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/');" >http://karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/');" >http://karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/important-points-to-consider/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/important-points-to-consider/');" >http://karlquirino.wordpress.com/2009/04/30/important-points-to-consider/</a></span><span style="font-size:2pt;color:#666666;font-family:Verdana;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/');" >http://karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Legends In Our Own Minds (Part 1)</title>
		<link>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-1/</link>
		<comments>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-1/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 22:25:18 +0000</pubDate>
		<dc:creator>Karl Quirino</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[advocacy]]></category>
		<category><![CDATA[Amazon.com]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[brand identity]]></category>
		<category><![CDATA[Charities]]></category>
		<category><![CDATA[communications]]></category>
		<category><![CDATA[communications strategy]]></category>
		<category><![CDATA[community development]]></category>
		<category><![CDATA[constituents]]></category>
		<category><![CDATA[content management systems]]></category>
		<category><![CDATA[Convergent Digital Solutions]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[donors]]></category>
		<category><![CDATA[eBay]]></category>
		<category><![CDATA[email newsletters]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[fundraising]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[grant applications]]></category>
		<category><![CDATA[information systems]]></category>
		<category><![CDATA[Karl Quirino]]></category>
		<category><![CDATA[Karl Quirino & Associates]]></category>
		<category><![CDATA[mashups]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[New Zealand]]></category>
		<category><![CDATA[NGOs]]></category>
		<category><![CDATA[Nonprofits]]></category>
		<category><![CDATA[Online forums]]></category>
		<category><![CDATA[open APIs]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[requests for proposals]]></category>
		<category><![CDATA[resonate]]></category>
		<category><![CDATA[Schools]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[sponsors]]></category>
		<category><![CDATA[TradeMe]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[virals]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[website builds]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[website development]]></category>
		<category><![CDATA[Wikipedia]]></category>
		<category><![CDATA[Wikis]]></category>

		<guid isPermaLink="false">http://blog.proudcloud.net/?p=177</guid>
		<description><![CDATA[OPEN ATTITUDES AND WHY IT PAYS TO LISTEN “The image of myself which I try to create in my own mind in order that I may love myself is very different from the image I try to create in the minds of others in order that they may love me.” – W H AUDEN, Poet [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="font-size:11pt;font-family:&quot;">OPEN ATTITUDES AND WHY IT PAYS TO LISTEN</span></strong></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><em><span style="font-size:10pt;color:black;font-family:&quot;">“The image of myself which I try to create in my own mind in order that I may love myself is very different from the image I try to create in the minds of others in order that they may love me.” –</span></em><span style="font-size:10pt;color:black;font-family:&quot;"> W H AUDEN, Poet</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;"><strong><img class="alignleft size-full wp-image-255" title="karlquirino-wordpress-image-legends-open-attitude1" src="http://karlquirino.wordpress.com/files/2009/04/karlquirino-wordpress-image-legends-open-attitude1.jpg" alt="karlquirino-wordpress-image-legends-open-attitude1" width="280" height="280" /><span style="font-size:11pt;font-family:&quot;">THE TWO-WAY NATURE </span></strong></span><span style="font-size:10pt;font-family:&quot;"><span style="font-size:11pt;font-family:&quot;"><strong>OF THE WEB TODAY</strong></span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span style="font-size:11pt;font-family:&quot;"><strong></strong></span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">In my blog entry titled <span style="font-size:10pt;color:#8a8700;font-family:&quot;"><strong>Why Conversations And Stories Matter </strong></span>I mention that a</span><span style="font-size:10pt;font-family:&quot;">uthenticity, honesty, and personal voice underlie much of what is successful on the Web today.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:black;font-family:&quot;">Brand identities can only be developed on what other people and organisations think and say about yours -– not what you are saying about yourself. It is the stories that others tell about you that have a much higher value and hold a greater influence over your destiny and long-term sustainability as a nonprofit organisation in service for others. We can never afford to be “legends in our own minds”.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">Some of the biggest and most successful websites you might have come across browsing the Internet are typical examples. </span><span style="font-size:10pt;font-family:&quot;">Imagine life without Google or Wikipedia; TradeMe or eBay without user ratings, or even Amazon.com without user reviews. There are also a multitude of networking forums, email discussion groups, and loose gatherings in the blogosphere discussing every aspect of life under the sun –- possibly including yours.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">These brand identities wouldn’t be what they are today without having been built upon the two-way nature of Web 2.0. And if you’ll notice, most of them have ceded a measure of editorial control around their service in exchange for the value that user-generated content brings.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">Let’s be honest with ourselves. People who visit websites today expect change, reaction, reflection of comments and feedback. These are expressions of voice seeking response. </span><span style="font-size:10pt;font-family:&quot;">The fundamental difference is that these acts of endorsement can be built into your website at source. If you want to engage with your audience, give them the opportunity to provide comment and publish the results.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">Dynamic is obviously better than static. All it takes is some appropriate technology, an ‘open’ attitude, and an eye on your website’s publishing processes. The impact on your nonprofit organisation can be profound because user-generated content can:</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="text-indent:-9pt;text-align:justify;margin:0 0 0 .25in;"><span style="font-size:10pt;font-family:&quot;">• Provide fresh, continuing insights and feedback regarding how your organisation resonates with your audience.</span><span style="font-size:2pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-indent:-9pt;text-align:justify;margin:0 0 0 .25in;"><span style="font-size:10pt;font-family:&quot;">• Address and even probably solve some questions about your organisation via support forums.</span><span style="font-size:2pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-indent:-9pt;text-align:justify;margin:0 0 0 .25in;"><span style="font-size:10pt;font-family:&quot;">• Challenge your editorial thinking. These gives you a clearer pulse of what others think about what you say or what you do.</span><span style="font-size:2pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-indent:-9pt;text-align:justify;margin:0 0 0 .25in;"><span style="font-size:10pt;font-family:&quot;">• Extend the value of news, stories or results published about your organisation’s service, calls to action or appeals via comment forms.</span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">Bottom-line? User-generated content does add tremendous value to your nonprofit organisation persona over the Web -– with relatively low overheads. What’s more, referrals or recommendations from like-minded individuals inspire confidence at the audience level. That enhances and extends your organisation’s influence, social capital and reputation – things money can’t buy but ones that contribute significantly to your return on investment.</span><span style="font-size:4pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:10pt;color:black;font-family:&quot;">But to do all this stuff effectively, you need to rethink the way you communicate. You need to upgrade and vary your communications channels. Using this new approach, your website no longer exists as a static brochure-type ‘publication.’ It comes alive and becomes a new service that produces some remarkable dividends. And with that, it’ll be all well worth your while.</span><span style="font-size:8pt;color:black;font-family:&quot;"> </span></p>
<p style="text-align:justify;margin:0;"> </p>
<p style="text-align:justify;margin:0;"> </p>
<p style="text-align:justify;margin:0;"><span style="font-size:10pt;color:#333333;font-family:Verdana;">Click </span><strong><span style="font-size:10pt;color:blue;font-family:Verdana;">
<a  href="http://www.karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/" onclick="javascript:pageTracker._trackPageview('/external/www.karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/');" >here</a></span></strong><span style="font-size:10pt;color:#333333;font-family:Verdana;"> to read </span><strong><span style="font-size:10pt;color:green;font-family:Verdana;">Part 2 </span></strong><strong><span style="font-size:10pt;color:black;font-family:Verdana;">–</span></strong><strong><span style="font-size:10pt;color:green;font-family:Verdana;"> </span></strong><strong><span style="font-size:10pt;color:#8c8900;font-family:Verdana;">Information Is Your Treasure Trove</span></strong></p>
<p style="text-align:justify;margin:0;"> </p>
<p style="text-align:justify;margin:0;"><strong></strong></p>
<p style="text-align:justify;margin:0;"><span style="font-size:10pt;font-family:&quot;">To learn more about what the 
<a  href="http://www.google.com/profiles/111565466709363139028" onclick="javascript:pageTracker._trackPageview('/external/www.google.com/profiles/111565466709363139028');" >author</a> of this blog and his company do for nonprofits, please click on this 
<a  href="http://www.convergentdigital.co.nz/" onclick="javascript:pageTracker._trackPageview('/external/www.convergentdigital.co.nz/');" >link</a>.</span> </p>
<p><span style="font-size:10pt;font-family:&quot;">RELATED LINKS USED IN THIS SERIES:</span></p>
<p><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/');" >http://karlquirino.wordpress.com/2009/04/23/why-converations-and-stories-matter/</a></span></p>
<p><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/');" >http://karlquirino.wordpress.com/2009/04/30/open-attitudes-and-why-it-pays-to-listen/</a></span></p>
<p><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/');" >http://karlquirino.wordpress.com/2009/04/30/information-is-your-treasure-trove/</a></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/');" >http://karlquirino.wordpress.com/2009/04/30/theres-good-advice-from-people-out-there/</a></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/important-points-to-consider/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/important-points-to-consider/');" >http://karlquirino.wordpress.com/2009/04/30/important-points-to-consider/</a></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="font-size:8.5pt;color:#666666;font-family:Verdana;" lang="EN">
<a  href="http://karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/');" >http://karlquirino.wordpress.com/2009/04/30/models-of-tech-savvy-nonprofits-using-social-media/</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.proudcloud.net/2009/04/legends-in-our-own-minds-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding Virtualization and Cloud Computing</title>
		<link>http://blog.proudcloud.net/2009/04/understanding-virtualization-and-cloud-computing/</link>
		<comments>http://blog.proudcloud.net/2009/04/understanding-virtualization-and-cloud-computing/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 02:40:07 +0000</pubDate>
		<dc:creator>Jay Fajardo</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bluelock]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://blog.proudcloud.net/?p=175</guid>
		<description><![CDATA[The folks at BLUELOCK have put together a very simple video that explains the concepts using Lego blocks.]]></description>
			<content:encoded><![CDATA[<p>At PROUDCLOUD, we make full use of cloud computing and virtualization to ensure that the projects we deliver to our clients are highly-scalable and robust.</p>
<p>The folks at BLUELOCK have put together a very simple video that explains the concepts using Lego blocks.<br />
<center><br />
<object class="cantaloupe_video" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="480" height="296" id="backlight_player" align="middle"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="movie" value="http://player.backlight.tv/player/?video_code=taJ1hrVa2fNEbcqKnnm5Zg6239EQ90L6239EQ90L" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><param name="flashvars" value="" /><embed src="http://player.backlight.tv/player/?video_code=taJ1hrVa2fNEbcqKnnm5Zg6239EQ90L6239EQ90L" flashvars="" quality="high" bgcolor="#000000" width="480" height="296" name="backlight_player" align="middle" allowScriptAccess="always" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />  </object><br />
</center></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.proudcloud.net/2009/04/understanding-virtualization-and-cloud-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can Nonprofits Survive The Recession (Part 3)?</title>
		<link>http://blog.proudcloud.net/2009/04/can-nonprofits-survive-the-recession-part-3/</link>
		<comments>http://blog.proudcloud.net/2009/04/can-nonprofits-survive-the-recession-part-3/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 11:37:03 +0000</pubDate>
		<dc:creator>Karl Quirino</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Charities]]></category>
		<category><![CDATA[Convergent Digital Solutions]]></category>
		<category><![CDATA[Karl Quirino]]></category>
		<category><![CDATA[Karl Quirino & Associates]]></category>
		<category><![CDATA[New Zealand]]></category>
		<category><![CDATA[NGOs]]></category>
		<category><![CDATA[nonprofit organisations]]></category>
		<category><![CDATA[online communities]]></category>
		<category><![CDATA[Recession]]></category>
		<category><![CDATA[Schools]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[social networking]]></category>

		<guid isPermaLink="false">http://blog.proudcloud.net/?p=168</guid>
		<description><![CDATA[OPENING UP A NEW WORLD OF OPPORTUNITIES FIVE DEGREES OF SEPARATION   Networking is an essential skill. It is the key to building a strong base of constituents, supporters and volunteers. And in these economic times, your network becomes an even more vital resource.   The business of sustaining nonprofit operations is about relationships and [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: 11pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"><strong>OPENING UP A NEW WORLD OF OPPORTUNITIES</strong></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;;">FIVE DEGREES OF SEPARATION</span></strong></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: 4pt;"><span style="font-family: Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;">Networking is an essential skill. It is the key to building a strong base of constituents, supporters and volunteers. And in these economic times, your network becomes an even more vital resource. </span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 4pt; font-family: &quot;Trebuchet MS&quot;;"> </span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;">The business of sustaining nonprofit operations is about relationships and building on that business is about building and maintaining good relationships. For nonprofit organisations, relationships are all there is that stand in the way of failure or success. Everything in the universe only exists because it is in relationship to everything else. Nothing exists in isolation. We have to stop pretending we are individuals that can go it alone.</span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 4pt; font-family: &quot;Trebuchet MS&quot;;"> </span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;">These axioms are particularly relevant for New Zealanders. That’s because we have a &#8216;do-it-yourself&#8217; sort of culture. Sometimes, this preference makes it difficult for ask help from others. It pays not to forget that other people may like to help you achieve your goals, especially if you are able to make it hassle-free and an enjoyable experience for them.</span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 4pt; font-family: &quot;Trebuchet MS&quot;;"> </span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;">One shouldn’t think that networking as looking for sales opportunities either. Used car salesmen do that. But if you think of it as building relationships, networking becomes a superfluous task. Most people like connecting with others but if you’re too focused on pursuing a sales pitch it could lead to some</span><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;; mso-ansi-language: EN-NZ;"> <span lang="EN-NZ">unfavourable</span></span><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;"> results</span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 4pt; font-family: &quot;Trebuchet MS&quot;;"> </span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;">When conversing with people face-to-face or over the Internet follow up with anything you say you will do promptly. This leaves an impression that you are reliable and credible. Being honest and authentic are also attributes that are absolutely crucial for networking. These are the enduring qualities that clearly help achieve superior performance in good times. They are of even greater significance and importance in the current, much tougher economic environment. People in your network will discern this and you will sooner gain their trust and respect. Treasure your good reputation and protect it because it will open doors to opportunities that you otherwise would not have had operating in isolation.</span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;"><span style="mso-spacerun: yes;"> </span></span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;">New Zealand</span><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;"> is about three to five degrees of separation and if you have developed a network of people you&#8217;re bound to have contact with pretty much everyone in the country and those with much influence. That’s how it works.</span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 4pt; font-family: &quot;Trebuchet MS&quot;;"> </span></p>
<p class="NormalWeb6" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;">Obviously, the Internet is the best tool around for networking. That’s great because you don’t always have to be out most of the time pounding the pavement and knocking on doors, attending events and conferences or cocktail parties. At the end of the day you can go online and network while still in the office or even when you get home.</span></p>
<p class="NormalWeb6" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 8pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-family: Arial;"> </span></p>
<p class="NormalWeb6" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-family: Arial;">THE VALUE OF NETWORKING ON THE WEB</span></strong></p>
<p class="NormalWeb6" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 4pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-family: Arial;"> </span></p>
<p class="NormalWeb6" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-family: Arial;">Social Media on the Web is all about networking. Those who build capabilities to engage it end up harnessing what people may be able to offer by way of help, support and information. The society you live in is comprised of people involved in civil society – businesses, the community sector, government funding agencies, corporate sponsors, institutional and individual donors, advocates, supporters, volunteers and other charity organisations. By building a proper network on the Web, you are in fact enhancing the internal efficiency of the organisation you lead or work in. With increased visibility, delivery of services, launching a new programme, attracting skilled employees and strengthening capacity to raise funds from the public at large become less of a challenge.</span></p>
<p class="NormalWeb6" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 4pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-family: Arial;"> </span></p>
<p class="NormalWeb6" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-family: Arial;">Social networking websites such as Bebo, Facebook and Twitter (to name just a few in no particular order) can be a nonprofit&#8217;s winning ticket to accessing the millions of users who are now all interconnected. However, it makes sense to look before you leap into this vast ocean that offers a good number of opportunities for your organisation. </span></p>
<p class="NormalWeb6" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 4pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-family: Arial;"> </span></p>
<p class="NormalWeb6" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-family: Arial;">As I mentioned in my blog entry </span><span style="font-size: 10pt; color: blue; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-family: Arial;">
<a  href="http://karlquirino.wordpress.com/2009/04/23/why-conversations-and-stories-matter" onclick="javascript:pageTracker._trackPageview('/external/karlquirino.wordpress.com/2009/04/23/why-conversations-and-stories-matter');" >WHY CONVERSATION AND STORIES MATTER</a></span><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-family: Arial;"> w</span><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;">ord of mouth on the Web is the fastest and most influential promotion there is today. When a message resonates with someone and they pass it on to a group of friends within minutes it can reach thousands of people. If your organisation can create an online message that is both compelling enough to spread, but also firmly supports your charity brand&#8217;s values and objectives, you&#8217;ll have a winner on your hands.</span></p>
<p class="NormalWeb6" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 4pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-family: Arial;"> </span></p>
<p class="NormalWeb6" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-family: Arial;">Here now is a suggested approach to getting your feet wet in the social networking sphere of Web 2.0. </span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt;"><span style="font-size: 4pt; color: #333333; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span></p>
<p class="NormalWeb30" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span><strong>1</strong>. <strong style="mso-bidi-font-weight: normal;">PICK THE RIGHT SOCIAL NETWORKING SITE</strong>.</span><span style="font-size: 10pt; color: #333333; font-family: &quot;Trebuchet MS&quot;;"> </span><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;;">It pays dividends to start small, with one to two social networks, rather than trying to take the entire virtual world by storm all at once.</span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt;"><span style="font-size: 4pt; color: #333333; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span></p>
<p class="NormalWeb29" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span><strong>2</strong>. <strong style="mso-bidi-font-weight: normal;">FIND AN ‘EXPERT’ WHO CAN GUIDE AND HELP YOUR ORGANISATION</strong>.</span><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; color: #333333; font-family: &quot;Trebuchet MS&quot;;"> </span></strong><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;;">Get that person’s expertise involved so you won&#8217;t be starting from &#8216;scratch’. </span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt;"><span style="font-size: 4pt; color: #333333; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;;"><strong>3. EXTEND YOUR REACH</strong></span><span style="font-weight: normal; font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">.</span><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span><span style="font-weight: normal; font-size: 10pt; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">Select a social network and then use a &#8216;scattershot&#8217; approach. That is, don&#8217;t just set up a profile. Create a group and attract more supporters that way. </span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt;"><span style="font-size: 4pt; color: #333333; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;"><strong>4. PREPARE TO LOSE SOME CONTROL</strong></span><span style="font-weight: normal; font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">.</span><span style="font-weight: normal; font-size: 10pt; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;"> There is no way you can vet every word of every person who wants to be your friend or join your group on a social networking website. On some sites, you can set up an approval process for &#8216;comments&#8217; that people post but if you go this route, make sure the approval process is reasonable and fast.</span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt;"><span style="font-size: 4pt; color: #333333; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;"><strong>5. KNOW WHO IS ALREADY PRETENDING TO BE YOU</strong></span><span style="font-weight: normal; font-size: 10pt; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">. Don’t be surprised or offended when you find out that there may be some social networking website groups for your organisation that you did not set up. Such unofficial profiles are probably created by enthusiastic supporters without your knowledge. If you find such a profile, reach out to that person. He or she may be a committed supporter who might be willing to promote your content.</span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt;"><span style="font-size: 4pt; color: black; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;"><strong>6. MAKE A GOOD FIRST IMPRESSION. </strong></span><span style="font-weight: normal; font-size: 10pt; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">Make your organisation’s profile look good. Control what it will look like on other people&#8217;s friend lists &#8212; pick a great picture and title. That will get noticed soon enough.</span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt;"><span style="font-size: 4pt; color: #333333; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;;"><strong>7. POST YOUR EDGIEST, MOST VIRAL CONTENT</strong></span><span style="font-weight: normal; font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">.</span><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span><span style="font-weight: normal; font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">Social networks are at their best when people passing YOUR content around and they will only pass it around if it is creative. Look around, see what others are doing and come up with a jazzy profile name. Use video and interesting or</span><span style="font-weight: normal; font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-ansi-language: EN-NZ; mso-bidi-font-weight: bold;" lang="EN-NZ"> colourful</span><span style="font-weight: normal; font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;"> graphics. If it does not make you think &#8216;Cool!&#8217; then it is probably not viral. You will need to go back to the drawing board and might do better with a campaign or a specific gimmick rather than just a generic page plugging your nonprofit. </span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt;"><span style="font-size: 4pt; color: black; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;"><strong>8. FIND OUT WHICH OF YOUR FRIENDS AND SUPPORTERS ARE ALREADY ON SOCIAL NETWORKS</strong></span><span style="font-weight: normal; font-size: 10pt; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">. Survey members and friends of your organisation and find out who has social networking website account profiles or belong to other social networks. You’ll be surprised that many of them do. Send them an e-mail inviting them to become your friend or to join your group.</span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt;"><span style="font-size: 4pt; color: #333333; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;;"><strong>9. COMMUNICATE WITH YOUR SOCIAL NETWORK FRIENDS ON A REGULAR BASIS</strong></span><span style="font-weight: normal; font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">.</span><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span><span style="font-weight: normal; font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">Update your social network pages with new content. Better still, link your organisation’s official website to your pages and create more interest and participation. After you do this, take advantage of the special features that may be available on other users&#8217; profiles to get the word out on important issues and drive people to your pages and your organisation’s website. Don&#8217;t be static, think dynamic.</span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt;"><span style="font-size: 4pt; color: #333333; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;;"><strong>10. DEVOTE STAFF TIME TO MAKING YOUR ORGANISATION’S SOCIAL NETWORKING EFFORT A SUCCESS</strong></span><span style="font-weight: normal; font-size: 10pt; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">. Assign a staff person to accept friend requests, post comments on other people&#8217;s social networking site pages, and invite others to become friends. Achieve critical mass. That is what social networking is all about. If you don’t have a staff person to do this for you, consider outsourcing the tasks to someone who can do it for you on a contract basis. </span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt;"><span style="font-size: 4pt; color: #333333; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;;"><strong>11. CULTIVATE YOUR SOCIAL NETWORK ‘FRIENDS’</strong></span><span style="font-weight: normal; font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">. </span><span style="font-weight: normal; font-size: 10pt; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">Eventually your nonprofit organisation will want to start turning your &#8216;friends&#8217; into advocates, volunteers, sponsors and donors. Make sure your social networking pages always feature lots of opportunities to get involved. But be <span style="color: black;">specific when you do ask your friends to do something for your organisation and always let people know what happened at an event or with a campaign even if they did not participate. They might get involved the next time.</span></span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt;"><span style="font-size: 4pt; color: #333333; font-family: &quot;Trebuchet MS&quot;;"><strong> </strong></span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;"><strong>12. THINK OF SOCIAL NETWORKING ON THE WEB AS A VALUABLE INVESTMENT THAT APPRECIATES OVER TIME</strong></span><span style="font-weight: normal; font-size: 10pt; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">. The mostly younger people IN THE 18- to 35-age group you will deal with are the supporters, volunteers, sponsors and donors of tomorrow. Don’t forget too that the 35- to 65-age group represent a growing percentage of people who are active in social media networks in addition to a growing list of employees and executives of businesses and government agencies who could also end up supporting your organisation. </span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-weight: normal; font-size: 4pt; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;"> </span></p>
<p class="Heading316" style="background: white; margin: 0in 0in 0pt; text-align: justify;"><span style="font-weight: normal; font-size: 10pt; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">Don’t waste time! Get into the game now and learn how to use social media to your organisation’s advantage. Don’t allow yourself to get left behind for good.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-family: Arial;"> </span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; color: black; font-family: &quot;Trebuchet MS&quot;;">Other related blogs</span></strong><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;;">:</span><span style="font-size: 4pt; font-family: &quot;Trebuchet MS&quot;;"> </span></p>
<h1 style="background: white; margin: 0in 0in 0pt;"><span style="font-weight: normal; font-size: 10pt; color: blue; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">
<a  href="http://www.karlquirino.wordpress.com/2009/04/27/light-at-the-end-of-the-tunnel" onclick="javascript:pageTracker._trackPageview('/external/www.karlquirino.wordpress.com/2009/04/27/light-at-the-end-of-the-tunnel');" >Can Nonprofits Survive The Recession? – Part 1</a></span></h1>
<h1 style="background: white; margin: 0in 0in 0pt;"><span style="font-weight: normal; font-size: 9pt; color: black; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">(Light At The End Of The Tunnel)</span><span style="font-weight: normal; font-size: 2pt; color: blue; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;"> </span></h1>
<h1 style="background: white; margin: 0in 0in 0pt;"><span style="font-weight: normal; font-size: 10pt; color: blue; font-family: &quot;Trebuchet MS&quot;; mso-bidi-font-weight: bold;">
<a  href="http://www.karlquirino.wordpress.com/2009/04/27/the-trigger-that-creates-potency" onclick="javascript:pageTracker._trackPageview('/external/www.karlquirino.wordpress.com/2009/04/27/the-trigger-that-creates-potency');" >Can Nonprofits Survive The Recession? – Part 2</a></span></h1>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 9pt; color: black; font-family: &quot;Trebuchet MS&quot;;">(The Trigger That Creates Potency)</span><span style="font-size: 2pt; font-family: &quot;Trebuchet MS&quot;;"> </span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 10pt; color: blue; font-family: &quot;Trebuchet MS&quot;;">
<a  href="http://www.karlquirino.wordpress.com/2009/04/26/unlocking-a-gordian-knot" onclick="javascript:pageTracker._trackPageview('/external/www.karlquirino.wordpress.com/2009/04/26/unlocking-a-gordian-knot');" >Unlocking A Gordian Knot</a></span></p>
<p style="margin: 0in 0in 0pt; text-align: justify;"><span style="font-size: 9pt; color: black; font-family: &quot;Trebuchet MS&quot;;">(A Tremendous </span><span style="font-size: 9pt; color: black; font-family: &quot;Trebuchet MS&quot;;">Opportunity</span><span style="font-size: 9pt; color: black; font-family: &quot;Trebuchet MS&quot;;"> For Nonprofits)</span><span style="font-size: 2pt; color: green; font-family: &quot;Trebuchet MS&quot;;"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: 10pt; color: blue; font-family: &quot;Trebuchet MS&quot;;">
<a  href="http://www.karlquirino.wordpress.com/2009/04/26/prometheus-unbound" onclick="javascript:pageTracker._trackPageview('/external/www.karlquirino.wordpress.com/2009/04/26/prometheus-unbound');" >Prometheus Unbound</a></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: 9pt; color: black; font-family: &quot;Trebuchet MS&quot;;">(Building Communities On The Web)</span><span style="font-size: 4pt;"><span style="font-family: Times New Roman;"> </span></span></p>
<p><span style="font-size: 10pt; font-family: &quot;Trebuchet MS&quot;; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;">To learn more about what the author of this blog and his company do for nonprofits, please click on this 
<a  href="http://www.convergentdigital.co.nz/" onclick="javascript:pageTracker._trackPageview('/external/www.convergentdigital.co.nz/');" >link</a>.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.proudcloud.net/2009/04/can-nonprofits-survive-the-recession-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
