<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Victus Spiritus</title>
	
	<link>http://www.victusspiritus.com</link>
	<description>Nourishment for the Soul. The current focus is inspiration and life path seeking. As my views evolve, so will my message. Latest topics include the marketing of ideas by social networking, and their role in the shaping of the future of internet commerce and society.</description>
	<lastBuildDate>Tue, 09 Feb 2010 12:34:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain="www.victusspiritus.com" port="80" path="/?rsscloud=notify" registerProcedure="" protocol="http-post" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/VictusSpiritus" /><feedburner:info uri="victusspiritus" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><feedburner:emailServiceId>VictusSpiritus</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Gotta Grock Git</title>
		<link>http://feedproxy.google.com/~r/VictusSpiritus/~3/PdhNcfudsm4/</link>
		<comments>http://www.victusspiritus.com/2010/02/09/gotta-grock-git/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 12:34:15 +0000</pubDate>
		<dc:creator>Mark Essel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[source control]]></category>

		<guid isPermaLink="false">http://www.victusspiritus.com/2010/02/09/gotta-grock-git/</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F09%2Fgotta-grock-git%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F09%2Fgotta-grock-git%2F" height="61" width="51" /></a></div><p>Git is a file syncronization, and source control tool. Git has been my enemy. It&#8217;s still a <a href="http://www.victusspiritus.com/2010/02/08/each-time-i-get-my-hands-dirty-i-learn/">spooky animal</a>. Here&#8217;s how I survive git now without letting it get in the way of me&#8230;</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F09%2Fgotta-grock-git%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F09%2Fgotta-grock-git%2F" height="61" width="51" /></a></div><p>Git is a file syncronization, and source control tool. Git has been my enemy. It&#8217;s still a <a href="http://www.victusspiritus.com/2010/02/08/each-time-i-get-my-hands-dirty-i-learn/">spooky animal</a>. Here&#8217;s how I survive git now without letting it get in the way of me breaking new things.</p>
<p>Install Git Ubuntu/Debian <a href="http://en.m.wikipedia.org/wiki/Advanced_Packaging_Tool?wasRedirected=true">linux</a>:<br />
sudo apt-get install git-core<br />
(refer to references for <a HREF="http://github.com/guides/using-git-and-github-for-the-windows-for-newbies">windows</a> or <a href="http://help.github.com/mac-git-installation/">mac</a> installs)</p>
<p>Setup:<br />
git config &#8211;global user.email you@bigco.com<br />
git config &#8211;global user.name &#8220;Your Name&#8221;</p>
<p>Setup new repo?<br />
cd myprojectdirectory<br />
git init<br />
git add .<br />
git commit -am &#8220;first commit message&#8221; </p>
<p>Grab a repo?<br />
git clone git:repo/proj.git</p>
<p>Status:<br />
git log</p>
<p>Good commit habit to a remote repo:<br />
git commit -am &#8220;my new commit&#8221;<br />
git pull repo<br />
(no conflicts?)<br />
git push<br />
(if conflicts?)<br />
*run around screaming and breaking things*<br />
git mergetool<br />
or read <a HREF="http://stackoverflow.com/questions/161813/how-do-i-fix-merge-conflicts-in-git">here</a></p>
<p>Revert:<br />
git revert commitnumber<br />
Or to revert one commit<br />
git revert HEAD  </p>
<p>Branch:<br />
git branch mybranchname</p>
<p>Switch branch (changes files think lazy susan):<br />
git checkout mybranchname</p>
<p>List branches:<br />
git branch</p>
<p>Merge branch master into current branch<br />
git merge master  </p>
<p>References:</p>
<ul>
<li><a HREF="http://wiki.freegeek.org/index.php/Git_for_dummies">Git for Dummies</a></li>
<li><a HREF="http://toolmantim.com/articles/setting_up_a_new_remote_git_repository">Toolman Tim</a></li>
<li><a HREF="http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html">Git Tutorial</a></li>
<li><a HREF="http://git-scm.com/documentation">Git Homepage</a></li>
<li><a HREF="http://git.wiki.kernel.org/index.php/InterfacesFrontendsAndTools">Interfaces and Tools</a></li>
<li><a HREF="http://meld.sourceforge.net/install.html">Meld visual merge tool</a></li>
<li><a HREF="http://git.wiki.kernel.org/index.php/GitHistory#Historical_background">History</a>
</ul>
<img src="http://feeds.feedburner.com/~r/VictusSpiritus/~4/PdhNcfudsm4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.victusspiritus.com/2010/02/09/gotta-grock-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.victusspiritus.com/2010/02/09/gotta-grock-git/</feedburner:origLink></item>
		<item>
		<title>Each Time I Get My Hands Dirty, I Learn</title>
		<link>http://feedproxy.google.com/~r/VictusSpiritus/~3/BYKRv69GvIg/</link>
		<comments>http://www.victusspiritus.com/2010/02/08/each-time-i-get-my-hands-dirty-i-learn/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 13:18:37 +0000</pubDate>
		<dc:creator>Mark Essel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[semantic]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[victus media]]></category>
		<category><![CDATA[web/tech]]></category>

		<guid isPermaLink="false">http://www.victusspiritus.com/?p=2975</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F08%2Feach-time-i-get-my-hands-dirty-i-learn%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F08%2Feach-time-i-get-my-hands-dirty-i-learn%2F" height="61" width="51" /></a></div><p>As long as I&#8217;m unwilling to face an obstacle, my mind invents clever schemes to prevent me from having to deal with undesirable tasks. That results in me treating the obstacle as a <a href="http://www.youtube.com/watch?v=O4MlIOCNIW4">spooky</a>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F08%2Feach-time-i-get-my-hands-dirty-i-learn%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F08%2Feach-time-i-get-my-hands-dirty-i-learn%2F" height="61" width="51" /></a></div><p>As long as I&#8217;m unwilling to face an obstacle, my mind invents clever schemes to prevent me from having to deal with undesirable tasks. That results in me treating the obstacle as a <a href="http://www.youtube.com/watch?v=O4MlIOCNIW4">spooky animal</a>. It also means I will miss out on any advantages of understanding the taboo subject.</p>
