<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Joe Larson</title>
	
	<link>http://joewlarson.com/blog</link>
	<description />
	<lastBuildDate>Fri, 29 Mar 2013 23:50:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/JoeWLarson" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="joewlarson" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>JavaScript character utility CharFunk 1.1.0 released</title>
		<link>http://joewlarson.com/blog/2013/03/23/javascript-character-utility-charfunk-1-1-0-released/</link>
		<comments>http://joewlarson.com/blog/2013/03/23/javascript-character-utility-charfunk-1-1-0-released/#comments</comments>
		<pubDate>Sat, 23 Mar 2013 17:14:04 +0000</pubDate>
		<dc:creator>Joe Larson</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[unicode]]></category>

		<guid isPermaLink="false">http://joewlarson.com/blog/?p=1246</guid>
		<description><![CDATA[CharFunk is a little library I wrote a few years ago to make it easier to do things with Unicode text. I revisited it recently to clean up and improve the code, and add tests and a few features. The API is pretty simple: CharFunk.getDirectionality(ch) &#8211; Used to find the directionality of the character CharFunk.getMatches(string,callback) [...]]]></description>
				<content:encoded><![CDATA[<p><a href="https://github.com/joelarson4/CharFunk" target="_blank">CharFunk</a> is a little library I wrote a few years ago to make it easier to do things with Unicode text. I revisited it recently to clean up and improve the code, and add tests and a few features. <a href="https://github.com/joelarson4/CharFunk#api" target="_blank">The API</a> is pretty simple:</p>
<ul>
<li>CharFunk.getDirectionality(ch) &#8211; Used to find the directionality of the character</li>
<li>CharFunk.getMatches(string,callback) &#8211; Returns an array of contiguous matching strings for which the callback returns true, similar to String.match()</li>
<li>CharFunk.isAllLettersOrDigits(string) &#8211; Returns true if the string argument is composed of all letters and digits</li>
<li>CharFunk.isDigit(ch) &#8211; Returns true if provided a length 1 string that is a digit</li>
<li>CharFunk.isLetter(ch) &#8211; Returns true if provided a length 1 string that is a letter</li>
<li>CharFunk.isLetterNumber(ch) &#8211; Returns true if provided a length 1 string that is in the Unicode &#8220;Nl&#8221; category</li>
<li>CharFunk.isLetterOrDigit(ch) &#8211; Returns true if provided a length 1 string that is a letter or a digit</li>
<li>CharFunk.isLowerCase(ch) &#8211; Returns true if provided a length 1 string that is lowercase</li>
<li>CharFunk.isMirrored(ch) &#8211; Returns true if provided a length 1 string that is a mirrored character</li>
<li>CharFunk.isUpperCase(ch) &#8211; Returns true if provided a length 1 string that is uppercase</li>
<li>CharFunk.isValidFirstForName(ch) &#8211; Returns true if provided a length 1 string that is a valid leading character for a JavaScript identifier</li>
<li>CharFunk.isValidMidForName(ch) &#8211; Returns true if provided a length 1 string that is a valid non-leading character for a ECMAScript identifier</li>
<li>CharFunk.isValidName(string,checkReserved) &#8211; Returns true if the string is a valid ECMAScript identifier</li>
<li>CharFunk.isWhitespace(ch) &#8211; Returns true if provided a length 1 string that is a whitespace character</li>
<li>CharFunk.indexOf(ch) &#8211; Returns the first index where the character causes a true return from the callback, or -1 if no match</li>
<li>CharFunk.lastIndexOf(ch) &#8211; Returns the last index where the character causes a true return from the callback, or -1 if no match</li>
<li>CharFunk.matchesAll(string,callback) &#8211; Returns true if all characters in the provided string result in a true return from the callback</li>
<li>CharFunk.replaceMatches(string,callback,ch) &#8211; Returns a new string with all matched characters replaced, similar to String.replace()</li>
<li>CharFunk.splitOnMatches(string,callback) &#8211; Splits the string on all matches, similar to String.split()</li>
</ul>
<p>This allows you to do some things you would have a hard time doing in JavaScript otherwise. JavaScript RegExps are notoriously useless for dealing with non-ASCII data. For example, imagine you wanted to do something simple like replace all non-word characters with an underscore. This is easy:</p>
<p><code>
<pre>
"The United States of America".replace(/[^\w]/g,"_");
    //returns "The_United_States_of_America"
</pre>
<p></code></p>
<p>Unless of course, you are dealing with non-ASCII letters:</p>
<p><code>
<pre>
"Российская Федерация".replace(/[^\w]/g,"_"); 
    //returns "___________________" 
"جمهورية مصر العربية".replace(/[^\w]/g,"_"); 
   //returns "____________________"
</pre>
<p></code></p>
<p>That&#8217;s not what we want.</p>
<p>Fortunately, CharFunk can handle this using replaceMatches:</p>
<p><code>
<pre>
function notLetterOrDigit(ch) {
    return !CharFunk.isLetterOrDigit(ch);
}

CharFunk.replaceMatches("جمهورية مصر العربية",notLetterOrDigit,"_"); 
    // returns "جمهورية_مصر_العربية"

CharFunk.replaceMatches("Российская Федерация",notLetterOrDigit,"_"); 
   //returns "Российская_Федерация"
</pre>
<p></code></p>
<p>This is just one small example of what CharFunk can do.  I hope that web developers working on international projects &#8212; which is pretty much any web app these days &#8212; will find this useful!</p>
]]></content:encoded>
			<wfw:commentRss>http://joewlarson.com/blog/2013/03/23/javascript-character-utility-charfunk-1-1-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cases of User Experience – Seattle Tech Forum</title>
		<link>http://joewlarson.com/blog/2013/03/16/cases-of-user-experience-seattle-tech-forum/</link>
		<comments>http://joewlarson.com/blog/2013/03/16/cases-of-user-experience-seattle-tech-forum/#comments</comments>
		<pubDate>Sat, 16 Mar 2013 22:00:27 +0000</pubDate>
		<dc:creator>Joe Larson</dc:creator>
				<category><![CDATA[conferences]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[user experience]]></category>

		<guid isPermaLink="false">http://joewlarson.com/blog/?p=1240</guid>
		<description><![CDATA[This month&#8217;s STF was all about User Experience. It was sponsored by boutique software house Webtellect. Webtellect creates custom software solutions, primarily based on Microsoft technologies. Our first speaker was Christopher Johnson, a Designer at Google on the Hangouts team in Mountain View. His talk was titled &#8220;What the Hell is UX, Anyway?&#8221;. He explained [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.meetup.com/Sea-Tech-Forum/events/91548922/" target="_blank">This month&#8217;s STF</a> was all about User Experience.  It was sponsored by boutique software house Webtellect.  <a href="http://www.webtellect.com/" target="_blank">Webtellect</a> creates custom software solutions, primarily based on Microsoft technologies.</p>
<p>Our first speaker was <strong><a href="https://plus.google.com/115570939558790629700/posts" target="_blank">Christopher Johnson</a></strong>, a Designer at Google on the Hangouts team in Mountain View.  His talk was titled &#8220;What the Hell is UX, Anyway?&#8221;.  He explained how the technology market has shifted towards design-led companies.  The obvious example is Apple, but you can also see this at Microsoft, Facebook, Path, Pinterest, Instagram, Google&#8230; the list goes on.  The iPhone really kicked off this trend in 2007.  Mobile has forced software creators to focus on simplicity and design &#8212; with a smaller screen, you have put more care into what you put on it.</p>
<p>This <a href="http://www.theverge.com/2013/1/24/3904134/google-redesign-how-larry-page-engineered-beautiful-revolution" target="_blank">shift took hold at Google when Larry Page became CEO</a> and rallied the company to create &#8220;one beautiful, intuitive user interface&#8221;.  This effort became known as &#8220;Project Kennedy&#8221; and the results are evident across all of Google&#8217;s properties.  This new emphasis on design brought Google&#8217;s users not only prettier, more consistent screens, but also a better User Experience.</p>
<p>According to Johnson, UX is a story.  For a software user there is a problem to solve, and a beginning, a middle and an end.  He then gave us five tips to becomming a UX focussed organization so that we can give the story of our user&#8217;s experience a happy ending:</p>
<ul>
<li>Let your designers out of their cage</li>
<li>Prototype early and often</li>
<li>Treat design as an equal partner with engineering</li>
<li>Talk with and watch users</li>
<li>Embrace the <a href="http://www.designstaff.org/articles/product-design-sprint-2012-10-02.html" target="_blank">design sprint</a></li>
</ul>
<p>Johnson left us by answering the question in the title of his talk: What the hell is UX?  UX is <em>everyone&#8217;s</em> responsibility.</p>
<p><strong><a href="http://www.codefoster.com/" target="_blank">Jeremy Foster</a></strong>, Developer Evangelist at Microsoft, gave a talk titled &#8220;Ultimate User Experience&#8221;.  Primarily it was an illustration of design principles using Microsoft&#8217;s new <del>metro</del> UI.</p>
<p>Foster compared good design to the movement of air.  Poor design is like air at rest &#8212; particles of air moving around in every direction are like a user with no clear indication of what to do.  Good design, like a communicative sound pushing waves of air towards your ear, gives the user direction.  He made a strong argument for Microsoft&#8217;s new edge-to-edge design language, listing principles like &#8220;content before chrome&#8221;, &#8220;minimize distractions&#8221;.</p>
<p>Every time I hear a passionate Microsofty explain the ideas behind the new UI and show it off, I feel like they really got it right.  Windows 8 is beautiful and perfectly crafted to the consumer computing experience.  I&#8217;m still not convinced it will fully succeed in a work environment, but I was still impressed by Foster&#8217;s talk.</p>
<p>Finally we heard from <strong><a href="http://charlieclaxton.com/" target="_blank">Charlie Claxton</a></strong>, VP of Creative Strategy at <a href="http://www.produxs.com/">Produxs</a>, with a presentation titled &#8220;The Habit of Design&#8221;.  Claxton also gave an <a href="http://joewlarson.com/blog/2012/07/25/insights-of-ux-user-experience-meetup-seattle-tech-forum/">STF presentation on UX last July</a>.  He covered concepts such as framing, social proof, loss aversion and operant conditioning.  </p>
<p>Maybe the most interesting part of his presentation centered around Eugene Pauly, an amnesiac who suffered from short term memory loss.  Pauly could not remember what he did five minutes earlier or remember the layout of his new home.  However, he was still able to learn in a way, by being made to repeat the same experience daily and thereby forming habits.  Claxton claims that good design should be aimed at creating and leveraging habits.</p>
<p>This well-attended STF was very educational.  Join us on April 17th for our next topic, <a href="http://www.meetup.com/Sea-Tech-Forum/events/91549012/" target="_blank">&#8220;Legal Matters for Technology Company&#8221;</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://joewlarson.com/blog/2013/03/16/cases-of-user-experience-seattle-tech-forum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If Business had Glass</title>
		<link>http://joewlarson.com/blog/2013/02/24/if-business-had-glass/</link>
		<comments>http://joewlarson.com/blog/2013/02/24/if-business-had-glass/#comments</comments>
		<pubDate>Sun, 24 Feb 2013 18:00:53 +0000</pubDate>
		<dc:creator>Joe Larson</dc:creator>
				<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://joewlarson.com/blog/?p=1231</guid>
		<description><![CDATA[Not many people are talking about how Google Glass could be used by business and industry. Google seems to be aiming Glass straight at consumers, with a design that is surprisingly sleek and marketing videos full of personal moments. Apple has proven that there are plenty of people who will eagerly spend money on the [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.guardian.co.uk/media-network/media-network-blog/2012/jun/28/google-glass-mobile-smartphones-tablets" target="_blank">Not many people</a> are talking about how Google Glass could be used by business and industry.  Google seems to be aiming Glass straight at consumers, with a design that is surprisingly sleek and marketing videos full of personal moments.  Apple has proven that there are plenty of people who will eagerly spend money on the latest sexy gadget.  Still, I think the enterprise might be an even better early adopter than hipsters with money to burn.</p>
<p>There are endless possibilities for Glass to create immediate business value.  Almost any employee using an mobile device or tablet could be made more effective if their hands and eyes were left free to do real work.</p>
<ul>
<li>A warehouse manager could use Glass to look at shelves and obtain immediate information about what is in stock, how fast product is moving, and more.</li>
<li>A forklift driver in that warehouse could use Glass to navigate the warehouse while keeping their hands on the controls.</li>
<li>A doctor could (with your permission and the proper ten pages of paperwork) record their view of an operation for future reference (and for liability protection).</li>
<li>A delivery driver could use Glass to safely navigate their route and deal with changes while they are driving.</li>
<li>A host on a cruise ship could access useful and timely information about their guests and provide quick answers to guest&#8217;s questions, all without breaking eye contact.</li>
<li>A repair person could use schematics and instructions as they work on fixing complex machinery, without ever setting down their tools.</li>
</ul>
<p>These are just a few possibilities in an endless list, which will grow as the devices capabilities improve.  I can imagine even more applications in government, athletics and entertainment.</p>
<p>Beyond the incredible possible applications, there are other reasons business and industry would be a great fit as an early adopter for Glass.  Businesses get to skip over the issue of &#8220;will people want to wear these sci-fi looking things in public&#8221;.  Businesses might have fewer qualms with the high early price point provided it creates compelling, measurable value &#8212; companies routinely spend upwards of $2k on ruggedized mobile devices (although cheaper Android and iOS solutions are competing here).  Businesses can fund the development of useful applications without the need for bootstrapping or venture capital.</p>
<p>I&#8217;m still really excited about the consumer possibilities of Glass, <a href="http://joewlarson.com/blog/2012/02/08/augmented-reality-google-goggles-real-world-games-please/" target="_blank">including Games</a>.  But I hope that Google and Business get together and leverage Glass to bring new possibilities to enterprise computing.</p>
]]></content:encoded>
			<wfw:commentRss>http://joewlarson.com/blog/2013/02/24/if-business-had-glass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cases of Digital Marketing – Seattle Tech Forum</title>
		<link>http://joewlarson.com/blog/2013/02/16/cases-of-digital-marketing-seattle-tech-forum/</link>
		<comments>http://joewlarson.com/blog/2013/02/16/cases-of-digital-marketing-seattle-tech-forum/#comments</comments>
		<pubDate>Sat, 16 Feb 2013 20:11:49 +0000</pubDate>
		<dc:creator>Joe Larson</dc:creator>
				<category><![CDATA[conferences]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://joewlarson.com/blog/?p=1227</guid>
		<description><![CDATA[This week&#8217;s STF was sponsored by tech-talent firm Chameleon Technologies. The topic was Digital Marketing and it was extremely well attended, by a fairly different crowd than we normally see &#8212; lots of marketing people of course. This is a topic I am not very familiar with, so it was pretty interesting stuff. Our first [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.meetup.com/Sea-Tech-Forum/events/91548852/" target="_blank">This week&#8217;s STF</a> was sponsored by tech-talent firm <a href="http://www.chameleontechinc.com/" target="_blank">Chameleon Technologies</a>.  The topic was Digital Marketing and it was extremely well attended, by a fairly different crowd than we normally see &#8212; lots of marketing people of course.  This is a topic I am not very familiar with, so it was pretty interesting stuff.</p>
<p>Our first speaker was <a href="http://www.contentharmony.com/" target="_blank">Content Harmony</a>&#8216;s Marketing Director, <a href="https://twitter.com/kanejamison" target="_blank">Kane Jamison</a>, who spoke about &#8220;Current Internet Marketing Trends &#038; How They Will Affect Your Organization&#8221;.  He actually <a href="http://www.contentharmony.com/2013-internet-marketing-trends/" target="_blank">posted most of his content over at his blog</a>, which is well worth checking out.  It was full of useful information about digital marketing and how it is changing.  I really liked his data-driven format, with lots of interesting data points to hang his presentation from.  </p>
<p>One of the most interesting things Jamison mentioned (which he doesn&#8217;t seem to cover in his blog post) is how the change to more HTTPS Google searches has effected website owners.  Links from Google search using HTTP includes search keyword information, which helps website owners tune their SEO approach (&#8220;gee, lots of people are coming here looking for XYZ, we can write more about that&#8221;).  However links from searches using HTTPS do not include this data, which is a reasonable privacy and security protection.  Now that Google is moving people to use HTTPS more often (due to more authenticated usage to support Google Plus and other services), this means fewer searches from Google include search keyword information.  That is impacting how website owners approach SEO.</p>
<p>Next we heard from <a href="http://about.me/joshdirks" target="_blank">Josh Dirks</a>, Founder and CEO of <a href="http://www.projectbionic.com/" target="_blank">Project Bionic</a>.  He started by telling us that he was the grandson of an auctioneer and son of a preacher, and he had a fun speaking style to prove it.  His talk was titled &#8220;Welcome to Your Social Nervous System&#8221;.</p>
<p>Dirks argued that social media is <em>not</em> about marketing at all but rather about customer service and community building.  He illustrated this by relating today&#8217;s big data and social media revolution back to the days of rural villages, before the industrial revolution.  In those days most folks lived in a village of 50 to 300 people and had few secrets.  According to Dirk, businesses had to pay close attention to their customers and provide excellent products and services, because there was no escaping their reputation in such a small world.  In the industrial revolution this all changed.  Huge factories hundreds of miles away mass produced products, and there was no mechanism for them to receive feedback other than the one dimensional channel of communication called revenues.   Media was all one-way: Newspapers, TV and Radio.  Then the internet and social media came along and re-connected customers and companies.  Now word about your business travels fast on Twitter, Facebook, Yelp, and so on.  Businesses that listen and interact with customers online in a dialog are going to succeed in this new era, while those locked in the one-way world of the past will fall behind.</p>
<p>There was also a third speaker scheduled, but they couldn&#8217;t make it due to illness.  Fortunately, Dirk and Jamison provided us plenty to discuss and think about.</p>
]]></content:encoded>
			<wfw:commentRss>http://joewlarson.com/blog/2013/02/16/cases-of-digital-marketing-seattle-tech-forum/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cases of Big Data – Seattle Tech Forum</title>
		<link>http://joewlarson.com/blog/2013/01/19/cases-of-big-data-seattle-tech-forum/</link>
		<comments>http://joewlarson.com/blog/2013/01/19/cases-of-big-data-seattle-tech-forum/#comments</comments>
		<pubDate>Sat, 19 Jan 2013 18:15:08 +0000</pubDate>
		<dc:creator>Joe Larson</dc:creator>
				<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://joewlarson.com/blog/?p=1204</guid>
		<description><![CDATA[On Wednesday I attended STF to learn about Big Data. It was a packed house again, and I nearly didn&#8217;t get a seat (thanks Tiger). First on deck was Avkash Chauhan (who also spoke at the October 2012 STF), a Senior Engineer with Windows Azure and HDInsight at Microsoft, who&#8217;s talk was titled &#8220;Data Visualization: [...]]]></description>
				<content:encoded><![CDATA[<p>On Wednesday I attended <a href="http://www.meetup.com/Sea-Tech-Forum/events/91548732/" target="_blank">STF</a> to learn about Big Data.  It was a packed house again, and I nearly didn&#8217;t get a seat (thanks Tiger).  </p>
<p>First on deck was <strong><a href="https://twitter.com/avkashchauhan" target="_blank">Avkash Chauhan</a></strong> (who also spoke at <a href="http://joewlarson.com/blog/2012/10/20/cases-of-network-tech-stf/">the October 2012 STF</a>), a Senior Engineer with <a href="http://www.windowsazure.com" target="_blank">Windows Azure</a> and <a href="https://www.hadooponazure.com/" target="_blank">HDInsight</a> at <a href="http://www.microsoft.com">Microsoft</a>, who&#8217;s talk was titled &#8220;Data Visualization: Tools and Techniques&#8221;.  He demonstrated how visualizations can be used to understand large data sets.  He started out with a visualization showing tweets related to the Egyptian Revolution.  He explained how the various connections and distribution of nodes could be used to visually understand what was happening on Twitter at that time.   I can&#8217;t find the exact graphic he used but this video is fairly similar:</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/2guKJfvq4uI" frameborder="0" allowfullscreen></iframe></p>
<p>Chauhan went on to demonstrate how to use two different open source visualization tools, <a href="http://nodexl.codeplex.com/" target="_blank">NodeXL</a> (an Excel plugin) and <a href="https://gephi.org/" target="_blank">Gephi</a>, to create similar visualizations.  Both tools allow you to import public data sets like Youtube or Twitter, or use your own data.  You can then toggle hundreds of controls to create exactly the right kind of visualizations to help you understand your data.</p>
<p>The second speaker, <a href="http://www.linkedin.com/in/arpitguptaphd"><strong>Arpit Gupta</strong></a>, spoke about &#8220;Philosophy of Big Data&#8221; (which <a href="http://www.youtube.com/playlist?list=PL4bSdcqibBQev3PuO0uz3qvaNXLT6IHpx" target="_blank">you can watch on YouTube</a>).  In many ways this was your typical subject overview talk about Big Data, but by using humour and really great examples Gupta made this far more valuable and interesting than most overview presentations.  </p>
<p>In one slide he listed sixteen different industries which involved applications of Big Data.  He asked the audience to pick two of them to talk about.  He proceeded to give some really interesting examples from the worlds of Fraud &#038; Security and Search Quality, but it seemed like he could easily have talked about the other fourteen topics as well.  He also brought an interesting perspective to the table explaining that Big Data was really a new marketting term for something that had been around a long time.  The main change (besides the invention of the term) is that only recently has it been cheap enough to do really good analysis on all that data.  </p>
<p>Next we heard &#8220;Big Data &#8211; 10x Better&#8221; from <strong><a href="http://www.linkedin.com/profile/view?id=1236785" target="_blank">Ying Li</a></strong>, the Chief Scientist and co-founder of <a href="http://concurix.com/" target="_blank">Concurix</a>.  The &#8220;10x Better&#8221; refers to Concurix&#8217;s main goal: to create an operating system specifically engineered for data centers, one that will deliver at least a 10x price/performance improvement over current Linux and Windows servers.  They are doing this by focusing on improving the usage of multiple cores.  According to Li, current operating systems and software platforms are not very well suited to leverage multi-core, with net performance actually getting worse beyond about 8 cores.  Concurix believes they can radically improve that situation.</p>
<p><a href="http://en.wikipedia.org/wiki/Mandelbrot_set"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Mandel_zoom_00_mandelbrot_set.jpg/320px-Mandel_zoom_00_mandelbrot_set.jpg" title="Mandelbrot Set" class="alignright" width="320" height="240" /></a> To that end, Li has been doing research on various machine and OS configurations by benchmarking calculations of the Mandelbrot Set.  She gave some very detailed information and visualizations showing the behavior of a multi-core system in terms of core utilization, garbage collection, etc.  During Q&#038;A I had to ask whether the Mandelbrot Set was a good place to start, given that it was such an emberrassingly parellel problem, and did that mean that Concurix did not care about figuring out how to improve multi-core use for less parellel problems (which is much more difficult a problem).  She responded that the Mandelbrot Set was just a starting point and that they definately did intend to work on improvements for less parellel types of software problems.</p>
<p>Finally <strong><a href="https://plus.google.com/110970278047999794816/posts" target="_blank">Jim Caputo</a></strong>, Engineering Manager for <a href="https://developers.google.com/bigquery/" target="_blank">BigQuery</a> at <a href="http://www.google.com" target="_blank">Google</a>, gave his talk &#8220;Big Data for the Masses: How We Opened Up the Doors to Google�s Dremel&#8221;.  He opened with some great stats regarding Big Data at Google such as the fact YouTube currently has 72 hours of video uploaded every minute.  He went on to talk about how BigQuery provides an SQL-like ad-hoc query interface over these kinds of very large data sets.  As an example he ran a query against one of the sample BigQuery data sets (which is apparently not publicly available yet).  This query across 14+ billion rows, 1TB of data in 12 tables, returned it&#8217;s results in just 30 seconds.</p>
<p>Caputo went on to explain the technology behind BigQuery, called <a href="http://research.google.com/pubs/pub36632.html" target="_blank">Dremel</a>, and how it differed from <a href="http://en.wikipedia.org/wiki/BigTable" target="_blank">BigTable</a> and <a href="http://research.google.com/archive/mapreduce.html" target="_blank">MapReduce</a>.  Dremel achieves a much lower latency by using a completely column oriented storage approach and a totally diskless data flow.  This means that queries involving just a few columns need only touch storage on machines where those columns are stored.  It also means that machines involved later on in processing the query won&#8217;t be doing any disk I/O.</p>
<p>Data can be uploaded directly and quickly into BigQuery.  An online console can be used to query this data immediately.  Developers can also create there own interfaces using the BigQuery API directly or via one of the many available client libraries.</p>
<p>Finally we heard from the a representative of this month&#8217;s sponsor, <a href="http://www.computenext.com/" target="_blank">ComputeNext</a>.  He described ComputeNext as &#8220;Expedia for Cloud services&#8221;.  They compare IAAS providers on performance, pricing, availability, and other metrics, and provides ways of easily accessing those providers.  This could be a very useful service for companies requiring a varying range of services, especially if spread across many countries where available offerings might differ.</p>
]]></content:encoded>
			<wfw:commentRss>http://joewlarson.com/blog/2013/01/19/cases-of-big-data-seattle-tech-forum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cases of Data Storage &amp; Data Management – Seattle Tech Forum</title>
		<link>http://joewlarson.com/blog/2012/12/17/cases-of-data-storage-data-management-stf/</link>
		<comments>http://joewlarson.com/blog/2012/12/17/cases-of-data-storage-data-management-stf/#comments</comments>
		<pubDate>Tue, 18 Dec 2012 03:14:40 +0000</pubDate>
		<dc:creator>Joe Larson</dc:creator>
				<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[conferences]]></category>

		<guid isPermaLink="false">http://joewlarson.com/blog/?p=1188</guid>
		<description><![CDATA[Last Wednesday I attended the &#8220;Cases of Data Storage &#038; Data Management&#8221; session of the Seattle Tech Forum. We had some great speakers and a lot more attendance than recent STFs. NuoDB sponsored the entire session, and also provided our first speaker, Barry Morris, CEO and Co-Founder. His talk was titled &#8220;Establishing A Successful Relational [...]]]></description>
				<content:encoded><![CDATA[<p>Last Wednesday I attended the &#8220;<a href="http://www.meetup.com/Sea-Tech-Forum/events/36852872/">Cases of Data Storage &#038; Data Management</a>&#8221; session of the <a href="http://www.meetup.com/Sea-Tech-Forum/">Seattle Tech Forum</a>.  We had some great speakers and a lot more attendance than recent STFs.</p>
<p><a href="http://nuodb.com">NuoDB</a> sponsored the entire session, and also provided our first speaker, <strong><a href="https://twitter.com/bsmorris">Barry Morris</a></strong>, CEO and Co-Founder.  His talk was titled &#8220;Establishing A Successful Relational Database Strategy for the 21st Century&#8221;.  He started by talking about how SQL and relational database in general were the biggest inventions in database technology in the 20th century.  He outlined all the ways that a set-level data store beats a record-level/document oriented store.  The SQL/RDB paradigm has brought us benefits such as ACID, and has built up a huge amount of value in existing data, tools, and large numbers of people trained to do useful things with SQL.</p>
<p>He went on to explain that since SQL is a 20th century invention, and is not well suited to deal with 21st century problems such as:</p>
<ul>
<li>Commodity data centers (lower cost, low management requirements)</li>
<li>Big data</li>
<li>Modern workloads</li>
<li>24&#215;7 operation</li>
<li>Geo-distribution</li>
<li>Developer empowerment</li>
</ul>
<p>According to Morris, this has led to a database crisis, generating many bad ideas like sharding, master/slave replication, and complicated caching schemes.</p>
<p>His solution is NuoDB, a database designed to supply all the powerful benefits of an RDB (such as ACID), while bringing all the flexibility and low overhead of a NoSQL database.  NuoDB&#8217;s organization and ability to scale arises from emergent properties resulting from simple, deterministic behaviors of each machine, just like natural systems.  With NuoDB, there is apparently no central control, no master data, no supervisory role for any machine in the database.  Machines come and go as they please, and once added to a database can quickly become a useful part of that database &#8212; automatically, without configuration.  </p>
<p>Apparently NuoDB has already been in trials with customers, and goes into beta in January.</p>
<p>Next we heard a presentation titled &#8220;Emerging Trends in BI and Bigdata Warehousing&#8221; by <strong><a href="http://www.linkedin.com/profile/view?id=2513534">Amol Shanbhag</a></strong>, Senior Data Warehousing Engineer at <a href="http://www.expedia.com/">Expedia</a>.  He started with the question &#8220;how big is Big Data?&#8221;, supplying these interesting statistics:</p>
<ul>
<li>The Library of Congress adds 5TB a month</li>
<li>The internet will move 18 exabytes per month in 2013 (I may have written this down wrong since Google is telling me we&#8217;re already at 21EB per month)</li>
<li>One zetabyte is twice as big as today&#8217;s Internet</li>
</ul>
<p>After covering some more Big Data facts and trends, Shanbhag moved on to talk about the use of NoSQL in BigData.  He emphasized his belief that &#8220;NoSQL&#8221; should really be thought of as &#8220;Not only SQL&#8221;, as there is a need for both.  He claimed that especially for analytics one of the benefits of NoSQL is that you have a faster time to insights about your data.  He also explained the difference between <a href="http://en.wikipedia.org/wiki/Online_transaction_processing">OLTP</a> (MongoDB, Couch, Azure, etc) and <a href="http://en.wikipedia.org/wiki/Online_analytical_processing">OLAP</a> (Hadoop, etc) NoSQL systems.</p>
<p>He then examined <a href="http://hadoop.apache.org/">Hadoop</a> in some depth, explaining it&#8217;s benefits and use cases for Expedia and in general.</p>
<p>Finally we heard from <strong><a href="https://twitter.com/mlmilleratmit">Mike Miller</a></strong>, Chief Scientist and Co-Founder at <a href="https://cloudant.com/">Cloudant</a>; Affiliate Professor of Particle Physics, UW.  Miller had <a href="http://joewlarson.com/blog/2012/11/17/cases-of-network-technology-2/">spoken at the November session</a> as well.  This time his talk was titled &#8220;Moving Beyond the No/New/SQL Debate: Introducing the Application Data Layer&#8221;.  </p>
<p>He gave a great overview of Cloudant, which he said you can think of as the &#8220;Akamai of Data Content&#8221;.  Cloudant provides a scalable, managed <a href="http://couchdb.apache.org/">CouchDB</a>/<a href="http://bigcouch.cloudant.com/">BigCouch</a> database as an enterprise grade service. The goal of Cloudant is to allow you to focus on your application, not data operations.  </p>
<p>At one point Miller also said a goal is &#8220;to get a data center on every cell tower&#8221;, which was (I think?) tongue in cheek, but speaks to their desire for high performance and ubiquity, and the strength of the NoSQL model.  Since CouchDB is a NoSQL database with no guarantees of immediate consistency, such radical decentralization is actually a very realistic possibility.</p>
<p>Miller touted the auto sharding behavior of CouchDB.  He contrasted that with the pain of app level sharding.  Apparently it took two whole years for Google to shard it&#8217;s F1 ad network data.  He gave another example of <a href="http://www.hotheadgames.com">Hothead Games</a>, who were unable to scale their game&#8217;s MySQL database when the game went viral &#8212; until they moved to Cloudant.</p>
<p>In the Q&#038;A we had some great questions (which I took poor notes on).  At one point it seemed like there might be a debate brewing between Morris and Miller on the pros and cons of NoSQL, but sadly it never materialized.  </p>
<p>I would like to compliment both Morris and Miller on their presentations which focussed mostly on their own companies but somehow did not come off as a sales pitch &#8212; most speakers can&#8217;t pull that off.  I also enjoyed the technical depth Shanbhag was able to explore.  It was a very interesting and educational evening.  </p>
]]></content:encoded>
			<wfw:commentRss>http://joewlarson.com/blog/2012/12/17/cases-of-data-storage-data-management-stf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Christmas for Classrooms – a new DonorsChoose.org front-end</title>
		<link>http://joewlarson.com/blog/2012/12/11/christmas-for-classrooms-donorschoose-frontend/</link>
		<comments>http://joewlarson.com/blog/2012/12/11/christmas-for-classrooms-donorschoose-frontend/#comments</comments>
		<pubDate>Wed, 12 Dec 2012 01:18:42 +0000</pubDate>
		<dc:creator>Joe Larson</dc:creator>
				<category><![CDATA[donorschoose]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[recommend]]></category>

		<guid isPermaLink="false">http://joewlarson.com/blog/?p=1183</guid>
		<description><![CDATA[This weekend had a bolt of inspiration and built Christmas for Classrooms, which I launched last night. Just like DonorsChooseGeographic, which I built as part of the Hacking Education competition, Christmas for Classrooms uses the DonorsChoose API. Using this API it lists proposals posted by teachers across the USA. These proposals are for things like: [...]]]></description>
				<content:encoded><![CDATA[<p>This weekend had a bolt of inspiration and built <a href="http://christmasforclassrooms.org/">Christmas for Classrooms</a>, which I launched last night.  </p>
<p><a href="http://christmasforclassrooms.org/"><img src="http://joewlarson.com/blog/wp-content/uploads/2012/12/christmasForClassrooms.png" alt="" title="Christmas For Classrooms" width="640" height="336" class="alignnone size-full wp-image-1184" /></a></p>
<p>Just like <a href="http://joewlarson.com/dcg/">DonorsChooseGeographic</a>, which I <a href="http://joewlarson.com/blog/category/donorschoose/">built as part of the Hacking Education competition</a>, Christmas for Classrooms uses the <a href="http://www.donorschoose.org/">DonorsChoose</a> API.  Using this API it lists proposals posted by teachers across the USA.  These proposals are for things like:</p>
<ul>
<li>Materials for <a href="http://www.donorschoose.org/project/hands-on-math/887801/?utm_source=api&#038;utm_medium=feed&#038;utm_content=bodylink&#038;utm_campaign=2i6uk3mcp3rh">math</a>, <a href="http://www.donorschoose.org/project/guided-reading-table/931064/?utm_source=api&#038;utm_medium=feed&#038;utm_content=bodylink&#038;utm_campaign=2i6uk3mcp3rh">reading</a> and <a href="http://www.donorschoose.org/project/magazine-memories/920265/?utm_source=api&#038;utm_medium=feed&#038;utm_content=bodylink&#038;utm_campaign=2i6uk3mcp3rh">writing</a> instruction</li>
<li>Expanding the <a href="http://www.donorschoose.org/project/wow-students-with-theme-related-non-fict/870806/?utm_source=api&#038;utm_medium=feed&#038;utm_content=bodylink&#038;utm_campaign=2i6uk3mcp3rh">classroom library</a></li>
<li><a href="http://www.donorschoose.org/project/to-college-and-beyond/921639/?utm_source=api&#038;utm_medium=feed&#038;utm_content=bodylink&#038;utm_campaign=2i6uk3mcp3rh">Field trip</a> funding</li>
<li>Classroom <a href="http://www.donorschoose.org/project/help-students-learn-through-technology/820953/?utm_source=api&#038;utm_medium=feed&#038;utm_content=bodylink&#038;utm_campaign=2i6uk3mcp3rh">technology</a></li>
<li><a href="http://www.donorschoose.org/project/third-graders-save-the-earth/911689/?utm_source=api&#038;utm_medium=feed&#038;utm_content=bodylink&#038;utm_campaign=2i6uk3mcp3rh">Science</a>, <a href="http://www.donorschoose.org/project/keep-writing-about-history/923628/?utm_source=api&#038;utm_medium=feed&#038;utm_content=bodylink&#038;utm_campaign=2i6uk3mcp3rh">Social Studies</a>, and <a href="http://www.donorschoose.org/project/basic-art-supplies-needed-to-support-cre/926577/?utm_source=api&#038;utm_medium=feed&#038;utm_content=bodylink&#038;utm_campaign=2i6uk3mcp3rh">Art</a> materials and projects</li>
<li>Basic <a href="http://www.donorschoose.org/project/first-graders-need-a-carpet-to-build-cla/884027/?utm_source=api&#038;utm_medium=feed&#038;utm_content=bodylink&#038;utm_campaign=2i6uk3mcp3rh">classroom management</a> tools</li>
<li><a href="http://christmasforclassrooms.org/">and more&#8230;</a></li>
</ul>
<p>People can then click on a project and view details, and hopefully choose to make a gift!</p>
<p>The site also boasts a fun HTML5 canvas animated snow-fall background, which I might write about if I have time.</p>
<p>I&#8217;ve put up a <a href="https://www.facebook.com/ChristmasForClassrooms">Facebook page</a> and <a href="https://twitter.com/Xmas4Classrooms">Twitter account</a> as well where I&#8217;m trying to &#8220;market&#8221; certain projects.</p>
<p>Anyway, I&#8217;m hoping this drums up a little funding for our nation&#8217;s classrooms &#8212; Go <a href="http://christmasforclassrooms.org/">take a look</a> and make a donation!</p>
]]></content:encoded>
			<wfw:commentRss>http://joewlarson.com/blog/2012/12/11/christmas-for-classrooms-donorschoose-frontend/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>We need a standard for namespacing localStorage keys</title>
		<link>http://joewlarson.com/blog/2012/12/02/we-need-a-standard-for-namespacing-localstorage-keys/</link>
		<comments>http://joewlarson.com/blog/2012/12/02/we-need-a-standard-for-namespacing-localstorage-keys/#comments</comments>
		<pubDate>Sun, 02 Dec 2012 23:43:45 +0000</pubDate>
		<dc:creator>Joe Larson</dc:creator>
				<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://joewlarson.com/blog/?p=1176</guid>
		<description><![CDATA[There is a trap hidden within the promise of widespread use of HTML5&#8242;s localStorage feature. The trap is the fact that the localStorage for a particular subdomain is shared by all scripts that run on that domain. This includes both application code and library code. If multiple scripts running on a subdomain uses localStorage, it [...]]]></description>
				<content:encoded><![CDATA[<p>There is a trap hidden within the promise of widespread use of <a href="http://diveintohtml5.info/storage.html">HTML5&#8242;s localStorage</a> feature.  The trap is the fact that the localStorage for a particular subdomain is shared by all scripts that run on that domain.  This includes both application code and library code.  </p>
<p>If multiple scripts running on a subdomain uses localStorage, it is easy to imagine them conflicting with each other.  For example, if two or more scripts use some of the same localStorage item keys, they will trample on each other&#8217;s data, possibly causing each other to choke on unexpected data or to be fooled by plausible but incorrect data set in place by another script.  Or, if one of the scripts uses localStorage.clear() when it decides it&#8217;s cache has gone stale, it will clear out every other script&#8217;s data as well.  This might cause unnecessary repeated downloads of data that was in localStorage only moments before.</p>
<p>It <em>might</em> be reasonable to expect that all the application code (by which I mean non-library code) on a single subdomain should be coordinated in their usage of localStorage (though if multiple teams are involved even this might be a stretch).  However it&#8217;s definitely <em>not</em> reasonable to expect that different libraries will be so coordinated.  At least not right now.</p>
<p>It would have been nice if localStorage had had namespacing built into it&#8217;s API.  Perhaps the localStorage API can be expanded to include this in the future.</p>
<p>In the meantime, another approach would be to introduce a library which would provide namespacing for localStorage.  <a href="https://github.com/easy-designs/Squirrel.js">Squirrel.js</a> is one such library, and <a href="http://blog.easy-designs.net/archives/2010/08/02/be-a-good-localstorage-neighbor/">appears to be well thought out</a> (though I haven&#8217;t used it).  However, I doubt that most library authors would want to add this to their list of required libraries, just as web designers probably don&#8217;t want one more script they have to include in all their projects.</p>
<p><strong>So what can we do about it?</strong></p>
<p>The solution I&#8217;m advocating is that the web dev community settle on a convention for namespacing use of localStorage keys, plus a few rules of thumb to avoid conflicts.  For example, we might have a few simple rules:</p>
<ul>
<li>For libraries, keys should be prefixed with the subdomain of the script&#8217;s primary &#8220;home&#8221; on the web, followed by a colon.  For example, &#8220;github.com/theAuthor/theScript.js:&#8221; or &#8220;scriptName.somesite.com:&#8221;.</li>
<li>For application code, keys should be prefixed with the root subpath within the website that represents the application, followed by a colon.  For example, &#8220;/stocks:&#8221;, &#8220;/admin:&#8221;, or just &#8220;:&#8221; if this is code for the whole site.</li>
<li>All libraries should supply a way for a different namespace to be used.  For example, &#8220;SomeScript.setLsNamespace(&#8230;)&#8221; or &#8220;new SomeScript({ lsns: &#8216;&#8230;&#8217;})&#8221;.</li>
<li>Libraries should avoid using localStorage.clear().</li>
</ul>
<p>This convention/standard needs a name so that libraries can note that they have &#8220;XYZ compliant usage of localStorage&#8221;.</p>
<p>So my question for you is: what&#8217;s the best place to flesh out such a convention and launch it into the world?  Will you help me sort it out and spread the word?</p>
<p><strong>Update:</strong> I&#8217;ve created a <a href="https://github.com/joelarson4/LSNS">Github repository</a> to try to facilitate more involvement.  Come join in!</p>
]]></content:encoded>
			<wfw:commentRss>http://joewlarson.com/blog/2012/12/02/we-need-a-standard-for-namespacing-localstorage-keys/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Soundslice – a totally new approach to learning guitar music</title>
		<link>http://joewlarson.com/blog/2012/11/17/soundslice/</link>
		<comments>http://joewlarson.com/blog/2012/11/17/soundslice/#comments</comments>
		<pubDate>Sat, 17 Nov 2012 23:54:04 +0000</pubDate>
		<dc:creator>Joe Larson</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[recommend]]></category>

		<guid isPermaLink="false">http://joewlarson.com/blog/?p=1165</guid>
		<description><![CDATA[Given the fact I&#8217;ve complained about existing guitar music websites, I figure I just have to comment on this. Adrian Holovaty and PJ Macklin have created a really excellent tool for guitar players to learn songs. Soundslice gives you a realtime tabulature that plays at the same speed as the actual song, a bit like [...]]]></description>
				<content:encoded><![CDATA[<p>Given the fact I&#8217;ve complained about <a href="http://joewlarson.com/blog/2012/01/10/three-ways-guitar-music-websites-could-be-improved/">existing guitar music websites</a>, I figure I just have to comment on this.  <a href="http://www.holovaty.com/">Adrian Holovaty</a> and <a href="http://pjmacklin.com/">PJ Macklin</a> have created a really excellent tool for guitar players to learn songs.  <a href="http://www.soundslice.com/">Soundslice</a> gives you a realtime tabulature that plays at the same speed as the actual song, a bit like <a href="http://www.songsterr.com/">Songsterr</a>.  But along with that tab, Soundslice also shows a YouTube video of someone playing the song, synchronized precisely with the tab!</p>
<p><a href="http://www.soundslice.com/yt/lBWra6snX-g/"><img src="http://joewlarson.com/blog/wp-content/uploads/2012/11/Screen-Shot-2012-11-17-at-3.38.42-PM-300x204.png" alt="" title="Screen Shot 2012-11-17 at 3.38.42 PM" width="300" height="204" class="aligncenter size-medium wp-image-1166" /></a></p>
<p>You can even play the video at half speed (but the same pitch!) to work out the more difficult parts of the song.  Soundslice also, of course, lets people input their own tabs tied to videos.</p>
<p>Soundslice will be great for people who want to replicate the original work as nearly as possible.  That&#8217;s the opposite end of the spectrum from the tool I created, <a href="http://joewlarson.com/onePageChords/">OnePageChords</a>, which is more targeted at those of us just trying to capture the essence of the song and less fussed with (or able to pull off!) the details of the original.  Still, I know where I&#8217;ll be looking when I want to learn a song perfectly.  Nice job, Soundslice!</p>
]]></content:encoded>
			<wfw:commentRss>http://joewlarson.com/blog/2012/11/17/soundslice/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>‘Cases of Network Technology II’ Meetup (Seattle Tech Forum)</title>
		<link>http://joewlarson.com/blog/2012/11/17/cases-of-network-technology-2/</link>
		<comments>http://joewlarson.com/blog/2012/11/17/cases-of-network-technology-2/#comments</comments>
		<pubDate>Sat, 17 Nov 2012 23:07:58 +0000</pubDate>
		<dc:creator>Joe Larson</dc:creator>
				<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://joewlarson.com/blog/?p=1159</guid>
		<description><![CDATA[This Wednesday I attended another STF, the second on Network Technology. Our first speaker was Eric Hulbert, CEO of Opus Interactive. During his talk, titled &#8220;The Northwest&#8217;s New Data Center Economy: The Good, The Bad &#038; The Opportunity for Improvement&#8221;, Hulbert discussed some of the current impressive stats and forecasts for Data Center growth worldwide [...]]]></description>
				<content:encoded><![CDATA[<p>This Wednesday I attended another <a href="http://www.meetup.com/Sea-Tech-Forum">STF</a>, the second <a href="http://joewlarson.com/blog/2012/10/20/cases-of-network-tech-stf/">on Network Technology</a>.</p>
<p>Our first speaker was <strong><a href="https://twitter.com/ehmatrix">Eric Hulbert</a></strong>, CEO of <a href="http://www.opusinteractive.com">Opus Interactive</a>.  During his talk, titled &#8220;The Northwest&#8217;s New Data Center Economy: The Good, The Bad &#038; The Opportunity for Improvement&#8221;, Hulbert discussed some of the current impressive stats and forecasts for Data Center growth worldwide and specifically in the Pacific Northwest.  For example, 170 data centers were built in 2010 (I believe that is a worldwide figure); data centers will grow 80% more by 2015 (presumably from 2012 levels); 454 per year will be built in 2020.  The Northwest is experiencing substantial Data Center growth due to the many business and environmental benefits of this area:</p>
<ul>
<li>Low cost of power, 1/4th of California</li>
<li>Tax benefits in Oregon and Washington</li>
<li>Low seismic activity</li>
<li>Temperate climate for cheaper cooling</li>
<li>Excellent communications infrastructure</li>
<li>Great technical personnel available </li>
</ul>
<p>Hulbert went on to explain how these benefits are changing over time.</p>
<p>Our next talk was &#8220;Ubiquitous Networks and the Cloud Ecosystem&#8221; by <strong><a href="https://twitter.com/JoshBreeds">Josh Breeds</a></strong>, Managing Member of <a href="http://www.servedby.net/">ServedBy the Net</a>.  He gave (another) good overview of cloud computing &#8212; future speakers ought to be warned that STF regulars have heard a couple dozen &#8220;Cloud Overviews&#8221; at this point, and even new attendees are likely to know the basics.  <strong>See update below as well.</strong> Most of the rest of his talk focused on ServedBy the Net.</p>
<p>The next speaker was <strong>Dan Griffin</strong>, President of <a href="http://www.jwsecure.com/">JW Secure</a>, who has <a href="http://joewlarson.com/blog/2012/03/15/mobile-computing-revealed-session-one-meetup-seattle-tech-forum/">spoken at STF before</a>.  His talk this week was titled &#8220;Want to secure your network? Secure your endpoints&#8221;.  He gave a pretty good overview of some network security concerns by using examples from <a href="http://www.imdb.com/title/tt0381061/">Casino Royale</a>, which was fairly entertaining (video would have made that even better if you give this talk again Mr. Griffin).  He then gave an example walkthrough of a Secure Purchase Order System, using it to go refreshingly deep technically (at least for STF) into using UEFI, TPM, Measured Boot and other technologies and techniques to secure such a system.</p>
<p>The last talk, by <strong><a href="https://twitter.com/mlmilleratmit">Mike Miller</a></strong>, was my favorite of the night.  Miller is currently Chief Scientist at and Co-Founder of <a href="https://cloudant.com/">Cloudant</a>, but his background is Particle Physics (he is still an Affiliate Professor of Particle Physics at <a href="https://www.washington.edu/">UW</a>).  He gave a presentation on &#8220;Synchronizing Global Time with Google Spanner&#8221;.  Much of the information he covered can be found in his fascinating <a href="https://cloudant.com/blog/cloudant-labs-on-google-spanner/">post about Spanner on the Cloudant blog</a>.  </p>
<p>From the <a href="http://research.google.com/archive/spanner.html">Google Research abstract</a> of <a href="http://static.googleusercontent.com/external_content/untrusted_dlcp/research.google.com/en/us/archive/spanner-osdi2012.pdf">the Spanner paper</a>, Spanner is &#8220;Google&#8217;s scalable, multi-version, globally-distributed, and synchronously-replicated database&#8221;.  Miller noted that <a href="http://research.google.com/people/jeff/">Jeffrey Dean</a> and <a href="http://research.google.com/pubs/SanjayGhemawat.html">Sanjay Ghemawat</a>, inventers of BigTable, MapReduce, and many other Google innovations, are part of the team behind Spanner.  </p>
<p>One of the main challenges with a distributed database is the difficulty of synchronization, and some of that difficulty is due to uncertainty about time.  Computer clocks will drift, and so any two computers will disagree about when specific synchronization events happened.</p>
<p>Google Spanner solves this time uncertainty problem by accepting that uncertainty and quantifying it statistically so that it can be dealt with.  It uses some unique hardware approaches involving Atomic Clocks and GPS to determine time as accurately as possible, and exposes this time <em>as well as the uncertainty range for that time</em> via an API named &#8220;TrueTime&#8221;.  By leveraging the TrueTime API, Spanner is able to &#8220;support consistent backups, consistent MapReduce executions, and atomic schema updates, all at global scale, and even in the presence of ongoing transactions.&#8221;</p>
<p>Thanks as always to <a href="http://www.ci.bellevue.wa.us/">Bellevue City Hall</a> for hosting, and also thanks to this month&#8217;s sponsor, <a href="http://www.isoftstone.com/en/default.aspx">iSoftStone</a>.</p>
<p><strong>Update</strong> I missed a small portion of Josh Breeds&#8217; talk which might have accounted for me missing some details and nuance.  He addressed the brand-new cloud connectivity options becoming available as the ecosystem between Cloud Service Providers &#038; Internet Services Providers evolves. He presented dedicated Ethernet transport available from <a href="http://www.twtelecom.com/">TW Telecom</a> &#038; <a href="http://www.spectrumnet.us/">Spectrum Networks</a> which can directly connect users� offices and/or datacenters to the ServedBy Cloud.  He gave a few scenarios of the benefits involved ranging from the tangible simplicity for SMB�s to the dedicated performance available to hybrid cloud/colocation solutions.</p>
]]></content:encoded>
			<wfw:commentRss>http://joewlarson.com/blog/2012/11/17/cases-of-network-technology-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
