<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
    <channel>
        <title>suenovotny</title>
        <link>http://www.suenovotny.com/</link>
        <description></description>
        <language>en</language>
        <copyright>Copyright 2011</copyright>
        <lastBuildDate>Wed, 15 Jun 2011 13:04:12 -0500</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>Translating text with CSS</title>
            <description><![CDATA[<p>Sometimes you need to make a short bit of text bilingual, and you can't directly change the text itself.  For example, content automatically generated by a 3rd party service may be hard coded in English.  But if you can modify the CSS, you can add translations to text.</p>

<p>Ideally, the person hardcoding the English will have been nice enough to give it a unique id or class, like this:</p>

<p><code><pre>&lt;h3 class="enter">Enter&lt;/h3></pre></code></p>

<p>With the :after pseudo class and your translated content applied...</p>

<p><code><pre>h3.enter:after {content:"  |  Entrez"}</pre></code></p>

<p>...you will get this:</p>

<h3 class="enter">Enter  |  Entrez</h3>

<p>:after is supported by all modern browsers, but won't work in IE7 and earlier.</p>]]></description>
            <link>http://www.suenovotny.com/blog/2011/06/translating-text-with-css.php</link>
            <guid>http://www.suenovotny.com/blog/2011/06/translating-text-with-css.php</guid>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">css</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">tutorial</category>
            
            <pubDate>Wed, 15 Jun 2011 13:04:12 -0500</pubDate>
        </item>
        
        <item>
            <title>More iPhone citizen science: iNaturalist and Project Noah</title>
            <description><![CDATA[<p>Since I <a href="http://www.suenovotny.com/blog/2009/06/iphone-apps-for-citizen-scienc.php">first wrote about citizen science apps for the iPhone in 2009</a>, over 350,000 new applications have been released, and GPS is now a standard feature in the less expensive iPod touch. It's easier and cheaper for naturalists of all ages to collect data using handheld devices.<br /> <br /> Over the past week, I've been trying out 2 applications, iNaturalist and Project Noah, that allow you to input and geotag species sightings.</p> <h3>iNaturalist (<a href="http://inaturalist.org">website</a> | <a href="http://itunes.apple.com/us/app/inaturalist/id421397028?mt=8">app</a>)</h3> <p><strong>Pros:</strong></p> <ul>     <li>Doesn't require a photo in order to make a submission</li>     <li>Seems to be aimed at naturalists, educators and scientists.</li>     <li>Open data - anyone can download the submissions for use in their own research.</li>     <li>Simple but <a href="http://inaturalist.org/taxa">beautiful </a>and easy-to-use website</li>     <li>Anyone can add a place (like a park or natural region) and add species to it. I added <a href="http://inaturalist.org/places/9498">Ottawa's greenbelt</a>, and the species I submitted within that region were automatically added.</li> </ul> <p><strong>Cons:</strong></p> <ul>     <li>Much smaller userbase than Project Noah, meaning you may be the only user in your area (or in my case, country).</li>     <li>iPhone app is still very limited -- pretty much the only thing you can do in the current version is add a sighting.&nbsp; You can't view others' sightings, and you can't add a photo from your camera roll.&nbsp; You can add photos later from your computer. If you add a sighting on the web site, it doesn't sync back to the app.</li>     <li>The projects (specific data collection missions you can join) are still few in number and limited to a few locations. This is probably a result of the small userbase.&nbsp; Anyone can create a project.</li> </ul> <p>&nbsp;</p> <h3>Project Noah (<a href="http://www.projectnoah.org/">website </a>| <a href="http://itunes.apple.com/ca/app/project-noah/id417339475?mt=8">app</a>)</h3> <p>Makes collecting data purposeful and fun, more accessible to non-naturalists</p> <p><strong>Pros</strong></p> <ul>     <li>You can earn badges by finding species. I can see how the broader public appeal would bring in more data. It's like Foursquare, but useful!</li>     <li>You can join missions -- photographing pollinators or moths, for example.&nbsp; The missions may be tied to specific research projects, or just for fun.</li>     <li>Adding a sighting is easy, and the app uses icons to help you select an ID.</li> </ul> <p><strong>Cons</strong></p> <ul>     <li>You can't add a sighting in the app without uploading a photo, meaning you can't add birds you've identified by call.</li>     <li>Requires you to sign in with a 3rd party service, like Facebook or Google, instead of creating your own login. Some may find this a convenience, others may balk at having a public profile tied to their GPS whereabouts.</li>     <li>Data appears to be closed -- unlike iNaturalist, you can't download sighting data or add parks/projects.</li>     <li>Map is clunky to navigate (the scroll wheel zoom function is disabled for some reason).</li>     <li>Although it's more friendly to novice naturalists than iNaturalist, its data is less useful as a result. Project Noah is overrun with &quot;sightings&quot; of cats and houseplants.</li> </ul> <p><strong>Summary:</strong><br /> <br /> Project Noah seems like a good first nature app for kids, but is too limited for science at the high school level and above.&nbsp; The open nature of iNaturalist makes it a great choice for environmental science curricula and nature enthusiasts of all types.&nbsp; The ability to create a delineated study area on the map and catalog species within is a great tool.&nbsp; I hope they'll improve the iPhone app, or make the regular site more mobile-friendly.<br /> <br /> Note: Like many GPS apps, these make your exact location a matter of public record -- don't submit sightings from your backyard if you value your privacy.</p>]]></description>
            <link>http://www.suenovotny.com/blog/2011/03/more-iphone-citizen-science-in.php</link>
            <guid>http://www.suenovotny.com/blog/2011/03/more-iphone-citizen-science-in.php</guid>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">citizen science</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">iphone</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">nature</category>
            
            <pubDate>Sat, 12 Mar 2011 16:35:33 -0500</pubDate>
        </item>
        
        <item>
            <title>Make a dynamic thermometer with CSS and PHP </title>
            <description><![CDATA[<p>A thermometer is a great visual tool for showing progress towards a fundraising or advocacy goal. This simple, dynamic thermometer requires no images, and can be updated easily, or even automatically.</p>

<p><a href="http://suenovotny.com/misc/thermometer/therm1.php">View the demo</a></p>

The CSS defines what the thermometer and mercury look like.  This is pretty basic, but you can get creative.

<pre><code>#thermometer {
  height:30px; 
  width:350px; 
  border:1px solid #CCC;
  }
#mercury {
  background-color:#C00; 
  height:100%;
  }</code></pre>

Now, the PHP.
<pre><code>&lt;?php
//The amount you have so far
$current = 1500;
//The amount you're aiming for
$goal = 5000;
//The percentage of the way to your goal.
$mercury = ($current/$goal)*100;
?>
</code></pre>

Why use PHP instead of putting the values in by hand?
<ol>
	<li>You can refer to the latest numbers elsewhere on the page (or elsewhere on the site, if you put this info in a PHP include)</li>
<li>PHP calculates the percentage for you -- all you need to do is update your actual totals</li>
	<li>You might be able to pull that data in automatically if you're working with a service, like a donation processor or online advocacy tool, that provides an API.</li>
</ol>
Finally, the HTML to display the thermometer:
<pre><code>&lt;div id="thermometer">
	&lt;div id="mercury" 
        style="width:&lt;?php echo $mercury; ?>%;">
        &lt;/div>
&lt;/div>
</code></pre>

You can, of course, get much fancier -- try a background image on the thermometer, a glossy background image on the mercury, or rounded corners with CSS3.

<p>Here's the whole thing.</p>

<pre><code>
&lt;!DOCTYPE html>
&lt;head>
&lt;title>Thermometer: Basic&lt;/title>
&lt;style>
	#thermometer {
	height:30px; 
	width:350px; 
	background-color:#D1D7DF; 
	padding:5px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	}
	#mercury {
	background-color:#CF3500; 
	height:100%;
	-moz-border-radius: 10px;
	border-radius: 10px;
	}