<p>My biggest hurdle over the past dozen years has been learning a new programming language. After getting comfortable with C++ (and c) I couldn&#8217;t imagine starting out all over. Learning how to translate thoughts into data structures, objects, and methods took me a good two years to understand, and five to get very comfortable with. But last year that barrier finally got worn away by a potent force, my enthusiasm to build <a href="http://victusmedia.com">a highly capable web information tool</a>.</p>
<p>At that point I began to familiarize myself with php and common web programming languages. I had never consciously written code to access a web API before writing a script to access Twitter late last summer. The documentation was rich, but I kept looking for something like an include to dig into source code. That&#8217;s how I used to figure interfaces out, often my own source code written years earlier. But APIs only reveal the interface, they are the block box of the web world.</p>
<p>In the fall of last year I toyed with Scala on Lift, and Python with Django. Setting up Scala in Netbeans and Eclipse IDEs was nontrivial for a first timer. To clarify, getting the right compilers/Jre/sdk and mixing this concept with the Google App Engine took some time to straighten out (poor Benjamin Golub was kind enough to put up with my ignorance at the time the friendfeed API v2 was released).  </p>
<p>My reliance on IDEs is another hurdle, but I far prefer rich IDEs for code navigation to editors and makefiles (I started coding on SGI unix, VI and emacs are not the ideal coding tools for me). I was clueless how to tweak the sample code frameworks besides obvious logical hints in the code structure. I judge a language by how much sense it makes to me when looking at sample code. If I have to pour over documentation to clarify dense arcane syntax, it&#8217;s a bad sign, although I&#8217;m becoming acclimated to hitting web docs for help.</p>
<p>Last November <a href="http://www.Twitter.com/tylergillies">Tyler</a> kicked me into learning the basics of Ruby through Rails our current framework for the <a href="http://imm.victusmedia.com/">IMM (Intelligent Media Manager)</a>. As a long time engineer who primarily did numerical/algorithm development in C++ I was a little shocked at how slow run times for interpreted languages can be. Why would anyone choose to develop in a language that was an order of magnitude or two slower? Some simple facts I was missing: </p>
<ul>
<li>for the type of web processing I do now, the wait time of remote API calls is much greater than local processing time</li>
<li>abstraction for high level languages allows for rapid construction of functioning prototypes</li>
<li>Static vs Dynamic typing: (somewhat related to interpreted and compiled languages) I prefer static typing to dynamic, as that&#8217;s how I first learned. Declaring types is good practice (its built in documentation) and saves a fair amount of testing. Dynamic typing has it&#8217;s own merits but I&#8217;m not the right guy to argue this topic. Someone like <a HREF="http://www.twitter.com/dpp">Dave Pollack</a> can discuss the comparison of each much better. I&#8217;ll come back to it in a future post when I have more time to research tradeoffs (spooky animal)</li>
</ul>
<p>In contrast to the lack of need for speed with some web development languages, there are fundamental interfaces that we all want to be as responsive as possible. For these (our database and public API) we&#8217;ll want things to be hypertuned. In fact if we had to, I&#8217;m confident Tyler and I could write the entire site/service over again in a natively faster language now that we&#8217;ve gone through it once *ducks the rock Tyler will throw at me for this comment*. </p>
<p>Ruby on Rails is a great tool for learning, developing and understating the process, data, and user flow. There&#8217;s still a great deal I can learn about the language (they didn&#8217;t choose dynamic typing on a whim). While working with Rails I have even learned a little JavaScript to enable users to do remote hits to the Twitter search API (we use jquery as a support lib). This was last step for the rudimentary twitter client we now have, Social Gravity.  Our tools excel at identifying the important topics of status updates (metadata) and  puts us in a position to better invent useful search and interaction tools. </p>
<h2>Unlimited API hits aren&#8217;t free</h2>
<p>The past few days I&#8217;ve been digging into Open Calais&#8217; API. They have another great semantic tool which we can leverage. The big plus for Calais is there 100k hits per day limit. While debugging our list processing, I&#8217;ve already gone beyond the Zemanta API limit of 10k. Alchemy&#8217;s Orchestr8 is our goto semantic API, and it gives us 30k hit per day to work with. If necessary we can explore hitting DBPedia directly to identify our own entities from text. Relying on external tools could be more expensive than our limited revenue can practically support. It all depends on how many affiliate sales we can get per API hit. Zemanta&#8217;s pricing architecture is $1200/month for 50k hits per day at the time of writing this post. To break even we have to make 3 cents an API hit if we perfectly max out calling the API. I have to do some quick calculations for Alchemy and Open Calais but the number is much lower than 3 cents per API hit. Calais may be our most viable option. Even better than that, in house semantic lookups could be the best long term solution. Lower software and maintenance cost versus API hits, and in theory we could have a massive local database to minimize response time. </p>
<img src="http://feeds.feedburner.com/~r/VictusSpiritus/~4/BYKRv69GvIg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.victusspiritus.com/2010/02/08/each-time-i-get-my-hands-dirty-i-learn/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.victusspiritus.com/2010/02/08/each-time-i-get-my-hands-dirty-i-learn/</feedburner:origLink></item>
		<item>
		<title>Choice is Beauty: Why I’m leaving Apple Mobile for Android</title>
		<link>http://feedproxy.google.com/~r/VictusSpiritus/~3/Fcdj_T3uLwM/</link>
		<comments>http://www.victusspiritus.com/2010/02/07/choice-is-beauty-why-im-leaving-apple-mobile-for-android/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 12:51:23 +0000</pubDate>
		<dc:creator>Mark Essel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[design theory]]></category>
		<category><![CDATA[mobile web]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[web/tech]]></category>

		<guid isPermaLink="false">http://www.victusspiritus.com/2010/02/07/choice-is-beauty-why-im-leaving-apple-mobile-for-android/</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F07%2Fchoice-is-beauty-why-im-leaving-apple-mobile-for-android%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F07%2Fchoice-is-beauty-why-im-leaving-apple-mobile-for-android%2F" height="61" width="51" /></a></div><ol>
