<?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>BambooDev</title>
	<atom:link href="http://bamboodev.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bamboodev.com</link>
	<description>Website Design, Programming, Social Media</description>
	<lastBuildDate>Wed, 11 Jan 2012 03:17:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Show/Hide Hidden files and folders in OSX</title>
		<link>http://bamboodev.com/words/showhide-hidden-files-and-folders-in-osx/</link>
		<comments>http://bamboodev.com/words/showhide-hidden-files-and-folders-in-osx/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 02:34:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Words]]></category>

		<guid isPermaLink="false">http://bamboodev.com/?p=310</guid>
		<description><![CDATA[Show: defaults write com.apple.finder AppleShowAllFiles TRUE killall Finder Hide: defaults write com.apple.finder AppleShowAllFiles FALSE killall Finder]]></description>
			<content:encoded><![CDATA[<p><strong>Show:</strong></p>
<p><code>defaults write com.apple.finder AppleShowAllFiles TRUE<br />
killall Finder</code></p>
<p><strong>Hide:</strong></p>
<p><code>defaults write com.apple.finder AppleShowAllFiles FALSE<br />
killall Finder</code></p>
]]></content:encoded>
			<wfw:commentRss>http://bamboodev.com/words/showhide-hidden-files-and-folders-in-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NKnet</title>
		<link>http://bamboodev.com/case-study/nknet/</link>
		<comments>http://bamboodev.com/case-study/nknet/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 03:29:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Case Study]]></category>

		<guid isPermaLink="false">http://bamboodev.com/?p=305</guid>
		<description><![CDATA[In 2011 Bamboodev has been delighted to donate our services to a very worthwhile group, located right here in Seoul, South Korea. We&#8217;ve spent several months working with NKnet on developing a new English language version of their site, consulting &#8230; <a href="http://bamboodev.com/case-study/nknet/">Continue reading</a>]]></description>
			<content:encoded><![CDATA[<p>In 2011 Bamboodev has been delighted to donate our services to a very worthwhile group, located right here in Seoul, South Korea. We&#8217;ve spent several months working with NKnet on developing a new English language version of their site, consulting with their team on how best to present a staggering amount of content to an English speaking audience around the world. In the end, we once again found the open source WordPress platform to be the perfect solution. Hundreds of articles, resources and images were added to a site which was designed to make navigation as easy as possible. </p>
<p>On a personal note, I moved to South Korea from California a little over a year ago. When time allows, I love being able to &#8220;give back&#8221; to my community and worthwhile causes. South Korea has been a wonderful and very welcoming home to me, and I hope you will take a moment to <a href="http://en.nknet.org/">visit NKnet.org</a> to read about some of the human rights issues occurring just a few miles from where I now live. Working on this project has been a sobering education for me, and this crisis needs to be understood and acted upon. There are no easy answers, but education and awareness are an easy first step. </p>
<p><br style="clear:both;" /></p>
<blockquote><p>One of the main goals of the NKnet website is to educate a broad audience in regards to the human rights issues in North Korea.</p></blockquote>
<blockquote><p> Bamboodev has been kind enough to donate their time and expertise, helping us to reach a larger English speaking audience. We appreciate the assistance that Justin Williams has provided, and invite others to <a href="http://en.nknet.org/">visit NKnet.org</a> to learn more.</p></blockquote>
<p><span class="smallText">Jin-Keol Park &#8211; NKnet</span></p>
]]></content:encoded>
			<wfw:commentRss>http://bamboodev.com/case-study/nknet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update mySQL via array</title>
		<link>http://bamboodev.com/words/update-mysql-via-array/</link>
		<comments>http://bamboodev.com/words/update-mysql-via-array/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 02:35:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Words]]></category>

		<guid isPermaLink="false">http://bamboodev.com/?p=295</guid>
		<description><![CDATA[$sID = filter_input(INPUT_GET, 'sID', FILTER_SANITIZE_SPECIAL_CHARS); $update_values = array ( &#34;firstname&#34; =&#62; filter_var($_GET['firstName'], FILTER_SANITIZE_STRING), &#34;lastname&#34; =&#62; filter_var($_GET['lastName'], FILTER_SANITIZE_STRING), ); //mysql_update_array(&#34;table&#34;, $update_values, &#34;uniqueRecordID&#34;, uniqueRecordID#VALUE ); $updateCommand = mysql_update_array(&#34;people&#34;, $update_values, &#34;sessionID&#34;, $sID ); $updateCommand .= &#34; LIMIT 1&#34;; $update = mysql_query($updateCommand) or die(mysql_error());]]></description>
			<content:encoded><![CDATA[<p><code><br />
$sID = filter_input(INPUT_GET, 'sID', FILTER_SANITIZE_SPECIAL_CHARS);</p>
<p>$update_values				= array<br />
(<br />
&quot;firstname&quot;	=&gt; filter_var($_GET['firstName'], FILTER_SANITIZE_STRING),<br />
&quot;lastname&quot;	=&gt; filter_var($_GET['lastName'], FILTER_SANITIZE_STRING),<br />
);<br />
//mysql_update_array(&quot;table&quot;, $update_values, &quot;uniqueRecordID&quot;, uniqueRecordID#VALUE );<br />
$updateCommand = mysql_update_array(&quot;people&quot;, $update_values, &quot;sessionID&quot;, $sID );<br />
$updateCommand .= &quot; LIMIT 1&quot;;<br />
$update = mysql_query($updateCommand) or die(mysql_error());<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://bamboodev.com/words/update-mysql-via-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Black and Rose, LLP</title>
		<link>http://bamboodev.com/portfolio/black-and-rose-llp/</link>
		<comments>http://bamboodev.com/portfolio/black-and-rose-llp/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 05:53:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://bamboodev.com/?p=287</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://bamboodev.com/portfolio/black-and-rose-llp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>800me</title>
		<link>http://bamboodev.com/portfolio/800me/</link>
		<comments>http://bamboodev.com/portfolio/800me/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 05:46:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://bamboodev.com/?p=284</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://bamboodev.com/portfolio/800me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Laura Nathan-Garner</title>
		<link>http://bamboodev.com/portfolio/laura-nathan-garner/</link>
		<comments>http://bamboodev.com/portfolio/laura-nathan-garner/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 05:40:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://bamboodev.com/?p=279</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://bamboodev.com/portfolio/laura-nathan-garner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Wetlands Institute</title>
		<link>http://bamboodev.com/portfolio/the-wetlands-institute/</link>
		<comments>http://bamboodev.com/portfolio/the-wetlands-institute/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 05:35:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://bamboodev.com/?p=275</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://bamboodev.com/portfolio/the-wetlands-institute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lakani World Tours</title>
		<link>http://bamboodev.com/portfolio/lakani-world-tours/</link>
		<comments>http://bamboodev.com/portfolio/lakani-world-tours/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 05:32:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://bamboodev.com/?p=272</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://bamboodev.com/portfolio/lakani-world-tours/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DJH Construction, Inc.</title>
		<link>http://bamboodev.com/portfolio/djh-construction-inc/</link>
		<comments>http://bamboodev.com/portfolio/djh-construction-inc/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 05:25:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://bamboodev.com/?p=269</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://bamboodev.com/portfolio/djh-construction-inc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Talk Free</title>
		<link>http://bamboodev.com/portfolio/talk-free/</link>
		<comments>http://bamboodev.com/portfolio/talk-free/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 07:18:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://bamboodev.com/?p=258</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://bamboodev.com/portfolio/talk-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

