<?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/"
	>

<channel>
	<title>Likematter Blog</title>
	<atom:link href="http://blog.likematter.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.likematter.com</link>
	<description></description>
	<pubDate>Thu, 16 Apr 2009 16:11:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Extending the Python Wrapper for Calais to Support RDF</title>
		<link>http://blog.likematter.com/2009/04/16/extending-the-python-wrapper-for-calais-to-support-rdf/</link>
		<comments>http://blog.likematter.com/2009/04/16/extending-the-python-wrapper-for-calais-to-support-rdf/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 16:11:38 +0000</pubDate>
		<dc:creator>Mark Soper</dc:creator>
		
		<category><![CDATA[Natural Language Processing]]></category>

		<category><![CDATA[Semantic Web]]></category>

		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://blog.likematter.com/?p=148</guid>
		<description><![CDATA[
We&#8217;ve been working for some time with python-calais, a Python wrapper for the Calais Semantic Text Annotation Service led by Jordan Dimov.  For Likematter, we extended its native support for Calais&#8217; JSON response type to include support for Calais&#8217; RDF output.  Several people expressed interest in using rdflib with Calais at last night&#8217;s Python meetup [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-152" title="calais_logo" src="http://blog.likematter.com/wp-content/uploads/calais_logo.png" alt="calais_logo" width="215" height="94" /></p>
<p>We&#8217;ve been working for some time with <a href="http://code.google.com/p/python-calais/">python-calais</a>, a Python wrapper for the <a href="http://opencalais.com">Calais Semantic Text Annotation Service</a> led by <a href="http://www.a115.bg/en/">Jordan Dimov</a>.  For <a href="http://likematter.com/">Likematter</a>, we extended its native support for Calais&#8217; JSON response type to include support for Calais&#8217; RDF output.  Several people expressed interest in using rdflib with Calais at last night&#8217;s <a href="http://python.meetup.com/181/">Python meetup in Cambridge, MA</a> - so I&#8217;ve packaged up our RDF extension as a starting point/example for folks looking to process Calais RDF in Python apps.</p>
<p>The reason to use RDF over JSON is that the RDF output contains a fuller representation of the analysis Calais produces.   As just one minor example, the full de-referenceable URLs for each entity type (e.g. Country, Person, etc.) aren&#8217;t present in the JSON.  The drawback to using RDF is that it&#8217;s much harder to interpret and translate into Python objects than JSON.   The code here includes the SPARQL to obtain only part of what Calais produces, entities and categories, but should serve as a starting point to working with Calais&#8217; RDF.</p>
<p>Our RDF extension has been  <a href="http://code.google.com/p/python-calais/source/browse/trunk/calais-rdf.py">added</a> to the python-calais google-code repository.  The key SPARQL queries for categories and entities are below.</p>
<p>
<hr /></p>
<p>CATEGORY_QUERY = { &#8216;fields&#8217; : ['docId', 'category', 'categoryName', 'score'],<br />
&#8216;SPARQL&#8217; : &#8220;&#8221;"<br />
PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;<br />
PREFIX cp: &lt;http://s.opencalais.com/1/pred/&gt;<br />
SELECT ?docId ?category ?categoryName ?score<br />
WHERE { ?doc cp:docId ?docId .<br />
?doc cp:category ?category .<br />
?doc cp:categoryName ?categoryName .<br />
?doc cp:score ?score . }<br />
&#8220;&#8221;"  }</p>
<p>ENTITY_QUERY = { &#8216;fields&#8217; : ['entityId', 'name', 'type', 'relevance', 'resolves_to_uri', 'resolves_to_type', 'resolves_to_name', 'resolves_to_score'],<br />
&#8216;SPARQL&#8217; : &#8220;&#8221;"<br />
PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;<br />
PREFIX cp: &lt;http://s.opencalais.com/1/pred/&gt;<br />
SELECT ?entity ?name ?type ?relevance ?res_uri ?res_type ?res_name ?res_score<br />
WHERE {?entity cp:name ?name .<br />
?entity rdf:type ?type .<br />
?rel_uri cp:subject ?entity .<br />
?rel_uri cp:relevance ?relevance .<br />
OPTIONAL { ?res_uri cp:subject ?entity .<br />
?res_uri rdf:type ?res_type .<br />
?res_uri cp:name ?res_name . }<br />
}<br />
&#8220;&#8221;"  }</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.likematter.com/2009/04/16/extending-the-python-wrapper-for-calais-to-support-rdf/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Recommendation Engine based on &#8220;Gut Feelings&#8221;?</title>
		<link>http://blog.likematter.com/2009/04/09/recommendation-engine-based-on-gut-feelings/</link>
		<comments>http://blog.likematter.com/2009/04/09/recommendation-engine-based-on-gut-feelings/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 13:13:12 +0000</pubDate>
		<dc:creator>Mark Soper</dc:creator>
		
		<category><![CDATA[Analytics & Data Mining]]></category>

		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://blog.likematter.com/?p=127</guid>
		<description><![CDATA[ A recent blog post, Bijan Sabet&#8217;s &#8220;Purposefully Constrained&#8221;, points out the importance of &#8220;simple is better&#8221; in achieving successes like Twitter and Google.  Reading it reminded me of a  book called &#8220;Gut Feelings&#8221; by Gerd Gigerenzer that has been influential in the development of the personalization engine for Likematter.  Though the cover does little [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Gut Feelings" src="http://us.penguingroup.com/static/covers/all/8/6/9780143113768L.jpg" alt="" width="105" height="161" /> A recent blog post, <a href="http://bijansabet.com/post/93120455/purposefully-constrained">Bijan Sabet&#8217;s &#8220;Purposefully Constrained&#8221;</a>, points out the importance of &#8220;simple is better&#8221; in achieving successes like Twitter and Google.  Reading it reminded me of a  book called <a href="http://www.nytimes.com/2007/08/28/science/28conv.html?_r=1">&#8220;Gut Feelings&#8221; by Gerd Gigerenzer</a> that has been influential in the development of the personalization engine for <a href="http://likematter.com">Likematter</a>.  Though the cover does little to suggest it, much of this book deals with the importance of constraining available information in making successful decisions.</p>
<p>It&#8217;s intuitive that reducing information, much like eliminating functionality, simplifies our tasks, making it easier and faster.  But is the resulting decision better?  Do we achieve better results with more data to work with, more capabilities in our tools?  Gigerenzer&#8217;s research is about showing that not only does less mean easier, but less actually means better results.  He cites evidence from his work and elsewhere to support his claim that simple rule-of-thumb heuristics can actually outperform data-hungry, expensive algorithms in making a wide range of decisions.</p>
<p>Making sense of massive amounts of data in real time with limited computing resources requires the same problem-solving process that he describes in this book:</p>
<ol>
<li>Get good at knowing what information is important</li>
<li>Have simple rules, but make sure that they&#8217;re the right ones</li>
</ol>
<p>What might seem like a shortcut can actually produce a user advantage on top of being cheaper and faster.  This is encouraging!</p>
<p>I&#8217;m curious to know if anyone has looked at this effect with respect to user experience.  What, beyond eliminating negatives through ease-of-use, speed, efficiency, and cost savings, has the constraining of Twitter&#8217;s message size or Google&#8217;s search page layout done to create the core value that&#8217;s made these huge successes?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.likematter.com/2009/04/09/recommendation-engine-based-on-gut-feelings/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Release: Concept Clouds &amp; Highlighting for Better Control and Understanding</title>
		<link>http://blog.likematter.com/2009/04/01/new-features-concept-clouds-highlighting-for-better-control-and-understanding/</link>
		<comments>http://blog.likematter.com/2009/04/01/new-features-concept-clouds-highlighting-for-better-control-and-understanding/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 19:52:36 +0000</pubDate>
		<dc:creator>Mark Soper</dc:creator>
		
		<category><![CDATA[Breaking News]]></category>

		<category><![CDATA[Job Search]]></category>

		<category><![CDATA[Personalized News]]></category>

		<category><![CDATA[Semantic Web]]></category>

		<category><![CDATA[Social Bookmarking]]></category>

		<guid isPermaLink="false">http://blog.likematter.com/?p=105</guid>
		<description><![CDATA[ A new release of Likematter is available now.  The most common suggestions we&#8217;ve gotten from users to this point and the steps taken in this release to respond to them:
1. I want more understanding and control of how new content is matched to the things I like.
The most noticeable aspect of the new interface [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-112" title="picture-8" src="http://blog.likematter.com/wp-content/uploads/picture-8-700x439.png" alt="picture-8" width="700" height="373" /> A new release of Likematter is available now.  The most common suggestions we&#8217;ve gotten from users to this point and the steps taken in this release to respond to them:</p>
<p><strong>1. I want more understanding and control of how new content is matched to the things I like.</strong></p>
<p>The most noticeable aspect of the new interface is the color-highlighting of content based on it&#8217;s relevance to my interest profile - thanks to <a href="http://jazkarta.com/news/aaron-vanderlip-joins-jazkarta">Aaron VanDerlip of Jazkarta</a> for suggesting this enhancement.  Numeric scores are also displayed with a red score indicator - clicking on the score displays detail about the source and specific concepts that factored in to the score.  These improvements will make it easier to understand how content is prioritized for each user.</p>
<p>User also have more control over how the system works with this new interface.  As shown in the screenshot, the like button now offers a preview/edit window.  By default, the source and all key concepts are added to your profile.  You can edit these selections and tag the article with concepts we failed to capture automatically.  And each user&#8217;s profile now displays an overview of the collection and a tag cloud tracking the concept present in the material you&#8217;ve collected (see screenshot).  Concepts are sized to estimate the strength and uniqueness to this individual user, using a calculation based on <a href="http://en.wikipedia.org/wiki/Tf-idf">term frequency-inverse document frequency(tf-idf)</a> weighting.  In the near future, users will be able to use this cloud to modify their profiles, control how the system is working for them, and manage their collections to easily refer back to items they&#8217;ve bookmarked in the past.</p>
<p><strong>2. As a new user, the experience is frustrating because I&#8217;m not seeing articles that I like fast enough - is this thing working?</strong></p>
<p>In the new release, we&#8217;ve increased the sensitivity of the matching algorithm so that results should appear immediately, and we&#8217;ll continue to make improvements in how well it performs with profiles that have only a few liked items.  The engine works better as profiles grow, sometimes requiring 10 or more items to reach a steady level.  To overcome this, we&#8217;re working on two new features that will make it easier to build up a new profile.</p>
<p><em>Coming soon:</em></p>
<ul>
<li>Search Box - A search box, which can be used to focus on specific topics and populate your profile with much wider range of concepts</li>
<li>Import Favorite Content - bring in your bookmarks and more from other sites you use to collect stuff you like</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.likematter.com/2009/04/01/new-features-concept-clouds-highlighting-for-better-control-and-understanding/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Find Breaking News and Jobs with Likematter</title>
		<link>http://blog.likematter.com/2009/03/11/find-breaking-news-and-jobs-with-likematter/</link>
		<comments>http://blog.likematter.com/2009/03/11/find-breaking-news-and-jobs-with-likematter/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 21:29:59 +0000</pubDate>
		<dc:creator>Mark Soper</dc:creator>
		
		<category><![CDATA[Breaking News]]></category>

		<category><![CDATA[Career Services]]></category>

		<category><![CDATA[Entrepreneurship]]></category>

		<category><![CDATA[Job Search]]></category>

		<category><![CDATA[Natural Language Processing]]></category>

		<category><![CDATA[Personalized News]]></category>

		<category><![CDATA[Semantic Web]]></category>

		<category><![CDATA[Social Bookmarking]]></category>

		<guid isPermaLink="false">http://blog.likematter.com/?p=53</guid>
		<description><![CDATA[




I&#8217;m pleased to announce that the Likematter alpha is now available for open registration.  Likematter is a personal lens for the web.  It helps you stay on top of emerging content like breaking news and career opportunities.  In doing so, you automatically build a profile of your interests that you control and that will get [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">
<dl id="attachment_59" class="wp-caption alignnone" style="width: 710px;">
<dt class="wp-caption-dt"><a href="http://likematter.com"><img class="size-large wp-image-62" title="likematter_screenshot1" src="http://blog.likematter.com/wp-content/uploads/likematter_screenshot1-1024x643.png" alt="likematter_screenshot1" width="700" height="450" /></a></dt>
</dl>
</div>
<p>I&#8217;m pleased to announce that the <a title="Likematter" href="http://likematter.com">Likematter alpha</a> is now available for open registration.  Likematter is a personal lens for the web.  It helps you stay on top of emerging content like breaking news and career opportunities.  In doing so, you automatically build a profile of your interests that you control and that will get better and better at filtering the latest information for you.</p>
<p>With some good lessons learned from our limited-availability pilot, we&#8217;ve made big adjustments.  Most significantly, we&#8217;ve added breaking news to the personalized job listings that were the focus of the original JobGravy career site.  The most resounding feedback we got from a group of much-appreciated early users was that they should be able to apply their interest profile to content beyond job listings, especially breaking news, and that the process of building the profile should be easier.  The result is re-engineered service, called Likematter, that hits both of these points:  1)Your profile can be used to filter news and jobs today, with more content channels coming soon.  2)The main way to indicate what you like is by using the <span class="like_button"><img src="http://s3.amazonaws.com/jg_img/like_button.png" alt="" width="15" /> <a title="Likematter" href="http://likematter.com"> Like it!</a></span> button highlighted in red in the screenshot above.  There will once again be support for import of bookmarks and favorites from other sources soon.</p>
<p>Likematter is easy to use:</p>
<ol>
<li><a href="http://likematter.com/signup"><strong>Sign Up</strong><br />
</a></li>
<li><strong>Start reading</strong> - start reading news or browsing jobs (jobs will be back online shortly).  Clicking an entry expands it to reveal additional information.</li>
<li><strong>Like what you like</strong> - Click the  <span class="like_button"><img src="http://s3.amazonaws.com/jg_img/like_button.png" alt="" width="15" /> <a title="Likematter" href="http://likematter.com"> Like it!</a></span> button when something interests you.</li>
<li><strong>Likematter learns</strong> - the system learns from your choices over time, prioritizing your topics so that your unique interests are emphasized.</li>
<li><strong>Find what you want automatically</strong> - Likematter gets better and better at displaying content that relates to your interests as they evolve.  The red bars at the right of each line (see screenshot) indicate the strength of the match.  They make it easier to scan the page for good content.</li>
<li><strong>Maintain control</strong> - Likematter works well without any additional tweaking, but with the forthcoming release of profile management, you&#8217;ll be able to refer back to content you&#8217;ve liked in the past, adjust how your profile filters content, and have greater control over the content sources and publications you have access to.</li>
</ol>
<p>What does it do for you?</p>
<ol>
<li><strong>Helps you stay on top of real-time information across a wide range of interests, automatically </strong>- As your profile grows, Likematter gets better at making sure the content on your page is the best, most current information across the whole range of diverse interests you have - without having to manually tell the system what you want.  So, in addition to being able to search for specific topics (search bar coming soon, along with controls like paging and a time window zoom control to point Likematter at the right ), you are able to sit back and let Likematter search for a range of things you&#8217;re likely to find interesting and put them in front of you in a format that&#8217;s easy to read and navigate.</li>
<li><strong>Develops valuable information about your personal interests - data which you own and control - </strong> Likematter also functions as a way to very easily bookmark and record what you&#8217;re interested in over time.  Eliminating the need for <a title="Tagging" href="http://en.wikipedia.org/wiki/Tag_(metadata)">tagging</a>, Likematter automatically extracts the key concepts from each item you like, using the powerful <a title="Calais" href="http://opencalais.com">Calais Semantic Web Engine</a>.  As the profile management capability currently under development becomes available, you&#8217;ll be able to refer back to the material you&#8217;ve saved, organize your information by topic, control how Likematter works on your behalf, and share your interests and the content your profile generates with friends.  You have complete control over your profile because your data belongs to you.  We commit to allow you to easily export your data at any time and agree to remove your data from Likematter at at your request - see full <a href="http://likematter.com/policy">data policy</a> for more information.</li>
<li><strong>Links my news interests to career opportunities </strong>- By using Likematter to find and read the latest news that you like, you develop a profile that carries over to help you in other areas like staying aware of good career opportunities in your field.  Switch over to the the Jobs tab and the interests built up from reading news will automatically apply to identifying good job listings.  In the future you&#8217;ll be able to use your profile to help you find good content in areas of your choice by pointing Likematter at real-time media like <a title="Twitter" href="http://twitter.com">Twitter</a>.</li>
</ol>
<p><a title="Twitter" href="http://twitter.com"></a></p>
<p>The development of Likematter is led by Denise Ichinco and <a href="http://marksoper.net/">Mark Soper</a> (<a title="Mark" href="http://marksoper.net">personal</a>, <a title="Likematter" href="http://blog.likematter.com">work</a>, <a title="LinkedIn" href="http://www.linkedin.com/pub/0/899/381">LinkedIn</a>, <a title="Twitter" href="http://twitter.com/marksoper">Twitter</a>).  We welcome <a title="Contact Likematter" href="http://likematter.com/contact/">thoughts, questions, and other feedback</a>.  Enjoy!</p>
<p>Mark</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.likematter.com/2009/03/11/find-breaking-news-and-jobs-with-likematter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Introducing JobGravy</title>
		<link>http://blog.likematter.com/2008/10/17/introducing-jobgravy/</link>
		<comments>http://blog.likematter.com/2008/10/17/introducing-jobgravy/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 00:04:39 +0000</pubDate>
		<dc:creator>Mark Soper</dc:creator>
		
		<category><![CDATA[Career Services]]></category>

		<category><![CDATA[Job Search]]></category>

		<category><![CDATA[Semantic Web]]></category>

		<guid isPermaLink="false">http://blog.jobgravy.com/?p=50</guid>
		<description><![CDATA[
Welcome to the new JobGravy Blog!
JobGravy is a new internet career service startup based in part on the technology and business efforts of Alluvial Labs, which (along with the original Alluvial Labs Blog) will be a part of JobGravy moving forward. Â We are working on technology that will allow people to organize their own internet [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jobgravy.com/"><img class="alignnone size-full wp-image-51" title="Job Gravy Logo" src="http://blog.jobgravy.com/wp-content/uploads/jgl.png" alt="Job Gravy Logo" width="180" height="38" /></a></p>
<p>Welcome to the new <a href="http://blog.jobgravy.com">JobGravy Blog</a>!</p>
<p><a href="http://jobgravy.com">JobGravy</a> is a new internet career service startup based in part on the technology and business efforts of <a href="http://www.alluviallabs.com/">Alluvial Labs</a>, which (along with the original <a href="http://blog.alluviallabs.com">Alluvial Labs Blog</a>) will be a part of JobGravy moving forward. Â We are working on technology that will allow people to organize their own internet data footprints into structured information assets that they can use in a career context. Â For example, you could with little effort use it to monitor all new job openings that fit at least five of your more unique (less widespread in job market) interests without having to know which five in advance and without having to fill out any resume profiles or questionnaires. Â We believe this kind of capability will mean those doing targeted searches can find better leads more quickly and will allow the folks who might otherwise not be willing to invest in staying alert for the potential lifechanger to overcome the hurdles to do so.</p>
<p>The service is in development, with an <a href="http://jobgravy.com/invite">alpha program</a> being rolled out in the near future. Â I welcome you to check out the information about the company and product on <a href="http://jobgravy.com">JobGravy.com</a> and look forward to hearing your thoughts about it.</p>
<p>Mark Soper</p>
<p>(*) A special thanks to Vera Novakova for designing the JobGravy logo</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.likematter.com/2008/10/17/introducing-jobgravy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Paul Harrison inquires about JobGravy at OnRec in Chicago</title>
		<link>http://blog.likematter.com/2008/09/26/paul-harrison-inquires-about-jobgravy-at-onrec-in-chicago/</link>
		<comments>http://blog.likematter.com/2008/09/26/paul-harrison-inquires-about-jobgravy-at-onrec-in-chicago/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 22:28:08 +0000</pubDate>
		<dc:creator>Mark Soper</dc:creator>
		
		<category><![CDATA[HR Technology]]></category>

		<category><![CDATA[Job Search]]></category>

		<guid isPermaLink="false">http://blog.alluviallabs.com/?p=49</guid>
		<description><![CDATA[Paul Harrison of Carve Consulting was good enough to interview me regarding the forthcoming JobGravy service at the OnRec Expo earlier this month in Chicago:

Paul alludes to comments made by Gautam Godhwani of Simply Hired.Â  Gautam pointed out that the reason search engines like Google occupy such an important commercial position is because search is [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Paul Harrison" href="http://digitalrecruiting.typepad.co.uk/digital_recruiting/paul_harrison/">Paul Harrison</a> of <a href="http://www.carveconsulting.com/blog/">Carve Consulting</a> was good enough to interview me regarding the forthcoming <a title="JobGravy" href="http://jobgravy.com/">JobGravy</a> service at the <a title="OnRec Expo" href="http://www.onrec.com/conferences/090908/">OnRec Expo</a> earlier this month in Chicago:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/aa5m0hmM4Ws&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/aa5m0hmM4Ws&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>Paul alludes to comments made by <a href="http://www.simplyhired.com/a/our-company/team">Gautam Godhwani</a> of <a href="http://www.simplyhired.com/">Simply Hired</a>.Â  Gautam pointed out that the reason search engines like Google occupy such an important commercial position is because search is such a good indicator of a person&#8217;s <em>intent</em> to take immediate action.</p>
<p><a href="http://www.jobboarders.com/video/video/show?id=882452%3AVideo%3A33115">Kevin Krim of Yahoo! Hot Jobs later described</a> much room for improvement in techniques used in job search and other job matching applications, suggesting that we can do better at using available information to make the process easier for employers and professionals.</p>
<p>JobGravy answers Kevin&#8217;s call for better matching by expanding Gautam&#8217;s notion of intent to include a broader set of information about the individual&#8217;s interests (i.e. history of intent) in the search process.</p>
<p>JobGravy is under development, with an alpha release to become available in October 2008.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.likematter.com/2008/09/26/paul-harrison-inquires-about-jobgravy-at-onrec-in-chicago/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Calais on Jobs Data - Part 2</title>
		<link>http://blog.likematter.com/2008/09/09/calais-on-jobs-data-part-2/</link>
		<comments>http://blog.likematter.com/2008/09/09/calais-on-jobs-data-part-2/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 21:34:37 +0000</pubDate>
		<dc:creator>Mark Soper</dc:creator>
		
		<category><![CDATA[Job Search]]></category>

		<category><![CDATA[Semantic Web]]></category>

		<category><![CDATA[Text Mining]]></category>

		<guid isPermaLink="false">http://blog.alluviallabs.com/?p=47</guid>
		<description><![CDATA[



Six months ago we published a breakdown of the technologies occurring in several thousand tech job listings.  We recently re-ran the experiment, once again using the Calais natural language processing engine.  Last time around, we noted a shortcoming of Calais against this kind of data:  it failed to identify several key programming [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td><img src="http://blog.alluviallabs.com/wp-content/uploads/calaislogo.gif" alt="calaislogo.gif" width="111" height="142" /></td>
<td>Six months ago we published <a title="Alluvial Labs Blog - OpenCalais on Jobs" href="http://blog.alluviallabs.com/2008/04/16/opencalais-on-jobs-data/">a breakdown of the technologies</a> occurring in several thousand tech job listings.  We recently re-ran the experiment, once again using the <a href="http://opencalais.com/">Calais</a> natural language processing engine.  Last time around, we noted a shortcoming of Calais against this kind of data:  it failed to identify several key programming languages like Ruby and Python. Fortunately the Calais folks have again demonstrated their commitment to being highly responsive to their user community with their new <a title="Calais R3" href="http://opencalais.com/node/5249">R3 release</a>.Â  Not only have they addressed this specific issue, but they&#8217;ve introduced two new tech-oriented categories (Programming Languages and Operating Systems) and a medical technology category (Medical Treatments)</td>
</tr>
</tbody>
</table>
<p><strong>Top 25 Technologies, Programming Languages, Operating Systems, and Medical Treatments occurring in 5,000 tech job postings (*)</strong></p>
<p>The following statistics can be used to approximate the relative popularity of various computer and medical technologies among employers in August 2008, with the caveat that the sampling was not done rigorously and is not necessarily representative of the broader US job picture.</p>
<table style="width: 80%;" border="0" cellspacing="1" cellpadding="1">
<tbody>
<tr>
<td style="font-weight: bold;">Technology</td>
<td style="font-weight: bold;">% of listings</td>
</tr>
<tr>
<td>Ajax</td>
<td>32.51</td>
</tr>
<tr>
<td>Wi-Fi</td>
<td>12.86</td>
</tr>
<tr>
<td>Linux</td>
<td>9.91</td>
</tr>
<tr>
<td>Information Technology</td>
<td>9.50</td>
</tr>
<tr>
<td>Html</td>
<td>8.65</td>
</tr>
<tr>
<td>Java</td>
<td>7.73</td>
</tr>
<tr>
<td>Search Engine</td>
<td>4.98</td>
</tr>
<tr>
<td>Dom</td>
<td>4.52</td>
</tr>
<tr>
<td>Php</td>
<td>4.50</td>
</tr>
<tr>
<td>Unix</td>
<td>4.17</td>
</tr>
<tr>
<td>Telecommuting</td>
<td>4.03</td>
</tr>
<tr>
<td>Perl</td>
<td>3.87</td>
</tr>
<tr>
<td>Caching</td>
<td>2.95</td>
</tr>
<tr>
<td>Api</td>
<td>2.91</td>
</tr>
<tr>
<td>Operating Systems</td>
<td>2.50</td>
</tr>
<tr>
<td>Jsp</td>
<td>2.07</td>
</tr>
<tr>
<td>Protein Engineering</td>
<td>1.97</td>
</tr>
<tr>
<td>Biotechnology</td>
<td>1.81</td>
</tr>
<tr>
<td>Apache</td>
<td>1.53</td>
</tr>
<tr>
<td>Scsi</td>
<td>1.48</td>
</tr>
<tr>
<td>Actionscript</td>
<td>1.34</td>
</tr>
<tr>
<td>Web Technologies</td>
<td>1.28</td>
</tr>
<tr>
<td>Content Management</td>
<td>1.12</td>
</tr>
<tr>
<td>Soa</td>
<td>0.94</td>
</tr>
<tr>
<td>Xml</td>
<td>0.89</td>
</tr>
</tbody>
</table>
<table style="width: 80%;" border="0" cellpadding="2">
<tbody>
<tr>
<td style="font-weight: bold;">Programming Language</td>
<td style="font-weight: bold;">% of listings</td>
</tr>
<tr>
<td>Ajax</td>
<td>30.39</td>
</tr>
<tr>
<td>Javascript</td>
<td>7.26</td>
</tr>
<tr>
<td>Java</td>
<td>6.51</td>
</tr>
<tr>
<td>Php</td>
<td>5.53</td>
</tr>
<tr>
<td>C++</td>
<td>3.64</td>
</tr>
<tr>
<td>Sql</td>
<td>3.09</td>
</tr>
<tr>
<td>Perl</td>
<td>2.58</td>
</tr>
<tr>
<td>Asp.Net</td>
<td>2.52</td>
</tr>
<tr>
<td>C</td>
<td>1.87</td>
</tr>
<tr>
<td>Python</td>
<td>1.81</td>
</tr>
<tr>
<td>Ruby</td>
<td>1.53</td>
</tr>
<tr>
<td>Html</td>
<td>1.06</td>
</tr>
<tr>
<td>Xml</td>
<td>0.81</td>
</tr>
<tr>
<td>C#</td>
<td>0.65</td>
</tr>
<tr>
<td>Visual Basic</td>
<td>0.57</td>
</tr>
<tr>
<td>Microsoft Sql Server</td>
<td>0.49</td>
</tr>
<tr>
<td>D</td>
<td>0.30</td>
</tr>
<tr>
<td>V</td>
<td>0.24</td>
</tr>
<tr>
<td>Actionscript</td>
<td>0.22</td>
</tr>
<tr>
<td>Unix Shell</td>
<td>0.22</td>
</tr>
<tr>
<td>Visual Foxpro</td>
<td>0.18</td>
</tr>
<tr>
<td>R</td>
<td>0.18</td>
</tr>
<tr>
<td>Objective-C</td>
<td>0.16</td>
</tr>
<tr>
<td>Ruby On Rails</td>
<td>0.14</td>
</tr>
<tr>
<td>Vbscript</td>
<td>0.12</td>
</tr>
</tbody>
</table>
<table style="width: 80%;" border="0" cellpadding="2">
<tbody>
<tr>
<td style="font-weight: bold;">Operating System</td>
<td style="font-weight: bold;">% of listings</td>
</tr>
<tr>
<td>Linux</td>
<td>8.87</td>
</tr>
<tr>
<td>Unix</td>
<td>4.70</td>
</tr>
<tr>
<td>Windows</td>
<td>1.02</td>
</tr>
<tr>
<td>Kronos</td>
<td>0.45</td>
</tr>
<tr>
<td>Windows 2000</td>
<td>0.45</td>
</tr>
<tr>
<td>Mac Os X</td>
<td>0.41</td>
</tr>
<tr>
<td>Windows Nt</td>
<td>0.37</td>
</tr>
<tr>
<td>Microsoft Windows</td>
<td>0.35</td>
</tr>
<tr>
<td>Windows Server 2003</td>
<td>0.28</td>
</tr>
<tr>
<td>Windows Mobile</td>
<td>0.24</td>
</tr>
<tr>
<td>Xp</td>
<td>0.24</td>
</tr>
<tr>
<td>Ubuntu</td>
<td>0.18</td>
</tr>
<tr>
<td>Openbsd</td>
<td>0.14</td>
</tr>
<tr>
<td>Os X</td>
<td>0.14</td>
</tr>
<tr>
<td>Vista</td>
<td>0.14</td>
</tr>
<tr>
<td>Solaris</td>
<td>0.12</td>
</tr>
<tr>
<td>As/400</td>
<td>0.12</td>
</tr>
<tr>
<td>Integrity</td>
<td>0.12</td>
</tr>
<tr>
<td>Xp Pro</td>
<td>0.12</td>
</tr>
<tr>
<td>Windows Xp</td>
<td>0.12</td>
</tr>
<tr>
<td>Mandriva</td>
<td>0.10</td>
</tr>
<tr>
<td>Xubuntu</td>
<td>0.08</td>
</tr>
<tr>
<td>Suse</td>
<td>0.08</td>
</tr>
<tr>
<td>Hp-Ux</td>
<td>0.08</td>
</tr>
<tr>
<td>Gnu/Linux</td>
<td>0.08</td>
</tr>
</tbody>
</table>
<table style="width: 80%;" border="0" cellpadding="2">
<tbody>
<tr>
<td style="font-weight: bold;">Medical Treatment</td>
<td style="font-weight: bold;">% of listings</td>
</tr>
<tr>
<td>Mediterranean Diet</td>
<td>0.37</td>
</tr>
<tr>
<td>Dialysis</td>
<td>0.30</td>
</tr>
<tr>
<td>Alternative Therapies</td>
<td>0.12</td>
</tr>
<tr>
<td>Massage</td>
<td>0.12</td>
</tr>
<tr>
<td>Cardiac Surgery</td>
<td>0.12</td>
</tr>
<tr>
<td>Day Surgery</td>
<td>0.12</td>
</tr>
<tr>
<td>Neck Surgery</td>
<td>0.12</td>
</tr>
<tr>
<td>Cpr</td>
<td>0.10</td>
</tr>
<tr>
<td>Parenteral Nutrition</td>
<td>0.10</td>
</tr>
<tr>
<td>Radiation</td>
<td>0.10</td>
</tr>
<tr>
<td>Chiropractic</td>
<td>0.10</td>
</tr>
<tr>
<td>Clinical Protocols</td>
<td>0.08</td>
</tr>
<tr>
<td>Heart Surgery</td>
<td>0.08</td>
</tr>
<tr>
<td>Total Parenteral Nutrition</td>
<td>0.08</td>
</tr>
<tr>
<td>General Surgery</td>
<td>0.06</td>
</tr>
<tr>
<td>Radiation Treatment</td>
<td>0.06</td>
</tr>
<tr>
<td>Pain Management</td>
<td>0.06</td>
</tr>
<tr>
<td>Physical Therapy</td>
<td>0.06</td>
</tr>
<tr>
<td>Pharmacotherapy</td>
<td>0.06</td>
</tr>
<tr>
<td>Insulin Pump</td>
<td>0.06</td>
</tr>
<tr>
<td>Massages</td>
<td>0.04</td>
</tr>
<tr>
<td>Medical Nutrition Therapy</td>
<td>0.04</td>
</tr>
<tr>
<td>Hydrotherapy</td>
<td>0.04</td>
</tr>
<tr>
<td>First Aid Procedures</td>
<td>0.04</td>
</tr>
<tr>
<td>Neurosurgery</td>
<td>0.04</td>
</tr>
</tbody>
</table>
<p>(*) Results based on a sample of 5000 job listings from major, tech-oriented job boards in August 2008.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.likematter.com/2008/09/09/calais-on-jobs-data-part-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Social Media Coverage at Text Analytics Summit</title>
		<link>http://blog.likematter.com/2008/06/17/social-media-coverage-at-text-analytics-summit/</link>
		<comments>http://blog.likematter.com/2008/06/17/social-media-coverage-at-text-analytics-summit/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 01:06:34 +0000</pubDate>
		<dc:creator>Mark Soper</dc:creator>
		
		<category><![CDATA[Text Mining]]></category>

		<guid isPermaLink="false">http://blog.alluviallabs.com/?p=46</guid>
		<description><![CDATA[



Today&#8217;s 2008 Text Analytics Summit involved several good sessions on the analysis of social media data.Â  In keeping with the event&#8217;s enterprise software focus, these discussions emphasized the challenges organizations face in mining social media data to accomplish marketing objectives, creating and improving customer relationships being primary among them.




Matthew Hurst provided interesting big-picture perspective on [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="25%"><a href="http://www.textanalyticsnews.com/"><img class="alignnone size-medium wp-image-45" title="Text Analytics News" src="http://blog.alluviallabs.com/wp-content/uploads/logo.jpg" alt="Text Analytics News" width="154" height="100" /></a></td>
<td>Today&#8217;s <a href="http://www.textanalyticsnews.com/4thannual08/">2008 Text An</a><a href="http://www.textanalyticsnews.com/4thannual08/">alytics Summit</a> involved several good sessions on the analysis of social media data.Â  In keeping with the event&#8217;s enterprise software focus, these discussions emphasized the challenges organizations face in mining social media data to accomplish marketing objectives, creating and improving customer relationships being primary among them.</td>
</tr>
</tbody>
</table>
<ul>
<li><a href="http://datamining.typepad.com/">Matthew Hurst</a> provided interesting big-picture perspective on the current and future states of social media analysis based on his research experience at <a href="http://labs.live.com/">Microsoft Live Labs</a>.Â  I really appreciated his breakdown of the present state into two realms:
<ul>
<li>Content - techniques that analyze the content of a document (e.g. entities, sentiment, topics, etc.)</li>
<li>Structure - techniques that analyze the network context of a document (e.g. links, threads, etc.)</li>
</ul>
<p><span>He then described an overall process built around these two core pieces, including mention of a third realm of temporal analysis - it would be nice to get more explanation on this and on the whole present state picture as Matthew didn&#8217;t have a chance to go into much detail.Â  I really liked that he took a complex situation and explained it in straightforward way - one of those moments when someone describes something, about which you&#8217;re already familiar, and without introducing a lot of new information, helps you to gain valuable insight.</span></p>
<p>His response to my question about where tagging fit into his model was insightful, though I don&#8217;t think I&#8217;m yet fully convinced about how applicable the first statement is to many applications of tagging.Â  He said that they have generally found tags to be of little value when applied to documents because the information in the tags is often redundant with respect to the information in the text.Â  He did mention that that tags are highly valuable when applied to other media types like images (e.g. <a href="http://www.wired.com/science/discoveries/news/2005/02/66456">Flickr&#8217;s very successful tagging system</a>) - right on the money.</p>
<p>Matthew was good enough to post his <a href="http://datamining.typepad.com/data_mining/2008/06/text-analytics-summit-2008.html">slides along with a recap</a>.</li>
<li>Though not related to social media specifically, definitely deserving mention was <a href="http://www.langseth.com/">Justin Langseth</a>&#8217;s 1-hour demo of a <a href="http://clarabridge.com/">Clarabridge</a> implementation.Â  Not to be confused with an end-user demo, this was a live walk-through of the entire process of deploying and then using their text analytics platform against a modest customer feedback dataset, in one hour.Â  Clarabridge technology, and Justin&#8217;s technical presentation of it, are pretty impressive.Â  These guys understand BI, and seem to have figured out a good way to structure text data such that it works well within the major enterprise BI frameworks, along with the necessary infrastructure and admin tools to hook everything up without a lot of pain.Â  In my opinion, their current Windows orientation is less than desirable from a technology perspective.Â  But their platform decisions, like the use of J2EE, suggest that they appreciate the importance of portability long-term.Â  And if the enthused customers in attendance are any indication, the business value of what they&#8217;re doing far trumps this concern.</li>
<li><a href="http://www.cymfony.com/abt_bdr.asp">Andrew Bernstein</a>, of <a href="http://www.cymfony.com/">Cymfony</a>, related insight from his work in helping companies with large consumer brands monitor market sentiment, test-market new products, and implement market intelligence using data sourced from MySpace, Facebook, blogs, etc.Â  Interestingly, his four-quadrant social media matrix recommends that companies focus their analytics efforts on social networks first with blogs a close second in terms of market intelligence value.Â  Social bookmarking, perhaps not surprisingly, faired poorly on this list.Â  Much more surprisingly given its heavy overlap with both blogging and social networking, <a href="http://twitter.com/">Twitter</a> ranked in last place as a valuable source of market intelligence.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.likematter.com/2008/06/17/social-media-coverage-at-text-analytics-summit/feed/</wfw:commentRss>
		</item>
		<item>
		<title>BarCamp Boston</title>
		<link>http://blog.likematter.com/2008/05/28/barcamp-boston/</link>
		<comments>http://blog.likematter.com/2008/05/28/barcamp-boston/#comments</comments>
		<pubDate>Wed, 28 May 2008 16:04:27 +0000</pubDate>
		<dc:creator>Mark Soper</dc:creator>
		
		<category><![CDATA[Entrepreneurship]]></category>

		<category><![CDATA[Social Networking]]></category>

		<category><![CDATA[Software Development]]></category>

		<category><![CDATA[Text Mining]]></category>

		<category><![CDATA[Web Infrastructure]]></category>

		<guid isPermaLink="false">http://blog.alluviallabs.com/2008/05/28/barcamp-boston/</guid>
		<description><![CDATA[Â 
Photo: Google App Engine discussion - ShimonRura, Brian Olson, James Hall, et al
Note: The following account of BarCamp Boston benefits from the additional time for reflection and inevitable blurring of facts afforded by the week&#8217;s vacation that immediately followed it.
BarCamp Boston is an annual gathering of Boston-area technology people, part of the BarCamp series.Â  This [...]]]></description>
			<content:encoded><![CDATA[<p>Â <a href="http://blog.alluviallabs.com/wp-content/uploads/google_app_engine_discussion_480.jpg" title="google_app_engine_discussion_480.jpg"><img src="http://blog.alluviallabs.com/wp-content/uploads/google_app_engine_discussion_480.jpg" alt="google_app_engine_discussion_480.jpg" /></a><strong><br />
</strong><em>Photo</em>: <a href="http://code.google.com/appengine/">Google App Engine</a> discussion - <a href="http://rura.org/shimon/">ShimonRura</a>, Brian Olson, <a href="http://buildingtheweb.typepad.com/">James Hall</a>, et al</p>
<p><em>Note</em>: The following account of BarCamp Boston benefits from the additional time for reflection and inevitable blurring of facts afforded by the week&#8217;s vacation that immediately followed it.</p>
<p><a href="http://www.barcampboston.org/">BarCamp Boston</a> is an annual gathering of Boston-area technology people, part of the <a href="http://barcamp.org/">BarCamp</a> series.Â  This year&#8217;s meeting occurred over the weekend of May 17-18th in Cambridge, MA.Â  It turned out to be an excellent venue for developing entrepreneurial ideas related to web technology, social networking, mobile applications, software development, etc:</p>
<p><a href="http://2008.barcampboston.org/index.php?title=Schedule">Sessions</a> self-organize on the fly, allowing attendees to promote topics, receive feedback, and schedule talks in real time.Â  The result is that you have good options at any time to find an interesting topic or create one and lead a discussion around it.Â  This format also seems to have encouraged some experimental, and especially cross-subject discussions (e.g. <a href="http://socialstrategist.com/2007/07/02/building-the-futures-foundations-platforms-of-the-web">At the Intersection of Everything</a>, and the data-visualization discussion held by <a href="http://www.google.com/url?sa=t&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fservices.alphaworks.ibm.com%2Fmanyeyes%2Fuser%2FRLw_EQ9mVa6_~Eq6590E2~&amp;ei=Z4A9SNXsHILSeZ-ZkMwN&amp;usg=AFQjCNH0NdddpVCcSMmZFs0ZxQyWaqHDUg&amp;sig2=scH5s0sxO4w35ZjYJUqg4Q">Matt McKeon of IBM&#8217;s Many Eyes</a>).Â  A discussion I proposed on Natural Language Processing &amp; Semantic Web API&#8217;s, covering <a href="http://opencalais.com/">Calais</a>, <a href="http://www.semantichacker.com/api">Textwise Semantic Hacker (&amp; the $1M Challenge)</a>, <a href="http://yq.search.yahoo.com/">Y!Q,</a> etc. produced some insight on what to expect (an not expect) from semantic technologies, and on suggestions from web developers on what will be required for more widespread adoption of RDF and other technologies for putting content into more machine-processable context.Â  One major theme: Better top-down tools are needed to make the process of adding context more automatic.Â  <a href="http://www.readwriteweb.com/archives/semantic_web_patterns.php">This ReadWriteWeb article</a> contains a good overview of semantic technologies covered in the discussion.</p>
<p>Warm thanks to Shimon and <a href="http://themikewalsh.com/">Mike Walsh</a> for making it happen.</p>
<p>Mark Soper</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.likematter.com/2008/05/28/barcamp-boston/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Boston Social Media Breakfast covers &#8220;Getting Hired in a 2.0 World&#8221;</title>
		<link>http://blog.likematter.com/2008/05/01/boston-social-media-breakfast-covers-getting-hired-in-a-20-world/</link>
		<comments>http://blog.likematter.com/2008/05/01/boston-social-media-breakfast-covers-getting-hired-in-a-20-world/#comments</comments>
		<pubDate>Thu, 01 May 2008 20:05:22 +0000</pubDate>
		<dc:creator>Mark Soper</dc:creator>
		
		<category><![CDATA[HR Technology]]></category>

		<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://blog.alluviallabs.com/2008/05/01/boston-social-media-breakfast-covers-getting-hired-in-a-20-world/</guid>
		<description><![CDATA[ 
This morning&#8217;s Social Media Breakfast in at Ryles Jazz Club in Cambridge included a speaker&#8217;s panel focused on hiring and getting hired using social media.  The speakers included:

 Stever Robbins, consultant/executive coach and host of the Get-It-Done Guy Podcast
Aaron Strout, VP of new media at Mzinga.
Todd Defren, principal at SHIFT Communications
Chris Brogan, VP [...]]]></description>
			<content:encoded><![CDATA[<p> <a href="http://www.ryles.com/index.cfm" target="_parent"><img src="http://www.ryles.com/images/ryleshead_01.jpg" border="0" height="133" width="400" /></a></p>
<p>This morning&#8217;s Social Media Breakfast in at Ryles Jazz Club in Cambridge included a speaker&#8217;s panel focused on hiring and getting hired using social media.  The speakers included:</p>
<ul>
<li> <a href="http://www.steverrobbins.com/" onclick="javascript:urchinTracker('/outbound/www.steverrobbins.com');">Stever Robbins</a>, consultant/<font size="3">executive coach</font> and host of the <a href="http://getitdone.quickanddirtytips.com/" onclick="javascript:urchinTracker('/outbound/getitdone.quickanddirtytips.com');">Get-It-Done Guy Podcast</a></li>
<li><a href="http://www.mzinga.com/en/Community/Blogs/Aaron%2DStrout/" onclick="javascript:urchinTracker('/outbound/www.mzinga.com');">Aaron Strout</a>, VP of new media at <a href="http://www.mzinga.com/default.asp?" onclick="javascript:urchinTracker('/outbound/www.mzinga.com');">Mzinga</a>.</li>
<li><a href="http://www.pr-squared.com/about.html" onclick="javascript:urchinTracker('/outbound/www.pr-squared.com');">Todd Defren</a>, principal at <a href="http://shiftcomm.com/" onclick="javascript:urchinTracker('/outbound/shiftcomm.com');">SHIFT Communications</a></li>
<li><a href="http://www.chrisbrogan.com/" onclick="javascript:urchinTracker('/outbound/www.chrisbrogan.com');">Chris Brogan</a>, VP of strategy &amp; technology at <a href="http://www.crosstechmedia.com/" onclick="javascript:urchinTracker('/outbound/www.crosstechmedia.com');">CrossTech Media</a></li>
</ul>
<p>They touched on two main themes:</p>
<ol>
<li><strong>Using social media to help your careeer</strong>.  They talked about the importance of your internet activity to your prospects of getting hired, and steps you can take to better represent yourself online.   <a href="http://www.steverrobbins.com/" onclick="javascript:urchinTracker('/outbound/www.steverrobbins.com');">Stever Robbins</a> provided a list of guidelines that dispelled some of the &#8220;myths&#8221; associated with reputation and career in general.  <a href="http://www.chrisbrogan.com/" onclick="javascript:urchinTracker('/outbound/www.chrisbrogan.com');">Chris Brogan</a>, with a good dose of humor, described how his blogging connected with his career experiences and the importance of the human element in business (e.g. getting acquainted with someone through his Flickr postings before realizing he&#8217;s a prominent VC).</li>
<li><strong>Using social media to recruit</strong>.  This discussion was led by <a href="http://www.mzinga.com/en/Community/Blogs/Aaron%2DStrout/" onclick="javascript:urchinTracker('/outbound/www.mzinga.com');">Aaron Strout</a> and <a href="http://www.pr-squared.com/about.html" onclick="javascript:urchinTracker('/outbound/www.pr-squared.com');">Todd Defren, </a>who described their own experiences using Facebook, Twitter, blogs, and other channels.  The main idea expressed was that several aspects of a person&#8217;s online activity are very important in identifying good candidates:
<ul>
<li>what she writes in her blog or microblog (Twitter) and her Facebook and LinkedIn profiles</li>
<li>any content about her that comes up in a Google search, including potentially negative material and material written by others about her</li>
</ul>
</li>
</ol>
<p>The conversation was enlightening.  Todd declared that in the PR space, for example, a candidate isn&#8217;t likely to be hired or even interviewed without being &#8220;well known&#8221; on the internet.  More generally, the wisdom prevailing as recently as 5 years ago - that one should be careful about making communications visible online - seems to have reversed polarity.   Today the greater risk clearly lies in NOT being visible online, with the chances of a potential employer seeing what happened in South Padre last spring break being actually much less if there is significant other material out there in one&#8217;s favor.</p>
<p>There were a couple of issue that weren&#8217;t well addressed, despite some audience questions along these lines.  The discussion remained limited to the PR-oriented purview of many of the speakers (and audience), so the hiring issues discussed were typically those faced by prestigious PR firms.  These hires would be expected to be media savvy and these firms would also tend toward elite hiring practices (e.g. &#8220;I want to hire the abosolute best 1-2 guys in the field&#8221;).  The question of hiring other kinds of professionals (e.g. software engineers) was raised, but a solid answer wasn&#8217;t really given. The example of hiring Joel Spolsky because of the prominence of his <a href="http://joelonsoftware.com">Joel on Software</a> blog suggests either an unrealistic view of the software industry or social media industry myopia.  While many software firms would be psyched to hire Joel, every firm must be willing to hire developers who don&#8217;t have widely-read tech blogs, and would probably be better served by looking for the &#8220;rank &amp; file&#8221; contributors to the social media world, the talented engineers who are reading and/or commenting on Joel&#8217;s blog.  Finally, there was no attention paid to the majority of people not yet actively using social media.  Though we might be better off if more of them did, we can&#8217;t expect every dental hygienist to have a blog in order to be doing the job well.</p>
<p>These shortcomings in content covered are quite understandable given the goals and audience of the event, and are pointed out as suggestion for further discussion rather than a negative reflection on the event.Â  Overall the session was excellent and the folks there were very cool.</p>
<p><em>Thanks to <a href="http://www.bryper.com/">Bryan Person</a> for organizing!</em></p>
<p>Mark Soper</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.likematter.com/2008/05/01/boston-social-media-breakfast-covers-getting-hired-in-a-20-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
