<?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>sol.net</title>
	<atom:link href="http://thinksea.info/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://thinksea.info/blog</link>
	<description>chase the sun</description>
	<lastBuildDate>Wed, 10 Mar 2010 04:29:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ruminations of keeping up&#8230;</title>
		<link>http://thinksea.info/blog/2010/03/10/ruminations-of-keeping-up/</link>
		<comments>http://thinksea.info/blog/2010/03/10/ruminations-of-keeping-up/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 04:29:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thinksea.info/blog/2010/03/10/ruminations-of-keeping-up/</guid>
		<description><![CDATA[
I&#39;ve been quiet lately, real quiet.  This is due largely because I&#39;ve been a little overwhelmed with all that&#39;s on my plate career wise and personally.  It&#39;s just simply hard to keep up with everything&#8230;.especially technologies as a web worker.

this brings me to the central impetus behind this post: how do we choose and keep up with the [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div>I&#39;ve been quiet lately, real quiet.  This is due largely because I&#39;ve been a little overwhelmed with all that&#39;s on my plate career wise and personally.  It&#39;s just simply hard to keep up with everything&#8230;.especially technologies as a web worker.</div>
<p />
<div>this brings me to the central impetus behind this post: how do we choose and keep up with the current technologies as a web worker?</div>
<p />
<div>In my day job, my former title is a web developer and after reading Sean Mccambridge&#39;s great post: <a href="http://www.seanmccambridge.com/articles/page/web-job-titles-need-a-facelift/">Web Job Titles Need a Facelift</a>  I really did start to wonder where I fit into this paradigm.</div>
<p />
<div>Am I a web designer? A web developer? An engineer? Hacker?</div>
<p />
<div>As many people have done, I started my current career learning about how to make web pages by <a href="http://calvinonlocation.homestead.com/calplace.html">pure fun and hobby</a> in college playing with a, then new, service called Homestead, now Intuit I think.  This got me hooked and I eventually just started building up my skills, one online tutorial at a time via the web or books.</div>
<p />
<div>The thing I struggle with is that I&#39;m simply a generalist&#8230;.but not an expert in anything. Sure, I can use photoshop pretty good&#8230;.I&#39;m not too shabby at CSS/XHTML&#8230;.I can whip up some javascript or asp/php code to work with a few relational db&#39;s, but I feel like I never know enough to to make whatever I&#39;m working on better.</div>
<p />
<div>Most of the time, I feel like I am an expert googler&#8230;.either  looking for inspiration or mining forums and content for information on how to resolve and issue.</div>
<p />
<div>My web designs aren&#39;t ground breaking, but an iteration of whatever seems to &#39;feel&#39; current at the time.  I&#39;m definitely not an engineer because I don&#39;t think I&#39;ve built any sort of &#39;system&#39; or program from scratch.  I manipulate stock images. Lame.</div>
<p />
<div>Which technologies do I invest in learning?  This is also hard for me because things are constantly changing.  Do I learn flash? probably not.  Do I learn some Object Oriented languages? C#, C++, Java? </div>
<p />
<div>How do I choose?&#8230;.I want to build rich internet applications, use and augment platforms like drupal and wordpress&#8230;and make really nice/functional websites.</div>
<p />
<div>Ruby as a language is seducing me, but getting the time to tinker is hard!</div>
<p />
<div>One language that I&#39;ve been playing a lot with lately is <a href="http://jquery.com/">jQuery</a> which is a really great javascript framework that makes manipulating elements on a web page easy and so much more!  It&#39;s pluggable, easy to understand, and pretty much platform agnostic.</div>
<p />
<div>Seeing how so many people are viewing things through the tiny screens of smartphones, I ran into this really nice plugin for jQuery called <a href="http://www.jqtouch.com/">jQtouch</a> that has totally excited me in to wanting to fully invest in building a cool web app.</div>
<p />
<div>If you have some basic html and css knowledge, you can make your website look like an iPhone application (see some of the screenshots I&#39;ve provided of my website)&#8230;</div>
<p />
<div>I created a mobile version of my site and just put the files in a subdirectory that are specific for.</div>
<p />
<div>In the main site, I include some javascript that detects what &#39;http_user_agent&#39; aka what browser for what device (eg. iphone, ipod, android)&#8230;and if it is a mobile smartphone, it redirects to the mobile version.  Here&#39;s the code below:</div>
<div>
<div style="font-family: Times New Roman; font-size: medium;">
<pre style="" />
<div style="">if(navigator.userAgent.match(/iP(od|hone)/i) || navigator.userAgent.match(/Android/i)){ 					window.location. href="http://hellocalvin.com/m/index.htm" ; 		}</div>
</pre>
<pre style="">Then, I simply used this tutorial on how to make mobile ready pages (an oreilly book): </pre>
<div style="color: rgb(51, 51, 51); font-family: Calibri, Helvetica Neue, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 24px;">
<div>
<h1 class="title" style="color: rgb(153, 0, 0); font-family: Lucida Bright, Constantia, Georgia, serif; font-weight: bold; margin-top: 0px; margin-right: 0px; margin-bottom: 0.5em; margin-left: 0px; font-size: 2em; line-height: 1em;"> <a href="goog_1268140668187">Building iPhone Apps with HTML, CSS, and JavaScript</a></h1>
</div>
<div>
<h2 class="subtitle" style="color: rgb(153, 0, 0); font-family: Lucida Bright, Constantia, Georgia, serif; font-weight: bold; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0.5em; margin-left: 0px; font-size: 1.75em; line-height: 1em;"> <a href="http://building-iphone-apps.labs.oreilly.com/">Making App Store Apps Without Objective-C or Cocoa</a></h2>
<div>Since jQTouch is really not that well documented, I went ahead and bought Peep Code&#39;s great video tutorial: Meet jQTouch <a href="http://peepcode.com/products/jqtouch">http://peepcode.com/products/jqtouch</a></div>
<p />
<div>With these resources, I pulled together a simple rendition of my online home: <a href="http://www.hellocalvin.com">http://www.hellocalvin.com</a></div>
<p />
<div>I even found an easy to install plugin for my wordpress blog that directs mobile browsers to a friendly version of my blog: Wordpress Mobile Pack <a href="http://wordpress.org/extend/plugins/wordpress-mobile-pack/">http://wordpress.org/extend/plugins/wordpress-mobile-pack/</a></div>
<p />
<div>And I digress.</div>
<p />
<div>I just need to focus more on what I want to do and find the right tools to get me there.  I suppose I feel a little guilt in always relying on other&#39;s examples of code, so I resolve to start documenting some of the things I&#39;ve done lately so that others may learn and google their own solutions <img src='http://thinksea.info/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </div>
<p /></div>
</div>
</div>
</div>
<p />
<p><img src="http://posterous.com/getfile/files.posterous.com/calweb/scMbqDr97oDwE83yw639Llynmk4MmHzxLCUbjgEWUFFkNAjauGPOs5NJNPhf/IMG_0025.png" width="320" height="480"/> <img src="http://posterous.com/getfile/files.posterous.com/calweb/OVNfv6OQZ3ou75I5HKrL8vPAArDx5InxhOPdlSW86wQO5RbBz7dqU4bTkZK7/IMG_0026.png" width="320" height="480"/> <img src="http://posterous.com/getfile/files.posterous.com/calweb/0mXEvdDBe640p27viYffBN2O88JI1yMxSMtVcAM5mxJtYHoVogfZ6qPi3jZW/IMG_0027.png" width="320" height="480"/> <img src="http://posterous.com/getfile/files.posterous.com/calweb/iltR3uOlekApA3TTsS6metZx66s3CwMK6LEp4FO49XnlS9vqWGRawekhw372/IMG_0029.png" width="320" height="480"/> <a href='http://posterous.com/getfile/files.posterous.com/calweb/6QvBmDowr7J2M81GOAoUVYUIWh6i1ZrTcmTUa6jeFJVPTNlvmzLgDklHoaCN/100_1035.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/calweb/MXTMXp5fcr9PTuWZ1LKiY1rgCIQBZJJTyYeBKyhcSDUHdsMooZpMvvmhU6F8/100_1035.jpg.scaled.500.jpg" width="500" height="375"/></a>
<div><a href='http://calweb.posterous.com/ruminations-of-keeping-up'>See and download the full gallery on posterous</a></div>
</p>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://calweb.posterous.com/ruminations-of-keeping-up">calweb&#8217;s posterous</a>  </p>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://thinksea.info/blog/2010/03/10/ruminations-of-keeping-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>web-based tools for resource matching &amp; capacity mapping for 	nonprofits/philanthropies #chsnp #chs #nptech @Deborah909</title>
		<link>http://thinksea.info/blog/2009/12/19/web-based-tools-for-resource-matching-capacity-mapping-for-nonprofitsphilanthropies-chsnp-chs-nptech-deborah909/</link>
		<comments>http://thinksea.info/blog/2009/12/19/web-based-tools-for-resource-matching-capacity-mapping-for-nonprofitsphilanthropies-chsnp-chs-nptech-deborah909/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 21:05:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thinksea.info/blog/2009/12/19/web-based-tools-for-resource-matching-capacity-mapping-for-nonprofitsphilanthropies-chsnp-chs-nptech-deborah909/</guid>
		<description><![CDATA[The following was posted via Deborah Elizabeth Finn, a wonderful woman and big figure in Nonprofit Technology as well as a member of NTEN (Nonprofit Technology Enterprise Network)
#### HERE&#39;S THE POSTING #### I&#39;m posting this with the blessing of Annaliese Hoehling of NTEN. Please forgive me if this seems slightly off-topic.
  I&#39;m in the [...]]]></description>
			<content:encoded><![CDATA[<div class="gmail_quote">The following was posted via Deborah Elizabeth Finn, a wonderful woman and big figure in Nonprofit Technology as well as a member of <a href="http://nten.org/">NTEN</a> (Nonprofit Technology Enterprise Network)</div>
<div class="gmail_quote">#### HERE&#39;S THE POSTING ####<br /> I&#39;m posting this with the blessing of Annaliese Hoehling of NTEN. Please forgive me if this seems slightly off-topic.
<p />  I&#39;m in the process of creating a directory of online tools that assist nonprofits and philanthropies with capacity mapping and resource matching. If you have an online tool or online data set that fits into this category, you&#39;re welcome to follow this link and enter a little bit of information about it:
<p />  &lt;<a href="http://spreadsheets.google.com/viewform?hl=en&amp;formkey=dDFyNDg2Wk1pTGZ3MDJER2lqQnZ5dEE6MA" target="_blank">http://spreadsheets.google.com/viewform?hl=en&amp;formkey=dDFyNDg2Wk1pTGZ3MDJER2lqQnZ5dEE6MA</a>&gt;
<p />  The purpose of this directory is to help an informal brain trust of nonprofit, philanthropic, and technological professionals think about ways to bring our sector&#39;s resources and needs together as seamlessly as possible.
<p />  Now that we are living the the age of date interchange and XML formatting, it&#39;s not necessary for everything to have a single owner, a single platform, or even a single host.  (However, a single login for all such tools would certainly be a blessing.)  We want to be sure that we aren&#39;t &lt;jargon alert&gt; building silos or reinventing the wheel &lt;/jargon alert&gt;.  We want to explore collaborations, consolidations, and mash ups.  If you think that your online resource should be in the mix, please add it to our quickly growing compendium.
<p />  Our informal brain trust is somewhat New-England-centric, and I feel sure that brilliant projects are in process elsewhere.  We don&#39;t want to be insular.* Please assist us by taking two or three minutes to let us know about the work your doing in online resource matching and capacity mapping.
<p />  Thank you very much!
<p />  Best regards from Deborah
<p />  * Do you know that song by Tom Lehrer?  &quot;These are all the ones of which the news has come to Haaahvaaahd/ And there may be many others but they haven&#39;t been discovaaahed!&quot; Some of us need to get over ourselves  :-)
<p />  Deborah Elizabeth Finn<br /> Strategist and Consultant<br /> Technology for the Nonprofit and Philanthropic Sector<br /> Boston, Massachusetts, USA
<p />  Email: <a href="mailto:deborah_elizabeth_finn@post.harvard.edu">deborah_elizabeth_finn@post.harvard.edu</a><br /> Blog: <a href="http://www.deborahelizabethfinn.com" target="_blank">www.deborahelizabethfinn.com</a><br /> Skype:  Deborah909<br /> Twitter: Deborah909<br /> LinkedIn: <a href="http://www.linkedin.com/in/deborah909" target="_blank">http://www.linkedin.com/in/deborah909</a><br /> Facebook: <a href="http://www.facebook.com/Deborah.Elizabeth.Finn" target="_blank">http://www.facebook.com/Deborah.Elizabeth.Finn</a>
<p />  I bring resources and needs together for nonprofits and<br /> philanthropies, mostly through strategic use of information<br /> and communication technologies.
<p /> </div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://calweb.posterous.com/web-based-tools-for-resource-matching-and-cap">calweb&#8217;s posterous</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://thinksea.info/blog/2009/12/19/web-based-tools-for-resource-matching-capacity-mapping-for-nonprofitsphilanthropies-chsnp-chs-nptech-deborah909/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BarCampCHS, et al. &#8211; Charleston, I love you.</title>
		<link>http://thinksea.info/blog/2009/10/29/barcampchs-et-al-charleston-i-love-you/</link>
		<comments>http://thinksea.info/blog/2009/10/29/barcampchs-et-al-charleston-i-love-you/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 05:00:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[barcampchs]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[geekery]]></category>
		<category><![CDATA[reflection]]></category>

		<guid isPermaLink="false">http://thinksea.info/blog/?p=412</guid>
		<description><![CDATA[
I think it&#8217;s safe to say that if you live in Charleston, SC and have a either a twitter account or do something with computers, then you already know about BarCamp Charleston, but what you may not know, unless you attended, is that something magical happened&#8230;at least for me.  I saw the reality of a [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="375" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="offsite=true&amp;lang=en-us&amp;page_show_url=%2Fgroups%2Fbarcampchs%2Fpool%2Fshow%2F&amp;page_show_back_url=%2Fgroups%2Fbarcampchs%2Fpool%2F&amp;group_id=1180748@N21&amp;jump_to=&amp;start_index=" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="375" src="http://www.flickr.com/apps/slideshow/show.swf?v=71649" allowfullscreen="true" flashvars="offsite=true&amp;lang=en-us&amp;page_show_url=%2Fgroups%2Fbarcampchs%2Fpool%2Fshow%2F&amp;page_show_back_url=%2Fgroups%2Fbarcampchs%2Fpool%2F&amp;group_id=1180748@N21&amp;jump_to=&amp;start_index="></embed></object></p>
<p>I think it&#8217;s safe to say that if you live in Charleston, SC and have a either a <a title="BarCampCHS Twitter Account" href="http://www.twitter.com/barcampchs" target="_blank">twitter account</a> or do something with computers, then you already know about <a title="BarCampCHS" href="http://www.barcampchs.org" target="_blank">BarCamp Charleston</a>, but what you may not know, unless you attended, is that something magical happened&#8230;at least for me.  I saw the reality of a community that supports each other, one that wants to learn from one another and relate.</p>
<p>As an outsider to Charleston (only 2 years in), I am truely inspired by how welcoming, intelligent, and sociable everyone has been.  With all the new social technologyness, it&#8217;s still hard to make &#8216;real&#8217; connections and actually meet real people behind the monikers and profile pics.</p>
<p>Luckily, here in Charleston, #chs for some, it&#8217;s super easy because of all the ways to meet and greet:</p>
<ul>
<li><a title="Lowcountry Bloggers" href="http://www.lowcountrybloggers.com" target="_blank">Lowcountry Bloggers</a> &#8211; an aggregation of local blogs, with weekly, sometimes daily roundups</li>
<li><a title="Social Media Club Charleston" href="http://socialmediaclub.pbworks.com/Charleston,-SC-(USA)" target="_blank">Social Media Club Charleston</a> &#8211; monthly meetups empowering others to use the likes of twitter, facebook, and other &#8217;social&#8217; media tools</li>
<li><a title="Charleston Twitter Community Hashtag" href="http://search.twitter.com/search?q=%23chs" target="_blank">#chs hashtag </a>- used regularly on twitter as a hub point to check out happenings in the Charleston, SC area, made popular by the efforts to standardize local hashtags on twitter.</li>
</ul>
<p>And now, <a title="BarCamp Charleston Website" href="http://www.barcampchs.org" target="_blank">BarCampCHS</a>&#8230;.an annual &#8216;unconference&#8217; &#8211; for a better explanation, go <a title="What is BarCampCHS?" href="http://www.barcampchs.org/about" target="_blank">HERE</a></p>
<p>Being a planner gave me a unique perspective (a post dedicated to this will be coming), one that also was mixed with high hopes that everyone had a good time, learned a lot, and hopefully got to network and connect with some really cool people.  All in all, I think we set the &#8216;bar&#8217; high as the comments have blown me away with the positivity&#8230;.generally saying, &#8220;Barcamp Charleston has arrived, and is here to stay&#8221;  For that I am thrilled and anxiously await the next (after some recovery time, of course).</p>
<p>Some of my highlights (I&#8217;ll try to use the flickr photo pool to help illustrate)</p>
<p>Team 342 Robotics team and Summer Py-Games Initiative:<br />
<a title="Robot, side view by Librarylion., on Flickr" href="http://www.flickr.com/photos/librarylion/4047397868/"><img src="http://farm3.static.flickr.com/2517/4047397868_8f663a697e.jpg" alt="Robot, side view" width="374" height="500" /><br />
</a>(photo:<a href="http://www.flickr.com/photos/librarylion/">librarylion</a>)</p>
<p>Meeting Dave Moulton (made bikes for olympians and wrote a book on rock and roll)</p>
<p><a title="Bike maintenance by imabug, on Flickr" href="http://www.flickr.com/photos/imabug/4043538120/"><img src="http://farm3.static.flickr.com/2617/4043538120_607c6d0a1a.jpg" alt="Bike maintenance" width="500" height="375" /><br />
</a>(photo:<a href="http://www.flickr.com/photos/imabug/">Eugene Mah</a>)</p>
<p>Learning about and eating Bacon:</p>
<p><a title="BarCamp Charleston by chrys, on Flickr" href="http://www.flickr.com/photos/chrys/4042920958/"><img src="http://farm3.static.flickr.com/2764/4042920958_1afaf35ee6.jpg" alt="BarCamp Charleston" width="500" height="333" /><br />
</a>(photo:<a href="http://www.flickr.com/photos/chrys/">Chrys Rynearson</a>)</p>
<p>And seeing happy people learning and connecting with each other:</p>
<p><a title="BarCamp Charleston by chrys, on Flickr" href="http://www.flickr.com/photos/chrys/4042789170/"><img src="http://farm3.static.flickr.com/2698/4042789170_2d1483e1db.jpg" alt="BarCamp Charleston" width="500" height="333" /><br />
</a>(photo:<a href="http://www.flickr.com/photos/chrys/">Chrys Rynearson</a>)</p>
<p>I&#8217;m so lucky to be here in Charleston, SC!  Just by being involved with planning this event, I&#8217;ve made at least 20 more friends!  Thank you!</p>
<p>As a former educator, I&#8217;m inspired by the interactions that happened because of BarCampCHS and am proud to be a part of it!</p>
<p>Thank you Charleston, I love you!</p>
<p>Here&#8217;s an awesome video made by <a title="Geoff Marshall" href="http://www.geofftech.co.uk/" target="_blank">Geoff Marshall</a> &#8211; yet another new friend who&#8217;s sadly leaving #chs <img src='http://thinksea.info/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/X8yRyvI0XeE&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/X8yRyvI0XeE&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://thinksea.info/blog/2009/10/29/barcampchs-et-al-charleston-i-love-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blognic was fun!</title>
		<link>http://thinksea.info/blog/2009/10/18/blognic-was-fun/</link>
		<comments>http://thinksea.info/blog/2009/10/18/blognic-was-fun/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 06:10:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[geekery]]></category>

		<guid isPermaLink="false">http://thinksea.info/blog/archives/409</guid>
		<description><![CDATA[So today I attended my very first Blognic in the Lowcountry to connect with more techies/geeks/bloggers and generally integrate myself more into this wonderful community.

I have to say, it was really fun and got to see some familiar faces: Eugene, Kathy and Ian 
But I also got to meet some other really nice people: Chuck, [...]]]></description>
			<content:encoded><![CDATA[<p>So today I attended my very first <a href="http://blog.imabug.net/archives/2009/10/a-cool-blognic-09.php">Blognic</a> in the Lowcountry to connect with more techies/geeks/bloggers and generally integrate myself more into this <a href="http://www.lowcountrybloggers.com">wonderful community</a>.
<p />
<div>I have to say, it was really fun and got to see some familiar faces: <a href="http://blog.imabug.net/">Eugene</a>, <a href="http://thefilipinofriends.com/">Kathy</a> and <a href="http://ian.may.name/">Ian</a> </div>
<div>But I also got to meet some other really nice people: <a href="http://chuckography.blogspot.com/">Chuck</a>, <a href="http://jcmoffitt.blogspot.com/">James and Katy</a></div>
<p />
<div>I made lumpia (wish i had a camera to document my cooking), but thanks to Eugene, I have a picture:</div>
<div><a href="http://imabug.net/gallery/v/EugeneAlbums/CHSBlogParty/Blognic09/P1110612.JPG.html"> Lumpia via Eugene</a></div>
<div><a href='http://posterous.com/getfile/files.posterous.com/calweb/5FrMclGwSJOjKu5vYXvwF04lroStE8wNQRaoO8oDOAtPJKHLgTPpcznhTiyH/lumpia.jpg'><img src="http://posterous.com/getfile/files.posterous.com/calweb/1yftJ9HOs2yJIfVMqcdGhpBpaZJ7LfB8LT7AXP4jyIqZi9mjfbFdK1v2U5Gc/lumpia.jpg.scaled.500.jpg" width="500" height="375"/></a>  </div>
<p />
<div>We also had some good conversations ranging from Fillipino culture to beer to cell phones, dogs, and IT.</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://calweb.posterous.com/blognic-was-fun">calweb&#8217;s posterous</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://thinksea.info/blog/2009/10/18/blognic-was-fun/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blog Action Day &#8211; Global Warming</title>
		<link>http://thinksea.info/blog/2009/10/16/blog-action-day-global-warming/</link>
		<comments>http://thinksea.info/blog/2009/10/16/blog-action-day-global-warming/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 05:42:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[activism]]></category>
		<category><![CDATA[bad09]]></category>
		<category><![CDATA[environment]]></category>

		<guid isPermaLink="false">http://thinksea.info/blog/?p=387</guid>
		<description><![CDATA[Blog Action Day is about creating a conversation on something that is important, and it just so happens that this year&#8217;s topic is Global Warming.
Many things contribute to global warming, and I&#8217;m not really interested in trying to wrap my mind around all of the issues surrounding this multifaceted, global issue.  Rather, I&#8217;d like to [...]]]></description>
			<content:encoded><![CDATA[<h2><a href="http://blogactionday.org/" target="_blank">Blog Action Day</a> is about creating a conversation on something that is important, and it just so happens that this year&#8217;s topic is Global Warming.</h2>
<p>Many things contribute to global warming, and I&#8217;m not really interested in trying to wrap my mind around all of the issues surrounding this multifaceted, global issue.  Rather, I&#8217;d like to focus on how I try to be &#8216;green&#8217; and what I think can or should happen to help tackle this global issue.</p>
<p>Some things in my life <strong><span style="text-decoration: underline;">I DO</span></strong> that I feel help mitigate global warming.</p>
<ul>
<li><strong><span style="text-decoration: underline;">I walk or bike to work</span></strong>
<ul>
<li><span>I rent, and although I&#8217;m at that age where many of my friends are buying houses (which I hope to do in the next few years), I have the luxury to move about Charleston and pick where I want to live.  I&#8217;ve been fortunate enough to live right near where I work, which is awesome because not only do I get to sleep a little later, but I literally have to walk 100 yards to my office, and when I can/need, I can work from where I live (since I&#8217;m a web worker and can work from any computer with an internet connection).  I purposefully chose to live near where I work so that I can walk or bike and find huge rewards in time, money, and wear on my vehicle.</span></li>
</ul>
</li>
<li><strong><span style="text-decoration: underline;">I don&#8217;t buy bottled water when I can</span></strong>
<ul>
<li>I&#8217;m not saying this is evil if you do buy bottled water and there definitely has been debate on bottled water versus tap water safety, but I don&#8217;t drink bottled water when I can help it (sometimes I do) because it simply aids in the demand in creating more plastic&#8230;..which can be recycled, but regardless of being recycled or not, many plastics don&#8217;t make it to recycling facilities and end up in our waterways which, also lead to our oceans and become pellet-like and disrupt our ocean foodwebs&#8230;.that, in turn, could exacerbate the environmental disturbance that causes global warming.  I like using my nalgene, and now more recently, my sigg water bottle because they are sturdy, hold a lot more than a bottle of water, and save on using more plastics.</li>
</ul>
</li>
<li><strong><span style="text-decoration: underline;">If it&#8217;s yellow, let it mellow</span></strong>
<ul>
<li>This may sound gross, but I try not to flush (mostly in the evenings till morning) the toilet everytime I go pee&#8230;.because I don&#8217;t want to waste water, but think about it,  urine comes out sterile, unless you have kidney issues or a health problem, and it takes most bacteria about a day or so to reach a critical (stinky level)&#8230;so why not let them sit for an evening.  I, however, do flush every morning and clean my bathroom weekly.</li>
</ul>
</li>
<li><strong><span style="text-decoration: underline;">I use Compact Florescent Bulbs</span></strong>
<ul>
<li>Not only does this save some money over time, it also saves energy that otherwise would have been wasted with less efficient bulbs.  The one caveat is that they contain a little mercury, but if disposed of properly, then I feel like it&#8217;s still well worth the switch in money saved alone.</li>
</ul>
</li>
<li><strong><span style="text-decoration: underline;">I try to eat locally grown foods when my budget allows</span></strong>
<ul>
<li>I&#8217;m all about supporting our local farmers, but I feel like I am also eating healthier and doing my part in keeping all the expenses, gas, pesticides to a minimum because the food doesn&#8217;t need to travel as far (less gas used to transport), the food will tend to be more &#8216;in season&#8217; and native to the area, unlike eating antibiotic ridden food&#8230;and the food will have less preservatives.  Win, win.</li>
</ul>
</li>
<li><strong><span style="text-decoration: underline;">I take full advantage of Charleston&#8217;s recycling program</span></strong>
<ul>
<li>I diligently try to recycle what I can to help reuse and reduce the amount of waste that comes from me.</li>
</ul>
</li>
<li><strong><span style="text-decoration: underline;">I cultivate my love and passion for the environment</span></strong>
<ul>
<li>I do this by making a point to do at least one fun thing in nature every weekend, whether it be surfing, kayaking, hiking, camping&#8230;.the more I love our environment, the more accountable I feel to make sure I do my part.</li>
</ul>
</li>
</ul>
<p>Things I <strong><span style="text-decoration: underline;">want to DO</span></strong> to help mitigate global warming</p>
<ul>
<li><strong><span style="text-decoration: underline;">Get an energy efficient vehicle</span></strong>
<ul>
<li>Biodiesel, electric&#8230;.whatever I can do to get a vehicle that not only gets more miles to the gallon, but also dramatically reduces the amount of fuel consumption of a limited resource&#8230;and the less green house gases being release.</li>
</ul>
</li>
<li><strong><span style="text-decoration: underline;">Get more involved with educating others on things that can help  with the big issue of global warming.</span></strong></li>
</ul>
<h2><strong>Ideas floating around:</strong></h2>
<ul>
<li>Transparent Solar cells</li>
<li>simplifying conversion of glycerin to methanol/ethanol for transesterification to reduce waste in making biodiesel</li>
<li>research more on algae and alternative biomass fuel sources like switchgrass, soy beans, and corn</li>
<li>convert wave energy more efficiently to produce power as well as wind energy and geothermal</li>
</ul>
<p>I hope to add more to this post in the future, but this is what I feel and hope to do my part in helping mitigate global warming.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinksea.info/blog/2009/10/16/blog-action-day-global-warming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>for googness sake, I caught some wave</title>
		<link>http://thinksea.info/blog/2009/10/10/for-googness-sake-i-caught-some-wave/</link>
		<comments>http://thinksea.info/blog/2009/10/10/for-googness-sake-i-caught-some-wave/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 02:21:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[googlewave]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://thinksea.info/blog/?p=389</guid>
		<description><![CDATA[
Yes folks, I have wave..since October 2nd.  I don&#8217;t know what I did to get an invite on October 2nd to please the powers that be, but chances are, if you are a techie or someone inclined towards social media, you&#8217;ve heard of Google Wave and how exclusive it has been for the past 5 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wave.google.com"><img class="alignleft size-full wp-image-391" title="Google-Wave-logo" src="http://thinksea.info/blog/wp-content/uploads/2009/10/Google-Wave-logo.jpg" alt="Google-Wave-logo" width="251" height="245" /></a></p>
<p>Yes folks, I have wave..since October 2nd.  I don&#8217;t know what I did to get an invite on October 2nd to please the powers that be, but chances are, if you are a techie or someone inclined towards social media, you&#8217;ve heard of Google Wave and how exclusive it has been for the past 5 months.</p>
<p>I&#8217;ve been watching the <a title="Video of Google Wave unveiling at I|O Conference" href="http://www.youtube.com/watch?v=v_UyVmITiYQ" target="_blank">youtube videos</a>, scraping every <a title="Read Write Web article on Google Wave" href="http://www.readwriteweb.com/archives/widgets_robots_extensions_a_few_things_to_try_once_you_get_your_google_wave_invite.php" target="_blank">website</a> I possibly could to get a handle on this new thing that many are saying will <a title="Buisiness Week Article on Google Wave" href="http://www.businessweek.com/technology/content/oct2009/tc2009104_703934.htm" target="_blank">replace email</a>.</p>
<p>Well, for now, I&#8217;m not going to try and pretend I&#8217;m an expert, but I do want to give my first impressions on this new and, dare I say, &#8216;revolutionary&#8217; tool for collaboration.</p>
<p>Realizing I am in &#8216;preview&#8217;, Google does not make promises for stability and/or performance, which is understandable and fine by me.</p>
<h2><strong><span style="text-decoration: underline;">Google Wave Interface</span></strong></h2>
<p>For the most part, the google wave interface is somewhat easy to navigate and largely resembles an inbox.<br />
<img src="http://api.photoshop.com/home_dfc50c4f70114660b8796fc66e432267/adobe-px-assets/ffa26c1a40a44b01b8d7290b410d1116" alt="" width="550" height="280" /></p>
<p>So there&#8217;s basically for sections &#8211; as shown in the above pic.</p>
<ul>
<li>(Top Left) &#8211; Inbox-like view where you see your &#8216;inbox&#8217; posts by you, any queries you&#8217;ve saved, as well as folders you have.</li>
<li>(Botom Left) &#8211; Shows where your contacts are, including robots.</li>
<li>(Middle) &#8211; Is the current filter or query, whether it be &#8220;in:inbox&#8221;, &#8220;by:me&#8221; or any custom filters you&#8217;ve created..like: &#8220;with:public chs&#8221; or &#8220;with:public barcamp&#8221; &#8211; you can manually use the search box everytime and type in those queries, or save them under searches.</li>
<li>(Right) &#8211; This is the active wave that you are viewing (if you didn&#8217;t maximiz the wave) &#8211; the little plus sign on the top adds contacts.</li>
</ul>
<h2><strong><span style="text-decoration: underline;">Robots/Gadgets</span></strong></h2>
<p>I believe this is what makes Google Wave standout (aside from having friends and coworkers using it).  Just from the demo on google and the many developers creating more robots/gadgets, there are already plenty and more to come&#8230;</p>
<p>Below is an example of <a title="Wolfram Alpha" href="http://www.wolframalpha.com/" target="_blank">Wolfram Alpha</a> in Google Wave:</p>
<p><a title="Larger Image" href="http://farm3.static.flickr.com/2596/3973152015_6095ac9121_b.jpg" target="_blank"><img class="alignnone" title="Wolfram Alpha in Google Wave" src="http://farm3.static.flickr.com/2596/3973152015_6095ac9121.jpg" alt="" width="500" height="313" /></a></p>
<p>If you can&#8217;t quite see the computations, just click the picture to see a larger view.</p>
<p>Using robots is quite easy as you simply have to add them to your contacts, in this case: py-robot@appspot.com</p>
<p>Then to use them, simply add them to your wave and for Wolfram Alpha, you put your query in [brackets] and it will return your query <img src='http://thinksea.info/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here&#8217;s a few that I&#8217;ve found useful so far:</p>
<ul>
<li><strong>Wolfram Alpha</strong> (add: py-robot@appspot.com) and use [brackets] to trigger the robot to compute.</li>
<li><strong>Bouncy</strong> (add:bouncy-wave@appspot.com) and use &#8220;bounce: emailofrobot@appspot.com&#8221; to remove a certain robot from a wave.  This could be useful if you need a robot for a limited time, but keep triggering it by accident.</li>
<li><strong>Tweety</strong> (add:tweety-wave@appspot.com) This connects to your twitter account, but would not recommend for public waves as people will be able to tweet on your behalf.  It basically puts the twitter interface in a wave that you can update.  This robot would be good if you have group or company twitter and are collaborating with a bunch of people and you want to make group updates as you finish things. (like judging a contest) or for an international team that will be updating throughout the evening/day.</li>
<li><strong>Posterous</strong> (add:posterous-robot@appspot.com) I havent used this one yet, but I imagine it will have the same functionality like in your email.</li>
</ul>
<p>As of this writing<a title="Rosy for Google Wave (Translation tool)" href="http://www.youtube.com/watch?v=NOHwPgMXsNY" target="_blank"> Rosy</a>, the translation robot doesnt seem to be active in &#8216;Preview&#8221;, but I suspect it will be back and probably in an &#8216;Apple-like&#8217; store for purchase.</p>
<h3>Extensions/Gadgets</h3>
<p>One extension that I really like is <a title="Ribbit for Google Wave" href="http://www.ribbit.com/wave/" target="_blank">Ribbit </a>(shown below) which allows you to make conference calls with people in your wave, all they have to do is enter their numbers, and when they do, you simply click &#8220;Start Conference&#8221; so you can talk on the phone while you are collaboratively working on a document for something or another.<br />
<a href="http://www.ribbit.com/wave/" target="_blank"><img src="http://api.photoshop.com/home_dfc50c4f70114660b8796fc66e432267/adobe-px-assets/9e28751fa0f74928939c90ecd493d8c9" alt="" width="500" height="204" /></a></p>
<p>Of course, if you&#8217;ve seen the Google Wave Preview videos, you will also know that there is a &#8220;Starter Pack&#8221; of sorts, including the Maps and the Yes/No/Maybe which all will come in handy when you are working with others.</p>
<h2>Thoughts/Impressions/Issues</h2>
<p>I could go on and on about how how I think this may revolutionize the way we communicate, but like many other sources, I feel like it take a little savvy to move around as well as hunting around for the different robots and gadgets that make collaboration easy&#8230;however, things evolve, and I imagine as the userbase gets larger, it will become more and more easy to use.  The interface is easy enough to navigate, it&#8217;s just the performance is a little shoddy with the &#8216;realtimeness&#8217; as well as using the queries and making a wave public.</p>
<p>As more developers make modules and robots to extend the functionality, I feel like businesses and organizations will start using Google Wave as a powerful tool, but right now, I think it&#8217;s so limited that people are mainly using it for chat and the wow factor by inserting gadgets and testing out the robots.</p>
<p>I personally think for community organizing and collaborating on projects, it&#8217;s &#8216;Game-on&#8217;, but as for replacing email, maybe, just maybe 5 years <img src='http://thinksea.info/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  and sooner if they can mimic some of the valuable features of gmail such as the ways to select multiple emails and do bulk actions to.  Also, I&#8217;m not sure how you can remove people from waves, or if you just create new ones&#8230;..I definitely will be tinkering and trying to use this in my daily life&#8230;.here&#8217;s a great video to explain google wave:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/rDu2A3WzQpo&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/rDu2A3WzQpo&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://thinksea.info/blog/2009/10/10/for-googness-sake-i-caught-some-wave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BarcampCHS promotional Video</title>
		<link>http://thinksea.info/blog/2009/10/06/373/</link>
		<comments>http://thinksea.info/blog/2009/10/06/373/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 04:15:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[barcamp]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://cwebster.freehostia.com/blog/?p=373</guid>
		<description><![CDATA[
BarCamp Charleston Promo! from Dan Conover on Vimeo.
]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=6833737&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=6833737&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object>
<p><a href="http://vimeo.com/6833737">BarCamp Charleston Promo!</a> from <a href="http://vimeo.com/user320914">Dan Conover</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinksea.info/blog/2009/10/06/373/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>social media &#8211; a changemaker&#8217;s way to communicate</title>
		<link>http://thinksea.info/blog/2009/04/10/social-media-a-changemakers-way-to-communicate/</link>
		<comments>http://thinksea.info/blog/2009/04/10/social-media-a-changemakers-way-to-communicate/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 22:49:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[changemaker]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[reflection]]></category>
		<category><![CDATA[socialmedia]]></category>
		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://thinksea.info/blog/?p=346</guid>
		<description><![CDATA[How many times in the past few months have you heard of people talking about, twitter, facebook, you tube, or flickr?
I feel like social media is all the rage nowadays, with everyone and their grandma signing up.  As a web developer, we have companies that call us all of the time that just shout out [...]]]></description>
			<content:encoded><![CDATA[<p>How many times in the past few months have you heard of people talking about, <a title="Twitter" href="http://www.twitter.com" target="_blank">twitter</a>, <a title="Facebook" href="http://www.facebook.com" target="_blank">facebook</a>, <a title="You Tube" href="http://www.youtube.com" target="_blank">you tube</a>, or <a title="Flickr" href="http://www.flickr.com" target="_blank">flickr?</a></p>
<p>I feel like social media is all the rage nowadays, with everyone and their grandma signing up.  As a web developer, we have companies that call us all of the time that just shout out the &#8216;magic&#8217; words of &#8216;twitter&#8217;, &#8216;facebook&#8217;, or &#8216;blog&#8217;.  My first gut reaction to hearing them &#8216;name-drop&#8217; is that of excitement and said company harnessing the ever-increasing power of the internet to connect others, but oftentimes&#8230;.someone or something &#8216;they&#8217; read told them to do it&#8230;&#8230;.because it&#8217;s free marketing&#8230;.or is it?  If you just sign up for twitter and make 2 updates a month, the only followers you are going to get are bound to be spammers.  What is the value in that?</p>
<p>They don&#8217;t tell you that you have to work it, use these services regularly with quality content in order to garner a respectible audience, but as they say, &#8220;haste makes waste&#8221;.  However, why would I be grilling these companies for at least trying to harness some of the wonder programs that exist now to their advantage?  I should be extremely excited that they are becoming savvy and embracing these new technologies that they would have scoffed at even a few months ago.  Actually, I am extremely excited!</p>
<p>Social media is starting to get traction, everywhere. Period.  And I must say that it has me really giddy and hopeful to see how it evolves&#8230;.hence this post.</p>
<p>Realizing the increasing ubiquity of social media, combined with &#8216;continuous  computing&#8217;&#8230;..reaching people in profound ways is now actualized in cyberspace.</p>
<p>To a fault, I am somewhat an altruistic person who loves connecting, organizing, and communicating with people&#8230;and, to this end, I seek ways to make this easier through technology.  I seek because I am inspired by what is NOW, currently being done!</p>
<p>Following are some truely amazing examples of how social media is shaping our world and helping others through education, action, and connecting.</p>
<p><a href="http://thinksea.info/blog/wp-content/uploads/2009/04/flickr_48.png"><img class="alignleft size-medium wp-image-353" title="flickr_48" src="http://thinksea.info/blog/wp-content/uploads/2009/04/flickr_48.png" alt="" width="48" height="48" /></a></p>
<p> </p>
<p>  AnomalousNYC&#8217;s <a title="Palestine Project" href="http://www.flickr.com/photos/anomalous/sets/522872/" target="_blank">Palestine Project</a> on FLICKR -</p>
<p>Relevant as it is right now with Obama trying to help out with the &#8216;<a title="Annapolis Conference" href="http://en.wikipedia.org/wiki/Annapolis_Conference" target="_blank">two-state</a>&#8216; solution between Palestine and Israel, this photostream really invokes strong emotions about the enormity of the human rights issues being broken by showing, with some artistic enhancing, some of what is going on in the West Bank and Gaza strip.</p>
<p>in this example of the use of flickr, anomalousNYC uses photojournalism to invoke emotion, which definitely invokes emotion.</p>
<p><a href="http://thinksea.info/blog/wp-content/uploads/2009/04/frontlinelogo1.gif"><img class="alignnone size-medium wp-image-355" title="frontlinelogo1" src="http://thinksea.info/blog/wp-content/uploads/2009/04/frontlinelogo1.gif" alt="" width="100" height="59" />    </a>frontlinesms &#8211; is a revolutionary software tool that allows people to use the already ubiquitous cellphone as a platform for action.  <a title="FrontlineSMS" href="http://www.frontlinesms.com/who/" target="_blank">People</a> use it all over the world.  Basically, frontlineSMS is a piece of software that you install on your computer which allows you to send text (SMS) messages to cell phones.  many organizations have used it for their elections, observing elections, mobilizing people.  recipients of the text messages from this program can reply back as well&#8230;so you can send quizes and gather information.  <a title="FrontlineSMS" href="http://www.frontlinesms.com/what/" target="_blank">You should check them out</a>!</p>
<p><a href="http://thinksea.info/blog/wp-content/uploads/2009/04/facebook_48.png"><img class="alignnone size-medium wp-image-352" title="facebook_icon" src="http://thinksea.info/blog/wp-content/uploads/2009/04/facebook_48.png" alt="" width="48" height="48" /></a>facebook &#8211; if you haven&#8217;t heard of facebook, then you&#8217;ve been out of the loop for sure!  the causes application is such a tremendous way to reach people.  back when causes were still new, i created this group &#8220;Save the Sea Turtles&#8221; which now boasts more than 18 thousand members&#8230;.with over a $100 in donations to the nonprofit I chose.  with a click of a button, I can email all of these members and help educate people on these wondrous animals&#8230;.all, with minimal effort!</p>
<p><a href="http://thinksea.info/blog/wp-content/uploads/2009/04/saveseaturtle.jpg"><img class="aligncenter size-medium wp-image-363" title="saveseaturtle" src="http://thinksea.info/blog/wp-content/uploads/2009/04/saveseaturtle-300x298.jpg" alt="" width="300" height="298" /></a></p>
<p> </p>
<p> </p>
<p><a href="http://thinksea.info/blog/wp-content/uploads/2009/04/kiva_logo1.gif"><img class="alignnone size-medium wp-image-358" title="kiva_logo1" src="http://thinksea.info/blog/wp-content/uploads/2009/04/kiva_logo1.gif" alt="" width="100" height="44" /> </a>kiva &#8211; microlending is changing the world! just ask mohammed yunis, a nobel laureate&#8230;who started an idea that has been the foundation of <a title="Kiva.org - Loans that change lives" href="http://www.kiva.org" target="_blank">kiva.org.</a> It&#8217;s simple.  All you have to do is sign up on the site, have a debit/credit card handy&#8230;and make a minimum payment of $25 dollars and you can help lend to a host of people that are running their business.  What is cool is the &#8216;Web 2.0&#8242; aspect of it.  If you are a person/family in need of money to help grow your business and you need, say, $1000&#8230;.most people probably can&#8217;t give that amount, but with kiva&#8230;.everyone contributes to the total.  You get monthly reports from these people&#8230;and they pay you back!  so you then can reinvest in someone else.  It&#8217;s amazing!</p>
<p><a href="http://thinksea.info/blog/wp-content/uploads/2009/04/twitter_48.png"><img class="alignnone size-medium wp-image-359" title="twitter_48" src="http://thinksea.info/blog/wp-content/uploads/2009/04/twitter_48.png" alt="" width="48" height="48" /></a>twitter &#8211; realitime information, on demand!  from your sms text phone, smart phone, iphone&#8230;.computer, laptop&#8230;you and a network of individuals share information, almost as fast as chat!  It&#8217;s great!  What if there is a traffic accident in/near where you are going, many times&#8230;you wouldn&#8217;t know, but with twitter&#8230;.if you set it up right, it&#8217;s right there.  (more in a later post) <img src='http://thinksea.info/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://thinksea.info/blog/wp-content/uploads/2009/04/youtube_48.png"><img class="alignnone size-medium wp-image-360" title="youtube_48" src="http://thinksea.info/blog/wp-content/uploads/2009/04/youtube_48.png" alt="" width="48" height="48" /></a>youtube &#8211; ever see that funny video of that kid breakdancing?  how about learning about environmental education? or photoshop tutorials?</p>
<p> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/r0hHX84cQpk&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/r0hHX84cQpk&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>It&#8217;s simply amazing&#8230;.and inspiring what social media can do!</p>
]]></content:encoded>
			<wfw:commentRss>http://thinksea.info/blog/2009/04/10/social-media-a-changemakers-way-to-communicate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repost from email:Berkman Center Internship!</title>
		<link>http://thinksea.info/blog/2009/02/13/deadline-extended-summer-2009-internship-program-applications-d/</link>
		<comments>http://thinksea.info/blog/2009/02/13/deadline-extended-summer-2009-internship-program-applications-d/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 20:12:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[berkman]]></category>
		<category><![CDATA[cyberlaw]]></category>
		<category><![CDATA[harvard]]></category>

		<guid isPermaLink="false">http://thinksea.info/blog/?p=343</guid>
		<description><![CDATA[Hi all,  
We&#8217;ve extended our summer internship application deadline to
March 6, 2009.  Please pass it on! Or apply yourself for an opportunity
to join the
fantastic summer intern crew at Berkman. You can&#8217;t
spell Internet and without intern. That&#8217;s why the Berkman Center for
Internet &#38; Society wants you!  Please see below for details.
If you have any questions about the [...]]]></description>
			<content:encoded><![CDATA[<div>Hi all,  </p>
<p>We&#8217;ve extended our summer internship application deadline to<br />
March 6, 2009.  Please pass it on! Or apply yourself for an opportunity<br />
to join the<br />
fantastic summer intern crew at Berkman. You can&#8217;t<br />
spell Internet and without intern. That&#8217;s why the Berkman Center for<br />
Internet &amp; Society wants you!  Please see below for details.</p>
<p>If you have any questions about the opportunities, the projects, or the<br />
Center at large, feel free to be in touch.</p>
<p>All best,<br />
Becca</p>
<p>&#8212;</p>
<p>For 10 weeks each summer <a href="http://cyber.law.harvard.edu/" target="_blank">The<br />
Berkman Center for Internet<br />
&amp; Society at Harvard University</a> swings opens the doors of its<br />
big yellow house to welcome a new group of smart, talented, energetic<br />
full-time interns who are passionate about the Internet, democracy,<br />
intellectual property, media, politics, and a slew of other things. The<br />
interns team up with great projects like the Citizen Media Law Project,<br />
Cooperation, Digital Natives, Internet &amp; Democracy, the OpenNet<br />
Initiative, StopBadware.org, and more, where they have an opportunity<br />
for deep and substantive involvement in our efforts.</p>
<p>Positions<br />
are available with most Berkman projects, and we&#8217;re looking for people<br />
with a variety of interests and skill sets. While certain internships<br />
are only available to law<br />
students, many projects are looking for students enrolled in other<br />
types of programs, including undergraduate, graduate and PhD. programs.</p>
<p>Summer internship positions are full time (35 hours/week), and the<br />
summer program runs for 10 weeks from June 1 to August 15. <br />
While the positions are paid, please be forewarned that stipends may<br />
not be sufficient to cover living expenses in the Boston area. No other<br />
benefits are provided, therefore interns must make their own<br />
housing, insurance, and transportation arrangements.</p>
<p>The word &#8220;awesome&#8221; has been thrown around to describe our internships,<br />
but don&#8217;t take our word for it. <a href="http://thames2thayer.com/" target="_blank">Zack<br />
McCune</a>, a summer intern from 2008, <a href="http://thames2thayer.com/blog/in-the-spirit-of-the-the-olympics-how-i-learned-to-row-from-an-olympic-all-star/#more-39" target="_blank">had<br />
this to say</a>: &#8220;it has been an<br />
enchanting summer working at the <a href="http://cyber.law.harvard.edu/" target="_blank">berkman center for internet &amp;<br />
society</a>.  everyday, i get to hang out with some of the most<br />
brilliant people on the planet. we talk, we write (emails), we blog, we<br />
laugh, we play rock band. and when things need to get done, we stay<br />
late hyped on free coffee and leftover food. it is a distinct honor to<br />
be considered a peer among such excellent people. and i am not just<br />
talking about the fellows, staff, and faculty, though they are all<br />
outstanding. no, i mean my peers as in my fellow interns, who are<br />
almost definitely the ripening next generation of changemakers.&#8221;</p>
<p>We know what you&#8217;re thinking. <em>Yes please. I want that. That sounds<br />
magical. Did I mention I&#8217;m really good at &#8220;Rock Band&#8221;?</em></p>
<p><em> </em>Here&#8217;s what you should do&#8230;</p>
<p><strong>To apply for a summer internship position, please send by the March<br />
6th deadline:</strong></p>
<ul>
<li>a<br />
letter of interest, describing your skills and interests, and<br />
indicating the area of research and the Berkman projects in which you<br />
have interest;</li>
<li>a current version of your resume;</li>
<li>the contact information for two references (professional or<br />
academic)</li>
</ul>
<p>to Berkman&#8217;s community coordinator, Becca Tabasky, at<br />
<a href="mailto:rtabasky@cyber.law.harvard.edu" target="_blank">rtabasky@cyber.law.harvard.edu</a></p>
<p>Feel free to be in touch if you have any questions.  We look forward<br />
to hearing from you!!</p>
<p>&#8212;&#8211;</p>
<p><em><strong>Summer Intern Eligibility:</strong></em><br />
* Summer interns are students enrolled in a undergraduate, graduate or<br />
PhD. program of study.<br />
* Summer interns do not have to be affiliated with Harvard University.<br />
*<br />
We welcome summer interns from universities across the world, however<br />
we can not pay international students who have not yet received an<br />
undergraduate degree.</div>
]]></content:encoded>
			<wfw:commentRss>http://thinksea.info/blog/2009/02/13/deadline-extended-summer-2009-internship-program-applications-d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO, yo! an introduction&#8230;pt 1</title>
		<link>http://thinksea.info/blog/2009/02/13/seo-yo-an-introductionpt-1/</link>
		<comments>http://thinksea.info/blog/2009/02/13/seo-yo-an-introductionpt-1/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 06:18:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[Content Management Systems]]></category>
		<category><![CDATA[reflection]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://thinksea.info/blog/?p=252</guid>
		<description><![CDATA[While I am a confessed novice when it comes to most of these latest trendy phrases, I&#8217;ve decided to try and explain what it means to me here, then try to offer my evaluation of the ecology of how SEO and Web 2.0 are related.  This is obviously a vast subject that is alive with [...]]]></description>
			<content:encoded><![CDATA[<p>While I am a confessed novice when it comes to most of these latest trendy phrases, I&#8217;ve decided to try and explain what it means to me here, then try to offer my evaluation of the ecology of how SEO and Web 2.0 are related.  This is obviously a vast subject that is alive with information.  I don&#8217;t feel like one post could do it justice, so I hope to accomplish more with multiple posts on this subject.</p>
<p><strong><a title="Search Engine Optimization" href="http://en.wikipedia.org/wiki/Search_engine_optimization" target="_blank">SEO</a></strong> -<br />
Search Engine Optimization, period&#8230; How do we find things on the internet/web?  Search engines, of course,.. well, mostly.  With most internet browsers making their automatic homepages that of Google, Yahoo, Microsoft or some other variant, it&#8217;s hard to discount how people move around in the vastness of the internet world.</p>
<p>One of my favorite quotes sums it up nicely:</p>
<blockquote><p>What information consumes is rather obvious: it consumes the attention of its recipients. Hence a wealth of information creates a poverty of attention, and a need to allocate that attention efficiently among the overabundance of information sources that might consume it. -Herbert Alexander Simon, economist, Nobel laureate (1916-2001)</p></blockquote>
<p>The Internet = Information in my eyes&#8230;and it creates a &#8220;&#8230;poverty of attention&#8221; and the best way to &#8220;allocate&#8221; that attention, at least via the web, is to use search engines.  Most people that have used the internet know this.  Some type it into the address bar of the browser, some go to their favorite search engine, usually a home page, but if you use the internet, you know what a search engine is all about.</p>
<p>Well, that was lengthy!  If you have a website, chances are you want people to view it.  For online business, this links to thier &#8216;bottom line&#8217;, or otherwise their profit.  With the really high <a title="ROI" href="http://en.wikipedia.org/wiki/Rate_of_return" target="_blank">ROI (Return on Investment)</a> involved with creating a website, businesses are increasingly turning to the web for profit.  Ever wonder why Google.com is so rich and had such a record breaking IPO?  Because their reach is virtually unmatched on the web.  And if you want to be seen by the average web surfing consumer, then ranking high on google is a no-brainer.  And when I say, &#8220;ranking,&#8221; I mean showing up &#8216;organically&#8217; in the search results.  An &#8216;organic ranking&#8217; is the natural order of websites that are listed when you perform a search on a search engine such as google, not the sponsored links or ads you usually see.</p>
<p>So knowing that having a high ranking in a search engine is valuable, mostly because it will make &#8216;your&#8217; website become more visible to the world, is the first step in understanding SEO &#8211; Search Engine Optimization.  And knowing how to make sure your website will rank well in search engines is definitely a big step in getting visitors to your site.  Having the skills to make a website rise high in &#8216;organic rankings&#8217; can also earn you a lot of money.  Conversely, having someone to get your website to rise high in &#8216;organic rankings&#8217; can cost you a lot of money.</p>
<p>Luckily, there are many things you can do for FREE  with a little planning and a lot of initial hard work.</p>
<p><strong>Planning<br />
<span style="font-weight: normal;">If you have a website and need to retool or are a new website owner and have no clue on how to get people to see it without spending unsightly amounts in passing out the website address, then follow me.</span></strong></p>
<p>Planning, especially when considering SEO, is one of the single most important time savers when it comes to getting what you want out of your website. Here are a few questions to ask yourself.</p>
<ol>
<li><strong>Who will find my site valuable?</strong></li>
<li><strong>Does my website have a regional, national, or international appeal?</strong></li>
<li><strong>Am I trying to make money from my site?</strong></li>
<li><strong>What makes me stand out from the rest of the websites that are similar to mine?</strong></li>
</ol>
<div>These are just the initial surface questions you must ask yourself before getting too invested in your SEO investment, and here&#8217;s why:</div>
<div>1. <strong>Who will find my site VALUABLE?</strong></div>
<div> It&#8217;s always good to know your demographic and the types of people going to your site.  If you are running a website for the convenience/reference of your local, meet in person, clientele, then you probably will not really care that other people view the site.  Maybe you would enjoy the public service of having information available to everyone on the internet as a by-product of having resources for said clients.  But would you really want to invest a lot of time in trying to get others to view the site?  I&#8217;m not sure you would.</div>
<div>If you were a local law firm, only practicing in your town, would you really care to a large degree that someone in a far away land can view your site?  Maybe, I dunno, but you would probably just want/need the people you can actually serve to view your sites.</div>
<div>Of course, I always like to disclaim the fact that letting the whole world know who you are is inherently a good thing because I feel like the more exposure your site gets, the more notoriety it can get, regardless of location. </div>
<div>Planning is essentially gauging the investment, on your part, of how much time/money you care to spend on SEO.</div>
<div>2. <strong>Does my website have a regional, national, or international appeal?</strong></div>
<div>Segueing from the last point, you really want to look at the area in which you want to be visible.  Regardless of what you do, your site will still be visible to anyone on the internet in the whole world, but by targeting how wide your appeal may reach, you can become stronger and get a higher ranking in search engines if you look at the area you want to appear in.  For example, if you lived in Charleston and you sold yachting equipment, then you might consider keywords like: charleston yachting or sailing in charleston.</div>
<div>3. <strong>Am I trying to make money from my site?</strong></div>
<p>Knowing you want to make money from your site, puts it in a whole different world when it comes to SEO.  Whether you want to put &#8217;sponsored links&#8217; on your site so that google pays you or if you want to sell products with your own shopping cart software, or making sure potential donors have a chance to do their due diligence before giving your organization money, having a good SEO plan is definitely key in being successful in bringing your presence to the masses.</p>
<p>4. <strong>What makes me stand out from the rest of the websites that are similar to mine?</strong></p>
<p>It&#8217;s always about selling yourself, right?  So why are you so great?  Why do I want to visit your site?  Think of your website as a version of yourself or business online.  Or, even simpler, a personals ad.  You want to be attractive, not deceptive.  So maybe a personals ad isn&#8217;t the greatest example, at least in the deceptive part, but I digress&#8230;</p>
<p>Knowing what makes you stand out helps to shape your story (people love stories, I promise).  By defining what makes you special, you not only have a good marketing spiel to bring to the table, but it makes your site have more, what I like to call, integrity.  Knowing who you are and exactly why you want to be online directs your goals for your website.   And being honest with your site visitors builds a brand and trust.  People will like you and what you stand for, even if your website isn&#8217;t the prettiest.</p>
<p>To be continued&#8230;</p>
<p>Seeing as how SEO is such a huge topic, I thought breaking up into digestable parts.  Here, I discussed, albeit briefly, the planning.  In future posts I am going to dissect out some simple principles in optimizing your website: keywords, meta, h1 tags as well as content, while talking about keyword density, easy navigation, etc.  Then, I plan on talking about funneling and conversion rates&#8230;.eventually leading to online marketing campaigns, blogs/social media and building community and loyalty to your site.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinksea.info/blog/2009/02/13/seo-yo-an-introductionpt-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