<li>iPhone is a fundamentally closed architecture. Sure lots of developers are working through the store to get access to a large market, but the store&#8217;s cut isn&#8217;t the only tax. Apple is the gatekeeper</li></ol><p>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F07%2Fchoice-is-beauty-why-im-leaving-apple-mobile-for-android%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F07%2Fchoice-is-beauty-why-im-leaving-apple-mobile-for-android%2F" height="61" width="51" /></a></div><ol>
<li>iPhone is a fundamentally closed architecture. Sure lots of developers are working through the store to get access to a large market, but the store&#8217;s cut isn&#8217;t the only tax. Apple is the gatekeeper and has proven that it will block competition. For examples see Skype &amp; Google Voice. Additionally the approval time for updates is too slow, <a href="http://www.paulgraham.com/apple.html">taking weeks or more</a></li>
<li>Web apps are much more appealing alternative for developers who want the biggest market without having to rewrite the same app for multiple architectures. I recognize that web apps don&#8217;t have full access to the device hardware. Expect this trend to change rapidly</li>
<li>I&#8217;m not the administrator on my own hardware (without jailbreaking) which is a pita without a mac. Software apps or Apple can push updates I don&#8217;t want. Jailbreaking an Android is trivial by comparison. Being in the drivers seat of my own hardware destiny matters to me</li>
<li>No choice of data provider. Put aside the debate of <a href="http://www.victusspiritus.com/2010/01/10/metaprotocols-minimize-restrictions-on-communication-network-evolution/">dumb pipes</a>, AT&amp;T vs Verizon vs Sprint vs Tmobile. Choice is the foundation of competition. I want businesses competing ferociously to be my mobile web service provider. I want the mobile Net commodotized and absolutely transparent. Providers should be dynamic not static, the cheapest bit wins</li>
<li>iTunes doesn&#8217;t work on Linux. Sure I can get wine to emulate windows and the push the iPod patch and it may work (it flaked on my setup) but why should I have to?</li>
<li>For the same reason Microsoft was a monopoly for integrating their crappy Internet Explorer browser Apple should have to decouple their store from their hardware. Let me buy through whoever I want (go Magnatune &amp; Last.fm!). I admit IE has gotten better since they were forced to decouple their web browser from the OS. Competition is a good thing for users/customers and the stability of businesses</li>
<li>For me it comes down to user experience. I&#8217;d much prefer a solid under the hood infrastructure and choice of windowing/interface environmet. It&#8217;s why Ubuntu flavored Linux is working great for me. If only I could slap that on my mobile&#8230;</li>
</ol>
<p>Things that no mobile provider has official support for but it should be the defaut:</p>
<ul>
<li>Tethering. One monthly bill for all my data usage (4G I&#8217;m looking at you). No special tax for voice or SMS colored data or cost multipliers because I have a laptop or desktop at home. $70/month for fat bandwidth is more than enough to cover my data needs. I shouldn&#8217;t have to lay $80-110 per device or an extra $50 for a landline</li>
</ul>
<p>This is a followup to <a href="http://www.victusspiritus.com/2009/08/01/apple-att-are-pulling-a-thelma-and-louise/">Apple and AT&amp;T are pulling a Thelma &amp; Louise</a>.</p>
<p>Disclaimer: I don&#8217;t hate Apple, I&#8217;ve enjoyed my iPhone mobile for a few years for the Net access it has given me (2G and 3Gs). My fiancé Michelle had a wonderful experience setting up her iMac.</p>
<img src="http://feeds.feedburner.com/~r/VictusSpiritus/~4/Fcdj_T3uLwM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.victusspiritus.com/2010/02/07/choice-is-beauty-why-im-leaving-apple-mobile-for-android/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		<feedburner:origLink>http://www.victusspiritus.com/2010/02/07/choice-is-beauty-why-im-leaving-apple-mobile-for-android/</feedburner:origLink></item>
		<item>
		<title>Can Search Discover the Spark of Life?</title>
		<link>http://feedproxy.google.com/~r/VictusSpiritus/~3/hMU-Nc8QOBI/</link>
		<comments>http://www.victusspiritus.com/2010/02/06/can-search-discover-the-spark-of-life/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 21:16:20 +0000</pubDate>
		<dc:creator>Mark Essel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[artificial intelligence]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[evolution]]></category>
		<category><![CDATA[far out]]></category>
		<category><![CDATA[mind]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[swarm]]></category>

		<guid isPermaLink="false">http://www.victusspiritus.com/?p=2945</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F06%2Fcan-search-discover-the-spark-of-life%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F06%2Fcan-search-discover-the-spark-of-life%2F" height="61" width="51" /></a></div><p><a href="http://www.stuckincustoms.com/2010/02/02/a-great-day-at-the-google-hq/"><img class="aligncenter size-large wp-image-2948" title="The Google HQ" src="http://www.victusspiritus.com/wp-content/uploads/2010/02/SearchIsLookingForLife-1024x733.jpg" alt="" width="800" height="550" /></a></p>
