<?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>Forever Learning</title>
	<atom:link href="http://lukasvermeer.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://lukasvermeer.wordpress.com</link>
	<description>Forever learning and helping machines do the same.</description>
	<lastBuildDate>Wed, 25 Jan 2012 15:10:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='lukasvermeer.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/99ad764cfc587d8dd9fc72725309c005?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Forever Learning</title>
		<link>http://lukasvermeer.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://lukasvermeer.wordpress.com/osd.xml" title="Forever Learning" />
	<atom:link rel='hub' href='http://lukasvermeer.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Analytical Models in Oracle Real-Time Decisions</title>
		<link>http://lukasvermeer.wordpress.com/2012/01/24/analytical-models-in-oracle-real-time-decisions/</link>
		<comments>http://lukasvermeer.wordpress.com/2012/01/24/analytical-models-in-oracle-real-time-decisions/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 09:48:49 +0000</pubDate>
		<dc:creator>Lukas Vermeer</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[RTD]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[implementation]]></category>
		<category><![CDATA[choice]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://lukasvermeer.wordpress.com/?p=977</guid>
		<description><![CDATA[[ Crossposting from the Oracle Real-Time Decisions Blog. ] As explained in a previous post, we can record events against unsourced dynamic choices created on-the-fly using the getPrototype method. Choices instantiated in this fashion, and the events recorded against them, will be visible in decision center reports. This enables us to create extensive reporting based [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=977&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#bbb;">[ <a href="http://blogs.oracle.com/rtd/en/entry/analytical_models">Crossposting</a> from the <a href="http://blogs.oracle.com/rtd/">Oracle Real-Time Decisions Blog</a>. ]</span></p>
<p>As explained in a <a href="http://lukasvermeer.wordpress.com/2012/01/10/recording-choices/">previous post</a>, we can record events against unsourced dynamic choices created on-the-fly using the getPrototype method. Choices instantiated in this fashion, and the events recorded against them, will be visible in decision center reports.</p>
<p>This enables us to create extensive reporting based on arbitrary input from different sources without the need to specify all the possible choice values upfront. Creating so-called analytical models can be very useful for analysis.</p>
<p><strong>Recording Client Input</strong></p>
<p>Consider the following example which shows how this approach can be used to create an analytical model based on informant input. In our ILS, Oracle Real-Time Decisions will be used to find and report on correlations between a regular session attribute and arbitrary codes passed through an informant.</p>
<p><strong>Choice Group Setup</strong></p>
<p>A choice group Reason is used to store codes passed through the informant. During initialization, the choice group will attempt to grab choices from the ReasonEntityArray, but the array is a dummy entity that will always return nothing, because we&#8217;ve not defined a value for it.</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-982" src="http://lukasvermeer.files.wordpress.com/2012/01/reasondynamicchoice.jpg?w=700" alt="Reason choice group configuration, dynamic choices tab."   /></p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-984" src="http://lukasvermeer.files.wordpress.com/2012/01/reasonemptyattribute.jpg?w=700" alt="Reason choice group configuration, group attributes tab."   /></p>
<p><strong>Informant Setup</strong></p>
<p>When invoked, a RecordReason informant will record an event for the ReasonCode input parameter. The logic for this informant is pretty straightforward.</p>
<p><pre class="brush: java;">
// create a new choice based on the request attribute (a string that describes the reason)
ReasonChoice c = new ReasonChoice(Reason.getPrototype());
// set properties of the choice (SDOId should be of the form &quot;{ChoiceGroupId}${ChoiceLabel}&quot;)
c.setSDOId(&quot;Reason&quot; + &quot;$&quot; + request.getReasonCode());
// record choice in model (catching an exception just in case)
try { c.recordChoice(); } catch (Exception e) { logTrace(&quot;Exception: &quot; + e); }
</pre></p>
<p><strong>Model Setup</strong></p>
<p>In order to actually find and report on correlations, we will need to define at least one event model on our choice group. For this example, we&#8217;ll keep things as simple as possible.</p>
<p><img src="http://lukasvermeer.files.wordpress.com/2012/01/reasonsmodel.jpg?w=700" alt="Reasons choice event model configuration." title=""   class="aligncenter size-full wp-image-988" /></p>
<p><strong>Reports</strong></p>
<p>The reports in decision center will show the reason codes sent to the informant as if they were dynamic choices and calculate statistics and correlations against session attributes.</p>
<p><span style="color:#bbb;">(In this example, an Oracle Real-Time Decisions Load Balancer script was used to send four different codes to the ILS with a severe bias towards certain age groups.)</span></p>
<p><img src="http://lukasvermeer.files.wordpress.com/2012/01/reasonsreport.jpg?w=700" alt="Decision center report for Reason choice, analysis tab." title=""   class="aligncenter size-full wp-image-989" /></p>
<p>This approach enables us to generate detailed reporting and analysis of more than just regular choices in the familiar decision center environment. In this example we were using informant input, but this technique can also be applied using the attributes of other choices to gain additional insight into the correlations between session attributes and choice attributes like product group or category (rather than individual choices).</p>
<p>This method can also be used in conjunction with predictive models. We will explore this possibility and its applications in future posts.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lukasvermeer.wordpress.com/977/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lukasvermeer.wordpress.com/977/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lukasvermeer.wordpress.com/977/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lukasvermeer.wordpress.com/977/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lukasvermeer.wordpress.com/977/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lukasvermeer.wordpress.com/977/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lukasvermeer.wordpress.com/977/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lukasvermeer.wordpress.com/977/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lukasvermeer.wordpress.com/977/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lukasvermeer.wordpress.com/977/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lukasvermeer.wordpress.com/977/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lukasvermeer.wordpress.com/977/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lukasvermeer.wordpress.com/977/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lukasvermeer.wordpress.com/977/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=977&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lukasvermeer.wordpress.com/2012/01/24/analytical-models-in-oracle-real-time-decisions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/da492bd819224723b7d81bb6ae5cae78?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">lukasvermeer</media:title>
		</media:content>

		<media:content url="http://lukasvermeer.files.wordpress.com/2012/01/reasondynamicchoice.jpg" medium="image">
			<media:title type="html">Reason choice group configuration, dynamic choices tab.</media:title>
		</media:content>

		<media:content url="http://lukasvermeer.files.wordpress.com/2012/01/reasonemptyattribute.jpg" medium="image">
			<media:title type="html">Reason choice group configuration, group attributes tab.</media:title>
		</media:content>

		<media:content url="http://lukasvermeer.files.wordpress.com/2012/01/reasonsmodel.jpg" medium="image">
			<media:title type="html">Reasons choice event model configuration.</media:title>
		</media:content>

		<media:content url="http://lukasvermeer.files.wordpress.com/2012/01/reasonsreport.jpg" medium="image">
			<media:title type="html">Decision center report for Reason choice, analysis tab.</media:title>
		</media:content>
	</item>
		<item>
		<title>All You Need Is a Good Brainwashing</title>
		<link>http://lukasvermeer.wordpress.com/2012/01/23/all-you-need-is-a-good-brainwashing/</link>
		<comments>http://lukasvermeer.wordpress.com/2012/01/23/all-you-need-is-a-good-brainwashing/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 15:52:18 +0000</pubDate>
		<dc:creator>Lukas Vermeer</dc:creator>
				<category><![CDATA[Psychology]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[brainwashing]]></category>
		<category><![CDATA[conditioning]]></category>
		<category><![CDATA[life-hacking]]></category>

		<guid isPermaLink="false">http://lukasvermeer.wordpress.com/?p=900</guid>
		<description><![CDATA[Classical conditioning is underrated. Too many bad spy movies have taught us that &#8216;brainwashing&#8217; is bad. But conditioning can be a&#160;powerful&#160;tool for self-improvement.&#160;I&#8217;ve deliberately been playing the Brian Eno song Thursday Afternoon every time I felt myself immersed in &#8216;the zone&#8216;. In my mind, the track and the mental state have now become intricately linked. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=900&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Classical_conditioning">Classical conditioning</a> is underrated. Too many bad spy movies have taught us that &#8216;brainwashing&#8217; is bad.</p>
<p>But conditioning can be a&nbsp;powerful&nbsp;tool for self-improvement.&nbsp;I&#8217;ve deliberately been playing the Brian Eno song <a href="http://en.wikipedia.org/wiki/Thursday_Afternoon">Thursday Afternoon</a> every time I felt myself immersed in &#8216;<a href="http://jacquesmattheij.com/living+in+the+zone">the zone</a>&#8216;. In my mind, the track and the mental state have now become intricately linked. This is so much the case that I can now descend into productivity Walhalla simply by listening to my personal work anthem.</p>
<p>In effect, I&#8217;ve brainwashed myself to work better in response to a particular tune.</p>
<span style="text-align:center; display: block;"><a href="http://lukasvermeer.wordpress.com/2012/01/23/all-you-need-is-a-good-brainwashing/"><img src="http://img.youtube.com/vi/6UDA_bAlu00/2.jpg" alt="" /></a></span>
<p>&nbsp;</p>
<p>There is nothing special about this trick. Anyone can do it and almost no real effort is required.</p>
<p>A few guidelines.</p>
<ul>
<li><strong>Choose a song that is long.</strong> Not a two minute ditty. This will also help for the next prerequisite.</li>
<li><strong>Choose a song that can stand to be repeated.</strong> You&#8217;ll want to be productive for longer than one play.</li>
<li><strong>Choose a song without lyrics.</strong>&nbsp;This is more personal. To me, words and melody are distracting.</li>
<li><strong>Choose a song that is timeless.</strong> Something you wouldn&#8217;t mind listening to in a few years time.</li>
<li><strong>Choose a song that is not a classic.</strong> Classics are played on the radio. That is not what you want.</li>
<li><strong>Carry your song with you always.</strong> You need to be ready. Productivity can strike at any moment.</li>
<li><strong>Play your song every time you are in the zone.</strong> Especially initially you want the bonding to be strong.</li>
<li><strong>Play your song without interruptions.</strong>&nbsp;Interruptions kill productivity. Interruptions&nbsp;break the spell.</li>
<li><strong>Never play your song when you are <span style="text-decoration:underline;">not</span> in the zone.</strong> That would break the spell. Don&#8217;t do it.</li>
<li><strong>Don&#8217;t overuse.</strong>&nbsp;There are limits to how productive you can be. This trick does not fix that.</li>
<li><strong>Don&#8217;t expect magic.</strong> The song will not always work. If it doesn&#8217;t work, stop listening right away.</li>
</ul>
<p>Have I missed anything important? Feel free to add your tips and tricks in the comments below.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lukasvermeer.wordpress.com/900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lukasvermeer.wordpress.com/900/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lukasvermeer.wordpress.com/900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lukasvermeer.wordpress.com/900/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lukasvermeer.wordpress.com/900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lukasvermeer.wordpress.com/900/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lukasvermeer.wordpress.com/900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lukasvermeer.wordpress.com/900/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lukasvermeer.wordpress.com/900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lukasvermeer.wordpress.com/900/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lukasvermeer.wordpress.com/900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lukasvermeer.wordpress.com/900/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lukasvermeer.wordpress.com/900/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lukasvermeer.wordpress.com/900/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=900&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lukasvermeer.wordpress.com/2012/01/23/all-you-need-is-a-good-brainwashing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/da492bd819224723b7d81bb6ae5cae78?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">lukasvermeer</media:title>
		</media:content>
	</item>
		<item>
		<title>Waste Of Search</title>
		<link>http://lukasvermeer.wordpress.com/2012/01/18/waste-of-search/</link>
		<comments>http://lukasvermeer.wordpress.com/2012/01/18/waste-of-search/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 14:35:26 +0000</pubDate>
		<dc:creator>Lukas Vermeer</dc:creator>
				<category><![CDATA[Meta]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[RTD]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[traffic]]></category>

		<guid isPermaLink="false">http://lukasvermeer.wordpress.com/?p=912</guid>
		<description><![CDATA[Analyzing website traffic can lead to unexpected insights. This incoming search term caught my eye. I&#8217;m not entirely sure why someone would even search for something like this, but I&#8217;m pretty confident this person did not find what he or she was looking for. Oracle Real-Time Decisions is definitely not a waste of money.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=912&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Analyzing website traffic can lead to unexpected insights. This incoming search term caught my eye.</p>
<p><img class="size-full wp-image-913 aligncenter" title="Waste Of Search" src="http://lukasvermeer.files.wordpress.com/2012/01/screen-shot-2012-01-18-at-2-22-29-pm.png?w=700" alt=""   /></p>
<p>I&#8217;m not entirely sure why someone would even search for <a href="https://www.google.com/search?q='oracle+rtd'+waste+of+money&amp;pws=0">something like this</a>, but I&#8217;m pretty confident this person did not find what he or she was looking for.</p>
<p>Oracle Real-Time Decisions is definitely <a href="http://www.oracle.com/us/corporate/analystreports/infrastructure/forrester-tei-rtd-432543.pdf">not a waste of money</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lukasvermeer.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lukasvermeer.wordpress.com/912/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lukasvermeer.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lukasvermeer.wordpress.com/912/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lukasvermeer.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lukasvermeer.wordpress.com/912/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lukasvermeer.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lukasvermeer.wordpress.com/912/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lukasvermeer.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lukasvermeer.wordpress.com/912/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lukasvermeer.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lukasvermeer.wordpress.com/912/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lukasvermeer.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lukasvermeer.wordpress.com/912/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=912&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lukasvermeer.wordpress.com/2012/01/18/waste-of-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/da492bd819224723b7d81bb6ae5cae78?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">lukasvermeer</media:title>
		</media:content>

		<media:content url="http://lukasvermeer.files.wordpress.com/2012/01/screen-shot-2012-01-18-at-2-22-29-pm.png" medium="image">
			<media:title type="html">Waste Of Search</media:title>
		</media:content>
	</item>
		<item>
		<title>Conversion Rates</title>
		<link>http://lukasvermeer.wordpress.com/2012/01/17/conversion-rates/</link>
		<comments>http://lukasvermeer.wordpress.com/2012/01/17/conversion-rates/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 16:01:23 +0000</pubDate>
		<dc:creator>Lukas Vermeer</dc:creator>
				<category><![CDATA[Meta]]></category>
		<category><![CDATA[Psychology]]></category>
		<category><![CDATA[writer's block]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[call to action]]></category>

		<guid isPermaLink="false">http://lukasvermeer.wordpress.com/?p=866</guid>
		<description><![CDATA[In my mind, I write a blog post almost every day. But when I sit down to write, I am at a loss for words. I have a brain busting with thought, an inbox full of interesting ideas and a stack of draft posts containing loads of links and random ramblings on disparate topics. All [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=866&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In my mind, I write a blog post almost every day. But when I sit down to write, I am at a loss for words.</p>
<p>I have a brain busting with thought, an inbox full of interesting ideas and a stack of draft posts containing loads of links and random ramblings on disparate topics. All this pondering without publication is paralyzing.</p>
<p>Analysis without action is a crippling affliction that affects individuals as well as businesses. Wasting time or wasting money; we all need to be <a href="https://plus.google.com/106518479241050228896/posts/WYMaW3rMixE">mindful</a> of our conversion rates.</p>
<p>Time to stop thinking and start typing.</p>
<span style="text-align:center; display: block;"><a href="http://lukasvermeer.wordpress.com/2012/01/17/conversion-rates/"><img src="http://img.youtube.com/vi/16fBF3Bgd3M/2.jpg" alt="" /></a></span>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lukasvermeer.wordpress.com/866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lukasvermeer.wordpress.com/866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lukasvermeer.wordpress.com/866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lukasvermeer.wordpress.com/866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lukasvermeer.wordpress.com/866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lukasvermeer.wordpress.com/866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lukasvermeer.wordpress.com/866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lukasvermeer.wordpress.com/866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lukasvermeer.wordpress.com/866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lukasvermeer.wordpress.com/866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lukasvermeer.wordpress.com/866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lukasvermeer.wordpress.com/866/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lukasvermeer.wordpress.com/866/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lukasvermeer.wordpress.com/866/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=866&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lukasvermeer.wordpress.com/2012/01/17/conversion-rates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/da492bd819224723b7d81bb6ae5cae78?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">lukasvermeer</media:title>
		</media:content>
	</item>
		<item>
		<title>Recording Events</title>
		<link>http://lukasvermeer.wordpress.com/2012/01/10/recording-choices/</link>
		<comments>http://lukasvermeer.wordpress.com/2012/01/10/recording-choices/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 15:37:18 +0000</pubDate>
		<dc:creator>Lukas Vermeer</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[RTD]]></category>
		<category><![CDATA[choices]]></category>
		<category><![CDATA[implementation]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[recording]]></category>
		<category><![CDATA[rtd]]></category>

		<guid isPermaLink="false">http://lukasvermeer.wordpress.com/?p=849</guid>
		<description><![CDATA[[ Crossposting here from the Oracle Real-Time Decisions Blog where I have been invited to contribute. ] There is always more than one way to skin a cat; it&#8217;s just that some ways to excoriate a feline are more efficient than others. This is certainly true for the way in which we can record events [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=849&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#bbb;">[ <a href="http://en.wikipedia.org/wiki/Crossposting">Crossposting</a> here <a href="http://blogs.oracle.com/rtd/en/entry/recording_choices">from</a> the <a href="http://blogs.oracle.com/rtd/">Oracle Real-Time Decisions Blog </a>where I have been <a href="http://blogs.oracle.com/rtd/en/entry/introducing_lukas_vermeer">invited</a> to contribute. ]</span></p>
<p>There is always more than one way to skin a cat; it&#8217;s just that some ways to excoriate a feline are more efficient than others. This is certainly true for the way in which we can record events against choices in RTD, and the differences in performance can be striking.</p>
<p><strong>getChoice</strong></p>
<p>A common approach to record events against static choices is to use the getChoice API.</p>
<p><pre class="brush: java;">
Choice ch = MyChoiceGroup.getChoice(&quot;MyChoiceId&quot;);
ch.recordEvent(&quot;Clicked&quot;);
</pre></p>
<p>On the first line, we are asking RTD to go through the list of all choices in MyChoiceGroup and retrieve one particular choice keyed MyChoiceId. On the second, we record a Clicked event against the returned choice.</p>
<p>Because we are asking RTD to go through the list of all choices, we require that RTD has a full list of choices available; even if we only end up using a single choice. If we use the same code for dynamic choices, RTD will thus have to fetch and instantiate the full list of dynamic choices in order to find the single one we are interested in. This may be an expensive operation, as it may require accessing an external database or web service; execution of complex custom code; and/or instantiating a large number of dynamic choices.</p>
<p><span style="color:#bbb;">[ Note that dynamic choices do not cache at the choice level. They cache at the entity level. These entities hold the data for the dynamic choices but not the choices themselves. The RTD API could perhaps be optimized differently, but the current implementation will instantiate all the dynamic choices and then find the one the API call is looking for. Consider also that the actual source data used for the dynamic choices could come from anywhere and need not come from cached entities at all; it might even be generated on the fly through custom functions. This flexibility in sourcing dynamic choices makes retrieving a single choice non-trivial from the RTD API perspective. ]</span></p>
<p>This approach will certainly work, but may waste precious time and resources retrieving and instantiating dynamic choices that are never used.</p>
<p><strong>getPrototype</strong></p>
<p>For recording an event, it is sufficient that we have a choice that has the desired SDOId; all other choice attributes are irrelevant for this purpose. A more efficient way to record events against dynamic choices is therefore to create a new empty dynamic choice; assign it an SDOId; and record the event against that, rather than retrieving the &#8216;actual&#8217; dynamic choice. The result in terms of statistics and learning are the same, but in this approach there is no need for RTD to retrieve any choices at all.</p>
<p>We can instantiate an empty dynamic choice using the getPrototype API.</p>
<p><pre class="brush: java;">
Choice ch = new MyDynamicGroupChoice(MyDynamicGroup.getPrototype());
ch.setSDOId(&quot;MyDynamicGroup&quot; + &quot;$&quot; + &quot;MyChoiceId&quot;);
ch.recordEvent(&quot;Clicked&quot;);
</pre></p>
<p>This approach can provide significant performance improvements in implementations with a large number of dynamic choices; or in implementations where retrieving dynamic choices is a non-trivial complex operation and entity caching proves insufficient.</p>
<p>Being able to record events on choices that are not retrievable through the dynamic list is an additional advantage that has several interesting applications which we will explore in future posts.</p>
<p><span style="color:#bbb;">[ Special thanks to Michel Adar for bringing this to my attention and providing an initial draft of this article. ]</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lukasvermeer.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lukasvermeer.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lukasvermeer.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lukasvermeer.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lukasvermeer.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lukasvermeer.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lukasvermeer.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lukasvermeer.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lukasvermeer.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lukasvermeer.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lukasvermeer.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lukasvermeer.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lukasvermeer.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lukasvermeer.wordpress.com/849/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=849&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lukasvermeer.wordpress.com/2012/01/10/recording-choices/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/da492bd819224723b7d81bb6ae5cae78?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">lukasvermeer</media:title>
		</media:content>
	</item>
		<item>
		<title>Placebo Punctuation</title>
		<link>http://lukasvermeer.wordpress.com/2012/01/05/placebo-punctuation/</link>
		<comments>http://lukasvermeer.wordpress.com/2012/01/05/placebo-punctuation/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 08:54:45 +0000</pubDate>
		<dc:creator>Lukas Vermeer</dc:creator>
				<category><![CDATA[Meta]]></category>
		<category><![CDATA[Psychology]]></category>
		<category><![CDATA[placebo]]></category>
		<category><![CDATA[punctuation]]></category>
		<category><![CDATA[semicolon]]></category>

		<guid isPermaLink="false">http://lukasvermeer.wordpress.com/?p=833</guid>
		<description><![CDATA[I know it&#8217;s almost never necessary to use a semicolon, but I like semicolons; they make me feel smart.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=833&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I know <a href="http://sethgodin.typepad.com/seths_blog/2011/12/assorted-tips-hope-they-help.html">it&#8217;s almost never necessary to use a semicolon</a>, but I like semicolons; they make me feel smart.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lukasvermeer.wordpress.com/833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lukasvermeer.wordpress.com/833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lukasvermeer.wordpress.com/833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lukasvermeer.wordpress.com/833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lukasvermeer.wordpress.com/833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lukasvermeer.wordpress.com/833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lukasvermeer.wordpress.com/833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lukasvermeer.wordpress.com/833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lukasvermeer.wordpress.com/833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lukasvermeer.wordpress.com/833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lukasvermeer.wordpress.com/833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lukasvermeer.wordpress.com/833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lukasvermeer.wordpress.com/833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lukasvermeer.wordpress.com/833/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=833&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lukasvermeer.wordpress.com/2012/01/05/placebo-punctuation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/da492bd819224723b7d81bb6ae5cae78?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">lukasvermeer</media:title>
		</media:content>
	</item>
		<item>
		<title>Why Metrics Matter</title>
		<link>http://lukasvermeer.wordpress.com/2012/01/03/why-metrics-matter/</link>
		<comments>http://lukasvermeer.wordpress.com/2012/01/03/why-metrics-matter/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 14:58:31 +0000</pubDate>
		<dc:creator>Lukas Vermeer</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Psychology]]></category>
		<category><![CDATA[RTD]]></category>
		<category><![CDATA[Statistics]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[marketeers]]></category>
		<category><![CDATA[metrics]]></category>
		<category><![CDATA[paradox of choice]]></category>

		<guid isPermaLink="false">http://lukasvermeer.wordpress.com/?p=812</guid>
		<description><![CDATA[Daring Fireball quotes some interesting research findings related to what Barry Schwartz dubbed The Paradox Of Choice. About 60% of the people stopped when we had 24 jams on display and then at the times when we had 6 different flavors of jam out on display only 40% of the people actually stopped, so more people [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=812&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://daringfireball.net/linked/2011/12/14/too-many-choices">Daring Fireball</a> quotes some interesting <a href="http://bigthink.com/ideas/19529">research findings</a> related to what <a href="http://www.swarthmore.edu/SocSci/bschwar1/">Barry Schwartz</a> dubbed <a href="http://www.amazon.co.uk/Paradox-Choice-Why-More-Less/dp/0060005696">The Paradox Of Choice</a>.</p>
<blockquote><p>About 60% of the people stopped when we had 24 jams on display and then at the times when we had 6 different flavors of jam out on display only 40% of the people actually stopped, so more people were clearly attracted to the larger varieties of options, but then when it came down to buying, so the second thing we looked at is in what case were people more likely to buy a jar of jam.</p>
<p>What we found was that of the people who stopped when there were 24 different flavors of jam out on display only 3% of them actually bought a jar of jam whereas of the people who stopped when there were 6 different flavors of jam 30% of them actually bought a jar of jam.  So, if you do the math, people were actually 6 times more likely to buy a jar of jam if they had encountered 6 than if they encountered 24, so what we learned from this study was that while people were more attracted to having more options, that’s what sort of got them in the door or got them to think about jam, when it came to choosing time they were actually less likely to make a choice if they had more to choose from than if they had fewer to choose from.</p></blockquote>
<p>A fascinating psychological effect with clear implications for display advertising, but there is a lesson here for online marketeers and analysts as well.</p>
<p>In this study, fewer people <em>stopped</em> when there was less choice, but more people actually <em>bought</em> something. If we were only measuring the former (i.e. <em>attention</em>), and not the latter (i.e. <em>sales</em>), we would be led to think more choice would be about 50% more effective at bringing in customers. And boy, would we be wrong!</p>
<p><a href="http://www.kaushik.net/avinash/best-web-metrics-kpis-small-medium-large-business/">Metrics</a> matter; especially when you are using <a href="http://www.oracle.com/technetwork/middleware/real-time-decisions/overview/index.html">a system</a> which can <a href="http://lukasvermeer.wordpress.com/2011/04/16/putting-the-business-back-in-business-intelligence/">automatically optimize your process</a> in order to maximize those metrics.</p>
<p>Don&#8217;t get yourself in a jam; remember this next time you decide to measure <em>click acceptance</em> instead of <em>actual sales</em> to drive your online marketing effort. <a href="http://en.wikipedia.org/wiki/Clickthrough_rate">Clickthrough rates</a> are useful as a <a href="http://en.wikipedia.org/wiki/Proxy_(statistics)">measure by proxy</a>, but they can be misleading.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lukasvermeer.wordpress.com/812/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lukasvermeer.wordpress.com/812/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lukasvermeer.wordpress.com/812/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lukasvermeer.wordpress.com/812/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lukasvermeer.wordpress.com/812/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lukasvermeer.wordpress.com/812/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lukasvermeer.wordpress.com/812/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lukasvermeer.wordpress.com/812/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lukasvermeer.wordpress.com/812/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lukasvermeer.wordpress.com/812/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lukasvermeer.wordpress.com/812/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lukasvermeer.wordpress.com/812/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lukasvermeer.wordpress.com/812/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lukasvermeer.wordpress.com/812/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=812&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lukasvermeer.wordpress.com/2012/01/03/why-metrics-matter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/da492bd819224723b7d81bb6ae5cae78?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">lukasvermeer</media:title>
		</media:content>
	</item>
		<item>
		<title>From Restaurant Advice To Recommending Associates</title>
		<link>http://lukasvermeer.wordpress.com/2012/01/02/from-restaurant-advice-to-recommending-associates/</link>
		<comments>http://lukasvermeer.wordpress.com/2012/01/02/from-restaurant-advice-to-recommending-associates/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 15:49:09 +0000</pubDate>
		<dc:creator>Lukas Vermeer</dc:creator>
				<category><![CDATA[Meta]]></category>
		<category><![CDATA[Psychology]]></category>
		<category><![CDATA[appraisals]]></category>
		<category><![CDATA[aspiration]]></category>
		<category><![CDATA[learnings]]></category>
		<category><![CDATA[vocabulary]]></category>

		<guid isPermaLink="false">http://lukasvermeer.wordpress.com/?p=792</guid>
		<description><![CDATA[After writing restaurant reviews for about a year, I&#8217;ve decided to apply my carefully whetted literary prowess to a new type of assessment: recommending people. While there remains a considerable amount of controversy around the transfer of learnings, I&#8217;ve always personally believed that certain mental skills can be transferred from one domain to another. My aspiration to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=792&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After <a href="http://maps.google.com/maps/user?uid=203829841339053400258&amp;ptab=1&amp;hl=en">writing restaurant reviews</a> for about a year, I&#8217;ve decided to apply my carefully whetted literary prowess to a new type of assessment: <a href="http://learn.linkedin.com/profiles/recommendations/">recommending people</a>.</p>
<p>While there remains <a href="http://en.wikipedia.org/wiki/Transfer_of_learning">a considerable amount of controversy around the transfer of learnings</a>, I&#8217;ve always personally believed that <a href="http://ieet.org/index.php/IEET/more/kuszewski20110720">certain mental skills can be transferred</a> from one domain to another. My aspiration to learn to fashion authentic and articulate appraisals was part of the reason I started writing restaurant reviews in the first place.</p>
<p>To me, it certainly feels like significant progress was made. I&#8217;ve certainly expanded upon my vocabulary of adjectives.</p>
<p>I&#8217;d like to thank all who provided me with feedback and helped me hone my skills. Keep up the good work! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lukasvermeer.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lukasvermeer.wordpress.com/792/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lukasvermeer.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lukasvermeer.wordpress.com/792/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lukasvermeer.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lukasvermeer.wordpress.com/792/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lukasvermeer.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lukasvermeer.wordpress.com/792/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lukasvermeer.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lukasvermeer.wordpress.com/792/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lukasvermeer.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lukasvermeer.wordpress.com/792/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lukasvermeer.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lukasvermeer.wordpress.com/792/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=792&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lukasvermeer.wordpress.com/2012/01/02/from-restaurant-advice-to-recommending-associates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/da492bd819224723b7d81bb6ae5cae78?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">lukasvermeer</media:title>
		</media:content>
	</item>
		<item>
		<title>Think Big, Start Small</title>
		<link>http://lukasvermeer.wordpress.com/2011/11/21/think-big-start-small/</link>
		<comments>http://lukasvermeer.wordpress.com/2011/11/21/think-big-start-small/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 13:48:08 +0000</pubDate>
		<dc:creator>Lukas Vermeer</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Psychology]]></category>

		<guid isPermaLink="false">http://lukasvermeer.wordpress.com/?p=765</guid>
		<description><![CDATA[I ran into the boss of the boss of the boss of the boss of my boss at London City Airport. He did not recognize me of course; there are quite a few Oracle consultants in Europe apart from myself. But once properly introduced, he offered to buy me a drink so we could have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=765&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="https://plus.google.com/106518479241050228896/posts/KUGBw4y3jtQ">I ran into</a> <a href="http://www.linkedin.com/pub/maurizio-bobbio/0/a29/715">the boss</a> of the boss of the boss of the boss of my boss at <a href="http://www.londoncityairport.com/">London City Airport</a>. He did not recognize me of course; there are quite a few Oracle consultants in Europe apart from myself. But once properly introduced, he offered to buy me a drink so we could have a chat while we waited for our flights.</p>
<p>He asked me what I wanted to drink.</p>
<p>I said that a beer would do just fine.</p>
<p>He asked me what kind.</p>
<p>I mumbled something about having no preference.</p>
<p>Obviously that last statement was a half-hearted lie. This being England, the bar had a respectable selection of beers and ales on offer; not all of which I would have enjoyed. Perhaps I did not want to seem picky, or did not want to waste time perusing the bar. Whatever the reason, he seemed unfazed and wandered off towards the bar to order while I attended our luggage and seats.</p>
<p><strong>Q: What beverages would you have purchased if you were in his position?</strong></p>
<p>Presumably, one does not become the boss of the boss of the boss of the boss of the boss of me without a lot of effort, skill and hard work. One <a href="http://knowyourmeme.com/memes/one-does-not-simply-x-into-mordor">does not simply walk </a>into a top-position at a multi-national cooperation without some special abilities and a lot of experience.</p>
<p>Technology and tools change fast, but people will be around for some time. I enjoy keeping up with and learning about new technology in my spare time, but <em>people experience</em> takes serious effort and dedicated investment. It is why I do the work I do the way I do it. A chance encounter like this is a great opportunity to leapfrog ahead.</p>
<p>Pay attention to the details, and you might learn a trick or two.</p>
<p>My high-placed patron returned from the bar with two completely different beers, stated he was fond of both and let me choose between a dark ale and a normal lager; thereby maximizing (doubling) the odds of me getting something I liked in the absence of more information. Furthermore, because I was allowed to choose, <a href="http://en.wikipedia.org/wiki/Endowment_effect">the endowment effect</a> almost guaranteed I would be satisfied with what I got; even if it wasn&#8217;t really what I wanted. Simple, but effective!</p>
<p><strong>A: Buy two diametrically opposed beverages you personally enjoy equally. Let the other choose.</strong></p>
<p>Think big, start small. They say happiness is in the little things, but so is success.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lukasvermeer.wordpress.com/765/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lukasvermeer.wordpress.com/765/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lukasvermeer.wordpress.com/765/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lukasvermeer.wordpress.com/765/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lukasvermeer.wordpress.com/765/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lukasvermeer.wordpress.com/765/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lukasvermeer.wordpress.com/765/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lukasvermeer.wordpress.com/765/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lukasvermeer.wordpress.com/765/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lukasvermeer.wordpress.com/765/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lukasvermeer.wordpress.com/765/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lukasvermeer.wordpress.com/765/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lukasvermeer.wordpress.com/765/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lukasvermeer.wordpress.com/765/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=765&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lukasvermeer.wordpress.com/2011/11/21/think-big-start-small/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/da492bd819224723b7d81bb6ae5cae78?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">lukasvermeer</media:title>
		</media:content>
	</item>
		<item>
		<title>Back To Back</title>
		<link>http://lukasvermeer.wordpress.com/2011/11/16/back-to-back/</link>
		<comments>http://lukasvermeer.wordpress.com/2011/11/16/back-to-back/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 17:36:24 +0000</pubDate>
		<dc:creator>Lukas Vermeer</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://lukasvermeer.wordpress.com/?p=751</guid>
		<description><![CDATA[Gruber asserts. Being able to label the back button is a big reason why the iPhone’s on-screen buttons are better than Android’s hardware Back button. A dedicated hardware Back button can never answer the question “Where?” Oh really‽ The Back button on my browser is not labeled in any way, nor are the (to Gruber [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=751&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/John_Gruber">Gruber</a> <a href="http://daringfireball.net/linked/2011/10/25/back-button">asserts</a>.</p>
<blockquote><p>Being able to label the back button is a big reason why the iPhone’s on-screen buttons are better than Android’s hardware Back button. A dedicated hardware Back button can never answer the question “Where?”</p></blockquote>
<p>Oh really<a href="http://en.wikipedia.org/wiki/Interrobang">‽</a></p>
<p>The Back button on my browser is not labeled in any way, nor are the (to Gruber perhaps confusingly labeled) emergency &#8220;exit&#8221; signs in most buildings. Some things are just so blindingly obvious they do not warrant a label at all.</p>
<p>I guess I never really considered the &#8220;Where?&#8221; question to be important. I always figured the Back button on my phone would do pretty much what it says on the tin: take you back. Back to where you came from; wherever that may have been.</p>
<p>Conversely.</p>
<p>When I click my Android hardware Back button after moving from one application to the next (for instance when opening a map, webpage or dialing a number from within an app) Android does <em>exactly</em> what I would expect; it goes back to the previous screen. As long as I keep tapping that button, Android will take me back; even if I have been moving acros a multitude of applications. Right up until I return to the Home screen.*</p>
<p><a href="http://developer.android.com/guide/topics/fundamentals/tasks-and-back-stack.html">This</a> makes total sense to me.</p>
<blockquote><p>When the user presses the BACK key, the current activity is popped from the top of the stack (the activity is destroyed) and the previous activity resumes (the previous state of its UI is restored). Activities in the stack are never rearranged, only pushed and popped from the stack—pushed onto the stack when started by the current activity and popped off when the user leaves it using the BACK key.</p></blockquote>
<p>For me, this consistent Back functionality across applications is a big reason why Android&#8217;s Back button is better than the iPhone&#8217;s on-screen buttons. Even if they do have fancier labels.</p>
<p><span style="color:#bbb;">[* As a side note, I've always felt the Android applications integrate more often and more nicely producing a more natural flow between apps. Perhaps this point is not a salient to those used to the more clunky iOS flow where manual application switching is more common, at least for me. ]</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lukasvermeer.wordpress.com/751/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lukasvermeer.wordpress.com/751/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lukasvermeer.wordpress.com/751/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lukasvermeer.wordpress.com/751/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lukasvermeer.wordpress.com/751/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lukasvermeer.wordpress.com/751/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lukasvermeer.wordpress.com/751/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lukasvermeer.wordpress.com/751/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lukasvermeer.wordpress.com/751/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lukasvermeer.wordpress.com/751/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lukasvermeer.wordpress.com/751/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lukasvermeer.wordpress.com/751/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lukasvermeer.wordpress.com/751/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lukasvermeer.wordpress.com/751/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lukasvermeer.wordpress.com&amp;blog=13469739&amp;post=751&amp;subd=lukasvermeer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lukasvermeer.wordpress.com/2011/11/16/back-to-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/da492bd819224723b7d81bb6ae5cae78?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">lukasvermeer</media:title>
		</media:content>
	</item>
	</channel>
</rss>
