<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Will Lawrence&#039;s Blog</title>
	<atom:link href="https://willhlaw.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://willhlaw.wordpress.com</link>
	<description>Development, Javascript, and interesting technologies fused with business topics and startup ideas</description>
	<lastBuildDate>Tue, 20 Oct 2015 03:53:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<site xmlns="com-wordpress:feed-additions:1">9912471</site><cloud domain='willhlaw.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://secure.gravatar.com/blavatar/f49d2cae9f3c82cf93895f4af992085a529a66b19c583536fdbd1bf195e4d645?s=96&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Fwebclip.png</url>
		<title>Will Lawrence&#039;s Blog</title>
		<link>https://willhlaw.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://willhlaw.wordpress.com/osd.xml" title="Will Lawrence&#039;s Blog" />
	<atom:link rel='hub' href='https://willhlaw.wordpress.com/?pushpress=hub'/>
	<item>
		<title>Don’t use NPM install -g inside Vagrant</title>
		<link>https://willhlaw.wordpress.com/2015/10/20/dont-use-npm-install-g-inside-vagrant-2/</link>
					<comments>https://willhlaw.wordpress.com/2015/10/20/dont-use-npm-install-g-inside-vagrant-2/#respond</comments>
		
		<dc:creator><![CDATA[willhlaw]]></dc:creator>
		<pubDate>Tue, 20 Oct 2015 03:57:47 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[node.js]]></category>
		<category><![CDATA[npm]]></category>
		<category><![CDATA[vagrant]]></category>
		<guid isPermaLink="false">http://willhlaw.wordpress.com/?p=513</guid>

					<description><![CDATA[Use npm-shrinkwrap within Vagrant for repeatable and reliable npm environment for your node.js project and install global packages locally and call them using `npm run `.]]></description>
										<content:encoded><![CDATA[<figure id="988d" class="graf--figure graf-after--h3">
<div class="aspectRatioPlaceholder is-locked">
<div class="aspect-ratio-fill"></div>
<p><img class="graf-image" src="https://cdn-images-1.medium.com/max/1600/1*uqkrsEEktLPCm5PleQE4ow.jpeg" alt="" /></div>
</figure>
<p id="1235" class="graf--p graf-after--figure">Using <a class="markup--anchor markup--p-anchor" href="https://www.google.com/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;cad=rja&amp;uact=8&amp;ved=0CB0QFjAAahUKEwjg4ses7c_IAhWGNz4KHaNkBQU&amp;url=https%3A%2F%2Fwww.vagrantup.com%2F&amp;usg=AFQjCNFOaU5nJjT6IIysO4CUhdUuYH4AJQ&amp;sig2=MhhTFJYb29OOkZUN0gySiw&amp;bvm=bv.105454873,d.cWw" rel="nofollow">Vagrant</a> for your node.js projects makes sense if you want an environment that can be reliably and repeatedly built by any one of your team members and new ones without going through the hassle of writing Getting Started instructions for getting elasticsearch installed for Windows, Mac, and other *nix. I highly recommend it…or it’s up and coming predecessor, <a class="markup--anchor markup--p-anchor" href="https://ottoproject.io/" rel="nofollow">Otto</a> (which actually uses Vagrant under the hood, but hides a lot of the complexity and uses best practices).</p>
<p id="abbf" class="graf--p graf-after--p">However, you cannot have the same start up process each and every time if you install dependencies without pinning or locking in the specific version. So rather than running:</p>
<pre id="f225" class="graf--pre graf-after--p">&gt;npm install -g grunt-cli@0.1.13</pre>
<p id="cf16" class="graf--p graf-after--pre">Instead, <a class="markup--anchor markup--p-anchor" href="https://github.com/gruntjs/grunt-cli#installing-grunt-cli-locally" rel="nofollow">install grunt-cli locally as a dev-dependency</a> and the `grunt` command will be available as npm scripts in your package.json’s script {} block.</p>
<pre id="87a0" class="graf--pre graf-after--p">&gt;npm install grunt-cli@01.1.13 save-dep
&gt;npm shrinkwrap --dev</pre>
<p id="0c57" class="graf--p graf-after--pre">We capture the version npm grabbed and stored in <em class="markup--em markup--p-em">package.json</em> under the devDependencies {} block by running `<a class="markup--anchor markup--p-anchor" href="https://docs.npmjs.com/cli/shrinkwrap" rel="nofollow">npm shrinkwrap</a>` with the ‘dev’ flag. This locks your entire (local) dependency tree from your <em class="markup--em markup--p-em">package.json</em>, and creates an <em class="markup--em markup--p-em">npm-shrinkwrap.json</em> file. <em class="markup--em markup--p-em">Npm-shrinkwrap.json</em> files are not used for global installs. So next time your team member starts work on your project and runs `vagrant up` and then `npm install`, the locked dependencies will be read from <em class="markup--em markup--p-em">npm-shrinkwrap.json</em> (instead of<em class="markup--em markup--p-em">package.json</em>) and your team member’s <em class="markup--em markup--p-em">node_modules/</em> directory will behave just like yours.</p>
<blockquote id="f2a3" class="graf--blockquote graf-after--p"><p>npm-shrinkwrap.json files are not used for global installs — <a class="markup--anchor markup--blockquote-anchor" href="https://github.com/npm/npm/search?q=npm-shrinkwrap.json+files+are+not+used+for+global+installs&amp;type=Issues&amp;utf8=%E2%9C%93" rel="nofollow">npm issues</a></p></blockquote>
<p id="76b8" class="graf--p graf-after--blockquote">So how then exactly do we run `grunt` from the command line since we don’t install it globally?</p>
<p id="ebd8" class="graf--p graf-after--p">In package.json, we add some scripts:</p>
<pre id="b489" class="graf--pre graf-after--p">{
  "name": "myProject",
  "version": "0.0.1",
  "devDependency": {
    "grunt-cli": "^0.1.13"
  },
  "scripts": {
    "grunt": "grunt",
    "test": "grunt test"
  }
}</pre>
<p id="793d" class="graf--p graf-after--pre">And from the command line or another script, you run it with:</p>
<pre id="4117" class="graf--pre graf-after--p">&gt;npm run test  ## executes `grunt test`</pre>
<pre id="3153" class="graf--pre graf-after--pre">&gt;npm run grunt -- --help  ## executes `grunt --help`</pre>
<p id="449d" class="graf--p graf-after--pre">The two extra dashes is <a class="markup--anchor markup--p-anchor" href="https://docs.npmjs.com/cli/run-script" rel="nofollow">npm’s way</a> of allowing you to pass any grunt parameters after it.</p>
<p id="00cd" class="graf--p graf-after--p graf--last">To conclude, use npm-shrinkwrap within Vagrant for repeatable and reliable npm environment for your node.js project and install global packages locally and call them using `npm run &lt;scripts.name&gt;`.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://willhlaw.wordpress.com/2015/10/20/dont-use-npm-install-g-inside-vagrant-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">513</post-id>
		<media:thumbnail url="https://willhlaw.wordpress.com/wp-content/uploads/2015/10/vagrant-node-npm.jpeg" />
		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2015/10/vagrant-node-npm.jpeg" medium="image">
			<media:title type="html">vagrant-node-npm</media:title>
		</media:content>

		<media:content url="https://2.gravatar.com/avatar/2913f77fec5551e59342ea9e5b20096eb1b5ae67d619fb1a55c36d67bb02d5df?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">willhlaw</media:title>
		</media:content>

		<media:content url="https://cdn-images-1.medium.com/max/1600/1*uqkrsEEktLPCm5PleQE4ow.jpeg" medium="image" />
	</item>
		<item>
		<title>Mobile App and Website Testing Roundup for 2015</title>
		<link>https://willhlaw.wordpress.com/2015/04/05/mobile-app-and-website-testing-roundup-for-2015/</link>
					<comments>https://willhlaw.wordpress.com/2015/04/05/mobile-app-and-website-testing-roundup-for-2015/#comments</comments>
		
		<dc:creator><![CDATA[willhlaw]]></dc:creator>
		<pubDate>Sun, 05 Apr 2015 14:10:42 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[appium]]></category>
		<category><![CDATA[applause]]></category>
		<category><![CDATA[appthwack]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[peek]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[usertesting]]></category>
		<guid isPermaLink="false">http://willhlaw.wordpress.com/?p=503</guid>

					<description><![CDATA[Research on mobile app and website testing and recommendations gathered for a startup.]]></description>
										<content:encoded><![CDATA[<div data-shortcode="caption" id="attachment_504" style="width: 310px" class="wp-caption alignnone"><a href="https://willhlaw.wordpress.com/wp-content/uploads/2015/04/mobile-application-testing.jpg"><img aria-describedby="caption-attachment-504" data-attachment-id="504" data-permalink="https://willhlaw.wordpress.com/2015/04/05/mobile-app-and-website-testing-roundup-for-2015/mobile-application-testing/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2015/04/mobile-application-testing.jpg" data-orig-size="590,512" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Mobile-Application-Testing" data-image-description="&lt;p&gt;Mobile App and Website Testing&lt;/p&gt;
" data-image-caption="&lt;p&gt;Photo courtesy of  http://www.softwaretestingclass.com/&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2015/04/mobile-application-testing.jpg?w=460" class="size-medium wp-image-504" src="https://willhlaw.wordpress.com/wp-content/uploads/2015/04/mobile-application-testing.jpg?w=300&#038;h=260" alt="Mobile App Testing" width="300" height="260" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2015/04/mobile-application-testing.jpg?w=300 300w, https://willhlaw.wordpress.com/wp-content/uploads/2015/04/mobile-application-testing.jpg?w=150 150w, https://willhlaw.wordpress.com/wp-content/uploads/2015/04/mobile-application-testing.jpg 590w" sizes="(max-width: 300px) 100vw, 300px" /></a><p id="caption-attachment-504" class="wp-caption-text">Photo courtesy of <a href="http://www.softwaretestingclass.com/" rel="nofollow">http://www.softwaretestingclass.com/</a></p></div>
<p>After researching testing for a startup, I thought I would share my findings.</p>
<h2><b>Background on Testing</b></h2>
<p>There are a few concerns that testing attempts to solve that is applicable to most mobile app product deployments.</p>
<ul>
<li>There is functional testing (is anything broken?).</li>
<li>There is load testing (does app or website fold under pressure?).</li>
<li>And there is usability testing (do paid testers acting like users find the app or website easy to use?).</li>
<li>Then, there are the targets. Need to consider performing these tests against all of the combination of workflows, iOS and Android and the backend server and database as well as any websites.</li>
<li>iOS and Android app testing is different, see <a href="http://university.utest.com/what-are-the-key-differences-between-ios-and-android-platform-testing/">why</a></li>
<li>List of <a href="http://www.testingtools.com/mobile-testing/">Testing Tools</a> for mobile and others</li>
</ul>
<h2><b>Appium (</b><a href="http://appium.io/"><b>site</b></a><b>, </b><a href="http://www.3pillarglobal.com/insights/appium-a-cross-browser-mobile-automation-tool"><b>review</b></a><b>) &#8211; Free, required for services like AppThwack</b></h2>
<p>Free, open source, raw foundation to create test scripts that can be written outside of the project’s code base. Has improved much over the past <a href="https://groups.google.com/forum/#!topic/appium-discuss/FfaTgvOxPIU">two years</a> to become the tool of choice among <a href="http://www.quora.com/Should-I-use-Appium-or-Robotium-for-test-automation">QA</a> shops. I chose this over other testing frameworks such as MonkeyTalk and  Robotium.</p>
<ul>
<li>Free</li>
<li>Requires coding knowledge and uses black box testing Selenium style</li>
<li>It would be ideal if the development team uses this framework or one of the aforementioned, because other testing websites like AppThwack expect to run these test scripts.</li>
</ul>
<h2><b>AppThwack (</b><a href="https://appthwack.com/pricing"><b>site</b></a><b>, </b><a href="http://techcrunch.com/2012/07/03/appthwack-takes-on-android-fragmentation-with-new-automated-testing-service/"><b>review</b></a><b>) &#8211; Cheap, requires test scripts like Appium</b></h2>
<p>If you have test scripts running for your project, like Appium or <a href="https://appthwack.com/overview">others</a>, then AppThwack can automate the running of those tests on 100s of real devices.</p>
<ul>
<li>$20/month for 200 device test minutes up to $500/year for 7,500 device minutes</li>
<li>Requires suite of test scripts to be already written</li>
</ul>
<h2><b>TestElf (</b><a href="https://www.testelf.com"><b>site</b></a><b>, </b><a href="https://news.ycombinator.com/item?id=5104305"><b>review</b></a><b>) &#8211; Cheap</b></h2>
<p>Covers functional testing and has 2 day turn-around</p>
<ul>
<li>$50 signup offer, $200 for 1 test, $1,000 for 6 tests, $2,000 per month</li>
</ul>
<h2><b>UserTesting (</b><a href="http://www.usertesting.com/"><b>site</b></a><b>, </b><a href="http://techcrunch.com/2014/07/18/usertesting-launches-peek-a-free-service-for-basic-user-testing/"><b>review</b></a><b>) &#8211; Variety</b></h2>
<p>Shows videos of test users using the app or website</p>
<ul>
<li>$49/video or $3,000/year</li>
</ul>
<p>Offers a free version called <a href="http://peek.usertesting.com/">Peek</a>, but the app needs to be in the app store.</p>
<ul>
<li>Free</li>
</ul>
<h2><b>Applause (</b><a href="http://www.applause.com/"><b>site</b></a><b>, </b><a href="http://techcrunch.com/2013/01/30/utest-launches-applause-an-ios-and-android-mobile-app-analytics-dashboard-with-a-klout-like-score/"><b>review</b></a><b>) &#8211; Expensive</b></h2>
<p>Following estimates (see and modify <a href="http://www.applause.com/pricing-estimator?share=4&amp;1&amp;0&amp;1&amp;0&amp;11110000&amp;4&amp;0&amp;0&amp;0&amp;0&amp;00000000&amp;0&amp;00000000&amp;0&amp;&amp;11110000&amp;4&amp;0&amp;00000000&amp;0&amp;0&amp;0&amp;1">actual quote</a>) are for 4 Apps (iOS App and Android count separately, and there is Consumer and Merchant app):</p>
<ul>
<li>4 Apps Functional Testing costs $4,500 &#8211; $7,499*
<ul>
<li><i><i>*With annual subscription, and salesman said these autoquote numbers are high and can come down</i></i></li>
<li>Custom team of testers and allows up to 10 test case hours</li>
</ul>
</li>
<li>4 Apps Load Testing costs $18,000 &#8211; $30,000*
<ul>
<li><i><i>*Salesman said these autoquote numbers are high and can come down</i></i></li>
<li>Led by a performance engineer and hand creates tests and will create reports and improvement recommendations</li>
</ul>
</li>
</ul>
<h2><b>Recommendations</b></h2>
<ul>
<li>Try <a href="https://www.testelf.com/account/signup">TestElf’s</a> functional testing by paying $50 special offer</li>
<li>Try <a href="http://peek.usertesting.com/">Peek’s</a> usability testing for free</li>
<li>Depending on seriousness and budget, start to negotiate with Applause and/or require development team to create a suite of tests to cover each major requirement and workflow</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://willhlaw.wordpress.com/2015/04/05/mobile-app-and-website-testing-roundup-for-2015/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">503</post-id>
		<media:thumbnail url="https://willhlaw.wordpress.com/wp-content/uploads/2015/04/mobile-application-testing.jpg" />
		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2015/04/mobile-application-testing.jpg" medium="image">
			<media:title type="html">Mobile-Application-Testing</media:title>
		</media:content>

		<media:content url="https://2.gravatar.com/avatar/2913f77fec5551e59342ea9e5b20096eb1b5ae67d619fb1a55c36d67bb02d5df?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">willhlaw</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2015/04/mobile-application-testing.jpg?w=300" medium="image">
			<media:title type="html">Mobile App Testing</media:title>
		</media:content>
	</item>
		<item>
		<title>Notes on Agile Product Ownership in a Nutshell</title>
		<link>https://willhlaw.wordpress.com/2015/03/09/notes-on-agile-product-ownership-in-a-nutshell/</link>
					<comments>https://willhlaw.wordpress.com/2015/03/09/notes-on-agile-product-ownership-in-a-nutshell/#respond</comments>
		
		<dc:creator><![CDATA[willhlaw]]></dc:creator>
		<pubDate>Mon, 09 Mar 2015 04:14:03 +0000</pubDate>
				<category><![CDATA[Administrivia]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Agile]]></category>
		<category><![CDATA[Scrum]]></category>
		<guid isPermaLink="false">http://willhlaw.wordpress.com/?p=491</guid>

					<description><![CDATA[Above is an illustration from the video &#8216;Agile Product Ownership in a Nutshell&#8216; that uses the RSA animation technique. Below are the notes highlighting key points made during the video as well as some other points drawn from additional resources. This post will be a good read for Product Owners, both new and experienced, as well [&#8230;]]]></description>
										<content:encoded><![CDATA[<div>
<h1 class="yt watch-title-container"><a href="https://willhlaw.wordpress.com/wp-content/uploads/2015/03/agile-product-ownership-in-a-nutshell-illustration1.png"><img data-attachment-id="500" data-permalink="https://willhlaw.wordpress.com/2015/03/09/notes-on-agile-product-ownership-in-a-nutshell/agile-product-ownership-in-a-nutshell-illustration-2/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2015/03/agile-product-ownership-in-a-nutshell-illustration1.png" data-orig-size="2704,1624" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Agile Product Ownership in a Nutshell Illustration" data-image-description="&lt;p&gt;Illustration that appears at the end of the video which shares the same name as the title.&lt;/p&gt;
" data-image-caption="" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2015/03/agile-product-ownership-in-a-nutshell-illustration1.png?w=460" class="alignnone wp-image-500 " src="https://willhlaw.wordpress.com/wp-content/uploads/2015/03/agile-product-ownership-in-a-nutshell-illustration1.png?w=499&#038;h=300" alt="Illustration" width="499" height="300" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2015/03/agile-product-ownership-in-a-nutshell-illustration1.png?w=499&amp;h=300 499w, https://willhlaw.wordpress.com/wp-content/uploads/2015/03/agile-product-ownership-in-a-nutshell-illustration1.png?w=998&amp;h=599 998w, https://willhlaw.wordpress.com/wp-content/uploads/2015/03/agile-product-ownership-in-a-nutshell-illustration1.png?w=150&amp;h=90 150w, https://willhlaw.wordpress.com/wp-content/uploads/2015/03/agile-product-ownership-in-a-nutshell-illustration1.png?w=300&amp;h=180 300w, https://willhlaw.wordpress.com/wp-content/uploads/2015/03/agile-product-ownership-in-a-nutshell-illustration1.png?w=768&amp;h=461 768w" sizes="(max-width: 499px) 100vw, 499px" /></a></h1>
<p>Above is an illustration from the video &#8216;<a href="https://www.youtube.com/watch?v=502ILHjX9EE" target="_blank">Agile Product Ownership in a Nutshell</a>&#8216; that uses the RSA animation technique. Below are the notes highlighting key points made during the video as well as some other points drawn from additional resources. This post will be a good read for Product Owners, both new and experienced, as well as any team member on an Agile Scrum team that wants to revisit the basic principles and possibly realign their team.</p>
</div>
<div></div>
<div><strong>Roles in Scrum</strong></div>
<div>PO &#8211; Product Owner carries the vision, says no or yes to customer requests, prioritizes, and responsible for building the right thing.</div>
<div>SM &#8211; Scrum Master is the coach, responsible for building it fast and fast feedback cycles with the users.</div>
<div><strong>Other Roles</strong></div>
<div>TL &#8211; Technical Lead is responsible for building the thing right, talks closely with customers and other teams, but still encourages self organization.</div>
<div>CPO &#8211; Chief Product Owner organizes multiple POs and interdependencies.</div>
<div>Development Manager hires, mentors engineers, creates culture, and knows when to step in and lead discussion on branching strategy or versioning [<a href="https://www.atlassian.com/agile/effective-management-across-agile" target="_blank">1</a>]</div>
<div></div>
<div><strong>Key Points</strong></div>
<div>Product backlog becomes Team backlog when working on multiple products (new products, old products, O&amp;M, etc)</div>
<div></div>
<div>Value = knowledge value + customer value.</div>
<div>Knowledge value is gained early to reduce risk. Knowledge user stories are UI mock ups, trade study, spikes, prototypes, etc.</div>
<div></div>
<div>Stories have an estimate for effort &amp; value so priority = value / effort. This should make it easier for PO to prioritize Team backlog.</div>
<div></div>
<div>Velocity goes down overtime due to technical debt, architecture decisions, getting behind on automated testing. It is the team&#8217;s job to correct. However, how is this investment effort tracked? This question is asked and a lot of the sources below were found <a href="http://www.infoq.com/news/2013/03/user-stories-technical-debt" target="_blank">here</a>.</div>
<ol>
<li>Be transparent by explaining benefits of paying down technical debt so that PO can prioritize. [<a href="http://www.agileweboperations.com/how-to-translate-business-value-of-things-that-are-technically-important" target="_blank">4</a>]</li>
<li>Have a separate Improvement backlog that is internal that is adds a tax to each sprint (e.g. 10-20% of velocity). [<a href="http://www.codovation.com/2012/06/effective-steps-to-reduce-technical-debt-an-agile-approach/" target="_blank">5</a>] [<a href="http://www.scrumcrazy.com/Scrum+Strategy+-+The+Dev+Team+Improvement+Backlog" target="_blank">6</a>]</li>
<li>Do not obsess over it, basically just pick one and fix the broken stuff already [<a href="https://www.atlassian.com/landing/agile/delivery#!technical-debt" target="_blank">7</a>]. Also, consider adding to the definition of done (DoD) that the work is done only if it does not add any technical debt.</li>
</ol>
<div></div>
<div><strong>Charts </strong>[<a href="https://www.youtube.com/watch?v=502ILHjX9EE" target="_blank">2</a>]</div>
<div></div>
<div style="padding-left:30px;">Time vs customer value curve = knowledge value, customer value focus, trim the tail</div>
<div style="padding-left:30px;"></div>
<div style="padding-left:30px;">Time vs delivered stories</div>
<div style="padding-left:30px;">&#8211; fixed scope</div>
<div style="padding-left:30px;">&#8211; fixed time</div>
<div style="padding-left:30px;">&#8211; fixed scope and time -&gt; no, let&#8217;s decrease scope (b/c can always extend time and not the other way around)</div>
<div style="padding-left:30px;"></div>
<div style="padding-left:30px;">Reasons for Scrum:</div>
<div style="padding-left:30px;">&#8211; team motivation (not overworked, pressure from above, lack of input or control of march)</div>
<div style="padding-left:30px;">&#8211; deliver value in sweet spot of the triple constraints (time, cost, quality) Venn diagram</div>
<div style="padding-left:30px;">&#8211; more accurate predictions and expectation management</div>
<div style="padding-left:30px;">&#8211; standard metrics to evaluate team improvement and tech choices</div>
<div></div>
<div><strong>Points measure effort</strong> [<a href="http://www.mountaingoatsoftware.com/blog/story-points-are-still-about-effort" target="_blank">3</a>]</div>
<div></div>
<div style="padding-left:30px;">Effort should translate to time, and is influenced by uncertainty and complexity.</div>
<div>
<ol>
<li>How much effort to get to that building? Answer for runner and cripple is one.</li>
<li>How much effort to get to farther away bldg? Answer for both is two, since it looks twice as far.</li>
<li>How much effort to get to farther away bldg where there is a chasm of lava and a small walkway? Answer for both finally agree that it is a 4, since they will have to be extra careful and may drastically slow their progress.</li>
<li>How much effort to get to close bldg while singing Gangnam Style? Answer for both finally agree that it is still a 1, as the extra complexity doesn&#8217;t really have an effect on the effort that causes a slowdown.</li>
</ol>
</div>
<div>[1] Development managers vs scrum masters, Dan Radigan at Atlasian, <a href="https://www.atlassian.com/agile/effective-management-across-agile" target="_blank">https://www.atlassian.com/agile/effective-management-across-agile</a></div>
<div>[2] Agile Product Ownership in a Nutshell, Henrik Kniberg, Youtube video &#8211; <a href="https://www.youtube.com/watch?v=502ILHjX9EE," target="_blank">https://www.youtube.com/watch?v=502ILHjX9EE,</a> Transcription &#8211; <a href="http://blog.crisp.se/2012/10/25/henrikkniberg/agile-product-ownership-in-a-nutshell" target="_blank">http://blog.crisp.se/2012/10/25/henrikkniberg/agile-product-ownership-in-a-nutshell</a></div>
<div>[3] Story Points Are Still About Effort, Mike Cohn at Mountain Goat Software, <a href="http://www.mountaingoatsoftware.com/blog/story-points-are-still-about-effort" target="_blank">http://www.mountaingoatsoftware.com/blog/story-points-are-still-about-effort</a></div>
<div>[4] How to translate &#8220;business value&#8221; of things that are technically important, Matthias Marschall at Agile Web Development &amp; Operations, <a href="http://www.agileweboperations.com/how-to-translate-business-value-of-things-that-are-technically-important" target="_blank">http://www.agileweboperations.com/how-to-translate-business-value-of-things-that-are-technically-important</a></div>
<div>[5] Effective Steps to reduce technical debt: An agile approach, Bastian Buch at Codovation, <a href="http://www.codovation.com/2012/06/effective-steps-to-reduce-technical-debt-an-agile-approach/" target="_blank">http://www.codovation.com/2012/06/effective-steps-to-reduce-technical-debt-an-agile-approach/</a></div>
<div>[6] Scrum Strategy &#8211; The Dev Team Improvement Backlog, Professional Scrum Trainer at Scrum Crazy, <a href="http://www.scrumcrazy.com/Scrum+Strategy+-+The+Dev+Team+Improvement+Backlog" target="_blank">http://www.scrumcrazy.com/Scrum+Strategy+-+The+Dev+Team+Improvement+Backlog</a></div>
<div>[7] Do agile right &#8211; Delivery &#8211; Technical Debt, Atlassian, <a href="http://www.scrumcrazy.com/Scrum+Strategy+-+The+Dev+Team+Improvement+Backlog" target="_blank">http://www.scrumcrazy.com/Scrum+Strategy+-+The+Dev+Team+Improvement+Backlog</a></div>
]]></content:encoded>
					
					<wfw:commentRss>https://willhlaw.wordpress.com/2015/03/09/notes-on-agile-product-ownership-in-a-nutshell/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">491</post-id>
		<media:thumbnail url="https://willhlaw.wordpress.com/wp-content/uploads/2015/03/agile-product-ownership-in-a-nutshell-illustration.png" />
		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2015/03/agile-product-ownership-in-a-nutshell-illustration.png" medium="image">
			<media:title type="html">Agile Product Ownership in a Nutshell Illustration</media:title>
		</media:content>

		<media:content url="https://2.gravatar.com/avatar/2913f77fec5551e59342ea9e5b20096eb1b5ae67d619fb1a55c36d67bb02d5df?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">willhlaw</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2015/03/agile-product-ownership-in-a-nutshell-illustration1.png" medium="image">
			<media:title type="html">Illustration</media:title>
		</media:content>
	</item>
		<item>
		<title>Famo.us Easter Egg</title>
		<link>https://willhlaw.wordpress.com/2014/04/02/famo-us-easter-egg/</link>
					<comments>https://willhlaw.wordpress.com/2014/04/02/famo-us-easter-egg/#comments</comments>
		
		<dc:creator><![CDATA[willhlaw]]></dc:creator>
		<pubDate>Wed, 02 Apr 2014 12:41:58 +0000</pubDate>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Famo.us]]></category>
		<guid isPermaLink="false">http://willhlaw.wordpress.com/?p=474</guid>

					<description><![CDATA[In Steve Newcomb&#8217;s FAQ: Tough Questions on Famo.us, he puts an Easter Egg for those patient enough to read to the end. I thought those that wanted to google for a quick translation might find this helpful.  Famo.us is a free and open source JavaScript development framework back by a host of cloud services. Si vos vere [&#8230;]]]></description>
										<content:encoded><![CDATA[<p dir="ltr">In Steve Newcomb&#8217;s <a title="FAQ: Tough Questions" href="https://docs.google.com/a/dzeegy.com/document/d/1DE_26fh9nYbU2xYcrxPWFLjC5Lc1M-0vf2L-qTmuoqw/preview?sle=true#heading=h.o4ibs883r8pb" target="_blank">FAQ: Tough Questions</a> on Famo.us, he puts an Easter Egg for those patient enough to read to the end. I thought those that wanted to google for a quick translation might find this helpful.  <a title="Famo.us" href="http://famo.us/" target="_blank">Famo.us</a> is a free and open source JavaScript development framework back by a host of cloud services.</p>
<blockquote>
<p dir="ltr">Si vos vere postulo impetro in BETA mox steve@famo.us ad minim veniam. Sciam si vestrae res et faciam te in BETA possim.</p>
<p dir="ltr">April 9 Si ad res, in prima acie, simul te BETA.</p>
</blockquote>
<p dir="ltr">&#8212; <em>Using Google Translate from Latin to English (<a title="link" href="http://translate.google.com/#la/en/Si%20vos%20vere%20postulo%20impetro%20in%20BETA%20mox%20steve%40famo.us%20ad%20minim%20veniam.%20Sciam%20si%20vestrae%20res%20et%20faciam%20te%20in%20BETA%20possim.%20%20%20%0A%0AApril%209%20Si%20ad%20res%2C%20in%20prima%20acie%2C%20simul%20te%20BETA." target="_blank">link</a>) &#8211;&gt;</em></p>
<blockquote><p>If you really need to get the Beta as soon as steve@famo.us more information, I come. I am able to rest assured that if your situation and I will make of thee in beta.</p>
<p>April 9 On the real thing, in the front line, at the same time you beet.</p></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://willhlaw.wordpress.com/2014/04/02/famo-us-easter-egg/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">474</post-id>
		<media:content url="https://2.gravatar.com/avatar/2913f77fec5551e59342ea9e5b20096eb1b5ae67d619fb1a55c36d67bb02d5df?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">willhlaw</media:title>
		</media:content>
	</item>
		<item>
		<title>Best way to speed up Javascript (specifically jQuery) load times</title>
		<link>https://willhlaw.wordpress.com/2012/11/12/best-way-to-speed-up-javascript-specifically-jquery-load-times/</link>
					<comments>https://willhlaw.wordpress.com/2012/11/12/best-way-to-speed-up-javascript-specifically-jquery-load-times/#comments</comments>
		
		<dc:creator><![CDATA[willhlaw]]></dc:creator>
		<pubDate>Mon, 12 Nov 2012 02:13:35 +0000</pubDate>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[CDN]]></category>
		<category><![CDATA[HTML5]]></category>
		<guid isPermaLink="false">http://willhlaw.wordpress.com/?p=460</guid>

					<description><![CDATA[The obvious way is to use a popular CDN, short for Content Delivery Network, such as Google&#8217;s. Dave Ward explains the reasons very well in his article, &#8220;3 reasons why you should let Google host jQuery for you&#8221; and his three main points are: Decreased Latency &#8211; CDN allows the download to occur from the [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a href="https://willhlaw.wordpress.com/wp-content/uploads/2012/11/html5.png"><img width="368" height="182" id="i-459" alt="Image" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/11/html5.png?w=368&#038;h=182" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/11/html5.png?w=368 368w, https://willhlaw.wordpress.com/wp-content/uploads/2012/11/html5.png?w=150 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/11/html5.png?w=300 300w, https://willhlaw.wordpress.com/wp-content/uploads/2012/11/html5.png 378w" sizes="(max-width: 368px) 100vw, 368px" /></a></p>
<p>The obvious way is to use a popular CDN, short for <a href="http://en.wikipedia.org/wiki/Content_Delivery_Network">Content Delivery Network</a>, such as Google&#8217;s. Dave Ward explains the reasons very well in his article, &#8220;<a href="http://encosia.com/3-reasons-why-you-should-let-google-host-jquery-for-you/">3 reasons why you should let Google host jQuery for you</a>&#8221; and his three main points are:</p>
<ol>
<li>Decreased Latency &#8211; CDN allows the download to occur from the closest server to the user.</li>
<li>Increased Parallelism &#8211; The local web server can be serving up content while the other connection is pulling from Google.</li>
<li>Better Caching &#8211; Since so many other sites are using Google&#8217;s CDN, the user may already have the jQuery or javascript file in their cache.</li>
</ol>
<p>However, there is a caveat. What if the connection to Google goes down? Can your site survive without jQuery? It should, if you developed the site with a <a href="http://en.wikipedia.org/wiki/Responsive_web_design">responsive design</a> and progressive enhancement.</p>
<p>The answer is to fall back to a local copy (code sample below).</p>
<ol>
<li>Write a script tag that refers to Google&#8217;s CDN.</li>
<li>Then in the next script fragment, check to see if the jQuery or some public variable from the javascript file exists.</li>
<li>If the object does not exist, then dynamically write another script to the page that refers to the local file.</li>
</ol>
<pre class="brush: jscript; title: ; notranslate">
&lt;!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if necessary --&gt;
&lt;script src=&quot;//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;window.jQuery || document.write('&lt;script src=&quot;js/libs/jquery-1.5.1.min.js&quot;&gt;\x3C/script&gt;')&lt;/script&gt;
</pre>
<p>I learned this concise technique while watching a <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap</a> 101 tutorial (kudos to David Cochran for the great <a href="http://webdesign.tutsplus.com/tutorials/complete-websites/twitter-bootstrap-101-introduction/">videos</a>) that referred to this best practice that appears to have come from the <a href="http://html5boilerplate.com/">HTML5 Boiler Plate</a> project.</p>
<p>By the way, the numbers (from <a href="http://www.pingdom.com">Pingdom</a>) support Google as being most likely the best CDN to use.</p>
<p><a href="http://royal.pingdom.com/2010/05/11/cdn-performance-downloading-jquery-from-google-microsoft-and-edgecast-cdns/"><img loading="lazy" class="alignnone" title="CDN performance" alt="CDN performance numbers" src="https://i0.wp.com/farm5.static.flickr.com/4021/4598417969_c1b1129e4e_o.png" height="300" width="580" /></a></p>
<pre></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://willhlaw.wordpress.com/2012/11/12/best-way-to-speed-up-javascript-specifically-jquery-load-times/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">460</post-id>
		<media:content url="https://2.gravatar.com/avatar/2913f77fec5551e59342ea9e5b20096eb1b5ae67d619fb1a55c36d67bb02d5df?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">willhlaw</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/11/html5.png?w=368" medium="image">
			<media:title type="html">Image</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4021/4598417969_c1b1129e4e_o.png" medium="image">
			<media:title type="html">CDN performance</media:title>
		</media:content>
	</item>
		<item>
		<title>A discussion on rating and finding dishes to improve your restaurant experience</title>
		<link>https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/</link>
					<comments>https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/#respond</comments>
		
		<dc:creator><![CDATA[willhlaw]]></dc:creator>
		<pubDate>Mon, 03 Sep 2012 18:56:13 +0000</pubDate>
				<category><![CDATA[Administrivia]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[food+tech]]></category>
		<guid isPermaLink="false">http://willhlaw.wordpress.com/?p=426</guid>

					<description><![CDATA[Photo from http://www.spain-recipes.com/spanish_tapas.html &#160; &#160; Finding the best dish. Last night, I was with some friends at a greek tapas restaurant in Washington, DC, Cava Mezze. The menu has several small plate items and everything looked delicious. We had eaten at another Cava restaurant at least once and forgot what we had ordered and what was [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a href="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-51-29-pm.png"><img loading="lazy" data-attachment-id="438" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-2-51-29-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-51-29-pm.png" data-orig-size="394,456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 2 51 29 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 2 51 29 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-51-29-pm.png?w=394" class="alignnone size-full wp-image-438" title="screen shot 2012 09 03 at 2 51 29 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-51-29-pm.png?w=460" alt=""   srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-51-29-pm.png 394w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-51-29-pm.png?w=130&amp;h=150 130w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-51-29-pm.png?w=259&amp;h=300 259w" sizes="(max-width: 500px) 100vw, 500px" /></a>Photo from http://www.spain-recipes.com/spanish_tapas.html</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>Finding the best dish.</strong></p>
<p>Last night, I was with some friends at a greek tapas restaurant in Washington, DC, Cava Mezze. The menu has several small plate items and everything looked delicious. We had eaten at another Cava restaurant at least once and forgot what we had ordered and what was good. That is when I wished there was an app I could pull up on my phone to see what our friends thought of particular menu items. One did not exist, but we all thought at the table how useful that would be. I had heard of startup companies starting to digitize restaurant menus so that I knew the dishes would soon be available, if not already, as APIs. We then ideated about a dozen ways we could build an app that would be useful for finding recommendations on specific menu items and dishes as well as incentivizing users to rate the food they just ate.</p>
<p>Here is a summary of my morning market research into the possibilities of aggregating menu information or using an app that you can quickly discover how good a particular dish is at a nearby restaurant.</p>
<p>I started at the <a title="Food APIs at programmableweb.com" href="http://www.programmableweb.com/apis/directory/1?apicat=Food">programmableweb</a> and opened up every single &#8220;food&#8221; API in a tab that mentioned food data, dish, or menu. I later looked at popular Q&amp;A site <a href="http://www.quora.com/What-is-the-best-way-to-get-menu-data-for-all-of-the-restaurants-in-a-city">Quora</a>.</p>
<p><a title="all menus" href="http://www.allmenus.com/" rel="http://www.allmenus.com/"><img loading="lazy" data-attachment-id="430" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-2-40-59-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-40-59-pm.png" data-orig-size="632,180" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 2 40 59 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 2 40 59 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-40-59-pm.png?w=460" class="alignnone  wp-image-430" title="screen shot 2012 09 03 at 2 40 59 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-40-59-pm.png?w=281&#038;h=79" alt="" width="281" height="79" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-40-59-pm.png?w=281&amp;h=80 281w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-40-59-pm.png?w=562&amp;h=160 562w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-40-59-pm.png?w=150&amp;h=43 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-40-59-pm.png?w=300&amp;h=85 300w" sizes="(max-width: 281px) 100vw, 281px" /></a></p>
<p><a href="http://www.allmenus.com/">all menus</a> &#8211; Has a sophisticated restaurant and menu api that offers hundreds of thousands of restaurants and you can search menus by city.</p>
<p>All Menus appears to be very developer friendly and even offers an interactive documentation api site. Documentation is also enhanced by Mashery and interestingly, their <a href="http://developer.allmenus.com/docs">support contact</a> has a grubhub address. Perhaps because their search results has buttons to online ordering that point to GrubHub.</p>
<div data-shortcode="caption" id="attachment_434" style="width: 378px" class="wp-caption alignnone"><a href="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-55-34-pm.png"><img aria-describedby="caption-attachment-434" loading="lazy" data-attachment-id="434" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-1-55-34-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-55-34-pm.png" data-orig-size="1356,194" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 1 55 34 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 1 55 34 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-55-34-pm.png?w=460" class=" wp-image-434" title="screen shot 2012 09 03 at 1 55 34 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-55-34-pm.png?w=368&#038;h=52" alt="" width="368" height="52" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-55-34-pm.png?w=368&amp;h=53 368w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-55-34-pm.png?w=736&amp;h=105 736w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-55-34-pm.png?w=150&amp;h=21 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-55-34-pm.png?w=300&amp;h=43 300w" sizes="(max-width: 368px) 100vw, 368px" /></a><p id="caption-attachment-434" class="wp-caption-text">Captured at <a href="http://www.allmenus.com/dc/washington/-/seafood/" rel="nofollow">http://www.allmenus.com/dc/washington/-/seafood/</a></p></div>
<p><a href="http://chownow.com/"><img loading="lazy" data-attachment-id="432" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-2-42-17-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-42-17-pm.png" data-orig-size="530,142" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 2 42 17 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 2 42 17 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-42-17-pm.png?w=460" class="alignnone  wp-image-432" title="screen shot 2012 09 03 at 2 42 17 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-42-17-pm.png?w=276&#038;h=74" alt="" width="276" height="74" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-42-17-pm.png?w=276&amp;h=74 276w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-42-17-pm.png?w=150&amp;h=40 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-42-17-pm.png?w=300&amp;h=80 300w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-42-17-pm.png 530w" sizes="(max-width: 276px) 100vw, 276px" /></a></p>
<p><a href="http://chownow.com">chownow</a> &#8211; Digitizes restaurant menus to offer mobile and Facebook ordering.</p>
<p>Chow Now has an API that is private so you have to contact them for access and documentation.</p>
<p><a href="http://getfoodgenius.com/"><img loading="lazy" data-attachment-id="435" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-2-43-35-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-43-35-pm.png" data-orig-size="446,104" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 2 43 35 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 2 43 35 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-43-35-pm.png?w=446" class="alignnone  wp-image-435" title="screen shot 2012 09 03 at 2 43 35 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-43-35-pm.png?w=268&#038;h=62" alt="" width="268" height="62" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-43-35-pm.png?w=268&amp;h=62 268w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-43-35-pm.png?w=150&amp;h=35 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-43-35-pm.png?w=300&amp;h=70 300w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-43-35-pm.png 446w" sizes="(max-width: 268px) 100vw, 268px" /></a></p>
<p><a href="http://getfoodgenius.com">food genius</a> &#8211; A Chicago startup that started out as a &#8220;netflix for foodies&#8221; but ended up <a href="http://getfoodgenius.com/press#Fast%20Company">pivoting</a> to deliver data to the restaurant industry. They get their data from other parts of the web, particularly grubhub. Checkout this <a href="https://vimeo.com/41318739">video</a> where they use their API to find the best curry in Chicago. They are involved with conferences and other food innovators at the <a href="http://www.foodandtechconnect.com/site/">food+technology</a> blog site. This is where I learned that there is a lot of activity in this arena.</p>
<p>Food Genius encourages developers to use their API to create consumer apps and to start, they have created a website, <a href="http://foodgenero.us">foodgenero.us</a> which gather&#8217;s people&#8217;s tastes on dishes and also donates to Feeding America to end hunger.</p>
<div data-shortcode="caption" id="attachment_428" style="width: 176px" class="wp-caption alignleft"><a href="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-47-29-pm.png"><img aria-describedby="caption-attachment-428" loading="lazy" data-attachment-id="428" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-12-47-29-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-47-29-pm.png" data-orig-size="1340,926" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 12 47 29 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 12 47 29 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-47-29-pm.png?w=460" class=" wp-image-428 " title="screen shot 2012 09 03 at 12 47 29 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-47-29-pm.png?w=166&#038;h=114" alt="" width="166" height="114" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-47-29-pm.png?w=166&amp;h=115 166w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-47-29-pm.png?w=332&amp;h=229 332w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-47-29-pm.png?w=150&amp;h=104 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-47-29-pm.png?w=300&amp;h=207 300w" sizes="(max-width: 166px) 100vw, 166px" /></a><p id="caption-attachment-428" class="wp-caption-text">Captured from <a href="http://foodgenero.us/" rel="nofollow">http://foodgenero.us/</a></p></div>
<p><a href="https://twitter.com/willhlaw/status/242657942577496065"><img loading="lazy" data-attachment-id="441" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-12-39-51-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-39-51-pm.png" data-orig-size="920,502" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 12 39 51 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 12 39 51 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-39-51-pm.png?w=460" class=" wp-image-441 alignnone" title="screen shot 2012 09 03 at 12 39 51 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-39-51-pm.png?w=253&#038;h=138" alt="" width="253" height="138" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-39-51-pm.png?w=253&amp;h=138 253w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-39-51-pm.png?w=506&amp;h=276 506w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-39-51-pm.png?w=150&amp;h=82 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-39-51-pm.png?w=300&amp;h=164 300w" sizes="(max-width: 253px) 100vw, 253px" /></a></p>
<p>Food Genius is very developer friendly and they offer examples in python, node.js, and php. Nice work.</p>
<p><a href="http://www.foodspotting.com/"><img loading="lazy" data-attachment-id="427" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-2-44-37-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-44-37-pm.png" data-orig-size="450,88" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 2 44 37 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 2 44 37 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-44-37-pm.png?w=450" class="alignnone  wp-image-427" title="screen shot 2012 09 03 at 2 44 37 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-44-37-pm.png?w=270&#038;h=53" alt="" width="270" height="53" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-44-37-pm.png?w=270&amp;h=53 270w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-44-37-pm.png?w=150&amp;h=29 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-44-37-pm.png?w=300&amp;h=59 300w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-44-37-pm.png 450w" sizes="(max-width: 270px) 100vw, 270px" /></a></p>
<p><a href="http://www.foodspotting.com/">food spotting</a> &#8211; This is the app that we were pretty much thinking of last night. It provides a social way to discover a dish that you want and provides a pretty easy way to review dishes. They have even gamified it through a concept called Guides that individuals can create, almost like songlists, and even offer badges for others to win if they &#8220;spot&#8221; enough of the foods on the guide. I never realized finding, eating, rating food could be loved so much.</p>
<p>Food Spotting&#8217;s API is language agnostic, Restful and seemingly developer friendly.</p>
<p><a href="http://www.grubhub.com/"><img loading="lazy" data-attachment-id="433" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-2-45-24-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-45-24-pm.png" data-orig-size="236,118" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 2 45 24 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 2 45 24 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-45-24-pm.png?w=236" class="alignnone  wp-image-433" title="screen shot 2012 09 03 at 2 45 24 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-45-24-pm.png?w=142&#038;h=71" alt="" width="142" height="71" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-45-24-pm.png?w=142&amp;h=71 142w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-45-24-pm.png?w=150&amp;h=75 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-45-24-pm.png 236w" sizes="(max-width: 142px) 100vw, 142px" /></a></p>
<p><a href="http://www.grubhub.com">grub hub</a> &#8211; GrubHub appears to be the premier website and app for ordering food online. GrubHub allows you to rate a restaurant with a star system but it also shows reviews from Yelp. The ordering for each menu item is detailed and they make it a point to tell you the delivery or pickup availability. GrubHub&#8217;s home page allows you to search a location and an optional keyword for restaurant name, food genre, or food type. The search results offer a <a href="http://www.grubhub.com/doSearch.action?showMap=&amp;savedAddressId=&amp;campusId=&amp;lat=&amp;lng=&amp;supportsJavascript=true&amp;rawSearchAddress=527+8th+St.+SE%2C+Washington%2C+DC&amp;rawSearchTerm=Scallops&amp;cuisineId=&amp;restaurantNameSearch=&amp;itemNameSearch=&amp;restaurantType=BOTH&amp;search=Find+Restaurants&amp;_sourcePage=gTtwwbj8kXoE2Dtzuvq3Qtu5tfVTQkkURRweH-E5EQzV3poju2JW5w%3D%3D&amp;__fp=3-psus9eosg%3D">list view</a> and a <a href="http://www.grubhub.com/doSearch.action?cityId=4&amp;lat=38.881891&amp;lng=-76.995137&amp;queryAddress=527+8th+St+SE&amp;queryCity=Washington&amp;queryState=DC&amp;queryZip=20003&amp;searchSortMode=DEFAULT_NEW&amp;restaurantType=BOTH&amp;stateDataString=queryCity%3DWashington%2CqueryState%3DDC%2CqueryZip%3D20003%2Cpage%3Dsearchresultsitem%2Csecure%3Dfalse%2CcityId%3D4%2Clat%3D38.881891%2Clng%3D-76.995137%2CsearchTerm%3DScallops%2CrestaurantType%3DBOTH%2CsearchAddress%3D527+8th+St+SE%2C+Washington%2C+DC%2Curlinfoid%3D1%2CqueryAddress%3D527+8th+St+SE%2Csearchable%3Dtrue%2Cdeliverable%3Dtrue%2Cverified%3Dtrue%2CpoiSearchTerm%3Dnull&amp;rawSearchTerm=Scallops&amp;rawSearchAddress=527+8th+St+SE%2C+Washington%2C+DC&amp;showMap=true">map view</a>.</p>
<div data-shortcode="caption" id="attachment_436" style="width: 394px" class="wp-caption alignnone"><a href="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-28-16-pm.png"><img aria-describedby="caption-attachment-436" loading="lazy" data-attachment-id="436" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-2-28-16-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-28-16-pm.png" data-orig-size="1228,232" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 2 28 16 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 2 28 16 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-28-16-pm.png?w=460" class=" wp-image-436 " title="screen shot 2012 09 03 at 2 28 16 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-28-16-pm.png?w=384&#038;h=72" alt="" width="384" height="72" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-28-16-pm.png?w=384&amp;h=73 384w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-28-16-pm.png?w=768&amp;h=145 768w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-28-16-pm.png?w=150&amp;h=28 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-28-16-pm.png?w=300&amp;h=57 300w" sizes="(max-width: 384px) 100vw, 384px" /></a><p id="caption-attachment-436" class="wp-caption-text">Captured from home page <a href="http://www.grubhub.com" rel="nofollow">http://www.grubhub.com</a></p></div>
<p>Grub Hub has little information on an API and according to the founder&#8217;s response on quora, their semi-API (I have no idea what that means) is Private and you have to contact them.</p>
<div data-shortcode="caption" id="attachment_442" style="width: 378px" class="wp-caption alignnone"><a href="http://www.quora.com/GrubHub/Does-GrubHub-have-a-public-API"><img aria-describedby="caption-attachment-442" loading="lazy" data-attachment-id="442" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-2-18-37-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-18-37-pm.png" data-orig-size="902,196" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 2 18 37 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 2 18 37 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-18-37-pm.png?w=460" class=" wp-image-442 " title="screen shot 2012 09 03 at 2 18 37 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-18-37-pm.png?w=368&#038;h=79" alt="" width="368" height="79" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-18-37-pm.png?w=368&amp;h=80 368w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-18-37-pm.png?w=736&amp;h=160 736w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-18-37-pm.png?w=150&amp;h=33 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-18-37-pm.png?w=300&amp;h=65 300w" sizes="(max-width: 368px) 100vw, 368px" /></a><p id="caption-attachment-442" class="wp-caption-text">Captured from <a href="http://www.quora.com/GrubHub/Does-GrubHub-have-a-public-API" rel="nofollow">http://www.quora.com/GrubHub/Does-GrubHub-have-a-public-API</a></p></div>
<p><a href="https://locu.com/"><img loading="lazy" data-attachment-id="429" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-2-46-23-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-46-23-pm.png" data-orig-size="204,102" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 2 46 23 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 2 46 23 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-46-23-pm.png?w=204" class="alignnone  wp-image-429" title="screen shot 2012 09 03 at 2 46 23 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-46-23-pm.png?w=129&#038;h=65" alt="" width="129" height="65" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-46-23-pm.png?w=129&amp;h=65 129w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-46-23-pm.png?w=150&amp;h=75 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-46-23-pm.png 204w" sizes="(max-width: 129px) 100vw, 129px" /></a></p>
<p><a href="http://locu.com">locu</a> &#8211; This is an up and coming startup that is focused on offering restaurants easy ways to publish their menus online. I am not sure where they are getting their menu information. More information will be revealed most likely when they fully launch.</p>
<p>Locu has an API that is still in private or in early access mode and it used to be called <a href="http://menuplatform.com">menuplatform.com</a> because that now redirects to <a href="http://lucu.com">lucu.com</a></p>
<p><a href="http://opendining.net/"><img loading="lazy" data-attachment-id="440" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-2-47-24-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-47-24-pm.png" data-orig-size="530,176" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 2 47 24 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 2 47 24 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-47-24-pm.png?w=460" class="alignnone  wp-image-440" title="screen shot 2012 09 03 at 2 47 24 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-47-24-pm.png?w=276&#038;h=91" alt="" width="276" height="91" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-47-24-pm.png?w=276&amp;h=92 276w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-47-24-pm.png?w=150&amp;h=50 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-47-24-pm.png?w=300&amp;h=100 300w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-47-24-pm.png 530w" sizes="(max-width: 276px) 100vw, 276px" /></a></p>
<p><a href="http://opendining.net/">open dining</a> &#8211; Offers a platform for restaurants to create a digital menu and ordering system for us on mobiles and Facebook. This is a lot like chownow. Their API is developed and targeted towards ordering apps.</p>
<p><a href="http://openmenu.org/"><img loading="lazy" data-attachment-id="439" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-2-48-34-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-48-34-pm.png" data-orig-size="530,176" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 2 48 34 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 2 48 34 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-48-34-pm.png?w=460" class="alignnone  wp-image-439" title="screen shot 2012 09 03 at 2 48 34 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-48-34-pm.png?w=276&#038;h=91" alt="" width="276" height="91" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-48-34-pm.png?w=276&amp;h=92 276w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-48-34-pm.png?w=150&amp;h=50 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-48-34-pm.png?w=300&amp;h=100 300w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-48-34-pm.png 530w" sizes="(max-width: 276px) 100vw, 276px" /></a></p>
<p><a href="http://openmenu.org">open menu</a> &#8211; Openmenu.org and <a href="http://Openmenu.com">Openmenu.com</a> wants to become the industry standard. There is a <a href="http://openmenu.com/search/search.php?food=scallops&amp;local=8th+st.+SE+washington%2C+dc">simple search</a> (with no map) for a dish around a certain location.</p>
<div data-shortcode="caption" id="attachment_431" style="width: 329px" class="wp-caption alignnone"><a href="http://openmenu.com/search/search.php?food=scallops&amp;amp;local=8th+st.+SE+washington%2C+dc"><img aria-describedby="caption-attachment-431" loading="lazy" data-attachment-id="431" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-1-31-02-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-31-02-pm.png" data-orig-size="1796,632" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 1 31 02 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 1 31 02 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-31-02-pm.png?w=460" class=" wp-image-431 " title="screen shot 2012 09 03 at 1 31 02 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-31-02-pm.png?w=319&#038;h=111" alt="" width="319" height="111" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-31-02-pm.png?w=319&amp;h=112 319w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-31-02-pm.png?w=150&amp;h=53 150w" sizes="(max-width: 319px) 100vw, 319px" /></a><p id="caption-attachment-431" class="wp-caption-text">Captured from <a href="http://openmenu.com/search/search.php?food=scallops&#038;local=8th+st.+SE+washington%2C+dc" rel="nofollow">http://openmenu.com/search/search.php?food=scallops&#038;local=8th+st.+SE+washington%2C+dc</a></p></div>
<p>Open Menu has a format specification for the restaurant and for their menus. Their APIs are fully developed, as it is the org&#8217;s main goal, and examples are provided only in php.</p>
<p><a href="http://www.singleplatform.com/"><img loading="lazy" data-attachment-id="443" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-2-49-49-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-49-49-pm.png" data-orig-size="482,98" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 2 49 49 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 2 49 49 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-49-49-pm.png?w=460" class="alignnone  wp-image-443" title="screen shot 2012 09 03 at 2 49 49 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-49-49-pm.png?w=276&#038;h=56" alt="" width="276" height="56" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-49-49-pm.png?w=276&amp;h=56 276w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-49-49-pm.png?w=150&amp;h=30 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-49-49-pm.png?w=300&amp;h=61 300w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-49-49-pm.png 482w" sizes="(max-width: 276px) 100vw, 276px" /></a></p>
<div data-shortcode="caption" id="attachment_437" style="width: 332px" class="wp-caption alignnone"><a href="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-35-33-pm.png"><img aria-describedby="caption-attachment-437" loading="lazy" data-attachment-id="437" data-permalink="https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/screen-shot-2012-09-03-at-1-35-33-pm/" data-orig-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-35-33-pm.png" data-orig-size="796,252" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="screen shot 2012 09 03 at 1 35 33 pm" data-image-description="" data-image-caption="&lt;p&gt;screen shot 2012 09 03 at 1 35 33 pm&lt;/p&gt;
" data-large-file="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-35-33-pm.png?w=460" class=" wp-image-437" style="border:1px solid black;" title="screen shot 2012 09 03 at 1 35 33 pm" src="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-35-33-pm.png?w=322&#038;h=102" alt="" width="322" height="102" srcset="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-35-33-pm.png?w=322&amp;h=102 322w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-35-33-pm.png?w=644&amp;h=204 644w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-35-33-pm.png?w=150&amp;h=47 150w, https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-35-33-pm.png?w=300&amp;h=95 300w" sizes="(max-width: 322px) 100vw, 322px" /></a><p id="caption-attachment-437" class="wp-caption-text">Captured from home page <a href="http://www.singleplatform.com/" rel="nofollow">http://www.singleplatform.com/</a></p></div>
<p><a href="http://www.singleplatform.com/">single platform</a> &#8211; This New York company looks like it has a very strong backing and claims to be the world&#8217;s largest provider of menu items. They seem to be concentrating on signing up Washington, DC businesses because on their homepage, they highlighted a local cafe that we love, <a href="http://w.singlepage.com/lost-dog-cafe/menu">Lost Dog Cafe</a>. This link points to a <a href="http://w.singlepage.com">w.singlepage.com</a> URL but interestingly enough, Lost Dog Cafe also has a GrubHub <a href="http://www.grubhub.com/washington-dc/lost-dog-cafe-arlington-north/?showSmallSearchWidget=Y">menu</a>. I bet that the Lost Dog owners were searching for an online solution and when they checked out SinglePlatform, the singlepage was automatically created.</p>
<p>Singe Platform has a private API that requires registration before you get any documentation so essentially no information is available.</p>
<p><strong>Conclusion</strong></p>
<p>Start using foodspotter and grubhub now. Follow getfoodgenius and locu. Watch the industry as the open and platform menu players grow. Use the apps and APIs and then see where the experience falls short and consider developing an app that fulfills that need. For instance, consider an app with augmented reality that shows the highly rated items as you point your phone&#8217;s camera at a restaurant&#8217;s menu to help you decide what to order.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://willhlaw.wordpress.com/2012/09/03/a-discussion-on-rating-and-finding-dishes-to-improve-your-restaurant-experience/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">426</post-id>
		<media:content url="https://2.gravatar.com/avatar/2913f77fec5551e59342ea9e5b20096eb1b5ae67d619fb1a55c36d67bb02d5df?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">willhlaw</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-51-29-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 2 51 29 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-40-59-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 2 40 59 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-55-34-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 1 55 34 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-42-17-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 2 42 17 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-43-35-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 2 43 35 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-47-29-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 12 47 29 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-12-39-51-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 12 39 51 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-44-37-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 2 44 37 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-45-24-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 2 45 24 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-28-16-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 2 28 16 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-18-37-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 2 18 37 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-46-23-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 2 46 23 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-47-24-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 2 47 24 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-48-34-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 2 48 34 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-31-02-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 1 31 02 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-2-49-49-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 2 49 49 pm</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2012/09/screen-shot-2012-09-03-at-1-35-33-pm.png" medium="image">
			<media:title type="html">screen shot 2012 09 03 at 1 35 33 pm</media:title>
		</media:content>
	</item>
		<item>
		<title>Lawnchair: Intro to Javascript library for persistent browser storage</title>
		<link>https://willhlaw.wordpress.com/2011/09/12/lawnchair-intro-to-javascript-library-for-persistent-browser-storage/</link>
					<comments>https://willhlaw.wordpress.com/2011/09/12/lawnchair-intro-to-javascript-library-for-persistent-browser-storage/#respond</comments>
		
		<dc:creator><![CDATA[willhlaw]]></dc:creator>
		<pubDate>Mon, 12 Sep 2011 04:34:24 +0000</pubDate>
				<category><![CDATA[Javascript]]></category>
		<guid isPermaLink="false">http://willhlaw.wordpress.com/?p=386</guid>

					<description><![CDATA[I was reading http://dailyjs.com and discovered this  javascript library, Lawnchair: Simple JSON Storage, that is very lightweight (it is a lawnchair as opposed to a couch; 3.4k minified; 1.5 gzip&#8217;d) and uses a cascading set of techniques or adapters to store objects in memory that persists in the browser even after page refreshes.  Lawnchair is optimized for mobile and [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a href="http://westcoastlogic.com/lawnchair/"><img loading="lazy" class="alignleft" src="https://willhlaw.wordpress.com/wp-content/uploads/2011/09/tiny-lawnchair.gif?w=160&#038;h=221" alt="lawnchair" width="160" height="221" /></a></p>
<p>I was reading<a title="dailyjs.com" href="http://dailyjs.com" target="_blank"> http://dailyjs.com</a> and discovered this  javascript library, <a href="http://westcoastlogic.com/lawnchair/">Lawnchair: Simple JSON Storage</a>, that is very lightweight (it is a lawnchair as opposed to a couch; <em>3.4k</em> minified; 1.5 gzip&#8217;d) and uses a cascading set of techniques or adapters to store objects in memory that persists in the browser even after page refreshes.  Lawnchair is optimized for mobile and HTML5 browses, but defaults to in memory storage for older browsers.</p>
<p>This post is an <strong>Intro</strong> because I just discovered it. Once I use it,  I will post an article about my findings and title it &#8220;Lawnchair: <strong>Hands On</strong> Summary&#8230;&#8221;.  Hope this distinction helps.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://willhlaw.wordpress.com/2011/09/12/lawnchair-intro-to-javascript-library-for-persistent-browser-storage/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">386</post-id>
		<media:content url="https://2.gravatar.com/avatar/2913f77fec5551e59342ea9e5b20096eb1b5ae67d619fb1a55c36d67bb02d5df?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">willhlaw</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2011/09/tiny-lawnchair.gif" medium="image">
			<media:title type="html">lawnchair</media:title>
		</media:content>
	</item>
		<item>
		<title>Top 12 Ways to Being a Mensch (aka – a good professional)</title>
		<link>https://willhlaw.wordpress.com/2011/09/11/top-12-ways-to-being-a-mensch-aka-%e2%80%93-a-good-professional/</link>
					<comments>https://willhlaw.wordpress.com/2011/09/11/top-12-ways-to-being-a-mensch-aka-%e2%80%93-a-good-professional/#respond</comments>
		
		<dc:creator><![CDATA[willhlaw]]></dc:creator>
		<pubDate>Sun, 11 Sep 2011 02:12:29 +0000</pubDate>
				<category><![CDATA[Administrivia]]></category>
		<category><![CDATA[Productivity]]></category>
		<guid isPermaLink="false">http://willhlaw.wordpress.com/2011/09/11/top-12-ways-to-being-a-mensch-aka-%e2%80%93-a-good-professional/</guid>

					<description><![CDATA[Paraphrased from, http://www.openforum.com/idea-hub/topics/the-world/article/how-to-be-a-mensch-in-business-guy-kawasaki and taken from the author, Guy Kawasaki&#8217;s book, Enchanment: The Art of Changing Hearts, Minds, and Actions. Mensch is a German word for &#8220;human being&#8221;, but its Yiddish connotation far exceeds this definition. If you are a mensch, you are honest, fair, kind, and transparent, no matter whom you&#8217;re dealing with and who will ever know [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" class="alignleft" title="Enchantment by Guy Kawasaki" src="https://willhlaw.wordpress.com/wp-content/uploads/2011/09/091111_0212_top12waysto1.jpg?w=203&#038;h=350" alt="Enchantment by Guy Kawasaki" width="203" height="350" align="left" /></p>
<h2><span style="font-family:Arial;font-size:10pt;"><span style="color:black;background-color:white;">Paraphrased from, </span><span style="text-decoration:underline;"><span style="color:#1c51a8;"><a href="http://www.openforum.com/idea-hub/topics/the-world/article/how-to-be-a-mensch-in-business-guy-" rel="nofollow">http://www.openforum.com/idea-hub/topics/the-world/article/how-to-be-a-mensch-in-business-guy-</a></span><span style="color:#222222;">kawasaki</span></span><span style="color:black;background-color:white;"> and taken from the author, Guy Kawasaki&#8217;s book, Enchanment: The Art of Changing Hearts, Minds, and Actions.<br />
</span></span></h2>
<p><span style="color:black;font-family:Arial;font-size:10pt;"><span style="background-color:white;"><em>Mensch</em></span> <span style="background-color:white;">is a German word for &#8220;human being&#8221;, but its Yiddish connotation far exceeds this definition. If you are a mensch, you are honest, fair, kind, and transparent, no matter whom you&#8217;re dealing with and who will ever know what you did. Bruna Martinuzzi, author of</span> <span style="background-color:white;"><em>The Leader as a Mensch: Become the Kind of Person Others Want To Follow</em>, compiled a list of ten ways to achieve menschdom. Here is Guy&#8217;s summary of her insights:<br />
</span></span></p>
<ol style="margin-left:47pt;">
<li><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">Always act with honesty.<br />
</span></li>
<li><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">Treat people who have wronged you with civility.<br />
</span></li>
<li><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">Fulfill your unkept promises from the past.<br />
</span></li>
<li><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">Help someone who can be of absolutely no use to you.<br />
</span></li>
<li><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">Suspend blame when something goes wrong and ask, &#8220;What can we learn?&#8221;<br />
</span></li>
<li><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">Hire people who are as smart as or smarter than you and give them opportunities for growth.<br />
</span></li>
<li><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">Don&#8217;t interrupt people; don&#8217;t dismiss their concerns offhand; don&#8217;t rush to give advice&#8217; don&#8217;t change the subject. Allow people their moment.<br />
</span></li>
<li><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">Do no harm in anything you undertake.<br />
</span></li>
<li><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">Don&#8217;t be too quick to shoot down others&#8217; ideas.<br />
</span></li>
<li><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">Share your knowledge, expertise, and best practices with others.<br />
</span></li>
</ol>
<p><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">Guy also adds two more ways to achieve menschdom:<br />
</span></p>
<ul style="margin-left:47pt;">
<li><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">Focus on goodwill. Mensches focus on goodwill &#8211; that is, positive actions that make the world a better place. People distrust those who focus on improving their own position and who denigrate others.<br />
</span></li>
<li><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">Give people the benefit of the doubt. People are good until proven bad, which is only proven after several bad experiences.<br />
</span></li>
</ul>
<p><span style="color:black;font-family:Arial;font-size:10pt;background-color:white;">I have a looong way to become a Mensch, but I think these are excellent principals to live by and do business by.<br />
</span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://willhlaw.wordpress.com/2011/09/11/top-12-ways-to-being-a-mensch-aka-%e2%80%93-a-good-professional/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">382</post-id>
		<media:content url="https://2.gravatar.com/avatar/2913f77fec5551e59342ea9e5b20096eb1b5ae67d619fb1a55c36d67bb02d5df?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">willhlaw</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2011/09/091111_0212_top12waysto1.jpg" medium="image">
			<media:title type="html">Enchantment by Guy Kawasaki</media:title>
		</media:content>
	</item>
		<item>
		<title>FPWeb Hosting Badge</title>
		<link>https://willhlaw.wordpress.com/2010/07/08/fpweb-hosting-badge/</link>
					<comments>https://willhlaw.wordpress.com/2010/07/08/fpweb-hosting-badge/#comments</comments>
		
		<dc:creator><![CDATA[willhlaw]]></dc:creator>
		<pubDate>Thu, 08 Jul 2010 04:11:03 +0000</pubDate>
				<category><![CDATA[Administrivia]]></category>
		<guid isPermaLink="false">http://willhlaw.wordpress.com/2010/07/08/fpweb-hosting-badge/</guid>

					<description><![CDATA[Tom Brauch and the nice guys over at FPWeb.net are hosting the sharejPoint.com website free of charge.&#160; They do so because they feel that non-profit sites like sharejPoint that promote free, open source solutions are a great benefit for the SharePoint community.&#160; So the guys on the jPoint team have finally updated the master template [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a href="https://willhlaw.wordpress.com/wp-content/uploads/2010/07/fpwebpoweredby_footer_2010.png"><img loading="lazy" title="fpweb-powered-by_footer_2010" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="45" alt="fpweb-powered-by_footer_2010" src="https://willhlaw.wordpress.com/wp-content/uploads/2010/07/fpwebpoweredby_footer_2010_thumb.png?w=244&#038;h=45" width="244" border="0" /></a> </p>
<p>Tom Brauch and the nice guys over at FPWeb.net are hosting the <a href="http://www.sharejpoint.com" target="_blank">sharejPoint.com</a> website free of charge.&#160; They do so because they feel that non-profit sites like sharejPoint that promote free, open source solutions are a great benefit for the SharePoint community.&#160; </p>
<p>So the guys on the jPoint team have finally updated the master template to include the above banner, and I have also added the banner below to the <a title="Lee Richardson&#039;s Rapid Application Development" href="http://www.sharejpoint.com/blog" target="_blank">jPoint blog</a> page.&#160; </p>
<p><a href="https://willhlaw.wordpress.com/wp-content/uploads/2010/07/fpwebpoweredby_2010_200x200.png"><img loading="lazy" title="fpweb-powered-by_2010_200x200" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="204" alt="fpweb-powered-by_2010_200x200" src="https://willhlaw.wordpress.com/wp-content/uploads/2010/07/fpwebpoweredby_2010_200x200_thumb.png?w=204&#038;h=204" width="204" border="0" /></a> </p>
</p>
<p>Which banner do you like better?&#160; </p>
]]></content:encoded>
					
					<wfw:commentRss>https://willhlaw.wordpress.com/2010/07/08/fpweb-hosting-badge/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">377</post-id>
		<media:content url="https://2.gravatar.com/avatar/2913f77fec5551e59342ea9e5b20096eb1b5ae67d619fb1a55c36d67bb02d5df?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">willhlaw</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2010/07/fpwebpoweredby_footer_2010_thumb.png" medium="image">
			<media:title type="html">fpweb-powered-by_footer_2010</media:title>
		</media:content>

		<media:content url="https://willhlaw.wordpress.com/wp-content/uploads/2010/07/fpwebpoweredby_2010_200x200_thumb.png" medium="image">
			<media:title type="html">fpweb-powered-by_2010_200x200</media:title>
		</media:content>
	</item>
		<item>
		<title>Received Marklogic Innovative Award for SharePoint integration</title>
		<link>https://willhlaw.wordpress.com/2010/05/10/received-marklogic-innovative-award-for-sharepoint-integration/</link>
					<comments>https://willhlaw.wordpress.com/2010/05/10/received-marklogic-innovative-award-for-sharepoint-integration/#respond</comments>
		
		<dc:creator><![CDATA[willhlaw]]></dc:creator>
		<pubDate>Mon, 10 May 2010 04:48:43 +0000</pubDate>
				<category><![CDATA[Marklogic]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[XML Database]]></category>
		<category><![CDATA[Generic Query Widget]]></category>
		<category><![CDATA[MLUC2010]]></category>
		<category><![CDATA[SharePoint Connector]]></category>
		<category><![CDATA[SharePoint Marklogic Integration]]></category>
		<guid isPermaLink="false">http://willhlaw.wordpress.com/2010/06/02/received-marklogic-innovative-award-for-sharepoint-integration/</guid>

					<description><![CDATA[Congratulations for Innovation Award to my Dev Team! At the Annual Marklogic User Conference 2010 in San Francisco, my team and I were awarded the Innovation Award. It came as a heavy crystalline pedestal and looks impressive. We were awarded for our SharePoint front-end integration to a Marklogic XML database backend. In addition: The team [&#8230;]]]></description>
										<content:encoded><![CDATA[<h1 style="text-align:center;"><img src="https://i0.wp.com/www.marklogic.com/UserConference2010/images/MLUserConfLogo.gif" alt="Marklogic User Conference 2010 Logo" /></h1>
<h1 style="text-align:center;"><span style="color:#d6ab00;">Congratulations for Innovation Award to my Dev Team!</span></h1>
<p>At the Annual Marklogic User Conference 2010 in San Francisco, my team and I were awarded the Innovation Award. It came as a heavy crystalline pedestal and looks impressive. We were awarded for our SharePoint front-end integration to a Marklogic XML database backend.</p>
<p>In addition:</p>
<ul>
<li>The team has built a model around a generic query.xqy module which acts like a mini app builder widget. Pass it a query and a format type (html-basic, html-table, map, KML, RSS, JSON, etc) and you will get results quickly with a sidebar for a keyword search and the faceted search.</li>
<li>We have developed an improved SharePoint Connector for both SharePoint document libraries as well as  SharePoint lists (the Marklogic SharePoint Connector only synchronizes document libraries).  Our connector also allows the user to configure extra paremters such as the collection to post the item to.  <span style="color:#000080;">If anyone is interested in this Marklogic SharePoint Connector for Lists and Libraries, please let me know.  We are thinking about polishing it up and packing it in a solution file.</span></li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://willhlaw.wordpress.com/2010/05/10/received-marklogic-innovative-award-for-sharepoint-integration/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">368</post-id>
		<media:content url="https://2.gravatar.com/avatar/2913f77fec5551e59342ea9e5b20096eb1b5ae67d619fb1a55c36d67bb02d5df?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">willhlaw</media:title>
		</media:content>

		<media:content url="http://www.marklogic.com/UserConference2010/images/MLUserConfLogo.gif" medium="image">
			<media:title type="html">Marklogic User Conference 2010 Logo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