<p>Highly profitable attention based business is powered by crack dev teams working at Google and Microsoft (Bing). From the point of view of an outsider looking in, there is a massive shift in resource&#8230;</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F06%2Fcan-search-discover-the-spark-of-life%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F06%2Fcan-search-discover-the-spark-of-life%2F" height="61" width="51" /></a></div><p><a href="http://www.stuckincustoms.com/2010/02/02/a-great-day-at-the-google-hq/"><img class="aligncenter size-large wp-image-2948" title="The Google HQ" src="http://www.victusspiritus.com/wp-content/uploads/2010/02/SearchIsLookingForLife-1024x733.jpg" alt="" width="800" height="550" /></a></p>
<p>Highly profitable attention based business is powered by crack dev teams working at Google and Microsoft (Bing). From the point of view of an outsider looking in, there is a massive shift in resource gravity that has taken only a decade. It is a living example of <a href="http://www.victusspiritus.com/2009/12/21/attention-jiu-jitsu/">attention jiu-jitsu</a>, which leverages human interest towards desired outcomes. In this case the result is ever larger revenue growth and accompanying <a href="http://www.cs.cornell.edu/projects/ladis2009/talks/dean-keynote-ladis2009.pdf">data-centers</a>. The yield of compute center investments are reaped by maintaining <a href="http://en.wikipedia.org/wiki/Competitive_intelligence">information superiority</a> in an emerging network economy. The massive information network density may be the perfect environment for a new pattern to emerge. Upon writing this, I can imagine a room full of artificial intelligence researchers laughing at the possibility of accidental intelligence. My counter is that with enough information (energy) density and connectivity, the highly unlikely becomes inevitable. A plausible method leading to identifiable A.I. is to create a rich environment for intelligence to emerge, as opposed to chasing after intelligence by emulation software. A single spontaneous event is enough to change everything.</p>
<p>Organized structure arising from chaos isn&#8217;t a novel concept in nature. Cosmologists have constructed intricate hypotheses based on circumstantial evidence and measurements of ancient energies (I trust their data much more than my arm chair A.I. ideas, which isn&#8217;t much). A <a href="http://en.m.wikipedia.org/wiki/Big_Bang?wasRedirected=true">popular theory</a> tells a tale about the history of the entire universe. The story heralds the unfolding of super galactic structures, all emerging from a single event of supreme energy density.</p>
<p>I look to life for supporting patterns to my &#8220;far out&#8221; thought riffs. In the search for technological intelligence, what better place to look than the history of the human species, an incredible biological machine. Evolutionary development shows a marked gain in cognitive abilities (brain size) happening over a relatively short timespan.<br />
<a href="http://neurophilosophy.wordpress.com/2006/08/07/499/"><img class="aligncenter size-full wp-image-2953" title="htree" src="http://www.victusspiritus.com/wp-content/uploads/2010/02/htree.jpg" alt="" width="695" height="873" /></a><br />
By reviewing this tree of species is there evidence of a threshold for connectivity that may give rise to <a href="http://en.m.wikipedia.org/wiki/Sentience?wasRedirected=true">sentience</a>? Since we don&#8217;t have enough social analysis of our ancestors (read as: I&#8217;m too lazy to research it at the moment) it&#8217;s tough to judge what was the required neural connectivity to define conscious self awareness. Intelligence is likely a gradual awareness that improves as neural connectivity increases. For example, my dogs are aware, but they&#8217;re not self aware (as far as I can guess). In my less lucid moments (strong emotional states), I too become less self aware.</p>
<h2>There&#8217;s Dollar Signs $$ in Knowledge</h2>
<p>Different aspects of decision making are emerging as valued hubs on the web. <a href="http://hunch.com">Hunch</a> and <a href="http://quora.com">Quora</a> are joining accepted knowledge systems like <a class="zem_slink" title="Wikipedia" rel="homepage" href="http://www.wikipedia.org/">Wikipedia</a>, <a class="zem_slink" title="Stack Overflow" rel="homepage" href="http://stackoverflow.com/">Stack Overflow</a>, and many others. Legacy knowledge systems derive value from organized crowd sourced user contributions. As more systems lead to rich connected data frameworks, users benefit from improved information availability. I look forward to progressive models which reward the extracted value with their user communities, something the gentlemen behind <a href="http://www.victusspiritus.com/2009/09/30/iter8r-organic-crowd-shared-startup/">Iter8r</a> are working on.</p>
<p>Inspired by knowledge systems, <a href="http://victusmedia.com/frankensearch/">frankensearch.appspot.com</a> was my first effort at a real time search mashup. I&#8217;ve been fascinated with various forms of social search since becoming an admitted Net junky over the past 18 months. Since late last year <a href="http://victusmedia.com/">Victus Media</a> has served as an outlet for focusing my efforts on revealing greater user value in social search.</p>
<p>I&#8217;ll leave off with a great share I got from my friend <a href="http://lmframework.com/blog/">David Semeria</a>, the genius behind the LM Framework. Can you see emerging information patterns in collaborative software development?</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=9225227&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="300" src="http://vimeo.com/moogaloop.swf?clip_id=9225227&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/9225227">Twitter Code Swarm</a> from <a href="http://vimeo.com/user1308096">Ben Sandofsky</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://cdixon.org/2010/01/17/collective-knowledge-systems/">Collective knowledge systems</a> (cdixon.org)</li>
<li class="zemanta-article-ul-li"><a href="http://www.inquisitr.com/60719/are-we-in-for-a-shift-in-the-search-engine-biz/">Are we in for a shift in the search engine biz?</a> (inquisitr.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.readwriteweb.com/archives/facebook_shows_its_cards_on_ad_strategy_full_house.php">Facebook Shows Its Cards With Bing on Ad Strategy: Full House</a> (readwriteweb.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.techmeme.com/100205/p47">Enhanced Cooperation with Facebook on Search (Bing/Search Blog)</a> (techmeme.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.marketingvox.com/microsoft-facebook-realign-banner-search-relationships-046148/?utm_campaign=rssfeed&amp;utm_source=mv&amp;utm_medium=textlink">Microsoft, Facebook Realign Banner, Search Relationships</a> (marketingvox.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.macworld.com/article/146172/2010/02/siri.html?lsrc=rss_main">Siri wants to be your personal assistant</a> (macworld.com)</li>
<li class="zemanta-article-ul-li"><a href="http://singularityhub.com/2010/02/05/google-challenges-you-to-a-game-of-tron/">Google Challenges You To a Game of Tron</a> (singularityhub.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/af8dee4b-97f7-4ad9-9ec2-260e6729473f/"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=af8dee4b-97f7-4ad9-9ec2-260e6729473f" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<img src="http://feeds.feedburner.com/~r/VictusSpiritus/~4/hMU-Nc8QOBI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.victusspiritus.com/2010/02/06/can-search-discover-the-spark-of-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.victusspiritus.com/2010/02/06/can-search-discover-the-spark-of-life/</feedburner:origLink></item>
		<item>
		<title>Our “Great White Shark” is the Ultimate Filter</title>
		<link>http://feedproxy.google.com/~r/VictusSpiritus/~3/OT0P04UJ-pg/</link>
		<comments>http://www.victusspiritus.com/2010/02/05/our-great-white-shark-is-the-ultimate-filter/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 13:19:06 +0000</pubDate>
		<dc:creator>Mark Essel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[datamining]]></category>
		<category><![CDATA[far out]]></category>
		<category><![CDATA[filtering]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.victusspiritus.com/?p=2937</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F05%2Four-great-white-shark-is-the-ultimate-filter%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F05%2Four-great-white-shark-is-the-ultimate-filter%2F" height="61" width="51" /></a></div><p> &#8220;White Blood Cell Chases Bacteria&#8230; It is a neutrophil chasing Staphylococcus aureus&#8221;. For more details see &#8220;how neutrophils work&#8221;* at the end of the post.</p>
<p>It&#8217;s good practice to make clear any assumptions or&#8230;</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F05%2Four-great-white-shark-is-the-ultimate-filter%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F05%2Four-great-white-shark-is-the-ultimate-filter%2F" height="61" width="51" /></a></div><p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/JnlULOjUhSQ&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;feature=player_embedded&#038;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/JnlULOjUhSQ&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;feature=player_embedded&#038;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object> &#8220;White Blood Cell Chases Bacteria&#8230; It is a neutrophil chasing Staphylococcus aureus&#8221;. For more details see &#8220;how neutrophils work&#8221;* at the end of the post.</p>
<p>It&#8217;s good practice to make clear any assumptions or definitions so here&#8217;s a brief introduction to <a href="http://www.scienceteacherprogram.org/biology/springers03.html">how white blood cells function</a>:</p>
<blockquote><p>
The immune system, which responds to an invading pathogen, is an intricate system of defense mechanisms designed to block and destroy any foreign substance entering the body.  It is made up of many cells, which help it to perform its function&#8230; White blood cells fight infections, and protect our body from foreign particles, which includes harmful germs, and bacteria.
</p></blockquote>
<p>The immune system is an example of a complex information filtering and processing system. It&#8217;s intricate design, superb pattern matching, and <a href="http://www.victusspiritus.com/2009/12/29/the-hidra-has-many-heads-cheap-disposable-resilience/">cheap disposable resilience</a> has evolved to enable our survival. The features I&#8217;m most interested in are the advanced filtering technique and dispersed nature of our white blood cells.</p>
<h2>Filtering and Motive Abilities Combined</h2>
<p>Work done by <a href="http://www.sciencedaily.com/releases/2009/05/090504094424.htm">Ronen Alon and Ziv Shulman</a> has shown tiny leg like structures that sprout from the white blood cell as it moves through tissue.</p>
<blockquote><p>
Rather than sticking front and back, folding and extending to push itself forward, the cell creates numerous tiny &#8216;legs&#8217; no more than a micron in length &#8211; adhesion points, rich in adhesion molecules (named LFA-1) that bind to partner adhesion molecules present on the surface of the blood vessels. Tens of these legs attach and detach in sequence within seconds &#8211; allowing them to move rapidly while keeping a good grip on the vessels&#8217; sides.<br />
Next, the scientists turned to the Institute&#8217;s Electron Microscopy Unit. Images produced by scanning and transmission electron microscopes, taken by Drs. Eugenia Klein and Vera Shinder, showed that upon attaching to the blood vessel wall, the white blood cell legs &#8216;dig&#8217; themselves into the endothelium, pressing down on its surface. The fact that these legs &#8211; which had been thought to appear only when the cells leave the blood vessels &#8211; are used in crawling the vessel lining suggests that they may serve as probes to sense exit signals.<br />
The researchers found that the shear force created by the blood flow was necessary for the legs to embed themselves. Without the thrust of the rushing blood, the white blood cells couldn&#8217;t sense the exit signals or get to the site of the injury. These results explain Alon&#8217;s previous findings that the blood&#8217;s shear force is essential for the white blood cells to exit the blood vessel wall. The present study suggests that shear forces cause their adhesion molecules to enter highly active states. The scientists believe that the tiny legs are trifunctional: Used for gripping, moving and sensing distress signals from the damaged tissue.
</p></blockquote>
<p>The closest macro analogy I can compare to white blood cell sensing is smell. Sharks have long used their fantastic smell to track miniscule concentrations of blood in water to find their prey. In a similar way, chemotaxins meet the surface of the white blood cells for coarse direction, and pseudopod extensions for zeroing in, guiding the white blood cell towards invaders (bacteria, etc). White blood cells are own little army of sharks.</p>
<p>Why should a dataminer/founder like myself care? The following question gets to the heart of my interest:<br />
<strong>How can modern information tools better mimick our master filters?</strong><br />
Surface matching requires &#8220;information structures&#8221; as well as an internal database of patterns. A flow of information is also needed to cause the surface filters to interact with the information. Both coarse (hashing) and high fidelity solutions can work in tandem to help filter out noise. </p>
<p>Perhaps an even closer analogy, is security software. The same immune system principles can be leveraged to identify and eradicate invaders. There we seek intruder patterns which are being actively designed.</p>
<p>Notes*:<br />
<a HREF="http://www.fortunecity.com/greenfield/rattler/46/blood3.htm">how neutrophils work</a>:</p>
<blockquote><p>
Neutrophils are the most common granulocyte. They have segmented nuclei, typically with 2 to 5 lobes connected together by thin strands of chromatin which can be difficult to see; the cell may thus appear to have multiple nuclei. The nuclear chromatin is condensed into coarse clumps. Small numbers of immature neutrophils or band form neutrophils may be seen in a blood smear. These are incompletely segmented and often have a &#8216;C-shaped&#8217; nucleus.</p>
<p>The cytoplasm of neutrophils contains three types of granule.</p>
<p>Primary granules are non-specific and contain lysosomal enzymes, defensins, and some lysozyme. The granules are similar to lysosomes. They stain aviolet colour when prepared with Wright&#8217;s stain which is commonly used in studying the blood. The enzymes produce hydrogen peroxide which is a powerful anti-bacterial agent.</p>
<p>Secondary granules are specific to neutrophils and stain light pink (&#8216;neutral stain&#8217;). They contain collagenase, to help the cell move through connective tissue, and lactoferrin, which is toxic to bacteria and fungi.</p>
<p>Tertiary granules have only recently been recognised. It is thought that they produce proteins which help the neutrophils to stick to other cells and hence aid the process of phagocytosis.</p>
<p>Once in the area of infection neutrophils respond to chemicals (called chemotaxins which are released by bacteria and dead tissue cells) and move towards the area of highest concentration. Here they begin the process of phagocytosis in which they engulf the offending cells and destroy them with their powerful enzymes. Because this process consumes so much energy the neutrophils glycogen reserves are soon depleted and they die soon after phagocytosis. When the cells die their contents are released and the remnants of their enzymes cause liquefaction of closely adjacent tissue. This results in an accumulation of dead neutrophils, tissue fluid and abnormal materials known as pus.
</p></blockquote>
<p>References:<br />
<a HREF="http://www.fortunecity.com/greenfield/rattler/46/blood3.htm">White blood cells</a><br />
<a HREF="http://en.m.wikipedia.org/wiki/White_blood_cell?wasRedirected=true">Wikipedia on White Blood Cells</a></p>
<img src="http://feeds.feedburner.com/~r/VictusSpiritus/~4/OT0P04UJ-pg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.victusspiritus.com/2010/02/05/our-great-white-shark-is-the-ultimate-filter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.victusspiritus.com/2010/02/05/our-great-white-shark-is-the-ultimate-filter/</feedburner:origLink></item>
		<item>
		<title>Illusive Delusions of Grandeur, or a Peak at Who We Are</title>
		<link>http://feedproxy.google.com/~r/VictusSpiritus/~3/tMA3G748GVw/</link>
		<comments>http://www.victusspiritus.com/2010/02/04/illusive-delusions-of-grandeur-or-a-peak-at-who-we-are/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 13:21:35 +0000</pubDate>
		<dc:creator>Mark Essel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[leadership]]></category>
		<category><![CDATA[mind]]></category>
		<category><![CDATA[spiritual]]></category>

		<guid isPermaLink="false">http://www.victusspiritus.com/2010/02/04/illusive-delusions-of-grandeur-or-a-peak-at-who-we-are/</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F04%2Fillusive-delusions-of-grandeur-or-a-peak-at-who-we-are%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F04%2Fillusive-delusions-of-grandeur-or-a-peak-at-who-we-are%2F" height="61" width="51" /></a></div><p><i>a Han Solo inspired title for a post that dips into the spiritual side</i></p>
<p>Have you ever experienced moments where you felt unstoppable? </p>
<p>I&#8217;m not talking about run of the mill mania, a bloated&#8230;</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F04%2Fillusive-delusions-of-grandeur-or-a-peak-at-who-we-are%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F04%2Fillusive-delusions-of-grandeur-or-a-peak-at-who-we-are%2F" height="61" width="51" /></a></div><p><i>a Han Solo inspired title for a post that dips into the spiritual side</I></p>
<p>Have you ever experienced moments where you felt unstoppable? </p>
<p>I&#8217;m not talking about run of the mill mania, a bloated ego, or a positive feeling of well being. What I refer to is a state of being where all our cylinders fire syncronously. In this state we&#8217;re so deep in the flow that we can&#8217;t imagine leaving it. Our thoughts and actions can flow without hindrance. There&#8217;s this humbling sensation of immense strength that is remarkable because <i>it emanates from us</i>.</p>
<p>It is us. </p>
<p>The sensation of self truth is an aspect of our persona that&#8217;s untarnished by doubt. This is the song of life that is in harmony with our own inner tune. Forgive the new age mumbo jumbo spiritual speak, and think about the precious nature of these moments. There is no stronger signal I can imagine than our honest subconscious needs emitting every ounce of endorphins to echo &#8220;this is the way, go forward&#8221;.</p>
<p>If you can relate to these moments of self truth, unfettered by the noise of distraction, you can align your life to cultivate stronger and deeper moments. The power of this recurring look into who we are, is much more than a feeling of elation or confidence.</p>
<ul>
<li>Your ability to make important decisions is superb. Without the distraction of unimportant tasks, all of our minds processing ability can be leveraged to best estimate changing states and predict likely futures. For developers reading this, you can relate to a fluctuation in your or your colleagues ability to analyze technical challenges. I believe this is a related phenomena</li>
<li>This purposeful and peaceful aura is infectious. Imagine a meme that instills flow, confidence and truth to all that adopt it. I&#8217;m beginning to understand the strength and draw of religions now, although I strongly disagree with their rigidity/control. The acceptance of self truth is dynamic and personal. It&#8217;s hard for me to even properly describe this feeling, your interpretations likely differ</li>
<li>Mental barriers and limits are clearly visible as self built constructs. Their strength in stopping you from pursuing a fantastic path comes only from your belief. As you inspect this faith with a clear mind, you are able to verify the reality of a limitation</li>
<li>Energy, enthusiasm, and joy are in great abundance. The miracle of your existence is founded upon millions of years of impossible odds being overcome. You have no idea what you&#8217;re really capable of until your motives are made perfectly clear, and all of your vitality is focused on a single goal</li>
</ul>
<p>Or they could just be delusions of grandeur <img src='http://www.victusspiritus.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/VictusSpiritus/~4/tMA3G748GVw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.victusspiritus.com/2010/02/04/illusive-delusions-of-grandeur-or-a-peak-at-who-we-are/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.victusspiritus.com/2010/02/04/illusive-delusions-of-grandeur-or-a-peak-at-who-we-are/</feedburner:origLink></item>
		<item>
		<title>The Worker Company Contract</title>
		<link>http://feedproxy.google.com/~r/VictusSpiritus/~3/TEHVwO2inXw/</link>
		<comments>http://www.victusspiritus.com/2010/02/03/the-worker-company-contract/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 13:01:08 +0000</pubDate>
		<dc:creator>Mark Essel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[leadership]]></category>
		<category><![CDATA[social architecture]]></category>
		<category><![CDATA[social change]]></category>
		<category><![CDATA[social design]]></category>

		<guid isPermaLink="false">http://www.victusspiritus.com/2010/02/03/the-worker-company-contract/</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F03%2Fthe-worker-company-contract%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F03%2Fthe-worker-company-contract%2F" height="61" width="51" /></a></div><p>Whether the economy is growing or contracting, the heart of every business are the employees that work to see its success. In these challenging times it has become even more important that we review the&#8230;</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F03%2Fthe-worker-company-contract%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F03%2Fthe-worker-company-contract%2F" height="61" width="51" /></a></div><p>Whether the economy is growing or contracting, the heart of every business are the employees that work to see its success. In these challenging times it has become even more important that we review the relationship and responsibilities between people and the organizations they work within.</p>
<p>There are broad groups that comprise the workforce. Employees are generally compensated the worst but in turn have the greatest job stability and benefits (*cough*). Consultants are generally paid much more per hour or project but have little to no job security. They negotiate one project or job at a time, and receive no benefits. </p>
<p>Consultant:<br />
Expected Responsibilities:</p>
<ul>
<li>Complete a project on a fixed budget or timeline</li>
<li>Execute on the task to the satisfaction of the business</li>
</ul>
<p>Employee:<br />
Expected Responsibilities:</p>
<ul>
<li>Work a part or full time shift weekly</li>
<li>reliably show up for work and execute required tasks</li>
<li>give notice when leaving*</li>
</ul>
<p>Business:<br />
Expected Responsibility to Consultants</p>
<ul>
<li>Define exactly what is needed. The expectation is that consultants will know how to best execute.</li>
<li>Pay what was negotiated for the project</li>
</ul>
<p>Expected Responsibility to Employees</p>
<ul>
<li>Define what work tasks are needed. The employee should know how to best execute those needs. Micro managers are a path to a high churn rate, and zombie employees</li>
<li>Pay the negotiated salary, including benefits like unused vacation, or unemployment benefits for layoffs</li>
</ul>
<p>Although, I much prefer the consultant to employee model (ideally the world would be dominated by free agents), I&#8217;d like to bring to light a despicable practice companies are using. Businesses are treating people that are paid like employees, like consultants when it comes to termination. This is both deceitful and illegal. </p>
<p>A close friend described a roller coaster of inept management at their job. Their management has a history of losing money and making very poor decisions, while concealing this from board members and employees alike. My friend went through a promotion, followed by finding out their entire staff was terminated, followed by a highly uncertain future in just two months. </p>
<p>Upper management is attempting to demote employees into unsuitable positions:  &#8220;forget your years of expertise and training, your new job is to push paper mountains back and forth&#8221;. Their strategy is to force people to quit so the company isn&#8217;t required to cover unemployment benefits. While this is terrible, the business is outdoing itself with the following move. They are liquidating all acrued vacation time, and not paying it out to terminated employees. The employees are also not allowed to use their vacation in the interim. How can this possibly be legal? The upper management should be tarred and feathered in my biased opinion.</p>
<p>*Disclosure on my hypocracy: I took a leave of absence at the end of 2008 with no notice from my then full time position. At the time I wanted to quit, burned out, working without a contract and no self direction (but an abundance of external direction). There was sparse contract work during that period so my selfish move saved the company 5 months of my salary. Thanks again to Ralph for suggesting I think it over, the part time income I make now provides me with just enough to survive, live with my life partner Michelle, and pursue my passion of building <a href="http://victusmedia.com">a business</a>. The situation matches my need to create real value, I may never be <i>wealthier</i>.</p>
<img src="http://feeds.feedburner.com/~r/VictusSpiritus/~4/TEHVwO2inXw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.victusspiritus.com/2010/02/03/the-worker-company-contract/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.victusspiritus.com/2010/02/03/the-worker-company-contract/</feedburner:origLink></item>
		<item>
		<title>Don’t let a little thing like odds stop you</title>
		<link>http://feedproxy.google.com/~r/VictusSpiritus/~3/SJilJTmmG_Y/</link>
		<comments>http://www.victusspiritus.com/2010/02/02/dont-let-a-little-thing-like-odds-stop-you/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 13:26:13 +0000</pubDate>
		<dc:creator>Mark Essel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Decision making]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[leadership]]></category>
		<category><![CDATA[mind]]></category>
		<category><![CDATA[startups]]></category>

		<guid isPermaLink="false">http://www.victusspiritus.com/?p=2922</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F02%2Fdont-let-a-little-thing-like-odds-stop-you%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F02%2Fdont-let-a-little-thing-like-odds-stop-you%2F" height="61" width="51" /></a></div><p></p>