&lt;/style>
&lt;/head>

&lt;body>

&lt;?php
$current = 1500;
$goal = 5000;
$mercury = ($current/$goal)*100;
?>
&lt;h2>We are &lt;?php echo $mercury; ?>% of the way to our goal of &lt;?php echo $goal; ?>!</h2>
&lt;div id="thermometer">
	&lt;div id="mercury" style="width:&lt;?php echo $mercury; ?>%;">&lt;/div>
&lt;/div>

&lt;/body>
&lt;/html>

</code></pre>
]]></description>
            <link>http://www.suenovotny.com/blog/2011/03/dynamic-thermometer-with-css-and-php.php</link>
            <guid>http://www.suenovotny.com/blog/2011/03/dynamic-thermometer-with-css-and-php.php</guid>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">tutorial</category>
            
            <pubDate>Tue, 08 Mar 2011 15:28:48 -0500</pubDate>
        </item>
        
        <item>
            <title>Information as art</title>
            <description><![CDATA[<p>Google Satellite images out of context can make for some fascinating art:</p>

<p>Jenny O'Dell <a href="http://www.jennyodell.com/satellite.html">collages bits of satellite maps</a> along themes like swimming pools, parking lots and silos.</p>

<p><a href="http://www.boston.com/bigpicture/2010/09/human_landscapes_in_sw_florida.html">Human landscapes in Southwest Florida</a>, from Boston.com's excellent Big Picture blog.  </p>

<p>Who knew suburban sprawl could be so visually appealing?</p>]]></description>
            <link>http://www.suenovotny.com/blog/2010/10/information-as-art.php</link>
            <guid>http://www.suenovotny.com/blog/2010/10/information-as-art.php</guid>
            
            
            <pubDate>Thu, 28 Oct 2010 14:34:46 -0500</pubDate>
        </item>
        
        <item>
            <title>Trading cards for the natural world</title>
            <description><![CDATA[<p>Inspired by a <a href="http://www.bioteach.ubc.ca/TeachingResources/GeneralScience/PokemonWildlife.pdf">disheartening study</a> (PDF) showing that children can identify far more Pokemon than local plants and animals, <a href="http://phylogame.org/">Phylo </a>is an online trading card game featuring real flora and fauna around the world. Players pit them against each other while learning facts about each species.  Who would win a battle between a muskox and a brown throated sloth? The muskox.</p>

<p>What makes Phylo especially cool is that the project is open to everyone's contributions -- cards, art, even the rules of the game itself.</p>

<p>I wasn't able to figure out how to actually play the game (rules are still being hashed out), but I did learn that the <a href="http://phylogame.org/?s=Kakapo">kakapo </a>is a heavy, flightless New Zealand parrot with a "pleasant odour".  And it can defeat a <a href="http://phylogame.org/2010/04/28/hawaiian-bobtail-squid/">Hawaiian Bobtail Squid</a> in battle.</p>]]></description>
            <link>http://www.suenovotny.com/blog/2010/05/trading-cards-for-the-natural.php</link>
            <guid>http://www.suenovotny.com/blog/2010/05/trading-cards-for-the-natural.php</guid>
            
            
            <pubDate>Sun, 16 May 2010 23:21:05 -0500</pubDate>
        </item>
        
        <item>
            <title>Getting ready for Copenhagen</title>
            <description><![CDATA[<p>Nonprofit coalitions are springing up all over in advance of&nbsp; the UN climate summit in Copenhagen in December, when world leaders will meet to make important revisions to the Kyoto Protocol.</p> <p>The biggest of these is <a href="http://tcktcktck.org/">tcktcktck.org</a>, a coalition between more than two dozen major nonprofits and associations, including WWF, Oxfam and Avaaz.  They're asking for an ambitious, fair, and binding treaty, and they've got some serious star power to back them up:</p> <p><object width="425" height="340"> <param value="http://www.youtube.com/v/aBTZOg6l6cA&amp;hl=en&amp;fs=1&amp;" name="movie" /> <param value="true" name="allowFullScreen" /> <param value="always" name="allowscriptaccess" /><embed width="425" height="340" allowfullscreen="true" allowscriptaccess="always" type="application/x-shockwave-flash" src="http://www.youtube.com/v/aBTZOg6l6cA&amp;hl=en&amp;fs=1&amp;"></embed></object></p> <p>The Global Climate wake-up call, from Avaaz.org:<br /> <object width="425" height="344"> <param value="http://www.youtube.com/v/zWrstBidAXg&amp;hl=en&amp;fs=1&amp;" name="movie" /> <param value="true" name="allowFullScreen" /> <param value="always" name="allowscriptaccess" /><embed width="425" height="344" allowfullscreen="true" allowscriptaccess="always" type="application/x-shockwave-flash" src="http://www.youtube.com/v/zWrstBidAXg&amp;hl=en&amp;fs=1&amp;"></embed></object></p> <p>And I've been working on <a href="http://makeforestscount.org/">Make Forests Count,</a> a small but growing coalition site aimed at eliminating loopholes that allow countries to clearcut their forests while collecting Kyoto credit.</p> <p>Here's our video, written and directed by Anthony Wong:</p> <p><object width="425" height="344"> <param name="movie" value="http://www.youtube.com/v/OHsbSpmQ9Hg&amp;hl=en&amp;fs=1&amp;" /> <param name="allowFullScreen" value="true" /> <param name="allowscriptaccess" value="always" /><embed width="425" height="344" src="http://www.youtube.com/v/OHsbSpmQ9Hg&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true"></embed></object></p> <p>Other groups looking forward to Copenhagen:</p> <ul>     <li><a href="http://www.davidsuzuki.org/Climate_Change/Projects/Climate_Summit/default.asp">The David Suzuki Foundation</a> calls the summit &quot;the most important wake up call of this century&quot;.</li>          <li><a href="http://www.stopclimatechaos.ie/organisations/">Stop Climate Chaos</a> is a coalition of Irish nonprofits.</li>     <li>and the entire UK government calls for citizens to <a href="http://www.actoncopenhagen.decc.gov.uk/en/">Act on Copenhagen</a></li></ul><p>Have you seen any other inspiring sites or social media regarding the Copenhagen summit?</p>]]></description>
            <link>http://www.suenovotny.com/blog/2009/10/getting-ready-for-copenhagen-o.php</link>
            <guid>http://www.suenovotny.com/blog/2009/10/getting-ready-for-copenhagen-o.php</guid>
            
            
            <pubDate>Sat, 03 Oct 2009 20:32:52 -0500</pubDate>
        </item>
        
        <item>
            <title>United breaks guitars: viral customer service</title>
            <description><![CDATA[<p>I met <a href="http://sonsofmaxwell.com/">Dave and his brother </a>a few years ago through my sister-in-law, and they are great guys. Their band does mostly east coast celtic and country, but they're not well-known yet, even within Canada.</p> <p>So when Dave posted this video about United Airlines wrecking his guitar, I went to share it around, only to find that <a href="http://www.google.ca/search?q=united+breaks+guitars">the internet beat me to it</a>.</p> <p><lj-embed id="30"> <object height="300" width="400"> <param value="http://www.youtube.com/v/5YGc4zOqozo&amp;hl=en&amp;fs=1&amp;" name="movie" /> <param value="true" name="allowFullScreen" /><embed height="300" width="400" allowfullscreen="true" type="application/x-shockwave-flash" src="http://www.youtube.com/v/5YGc4zOqozo&amp;hl=en&amp;fs=1&amp;"></embed></object> </lj-embed></p> <p>United is on the ball.&nbsp; Within 24 hours of the video's posting, they've <a href="http://travel.latimes.com/daily-deal-blog/index.php/smashed-guitar-youtu-4850/">apparently offered to make amends.  </a></p> <p>Tounge-in-cheek internet embarrassment seems to be the trick to getting real customer service.&nbsp; When it worked for <a href="http://mobile.slashdot.org/story/09/06/26/2356216/ATampTs-Bad-Math-Strikes-MythBusters-Savage?from=rss">Adam Savage</a>, many people wondered if AT&amp;T only responded quickly because of Savage's fame. But the success of this video shows that with little more than creativity, anyone can force a monolithic company's hand.</p>]]></description>
            <link>http://www.suenovotny.com/blog/2009/07/post.php</link>
            <guid>http://www.suenovotny.com/blog/2009/07/post.php</guid>
            
            
            <pubDate>Tue, 07 Jul 2009 23:13:29 -0500</pubDate>
        </item>
        
        <item>
            <title>iPhone apps for citizen science</title>
            <description><![CDATA[<p><a href="http://www.suenovotny.com/blog/2011/03/more-iphone-citizen-science-in.php">See the 2011 update for citizen science on iPhone here!</a></p><p>If you're already carrying an iPhone on your hikes, you've got instant access to endless knowledge about the natural world in your pocket.&nbsp; Impressive!&nbsp; But with these applications, current and forthcoming, you can also be an active contributor to science:</p><ol><li><a href="http://www.ibirdexplorer.com/"><strong>iBird Explorer:</strong></a> Leave that stack of heavy guidebooks at home, and take the entire avian directory of North America out in the field. You can even play song samples. Great for Audubon's <a href="http://www.audubon.org/bird/cbc/getinvolved.HTML">Christmas Bird Count </a>(unless it's rainy or muddy...) or use at home for <a href="http://www.birds.cornell.edu/pfw/">Project Feederwatch</a>.&nbsp; iBird can't identify birds by song the way <a href="http://www.shazam.com/music/web/pages/iphone.html">Shazam </a>identifies music without a sound-isolating microphone.&nbsp; We could see this feature soon, though, thanks to...</li><li><a href="http://www.pasco.com/about/news/in-the-news/spark-app-for-iphone.cfm"><strong>Pasco's </strong><strong>SPARK</strong></a>, demoed at Apple's 2009 developers conference, will turn the iPhone/iPod Touch into a basic portable labratory by connecting to a variety of sensors.&nbsp; Possible applications include water and air quality analysis.</li><li><strong>Photo-based species identification </strong>-- Not available yet, but exciting! CNN <a href="http://www.cnn.com/2009/TECH/science/05/04/citizen.science.climate.change/index.html">reports </a>that &quot;researchers at several universities are working on iPhone applications and computer programs that could analyze digital photos of plant leaves and automatically identify the plant's species.&quot;&nbsp; This would allow non-expert botanists to help out in a <a href="http://www.smu.ca/bioblitz/welcome.html">Bioblitz</a>, for example, automatically identifying (and maybe GPS tagging) each species.</li><li><strong>GPS,</strong> built into the iPhone 3G via Google Maps, allows the user to more-or-less accuately record and upload their location.&nbsp; Combined with other science applications, the possibilities are amazing.&nbsp; Users could collaboratively create real-time maps of everything from species range to water chemistry.&nbsp; As a bonus, the 3GS (2009 iPhone) includes a compass.&nbsp; Kind of takes the hard work out of orienteering, doesn't it?</li></ol><p>Granted, the iPhone is an expensive, delicate device ill-suited to outdoor classrooms.&nbsp; But if you're carrying one around anyway, why not put it to work improving the world's knowledgebase?</p>]]></description>
            <link>http://www.suenovotny.com/blog/2009/06/iphone-apps-for-citizen-scienc.php</link>
            <guid>http://www.suenovotny.com/blog/2009/06/iphone-apps-for-citizen-scienc.php</guid>
            
            
            <pubDate>Sat, 20 Jun 2009 09:42:17 -0500</pubDate>
        </item>
        
        <item>
            <title>5 lessons about social media, from STT09</title>
            <description><![CDATA[<p>I had the great opportunity to attend <a href="http://webofchange.com/social-tech-training">Social Tech Training</a> in Toronto this week, a master class for nonprofit folks using the internet to create social change.&nbsp;&nbsp;</p><p>Here are five of the big themes from the classes:</p><ol><li><b>An organization's online communications shouldn't stand alone.</b>&nbsp; <br />Whether it's your website, Facebook account, email blasts, or Twitter, online tools should be part of your organization's bigger strategy.&nbsp; Online communications staff are part of everything... development, communications, senior admin, programs, you name it.</li><li><b>You don't have to spend a lot on software and websites.</b>&nbsp; <br />In fact, some of the best services are free, or offer deep discounts for nonprofits.&nbsp; But research solutions carefully,&nbsp; Learning a new tool and integrating it into your commuincations isn't really free, when you consider staff time and opportunity cost. Check out <a href="http://www.slideshare.net/juhwawa/social-tech-training-power-building-online">Phillip Djwa's presentation on great tools for nonprofits.</a></li><li><b>Know your goals before jumping into a new tool.</b>&nbsp; <br />Should your nonprofit be on Twitter?&nbsp; First, consider what you want to get out of it.&nbsp; Most orgs have limited time and staff to devote to online media, and we really can't be everywhere at once.&nbsp; And remember that tools will come and go.&nbsp; Facebook is big today, but who knows what the hot new tool will be 6 months from now?</li><li><b>Email is still the most efficient way to reach people online</b>.&nbsp; <br />A good email client (like <a href="http://www.verticalresponse.com/">VerticalResponse</a> or <a href="http://www.mailchimp.com/">MailChimp</a>) is worth paying for.&nbsp; You'll collect valuable insight on your supporters' interests, and you'll know what works and what doesn't when it comes to getting your emails opened.&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp; Bonus tip: Never send bulk email via the bcc: field in your regular email client.&nbsp; ISPs may start to think you're a spammer, and you could see all of your outgoing emails delayed or blocked.&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp; For more insight on effective email, see Eric Squair's <a href="http://www.slideshare.net/juliawatson/best-email-ever">presentation on the Best Email Ever</a> (!), and Samer Rabadi's talk on <a href="http://stt2009.wik.is/Session_Notes/12_Tips_for_Good_Storytelling%3a_by_Samer_Rabadi">great storytelling for nonprofits.</a></li><li><b>There's no magic rule to online success</b>, <br /><a href="http://stt2009.wik.is/index.php?title=Session_Notes/Movement_Building_%7C_Tim_Walker&amp;highlight=biro">said Tim Walker</a> (a founder of Adbusters magazine).&nbsp; Nonprofits have had astounding success with online campaigns without a lot of money, experience, operations or staff.&nbsp; What successful nonprofits do have in common is an organizational understanding that the internet changes everything about the way we conduct campaigns and interact with supporters, and a willingness to give up some control.&nbsp;&nbsp;</li></ol><p>You can find detailed notes and resources from the Training <a href="http://stt2009.wik.is/Session_Notes">here</a>.</p>]]></description>
            <link>http://www.suenovotny.com/blog/2009/06/5-lessons-about-social-media-f.php</link>
            <guid>http://www.suenovotny.com/blog/2009/06/5-lessons-about-social-media-f.php</guid>
            
            
            <pubDate>Sun, 14 Jun 2009 15:10:43 -0500</pubDate>
        </item>
        
        <item>
            <title>Gory ads get attention</title>
            <description><![CDATA[<p>I clearly remember the first commercial I saw from the <a href="http://www.prevent-it.ca/">WSIB</a>, a workplace safety advocate in Ontario.  <a href="http://www.youtube.com/watch?v=noFCekWiUGE">A sous-chef is horribly injured by boiling water </a>(oil?) in a workplace accident.</p>

<p>Alberta's workplace safety group has just launched<a href="http://bloodylucky.ca/"> a very similar campaign</a> (though it was apparently in the works before Ontario's launched).</p>

<p>Warning:  Not for the squeamish!</p>

<p>What do you think?  Is this approach effective?</p>]]></description>
            <link>http://www.suenovotny.com/blog/2008/12/gorey-ads-get-attention.php</link>
            <guid>http://www.suenovotny.com/blog/2008/12/gorey-ads-get-attention.php</guid>
            
            
            <pubDate>Fri, 05 Dec 2008 13:39:11 -0500</pubDate>
        </item>
        
        <item>
            <title>Great software deals for nonprofits</title>
            <description><![CDATA[<p>Registered charities in the US and Canada have access to amazing deals on software through the excellent <a href="http://www.techsoup.org/stock/">Techsoup Stock program</a>.  Just about any commercial program you need is available for hundreds less than its commercial counterpart.  For example:</p>

<p><strong>Microsoft Office 2003 Professional</strong><br />
Regular price $400<br />
Charity price: $20 (and technically, this is an administrative fee).</p>

<p><strong>Adobe Creative Suite 3</strong><br />
Regular price: About $1,500<br />
Charity price: About $150</p>

<p>Note to Canadian charities: Techsoup Stock uses UPS for shipping.  Unlike FedEx and USPS, UPS charges customs brokerage fees ($45 or so, in my experience), and can take quite a while to get your shipment across the border.  If you have the option to download the software rather than have it shipped, do so and skip the headaches.</p>]]></description>
            <link>http://www.suenovotny.com/blog/2008/09/great-software-deals-for-nonpr.php</link>
            <guid>http://www.suenovotny.com/blog/2008/09/great-software-deals-for-nonpr.php</guid>
            
            
            <pubDate>Mon, 08 Sep 2008 11:23:32 -0500</pubDate>
        </item>
        
        <item>
            <title>Go through your site with this card and a dabber.</title>
            <description><![CDATA[<p>Courtesty of the <a href="http:///">Nonprofit Marketing Guide blog</a>, a neat <a href="http://www.nonprofitmarketingguide.com/bingo/nonprofit-buzzword-bingo.html">Nonprofit Buzzword Bingo card generator</a>.</p>

<p>You're sure to hear at least some of these terms in your meetings, especially if you're on the administrative or communications side of business. <br /></p>The worst offender (in my opinion, anyway) is <strong>impactful.</strong> <br /><p>Impactful is not a word, o marketers of the world.&nbsp; A website can be stunning, moving, visually appealing or beautiful.&nbsp; It can be intuitive, helpful, or a great informational resource.&nbsp; Who needs a vague term like impactful when we have so many wonderfully descriptive adjectives at our disposal?<br /></p><p>
</p>]]></description>
            <link>http://www.suenovotny.com/blog/2008/08/go-through-your-site-with-this.php</link>
            <guid>http://www.suenovotny.com/blog/2008/08/go-through-your-site-with-this.php</guid>
            
            
            <pubDate>Thu, 14 Aug 2008 15:50:04 -0500</pubDate>
        </item>
        
        <item>
            <title>3 great (free) tools for nonprofits</title>
            <description><![CDATA[<p><strong>Internal communications</strong></p>  <p><em>Google Apps</em></p><p>Google Apps lets organizations keep all their email, documents and calendars in one place.&nbsp; You can even create an intranet and collaborate on spreadsheets and presentations with their easy-to-use tools. The premium edition, with support and unlimited accounts, is available free to US nonprofits. Canadian orgs can still use the basic edition, with 100 user accounts, for free.<br /><a href="http://www.movabletype.org/">Go to Google Apps &raquo;</a></p>  <p><strong>Web and blogging</strong></p>  <p><em>Movable Type</em><br />  Long the choice of the Serious Blogger, MT made two big leaps this year. It's always been free to personal users, but now it's officially open source. With improved support for full web content management, MT powers quite a few big-name sites.<br /> <a href="http://www.movabletype.org/">Go to Movable Type &gt;</a></p><p><strong>Social networking</strong></p>  <p><em>Facebook causes</em> <br />  Launched in Canada earlier this year, Facebook Causes uses the ultra-popular social networking site to turn charitable giving into a social activity. Every time a supporter donates, recruits a friend, or joins a new cause, all their friends read about it.<br /> <a href="http://apps.facebook.com/causes/?m=f053e">Go to Facebook Causes &gt;</a></p>]]></description>
            <link>http://www.suenovotny.com/blog/2008/07/3-great-free-tools-for-nonprof.php</link>
            <guid>http://www.suenovotny.com/blog/2008/07/3-great-free-tools-for-nonprof.php</guid>
            
            
            <pubDate>Tue, 15 Jul 2008 17:02:28 -0500</pubDate>
        </item>
        
    </channel>
</rss>