<p>Imagine relegating every important choice to probabilistically dominant outcomes? This decision architecture attempts to rigorously bake out every conditional factor and estimate it&#8217;s impact on a particular choice. The intriguing aspect of this method,&#8230;</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F02%2Fdont-let-a-little-thing-like-odds-stop-you%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F02%2Fdont-let-a-little-thing-like-odds-stop-you%2F" height="61" width="51" /></a></div><p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/TKsVVmOGV9I&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;feature=player_embedded&#038;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/TKsVVmOGV9I&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;feature=player_embedded&#038;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Imagine relegating every important choice to probabilistically dominant outcomes? This decision architecture attempts to rigorously bake out every conditional factor and estimate it&#8217;s impact on a particular choice. The intriguing aspect of this method, is that our mind already functions much like this on a tiny level. </p>
<p>The complicated network of neural connections can be broken down into massive clusters of linked neurons. Each synaptic event will trigger wave like propagation throughout responsive nodes. The pathways, feedback, and weighting all lead to macro decision events. Habit weighs heavily on our minds decision making ability, and serves as an autopilot or default response. </p>
<p>All of our minds available information is leveraged in a moment to make a decision which will determine our actions. For the greater part we are socially judged by the efficacy of our decisions and corresponding actions. The ultimate representation of this ideal is a true meritocracy. The realities of game theory dictate our current wealth distribution model, but without faith that direction and effort lead to earned rewards, the system would rapidly unravel. <strong>Any system which promotes a disconnect between motivation and value is doomed to collapse</strong>. I tried to come up with a fitness criteria for evolving economic models and their efficiency in evaluating individual contribution but gave up due to weariness. I promise to come back to this topic another time.  </p>
<h2>Risk versus Reward</h2>
<p>What am I risking versus my probability of payout? How much confidence should we place on our estimate of success, and if we&#8217;re wrong how much of an upside do we lose out on from missing a sweet deal. A trap of probability weighted decision systems is choosing a mediocre path. If every decision is dictated by consensus we are left with a moderate outcome which equally dissatisifies everyone <img src='http://www.victusspiritus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<h2>Reality Distortion Fields Influence Decisions</h2>
<p>As an information hungry startup founder, I have encountered the phrase &#8220;reality distortion field&#8221; used by many investors and entrepreneurs (my first experience with the term was at <a HREF="http://steveblank.com/2009/07/02/rocket-science-2-drinking-the-kool-aid/">Steve Blank&#8217;s blog</a>). I have come to respect this concept as it represents much more than charm, influence, or deception. Reality distortion can be leveraged on a space which is already out of alignment. Manifest enough social gravity, and you may shape the current landscape into a legendary beauty worthy of future awe and emulation.     </p>
<p><strong>Earn the trust of the right community, and you can literally change the world</strong>.</p>
<p>Related References:</p>
<ul>
<li>Wikipedia on <a href="http://en.m.wikipedia.org/wiki/Decision_making?wasRedirected=true"> decision making</a> and <a href="http://en.m.wikipedia.org/wiki/Decision_Analysis">Decision Analyses</a></li>
<li>From Britannica, <a HREF="http://www.britannica.com/blogs/2009/07/neuroeconomics-studying-how-we-make-decisions/">How we make decisions</a></li>
</ul>
<img src="http://feeds.feedburner.com/~r/VictusSpiritus/~4/SJilJTmmG_Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.victusspiritus.com/2010/02/02/dont-let-a-little-thing-like-odds-stop-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.victusspiritus.com/2010/02/02/dont-let-a-little-thing-like-odds-stop-you/</feedburner:origLink></item>
		<item>
		<title>Your startup needs help, but when &amp; how do you recruit your First Hire?</title>
		<link>http://feedproxy.google.com/~r/VictusSpiritus/~3/uUs-NVEbO1I/</link>
		<comments>http://www.victusspiritus.com/2010/02/01/your-startup-needs-help-but-when-how-do-you-recruit-your-first-hire/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 13:40:49 +0000</pubDate>
		<dc:creator>Mark Essel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[finance/investment]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[leadership]]></category>
		<category><![CDATA[startups]]></category>

		<guid isPermaLink="false">http://www.victusspiritus.com/?p=2918</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F01%2Fyour-startup-needs-help-but-when-how-do-you-recruit-your-first-hire%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F01%2Fyour-startup-needs-help-but-when-how-do-you-recruit-your-first-hire%2F" height="61" width="51" /></a></div><p>At first look building a business on a macro level appears to be a linear series of steps. From my vantage, forming a startup and building it into a business is part art form, part&#8230;</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F01%2Fyour-startup-needs-help-but-when-how-do-you-recruit-your-first-hire%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F01%2Fyour-startup-needs-help-but-when-how-do-you-recruit-your-first-hire%2F" height="61" width="51" /></a></div><p>At first look building a business on a macro level appears to be a linear series of steps. From my vantage, forming a startup and building it into a business is part art form, part leadership/negotiating reality distortion, and a heavy dose of successful practices. The framework leveraged to build out a startup needs to be &#8220;precompiled&#8221; answers to common questions. As a founder you will become overwhelmed with minutia if you attempt to micromanage all aspects of a growing business. If you want to do everyone&#8217;s job be a consultant not a founder. </p>
<p>Here&#8217;s the external view of business conception:</p>
<blockquote><p>One or a few founders hash out and build a working prototype. Then they seek early funding and hire super employees and score some marketing assistance. Then seek out more funding or leverage revenue from early customers to build out the business. Down the road they sell the business or continue building it by efficiently using revenue or investments to hire and acquire infrastructure.</p></blockquote>
<p>The reality is that building a business is a threaded overlapping set of priorities and needs. In order to even approach investors you should identify a market area of proven traction. You have to look for employees far in advance of when you desparately need their help. <i>You&#8217;ll count on early employees to connect to trusted associates who can work within the developing furnace of value creation that defines a startup.</i> From those with experience leading startups (<a href="http://www.inc.com/magazine/20100201/the-way-i-work-paul-english-of-kayak_Printer_Friendly.html">Paul English of Kayak</a>), only two out of three hires will match the work culture you cultivate. Those odds aren&#8217;t too bad compared to the small percentage of startups that succeed each year.  </p>
<p>Tyler Gillies (Chief Tech and cofounder of Victus Media) and I have been discussing plans for our first hire. The following is how I see the major aspects of the decision:</p>
<ul>
<li>When do we hire? If we seek help now it can greatly improve the businesses chance of growing so it&#8217;s on top of my priority list. If we put off hiring until we have revenue/growth/investment it would be more natural timing. But we may need help at that point, not three months later</li>
<li>Who do we approach? There is an enormous pool of talented folks who could be ideally suited to our startup both outlook and skill wise. What skill areas do we need most help with now, and will we need as the business develops. Now we need UI/UX aid, as well as engineering. Hiring also means legal/accounting aid. Later we&#8217;ll need more hacker/engineer superstars and perhaps marketing assistance</li>
<li>How will we hire our first employee? We can offer an employee a mix of cash and equity, go after a short term consultant with pure cash, or bring in someone willing to work purely for equity. How much equity, and what time frame this is earned over are vital parts of the negotiation. We&#8217;ll certainly need legal help setting up the business officially with vesting for both Tyler, myself, and any equity hires</Li></ul>
<p>Thus far I&#8217;ve put off the idea of heavy recruiting. I have occassionally laid down a virtual landing page or two for those interested, but before any deals can be worked out I need to straighten the when, who and how.</p>
<img src="http://feeds.feedburner.com/~r/VictusSpiritus/~4/uUs-NVEbO1I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.victusspiritus.com/2010/02/01/your-startup-needs-help-but-when-how-do-you-recruit-your-first-hire/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.victusspiritus.com/2010/02/01/your-startup-needs-help-but-when-how-do-you-recruit-your-first-hire/</feedburner:origLink></item>
		<item>
		<title>Back in Action: iTunes is the only #fail for putting on Linux pants</title>
		<link>http://feedproxy.google.com/~r/VictusSpiritus/~3/7Yb4LDXvz40/</link>
		<comments>http://www.victusspiritus.com/2010/02/01/back-in-action-itunes-is-the-only-fail-for-putting-on-linux-pants/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 12:48:57 +0000</pubDate>
		<dc:creator>Mark Essel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[web/tech]]></category>

		<guid isPermaLink="false">http://www.victusspiritus.com/2010/02/01/back-in-action-itunes-is-the-only-fail-for-putting-on-linux-pants/</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F01%2Fback-in-action-itunes-is-the-only-fail-for-putting-on-linux-pants%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F01%2Fback-in-action-itunes-is-the-only-fail-for-putting-on-linux-pants%2F" height="61" width="51" /></a></div><p>Yesterday evening I was back to nearly full functionality after leaving my old friend Windows. The surprising casualty of the switch from Windows to Ubuntu Linux is iTunes. Apple hasn&#8217;t released a Linux client yet,&#8230;</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F01%2Fback-in-action-itunes-is-the-only-fail-for-putting-on-linux-pants%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.victusspiritus.com%2F2010%2F02%2F01%2Fback-in-action-itunes-is-the-only-fail-for-putting-on-linux-pants%2F" height="61" width="51" /></a></div><p>Yesterday evening I was back to nearly full functionality after leaving my old friend Windows. The surprising casualty of the switch from Windows to Ubuntu Linux is iTunes. Apple hasn&#8217;t released a Linux client yet, as I suspect the unix to unix port to be a heavy burden (JFDI).</p>
<p>The largest troublemaker was getting my Logitech (MX518) mouse to function. I found a <a href="http://articles.rootsmith.ca/linux/logitech-mx-revolution-mouse-on-linux">helpful web guide</a> that lead me to edit xorg.conf and set some options (note: I didn&#8217;t need to change the server layout file). After that I grabbed the following must have (for me) software: </p>
<ul>
<li>Google Chrome: preferred browser, email client, social media UI, backup blog platform</li>
<li>Java Runtime Environment/Java Developer Kit, (bundled with Netbeans): must have for eclipse or JVM languages (scala)</li>
<li>Adobe Flash</li>
<li>Ruby, Gem Installer, Rails, Apatana RadRails: our web development environment at Victus Media &#038; my favorite IDE for ruby/rails, JavaScript or even php. Supporting installs, many gems, Mongrel, Sqlite, and dependencies</li>
<li>git: a promising software management tool</li>
<li>Dropbox: fantastic file sharing &#038; syncronization</Li>
<li>VLC media player</li>
<li>WINE: an emulator for Windows. Have your cake and eat it? Tried making iTunes work with this but found additional tricks were needed to get it to connect to my iPhone. It could still come in handy for must have winOS software</li>
<li>VirtualBox: another virtual machine emulator, this one from Sun. I enjoyed Centos under my windows os, may install windows in VB to see how it runs</Li>
</ul>
<p>The installation of the software was done through command line:<br />
<i>sudo apt-get ApplicationName</i><br />
Or by using the Ubuntu package handler in the UI (under the applications tab).<br />
And the last installation method I used was clicking on .deb files. All methods worked equally well.</p>
<p>Installation was straight forward and setup didn&#8217;t vary much from a windows experience. It wasn&#8217;t quite as smooth as setting up Michelle&#8217;s iMac (she did it all easily and is the bane of all computers). It wasn&#8217;t substantially harder, although it was significantly less expensive.</p>
<img src="http://feeds.feedburner.com/~r/VictusSpiritus/~4/7Yb4LDXvz40" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.victusspiritus.com/2010/02/01/back-in-action-itunes-is-the-only-fail-for-putting-on-linux-pants/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.victusspiritus.com/2010/02/01/back-in-action-itunes-is-the-only-fail-for-putting-on-linux-pants/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 2.426 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-02-09 05:37:34 -->
