


<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<!-- test -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Union Square Ventures</title>
<meta name="description" content="Union Square Ventures (USV) is a New York City-based venture capital firm. We invest in networks that disrupt existing industries.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="alternate" type="application/rss+xml" title="Union Square Ventures - Latest Posts" href="http://www.usv.com/feed/new" />
<link rel="alternate" type="application/rss+xml" title="Union Square Ventures - Hot Posts" href="http://www.usv.com/feed/hot" />
<link rel="apple-touch-icon" sizes="57x57" href="/static/img/usv-touch-icon.png?v=0b81e207192089a9ce2729ed8f093d85"/>
<link rel="shortcut icon" href="/static/img/usv-favicon.png?v=f51eb9622503335c885c29d52b887836" type="image/png" />
<link rel="stylesheet" href="/static/css/bootstrap.min.css?v=4eadbf7d1721bb2729e398595bc7f0bc">
<!-- dont cache style.css yes, since we're still developing on it heavily -->
<link rel="stylesheet" href="/static/css/style.css?1385613400.0">
<script src="/static/js/vendor/respond.min.js?v=cf5c9b7980e53d7c5edd8cd220081537"></script>


<script src="/static/js/vendor/jquery-1.9.1.min.js?v=663628f795cb62444143fde1ebdf2b5b"></script>
<script src="/static/js/bootstrap.min.js?v=bed31fb959612a0a77d8e87b9d0b3683"></script>
<script type="text/javascript">
USV_is_admin = false;
USV_tinymce_valid_elements = "a[href|rel],b,p,i,blockquote,span,ul,li,ol,strong,pre,em,h1,h2,h3,h4,h5,h6,br,span";
USV_tinymce_post_char_limit = 1000;
USV_user_id_str = '';
USV_user_email_address = '';
$(function() {
$('.submit-button').on('click', function() {
$(this).parent('form').submit();
e.stopPropagation();
e.preventDefault();
});
});
$(document).ready(function() {
window.mySwipe = Swipe(document.getElementById('slider'));
});
</script>
<script src="/static/js/vendor/modernizr-2.6.2.min.js?v=42306a279a9e831515347ae319181cd1"></script>
<script type="text/javascript" src="/static/js/tinymce/jquery.tinymce.min.js?v=c3b150836f2c5b282f8f24f200931c37"></script>
<script src="/static/js/plugins.js?v=fd6325242b36e92c4d108bd352f18c1e"></script>
<script src="/static/js/scripts.js?v=bc10aa5d52954c2f23805e8ec8bd229d"></script>
<script src="/static/js/swipe.js?v=f3222596b567234df720599d60c9bc96"></script>
<script src="/static/js/modules_bundle.js?v=6f056600a6563774a4a3ad9af8ced2d4"></script>
<script src="/static/js/vendor/jquery.scrollto.js?v=24e146f2c6b3caf9b0640a58a900b024"></script>

<script>
$(document).ready(function() {
if (window.location.hash == "#tools") {
$("#tools").modal('show');
}
$('#show-tools-btn').click(function(e) {
$("#tools").modal('show');
});
$('#bookmarklet').click(function(e) {
e.preventDefault();
alert('This is bookmarklet. First drag it to your bookmarks bar, then you can use it to share web pages to USV.com.');
})
// Truncate featured post text
/*$('.excerpt').text(function(e) {
var text = $(this).text();
if (text.match(/\.{3}/)) {
var i = text.lastIndexOf(' ');
if (i != -1) {
text = text.substr(0,i) + "..."
}
}
return text;
});*/
fp_max_height = 0;
$('.featured-post').each(function() {
if ($(this).height() > fp_max_height) {
fp_max_height = $(this).height();
}
})
if ($('.featured-post:visible').length == 2) {
/* only do this on ipad where we're showing two at the top */
$('.featured-post').height(fp_max_height);
}
//AJAX request to get user status
$.get('/api/user_status/', function (user_status) {
if (user_status == 'staff'){
$('#submit-modal .submit').show();
$('#submit-modal .login').hide();
$('#submit-modal .submit-staff').show();
}
else if (user_status == 'user') {
$('#submit-modal .submit').show();
$('#submit-modal .login').hide();
}
// blacklist is currently being handled outside the modal
// defaults to user not logged in, no need to do anything in this case
});
$('a.mute').click(function(e) {
e.preventDefault();
if (confirm("are you sure?")) {
window.location = this.href;
}
})
/* DISQUS */
/*
var updateCommentCounts = function(countsObj) {
$.ajax({
type: 'get',
url: "/api/update_comment_counts",
data: JSON.stringify(countsObj),
cache: false,
dataType: 'json',
success: function (result) {
console.log(result);
}
});
};
var disqusPublicKey = "4ckXraUg1DUNC8D7nw9eFqqeTVkco5pKEaq6WsRH44psJME3RqswbwK0CeP1OSyb";
var disqusShortname = "usvbeta2"; // Replace with your own shortname
var urlArray = [];
$('.dsq-comment-count').each(function () {
var url = $(this).attr('data-disqus-url');
urlArray.push('link:' + url);
});
var USV_comment_counts = {}
$.ajax({
type: 'GET',
url: "https://disqus.com/api/3.0/threads/set.jsonp",
data: { api_key: disqusPublicKey, forum : disqusShortname, thread : urlArray },
cache: false,
dataType: 'jsonp',
success: function (result) {
for (var i in result.response) {
if (typeof result.response[i].identifiers[0] != "undefined"){
USV_comment_counts[result.response[i].identifiers[0]] = result.response[i].posts
}
}
updateCommentCounts(USV_comment_counts);
}
});
*/
});
</script>

</head>
<body data-menu-position="closed" class="conversation ">
<style type="text/css">
.jPanelMenu-panel {
z-index: auto !important;
}
</style>

<div class="modal fade in" id="submit-modal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h3 class="modal-title submit" style="display: none">Submit a post!</h3>
<h4 class="modal-title login">Please login to post or vote</h4>
</div>
<div class="modal-body submit" style="display: none">

<script type="text/javascript">
$(function() {
$('.field-errors').each(function() {
if($.trim($(this).html()) == '') {
$(this).hide();
}
});
$('a.no-match').on('click', function(e) {
$('#bypass_dup_check').val('true');
$(this).closest('.field-errors').hide();
});
});
</script>
<form id="" class="form " action="/posts/" method="POST">
<input type="hidden" name="_xsrf" value="1510d6fc32a94f95a087abd073a7f51c"/>
<!--<span class="form-title">Post</span>-->
<fieldset>
<dl>
<dt>
<label for="title">Title</label>
<div class="field-errors"></div>
</dt>
<dd>
<input id="post_title" name="title" type="text" class="form-control"
placeholder="Your Post Title" required="" value="">
</dd>
<dt>
<label for="url">Link</label>
<div class="field-errors">

</div>
<input type="hidden" name="bypass_dup_check"
id="bypass_dup_check" value="" />
</dt>
<dd>
<input id="post_url" name="url" type="text" placeholder="http://example.com"
value="" class="form-control">
</dd>
<dt>
<label for="body_raw">Body</label>
<div class="field-errors"></div>
</dt>
<dd class="tinymce-textbox">
<textarea type="text" class="form-control" id="post_body_raw" name="body_raw">

</textarea>
</dd>
<dt>
<label for="url">Tags (separate by comma)</label>
<div class="field-errors"></div>
</dt>
<dd>
<input id="post_tags" name="tags" type="text" placeholder="pitch, meta, health, mobile, education"
value="" class="form-control">
</dd>
<!--
<li class="hackpad">
<div id="toggle-hackpad-url" class=""></div>
<input id="post_has_hackpad" name="has_hackpad" type="hidden" value="">
<label for="hackpad_url">Hackpad URL</label>
<div class="field-errors"></div>
<input id="post_hackpad_url" name="hackpad_url" type="text" value=""
style="display: none;" />
</li>
-->

<!-- Used when AJAX was utilized for checking if user is staff
<dt class="submit-staff" style="display:none">
<div id="toggle-featured"></div>
<label for="post_featured">Featured</label>
<div class="field-errors"></div>
</dt>
<dd>
<input class="submit-staff" style="display:none" type="checkbox" id="post_featured" name="featured" value="true"
 />
</dd>
-->

<div class="for-submit" style="padding: 10px; text-align:right">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</ol>
</fieldset>
</form>

</div>
<div class="modal-body login">
<img src="/static/img/sign-in-with-twitter-gray.png" alt="Sign in with Twitter" id="twitter-login-button" style="cursor: pointer; margin-top: 15px;" />
</div>
</div>
</div>
</div>
<!--
<div class="modal" id="login-modal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title">Please login to post or vote</h4>
</div>
<div class="modal-body">
<img src="/static/img/sign-in-with-twitter-gray.png" alt="Sign in with Twitter" id="twitter-login-button" style="cursor: pointer;" />
</div>
</div>
</div>
</div>
-->

<div class="shell">
<div id="mobile-header">
<a id="menu-trigger" href="#">Open Menu</a>
<a id="mobile-logo" href="/">Union Square Ventures</a>
<a id="submit-trigger" href="#submit-form">Submit Post</a>
</div>
<header id="site-header">
<div class="container">
<a id="logo" href="/">Union Square Ventures</a>
<h1 id="usv-name"><a href="/">Union Square Ventures</a></h1>
<ul id="main-nav">
<li id="nav-conversation"><a href="/">Conversation</a></li>
<li id="nav-about"><a href="/about">About</a></li>
<!--<li><a href="/team/">Team</a></li>-->
<li id="nav-portfolio"><a href="/portfolio">Portfolio</a></li>
<li id="nav-network"><a href="/network">Network</a></li>
<li id="nav-jobs"><a href="/jobs">Jobs</a></li>
</ul>
<div id="login">

<a class="login" href="/auth/twitter/">Log in with Twitter</a>

<a href="/feed/hot" onclick="(function(){var z=document.createElement('script');z.src='https://www.subtome.com/load.js';document.body.appendChild(z);})(); return false"><img src="/static/img/feed-icon-14x14.png" title="Subscribe" style="margin-left: 10px"></a>
</div>
</div>
</header><!--end of site-header-->

<div class="tools tools-mobile visible-xs"><b>Welcome!</b> &nbsp; <a href="/posts/welcome-to-the-new-usvcom#comment-1066691905">Posting guidelines</a> | <a href="https://play.google.com/store/apps/details?id=com.connectedio.usvmobile" target="_blank">Android app</a> </div>

<div id="content">
<div class="container">



<div id="main" role="main">
<section class="featured-feed clearfix mobile-hidden">
<div id='slider' class='swipe visible-xs row'>
<ul class='swipe-wrap feed'>


<div class="featured-post">
<div class="content">
<a class="title" href="/posts/usvcom-is-now-open-source">USV.com is now open source</a>

<a href="https://github.com/unionsquareventures/conversation" class="source" target="_blank">github.com</a>

<div class="excerpt">We have had a great time building the new USV.com, and today we're open sourcing the codebase so that anyone else who wants to can see it, fork it, and help us build new stuff if they feel like it.
Since we launched the new site last month, we've split out the usv-specific theming and functionality from the core &quot;Conversation&quot; app, which we're open sourcing here.  The name comes from the original blog post launching USV.com as a blog back in 2005, in which Brad talked about &quot;having a dialogue wi...</div>
<div class="meta">
<div class="thumbnail">
<a href="http://www.twitter.com/nickgrossman" target="_blank">
<img title="nickgrossman" src="https://pbs.twimg.com/profile_images/3608605926/71036b2e9d4deff52fdacd8196c40ce5_normal.png" alt="thumbnail">
</a>
</div>
@nickgrossman
<span class="time">20 minutes ago</span>
<a href="/posts/usvcom-is-now-open-source/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">1 vote</span>
</a>

<a class="dsq-comment-count" href="/posts/usvcom-is-now-open-source" data-disqus-url="http://www.usv.com/posts/usvcom-is-now-open-source"
data-disqus-identifier="528cb8a5d7cc57000261a5ed" target="_blank">comment</a>
</div>
</div>
</div>

<div class="featured-post">
<div class="content">
<a class="title" href="/posts/human-dx">Human Dx</a>

<a href="/posts/human-dx" class="source">usv.com</a>

<div class="excerpt">One of the amazing things that the Internet has given us is the ability for people all over the world to collaborate. At times we use this for silliness (supercuts of animal videos on YouTube) and at other times to create important resources for humanity, such as a free, widely available, continuously updating encyclopedia (Wikipedia).
We have also made substantial progress with machine learning. A great example of this is recent progress towards self-driving cars. It was only 2004 that the DARP...</div>
<div class="meta">
<div class="thumbnail">
<a href="http://www.twitter.com/albertwenger" target="_blank">
<img title="albertwenger" src="https://pbs.twimg.com/profile_images/1773890030/aew_artistic_normal.gif" alt="thumbnail">
</a>
</div>
@albertwenger
<span class="time">Nov 14, 2013</span>
<a href="/posts/human-dx/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">10 votes</span>
</a>

<a class="dsq-comment-count" href="/posts/human-dx" data-disqus-url="http://www.usv.com/posts/human-dx"
data-disqus-identifier="5285183103ad3b000217680f" target="_blank">comment</a>
</div>
</div>
</div>

<div class="featured-post">
<div class="content">
<a class="title" href="/posts/a-vc-video-of-the-week-williams-interview-of-my-partner-albert">A VC: Video Of The Week: William's Interview of My Partner Albert</a>

<a href="http://www.avc.com/a_vc/2013/11/video-of-the-week-williams-interview-of-my-partner-albert.html" class="source" target="_blank">www.avc.com</a>

<div class="excerpt">&lt;iframe src=&quot;http://www.youtube.com/embed/bvWgmeEQ1Pg&quot; frameborder=&quot;0&quot; width=&quot;440&quot; height=&quot;248&quot;&gt;&lt;/iframe&gt;</div>
<div class="meta">
<div class="thumbnail">
<a href="http://www.twitter.com/fredwilson" target="_blank">
<img title="fredwilson" src="https://pbs.twimg.com/profile_images/3580641456/82c873940343750638b7caa04b4652fe_normal.jpeg" alt="thumbnail">
</a>
</div>
@fredwilson
<span class="time">Nov 09, 2013</span>
<a href="/posts/a-vc-video-of-the-week-williams-interview-of-my-partner-albert/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">13 votes</span>
</a>

<a class="dsq-comment-count" href="/posts/a-vc-video-of-the-week-williams-interview-of-my-partner-albert" data-disqus-url="http://www.usv.com/posts/a-vc-video-of-the-week-williams-interview-of-my-partner-albert"
data-disqus-identifier="527e3ed6296e830002f6c1ab" target="_blank">comment</a>
</div>
</div>
</div>

<div class="featured-post">
<div class="content">
<a class="title" href="/posts/bitcoin-as-protocol">Bitcoin As Protocol</a>

<a href="/posts/bitcoin-as-protocol" class="source">usv.com</a>

<div class="excerpt">We owe many of the innovations that we use every day -- from our favorite longstanding websites to the latest mobile applications -- to the existence of underlying highly technical protocols.  Endusers don't need to understand these any more than drivers need to understand the workings of a car engine. Policy makers, however, need to understand the importance of protocols for enabling distributed permission-less innovation -- that is, innovation by many individuals and startups. For instance, th...</div>
<div class="meta">
<div class="thumbnail">
<a href="http://www.twitter.com/albertwenger" target="_blank">
<img title="albertwenger" src="https://pbs.twimg.com/profile_images/1773890030/aew_artistic_normal.gif" alt="thumbnail">
</a>
</div>
@albertwenger
<span class="time">Oct 31, 2013</span>
<a href="/posts/bitcoin-as-protocol/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">38 votes</span>
</a>

<a class="dsq-comment-count" href="/posts/bitcoin-as-protocol" data-disqus-url="http://www.usv.com/posts/bitcoin-as-protocol"
data-disqus-identifier="52727eb3bb59400002599b30" target="_blank">comment</a>
</div>
</div>
</div>

<div class="featured-post">
<div class="content">
<a class="title" href="/posts/teaming-up-with-the-football-app">Teaming up with THE Football App</a>

<a href="http://www.thefootballapp.com/" class="source" target="_blank">www.thefootballapp.com</a>

<div class="excerpt">Bill Gurley wrote a wonderful post last summer that detailed the differences between creating engaging user experiences on smart phones and on the web. He pointed out that these differences are not superficial and that in the past major differences in applications platforms, like the transition from DOS to Windows have led to significant restructuring of big markets. He argued that we are in the midst of a new transition away from the browser and back to stand alone mobile applications and that ...</div>
<div class="meta">
<div class="thumbnail">
<a href="http://www.twitter.com/BradUSV" target="_blank">
<img title="BradUSV" src="https://pbs.twimg.com/profile_images/52435733/bio_brad_normal.jpg" alt="thumbnail">
</a>
</div>
@BradUSV
<span class="time">Oct 24, 2013</span>
<a href="/posts/teaming-up-with-the-football-app/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">18 votes</span>
</a>

<a class="dsq-comment-count" href="/posts/teaming-up-with-the-football-app" data-disqus-url="http://www.usv.com/posts/teaming-up-with-the-football-app"
data-disqus-identifier="52693e7e2b7a6b00021b0169" target="_blank">comment</a>
</div>
</div>
</div>

<div class="featured-post">
<div class="content">
<a class="title" href="/posts/the-real-test-for-usvcom">The Real Test for USV.com?</a>

<a href="http://www.usv.com" class="source" target="_blank">www.usv.com</a>

<div class="excerpt">I think the new usv.com is as interesting a change as the blog-centric approach to the site was in 2005, but here's a question: we all know that the initial release of your product is a small first step, so should we expect to see iteration on the basic idea of the site? A little A/B testing happening?
As an example, if developing and exposing discussion/community is the goal, what about a variation where highly rated *comments* roll into the front page, in addition to posts? Draw people in not ...</div>
<div class="meta">
<div class="thumbnail">
<a href="http://www.twitter.com/whitneymcn" target="_blank">
<img title="whitneymcn" src="https://pbs.twimg.com/profile_images/1781120169/profile_normal.png" alt="thumbnail">
</a>
</div>
@whitneymcn
<span class="time">Oct 16, 2013</span>
<a href="/posts/the-real-test-for-usvcom/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">13 votes</span>
</a>

<a class="dsq-comment-count" href="/posts/the-real-test-for-usvcom" data-disqus-url="http://www.usv.com/posts/the-real-test-for-usvcom"
data-disqus-identifier="525ec34dc2e5a20011c3cea3" target="_blank">comment</a>
</div>
</div>
</div>

</ul>
</div>
<!--
<ul class="tabs" style="margin-bottom:25px;">
<li><a class="sort btn" href="/featured_posts">From USV</a></li>
</ul>-->
<ul class="feed hidden-xs" id="homepage-featured-posts">

</ul><!--end of feed-->
<!--
<ul class="tabs">
<li class="is-active"><a class="sort btn" href="/featured_posts">Featured</a></li>
<li><a class="sort btn" href="/featured_posts">From USV</a></li>
</ul>
-->
<ul class="feed">
<!--
<li class="featured-post card clearfix hidden-xs" style="">
<div class="avatar">
<a href="http://disqus.com/cainetighe/" target="_blank">
<img title="caine tighe" src="http://a.disquscdn.com/uploads/users/7844/4468/avatar92.jpg?1382403050" alt="thumbnail" width="50" height="50">
</a>
</div>
<div class="content">
<a class="title" href="/posts/why-android-first-is-a-myth-steve-cheney-technology-business-strategy#comment-1091518594" style="margin-left:70px;"><span style="font-size: 90%">caine tighe on...</span><br /> Why Android First is a Myth</a>
<a href="/posts/welcome-to-the-new-usvcom" class="source">usv.com</a>
<div class="meta" style="text-align: left !important; margin-left: 70px;">
<a style="color: #999" class="username" href="http://disqus.com/cainetighe" target="_blank">@caine tighe</a>
<a href="/posts/why-android-first-is-a-myth-steve-cheney-technology-business-strategy#comment-1091518594">
<span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span>Oct 21, 2013</a>
</div>
<div class="excerpt">
<p>"At DuckDuckGo we started with Android because it was clear from user submitted feedback that a lot of our enthusiastic and technical users were on Android. We created a feedback loop with them and leveraged Android's lenient release rules to rapid prototype features in concert with user requests. Most of us at DDG have Androids -- so the nonstop QA was great. Android also offered us deeper OS integration and the opportunity to compete with Google on their playing field -- we learned a lot in the process.</p>
<p>After Android, implementing the iOS app was a breeze since we already had the recipe. In fact, Apple ended up featuring us when we launched in the Summer which was cool."</p>
<p><a class="btn btn-default" style="float:right" href="/posts/why-android-first-is-a-myth-steve-cheney-technology-business-strategy#comment-1091518594">discuss...</a>
</div>
</li>
-->

<li class="featured-post card" style="">
<div class="avatar">
<a href="http://www.twitter.com/nickgrossman" target="_blank">
<img title="nickgrossman" src="https://pbs.twimg.com/profile_images/3608605926/71036b2e9d4deff52fdacd8196c40ce5_normal.png" alt="thumbnail">
</a>
</div>
<div class="content">
<a class="title" style="padding-bottom: 5px; margin-left: 70px;" href="/posts/usvcom-is-now-open-source">USV.com is now open source</a>


<a href="https://github.com/unionsquareventures/conversation" class="source" target="_blank">github.com</a>


<div class="meta" style="text-align: left !important; margin-left: 70px;">
<a style="color: #999" class="username" href="http://www.twitter.com/nickgrossman" target="_blank">@nickgrossman</a>
<a href="http://www.usv.com/posts/usvcom-is-now-open-source">
<span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> 20 minutes ago</span></a>
</div>
<div class="excerpt">
We have had a great time building the new USV.com, and today we're open sourcing the codebase so that anyone else who wants to can see it, fork it, and help us build new stuff if they feel like it.
Since we launched the new site last month, we've split out the usv-specific theming and functionality from the core "Conversation" app, which we're open sourcing here.  The name comes from the original blog post launching USV.com as a blog back in 2005, in which Brad talked about "having a dialogue wi...</div>
<div class="meta">

<a href="/posts/usvcom-is-now-open-source/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">1 vote</span>
</a>


<span class="time" style="margin-right: 12px;"><a href="/posts/usvcom-is-now-open-source" >
<a class="/posts/usvcom-is-now-open-source comment-count" href="/posts/usvcom-is-now-open-source"
data-disqus-identifier="528cb8a5d7cc57000261a5ed" target="_blank">0 comments</a>
</div>
</div>
</li>

<li class="featured-post card" style="">
<div class="avatar">
<a href="http://www.twitter.com/albertwenger" target="_blank">
<img title="albertwenger" src="https://pbs.twimg.com/profile_images/1773890030/aew_artistic_normal.gif" alt="thumbnail">
</a>
</div>
<div class="content">
<a class="title" style="padding-bottom: 5px; margin-left: 70px;" href="/posts/human-dx">Human Dx</a>


<a href="/posts/human-dx" class="source">usv.com</a>


<div class="meta" style="text-align: left !important; margin-left: 70px;">
<a style="color: #999" class="username" href="http://www.twitter.com/albertwenger" target="_blank">@albertwenger</a>
<a href="http://www.usv.com/posts/human-dx">
<span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Nov 14, 2013</span></a>
</div>
<div class="excerpt">
One of the amazing things that the Internet has given us is the ability for people all over the world to collaborate. At times we use this for silliness (supercuts of animal videos on YouTube) and at other times to create important resources for humanity, such as a free, widely available, continuously updating encyclopedia (Wikipedia).
We have also made substantial progress with machine learning. A great example of this is recent progress towards self-driving cars. It was only 2004 that the DARP...</div>
<div class="meta">

<a href="/posts/human-dx/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">10 votes</span>
</a>


<span class="time" style="margin-right: 12px;"><a href="/posts/human-dx" >
<a class="/posts/human-dx comment-count" href="/posts/human-dx"
data-disqus-identifier="5285183103ad3b000217680f" >6 comments</a>
</div>
</div>
</li>

<li class="featured-post card" style="">
<div class="avatar">
<a href="http://www.twitter.com/fredwilson" target="_blank">
<img title="fredwilson" src="https://pbs.twimg.com/profile_images/3580641456/82c873940343750638b7caa04b4652fe_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">
<a class="title" style="padding-bottom: 5px; margin-left: 70px;" href="/posts/a-vc-video-of-the-week-williams-interview-of-my-partner-albert">A VC: Video Of The Week: William's Interview of My Partner Albert</a>


<a href="http://www.avc.com/a_vc/2013/11/video-of-the-week-williams-interview-of-my-partner-albert.html" class="source" target="_blank">www.avc.com</a>


<div class="meta" style="text-align: left !important; margin-left: 70px;">
<a style="color: #999" class="username" href="http://www.twitter.com/fredwilson" target="_blank">@fredwilson</a>
<a href="http://www.usv.com/posts/a-vc-video-of-the-week-williams-interview-of-my-partner-albert">
<span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Nov 09, 2013</span></a>
</div>
<div class="excerpt">
<iframe src="http://www.youtube.com/embed/bvWgmeEQ1Pg" frameborder="0" width="440" height="248"></iframe></div>
<div class="meta">

<a href="/posts/a-vc-video-of-the-week-williams-interview-of-my-partner-albert/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">13 votes</span>
</a>


<span class="time" style="margin-right: 12px;"><a href="/posts/a-vc-video-of-the-week-williams-interview-of-my-partner-albert" >
<a class="/posts/a-vc-video-of-the-week-williams-interview-of-my-partner-albert comment-count" href="/posts/a-vc-video-of-the-week-williams-interview-of-my-partner-albert"
data-disqus-identifier="527e3ed6296e830002f6c1ab" target="_blank">0 comments</a>
</div>
</div>
</li>

<li class="featured-post card" style="">
<div class="avatar">
<a href="http://www.twitter.com/albertwenger" target="_blank">
<img title="albertwenger" src="https://pbs.twimg.com/profile_images/1773890030/aew_artistic_normal.gif" alt="thumbnail">
</a>
</div>
<div class="content">
<a class="title" style="padding-bottom: 5px; margin-left: 70px;" href="/posts/bitcoin-as-protocol">Bitcoin As Protocol</a>


<a href="/posts/bitcoin-as-protocol" class="source">usv.com</a>


<div class="meta" style="text-align: left !important; margin-left: 70px;">
<a style="color: #999" class="username" href="http://www.twitter.com/albertwenger" target="_blank">@albertwenger</a>
<a href="http://www.usv.com/posts/bitcoin-as-protocol">
<span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Oct 31, 2013</span></a>
</div>
<div class="excerpt">
We owe many of the innovations that we use every day -- from our favorite longstanding websites to the latest mobile applications -- to the existence of underlying highly technical protocols.  Endusers don't need to understand these any more than drivers need to understand the workings of a car engine. Policy makers, however, need to understand the importance of protocols for enabling distributed permission-less innovation -- that is, innovation by many individuals and startups. For instance, th...</div>
<div class="meta">

<a href="/posts/bitcoin-as-protocol/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">38 votes</span>
</a>


<span class="time" style="margin-right: 12px;"><a href="/posts/bitcoin-as-protocol" >
<a class="/posts/bitcoin-as-protocol comment-count" href="/posts/bitcoin-as-protocol"
data-disqus-identifier="52727eb3bb59400002599b30" >25 comments</a>
</div>
</div>
</li>

<li class="featured-post card" style="">
<div class="avatar">
<a href="http://www.twitter.com/BradUSV" target="_blank">
<img title="BradUSV" src="https://pbs.twimg.com/profile_images/52435733/bio_brad_normal.jpg" alt="thumbnail">
</a>
</div>
<div class="content">
<a class="title" style="padding-bottom: 5px; margin-left: 70px;" href="/posts/teaming-up-with-the-football-app">Teaming up with THE Football App</a>


<a href="http://www.thefootballapp.com/" class="source" target="_blank">www.thefootballapp.com</a>


<div class="meta" style="text-align: left !important; margin-left: 70px;">
<a style="color: #999" class="username" href="http://www.twitter.com/BradUSV" target="_blank">@BradUSV</a>
<a href="http://www.usv.com/posts/teaming-up-with-the-football-app">
<span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Oct 24, 2013</span></a>
</div>
<div class="excerpt">
Bill Gurley wrote a wonderful post last summer that detailed the differences between creating engaging user experiences on smart phones and on the web. He pointed out that these differences are not superficial and that in the past major differences in applications platforms, like the transition from DOS to Windows have led to significant restructuring of big markets. He argued that we are in the midst of a new transition away from the browser and back to stand alone mobile applications and that ...</div>
<div class="meta">

<a href="/posts/teaming-up-with-the-football-app/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">18 votes</span>
</a>


<span class="time" style="margin-right: 12px;"><a href="/posts/teaming-up-with-the-football-app" >
<a class="/posts/teaming-up-with-the-football-app comment-count" href="/posts/teaming-up-with-the-football-app"
data-disqus-identifier="52693e7e2b7a6b00021b0169" target="_blank">5 comments</a>
</div>
</div>
</li>

<li class="featured-post card" style="">
<div class="avatar">
<a href="http://www.twitter.com/whitneymcn" target="_blank">
<img title="whitneymcn" src="https://pbs.twimg.com/profile_images/1781120169/profile_normal.png" alt="thumbnail">
</a>
</div>
<div class="content">
<a class="title" style="padding-bottom: 5px; margin-left: 70px;" href="/posts/the-real-test-for-usvcom">The Real Test for USV.com?</a>


<a href="http://www.usv.com" class="source" target="_blank">www.usv.com</a>


<div class="meta" style="text-align: left !important; margin-left: 70px;">
<a style="color: #999" class="username" href="http://www.twitter.com/whitneymcn" target="_blank">@whitneymcn</a>
<a href="http://www.usv.com/posts/the-real-test-for-usvcom">
<span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Oct 16, 2013</span></a>
</div>
<div class="excerpt">
I think the new usv.com is as interesting a change as the blog-centric approach to the site was in 2005, but here's a question: we all know that the initial release of your product is a small first step, so should we expect to see iteration on the basic idea of the site? A little A/B testing happening?
As an example, if developing and exposing discussion/community is the goal, what about a variation where highly rated *comments* roll into the front page, in addition to posts? Draw people in not ...</div>
<div class="meta">

<a href="/posts/the-real-test-for-usvcom/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">13 votes</span>
</a>


<span class="time" style="margin-right: 12px;"><a href="/posts/the-real-test-for-usvcom" >
<a class="/posts/the-real-test-for-usvcom comment-count" href="/posts/the-real-test-for-usvcom"
data-disqus-identifier="525ec34dc2e5a20011c3cea3" target="_blank">0 comments</a>
</div>
</div>
</li>

</ul>
</section><!--end of featured-feed-->
<section class="hot-newest-feed">
<ul class="tabs">
<li class="is-active"><a class="sort btn" href="?sort_by=hot">Hot</a></li>
<li class=""><a class="sort btn" href="?sort_by=new">Newest</a></li>


<li class="submit-btn">
<a class="btn btn-primary" role="button" data-toggle="modal" href="#submit-modal">Submit a post</a>
</li>

</ul>
<ul class="tools hidden-xs" id="tools-desktop">
<li><a href="/posts/welcome-to-the-new-usvcom#comment-1066691905">Guidelines</a></li>
<li><a id="show-tools-btn" href="#tools">Tools</a></li>
<li><a href="https://hackpad.com/USV.com-sHgpc56rkCZ">Bugs &amp; Feature Reqs</a></li>
</ul>

<!-- Tools Modal -->
<div class="modal fade" id="tools" tabindex="-1" role="dialog" aria-labelledby="toolsLabel" aria-hidden="true">
  <div class="modal-dialog">
	<div class="modal-content">
	  <div class="modal-header">
		<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
		<h4 class="modal-title">Tools!</h4>
	  </div>
	  <div class="modal-body">
		<p>Use these tools to make it easier to share &amp; discuss links at USV.com:</p>
		<ul>
		  <li><b><a href="https://chrome.google.com/webstore/detail/usvcom/ikpfoekojmeibidkolkbbocepjfdmgol">Chrome Extension</a></b><br /> and <b><a href="/static/tools/usv-20131016-0.1-b.xpi">Firefox Extension</a></b> (courtesy of <a href="http://www.appcoast.com/">appcoast</a> -- thanks!)<br /> Quickly post whatever page you're viewing to USV.com</li>
		  <li><b>Bookmarklet:</b> <a id="bookmarklet" href="javascript:var d%3Ddocument,w%3Dwindow,e%3Dw.getSelection,k%3Dd.getSelection,x%3Dd.selection,s%3D(e%3Fe():(k)%3Fk():(x%3Fx.createRange().text:0)),f%3D%27http://www.usv.com/posts/new%27,l%3Dd.location,e%3DencodeURIComponent,p%3D%27%3Fv%3D3%26url%3D%27%2Be(l.href) %2B%27%26title%3D%27%2Be(d.title) %2B%27%26s%3D%27%2Be(s),u%3Df%2Bp%3Btry%7Bif(!/%5E(.*%5C.)%3Ftumblr%5B%5E.%5D*%24/.test(l.host))throw(0)%3Btstbklt()%3B%7Dcatch(z)%7Ba %3Dfunction()%7Bif(!w.open(u,%27t%27,%27toolbar%3D0,resizable%3D0,status%3D1,width%3D450,height%3D430%27))l.href%3Du%3B%7D%3Bif(/Firefox/.test(navigator.userAgent))setTimeout(a,0)%3Belse a()%3B%7Dvoid(0)">Post to USV.com</a> (&larr; drag to your bookmarks bar)<br />Works on any browser.</li>
		  <li><b><a href="https://play.google.com/store/apps/details?id=com.connectedio.usvmobile">Android App</a></b><br /> Quickly post a link to USV.com, from your Android device.</li>
		  <li><b><a href="https://chrome.google.com/webstore/detail/instapaper/acgdjjilmhiofacmdnmmlndeokamkkcl?hl=en-GB">Instapaper Chrome extension</a></b><br />
			Enables one-click saving of USV.com posts to instapaper. <br />(courtesy of <a href="http://www.twitter.com/bthdonohue">@bthdonohue</a>)</li>
		 
		 <li><b>Web Widget</b><br />
			 Display latest conversations from USV.com on your website.
			 Simply paste the following code in the spot on your site where you'd like the widget to be:<br />
<pre>
<code>&lt;script src=&quot;http://www.usv.com/widget?type=hot_posts&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;div id=&quot;usv-widget&quot;&gt;&lt;/div&gt;</code></pre>
		  
		</ul>
	  </div>
	</div><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<ul class="feed sort-by-hot">






<li >
<div class="avatar">
<a href="http://www.twitter.com/HarrisonWeber" target="_blank">
<img title="HarrisonWeber" src="https://pbs.twimg.com/profile_images/3519993741/e17eb0adebcfc37c0a90b63cd57b599f_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="http://fullstart.com/knowledge/think-youve-got-good-company-culture/" rel="nofollow" target="_blank">Your perks aren’t culture. They’re just perks.</a>
<a href="http://fullstart.com/knowledge/think-youve-got-good-company-culture/" rel="nofollow" class="source" target="_blank">fullstart.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/HarrisonWeber" target="_blank" style="color: #999">@HarrisonWeber</a>
<span class="username" style="">@HarrisonWeber</span>
<span class="time"><a href="/posts/your-perks-arent-culture-theyre-just-perks" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> 13 hours ago</a></span>
<a href="/posts/your-perks-arent-culture-theyre-just-perks/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">10 votes</span>
</a>

<a href="/posts/your-perks-arent-culture-theyre-just-perks" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="52960a9c6d6df500025645c7" href="/posts/your-perks-arent-culture-theyre-just-perks">7 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/Burnsey" target="_blank">
<img title="Burnsey" src="https://pbs.twimg.com/profile_images/2281266560/3s4agrvrubi5gl1tol3u_normal.png" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="https://www.vitsoe.com/us/about/good-design" rel="nofollow" target="_blank">What Real Design Is</a>
<a href="https://www.vitsoe.com/us/about/good-design" rel="nofollow" class="source" target="_blank">www.vitsoe.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/Burnsey" target="_blank" style="color: #999">@Burnsey</a>
<span class="username" style="">@Burnsey</span>
<span class="time"><a href="/posts/what-real-design-is" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> 4 hours ago</a></span>
<a href="/posts/what-real-design-is/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">2 votes</span>
</a>

<a href="/posts/what-real-design-is" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="52968d7463ee590002ad884e" href="/posts/what-real-design-is">2 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/billmcneely" target="_blank">
<img title="billmcneely" src="https://pbs.twimg.com/profile_images/378800000658228826/6e4011ea2b14c087b1d148bf728a69d9_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="/posts/if-a-retailer-gave-a-x-discount-for-delivering-a-package-to-someone-in-your-zip-code-would-you-be-ok-with-that" target="_blank">If a retailer gave a X discount for delivering a package to someone in your zip code would you be ok with that?</a>
<a href="/posts/if-a-retailer-gave-a-x-discount-for-delivering-a-package-to-someone-in-your-zip-code-would-you-be-ok-with-that" class="source" target="_blank">usv.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/billmcneely" target="_blank" style="color: #999">@billmcneely</a>
<span class="username" style="">@billmcneely</span>
<span class="time"><a href="/posts/if-a-retailer-gave-a-x-discount-for-delivering-a-package-to-someone-in-your-zip-code-would-you-be-ok-with-that" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> 12 hours ago</a></span>
<a href="/posts/if-a-retailer-gave-a-x-discount-for-delivering-a-package-to-someone-in-your-zip-code-would-you-be-ok-with-that/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">2 votes</span>
</a>

<a href="/posts/if-a-retailer-gave-a-x-discount-for-delivering-a-package-to-someone-in-your-zip-code-would-you-be-ok-with-that" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="52961b489800e30002aee54e" href="/posts/if-a-retailer-gave-a-x-discount-for-delivering-a-package-to-someone-in-your-zip-code-would-you-be-ok-with-that">6 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/RezaC1" target="_blank">
<img title="RezaC1" src="https://pbs.twimg.com/profile_images/1223293064/DSC03222_-_sq_normal.jpg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="http://www.alleywatch.com/2013/11/investors-do-not-fund-research-and-development/" rel="nofollow" target="_blank">Investors Do Not Fund Research and Development - AlleyWatch</a>
<a href="http://www.alleywatch.com/2013/11/investors-do-not-fund-research-and-development/" rel="nofollow" class="source" target="_blank">www.alleywatch.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/RezaC1" target="_blank" style="color: #999">@RezaC1</a>
<span class="username" style="">@RezaC1</span>
<span class="time"><a href="/posts/investors-do-not-fund-research-and-development-alleywatch" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> 5 hours ago</a></span>
<a href="/posts/investors-do-not-fund-research-and-development-alleywatch/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">5 votes</span>
</a>

<a href="/posts/investors-do-not-fund-research-and-development-alleywatch" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="52967ff3ccbff20002e8e8e2" href="/posts/investors-do-not-fund-research-and-development-alleywatch">0 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/estherschindler" target="_blank">
<img title="estherschindler" src="https://pbs.twimg.com/profile_images/411282326/EstherGlowing_normal.jpg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="http://blog.smartbear.com/development/a-developer-and-a-user-walk-into-a-bar-5-steps-to-getting-users-insights-while-avoiding-a-bruised-ego/" rel="nofollow" target="_blank">A Developer and a User Walk into a Bar: 5 Steps to Getting Users’ Insights while Avoiding a Bruised Ego</a>
<a href="http://blog.smartbear.com/development/a-developer-and-a-user-walk-into-a-bar-5-steps-to-getting-users-insights-while-avoiding-a-bruised-ego/" rel="nofollow" class="source" target="_blank">blog.smartbear.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/estherschindler" target="_blank" style="color: #999">@estherschindler</a>
<span class="username" style="">@estherschindler</span>
<span class="time"><a href="/posts/a-developer-and-a-user-walk-into-a-bar-5-steps-to-getting-users-insights-while-avoiding-a-bruised-ego" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> 12 hours ago</a></span>
<a href="/posts/a-developer-and-a-user-walk-into-a-bar-5-steps-to-getting-users-insights-while-avoiding-a-bruised-ego/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">3 votes</span>
</a>

<a href="/posts/a-developer-and-a-user-walk-into-a-bar-5-steps-to-getting-users-insights-while-avoiding-a-bruised-ego" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="529619279800e30002aee54b" href="/posts/a-developer-and-a-user-walk-into-a-bar-5-steps-to-getting-users-insights-while-avoiding-a-bruised-ego">2 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/davefontenot" target="_blank">
<img title="davefontenot" src="https://pbs.twimg.com/profile_images/3726491457/145fe25e632cd45d3f3c0e93c277221a_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="https://medium.com/hackers-and-hacking/21a692021b65" rel="nofollow" target="_blank">Dear Corporations, Please Stop Throwing Your Own Hackathons</a>
<a href="https://medium.com/hackers-and-hacking/21a692021b65" rel="nofollow" class="source" target="_blank">medium.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/davefontenot" target="_blank" style="color: #999">@davefontenot</a>
<span class="username" style="">@davefontenot</span>
<span class="time"><a href="/posts/dear-corporations-please-stop-throwing-your-own-hackathons" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> 11 hours ago</a></span>
<a href="/posts/dear-corporations-please-stop-throwing-your-own-hackathons/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">4 votes</span>
</a>

<a href="/posts/dear-corporations-please-stop-throwing-your-own-hackathons" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="52962d419800e30002aee553" href="/posts/dear-corporations-please-stop-throwing-your-own-hackathons">0 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/philipbrown" target="_blank">
<img title="philipbrown" src="https://pbs.twimg.com/profile_images/378800000581256677/700484751f0925ab9c4d24c4abaf5415_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="http://culttt.com/2013/11/27/6-types-alliances-need-build-successful-product/" rel="nofollow" target="_blank">The 6 types of alliances you need to build a successful product</a>
<a href="http://culttt.com/2013/11/27/6-types-alliances-need-build-successful-product/" rel="nofollow" class="source" target="_blank">culttt.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/philipbrown" target="_blank" style="color: #999">@philipbrown</a>
<span class="username" style="">@philipbrown</span>
<span class="time"><a href="/posts/the-6-types-of-alliances-you-need-to-build-a-successful-product" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> 15 hours ago</a></span>
<a href="/posts/the-6-types-of-alliances-you-need-to-build-a-successful-product/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">3 votes</span>
</a>

<a href="/posts/the-6-types-of-alliances-you-need-to-build-a-successful-product" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="5295f4729163ce0002962106" href="/posts/the-6-types-of-alliances-you-need-to-build-a-successful-product">4 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/MsPseudolus" target="_blank">
<img title="MsPseudolus" src="https://pbs.twimg.com/profile_images/378800000402672435/8ed0936cdbea9710270dc6a2268f3990_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="http://www.analysttoangel.com/2013/11/investing-in-women-entrepreneurs-with.html?spref=tw" rel="nofollow" target="_blank">Investing In Women Entrepreneurs...With Help From Isaiah Berlin, Hedgehogs And Foxes</a>
<a href="http://www.analysttoangel.com/2013/11/investing-in-women-entrepreneurs-with.html?spref=tw" rel="nofollow" class="source" target="_blank">www.analysttoangel.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/MsPseudolus" target="_blank" style="color: #999">@MsPseudolus</a>
<span class="username" style="">@MsPseudolus</span>
<span class="time"><a href="/posts/investing-in-women-entrepreneurswith-help-from-isaiah-berlin-hedgehogs-and-foxes" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> 14 hours ago</a></span>
<a href="/posts/investing-in-women-entrepreneurswith-help-from-isaiah-berlin-hedgehogs-and-foxes/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">4 votes</span>
</a>

<a href="/posts/investing-in-women-entrepreneurswith-help-from-isaiah-berlin-hedgehogs-and-foxes" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="5295fbfe9800e30002aee549" href="/posts/investing-in-women-entrepreneurswith-help-from-isaiah-berlin-hedgehogs-and-foxes">2 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/fredwilson" target="_blank">
<img title="fredwilson" src="https://pbs.twimg.com/profile_images/3580641456/82c873940343750638b7caa04b4652fe_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="http://www.avc.com/a_vc/2013/11/witch-hunts-and-public-data.html" rel="nofollow" target="_blank">A VC: Witch Hunts and Public Data</a>
<a href="http://www.avc.com/a_vc/2013/11/witch-hunts-and-public-data.html" rel="nofollow" class="source" target="_blank">www.avc.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/fredwilson" target="_blank" style="color: #999">@fredwilson</a>
<span class="username" style="">@fredwilson</span>
<span class="time"><a href="/posts/a-vc-witch-hunts-and-public-data" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> 16 hours ago</a></span>
<a href="/posts/a-vc-witch-hunts-and-public-data/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">6 votes</span>
</a>

<a href="/posts/a-vc-witch-hunts-and-public-data" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="5295e39a6d6df500025645c3" href="/posts/a-vc-witch-hunts-and-public-data">1 comment</a>

</div>
</div>
</li>







<li class="repeat">
<div class="avatar">
<a href="http://www.twitter.com/fredwilson" target="_blank">
<img title="fredwilson" src="https://pbs.twimg.com/profile_images/3580641456/82c873940343750638b7caa04b4652fe_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="http://www.forbes.com/sites/terokuittinen/2013/11/26/exclusive-new-survey-shows-blackberrys-bbm-beating-whatsapp-and-snapchat-in-key-markets/" rel="nofollow" target="_blank">Exclusive New Survey Shows BlackBerry's BBM Beating WhatsApp And SnapChat In Key Markets - Forbes</a>
<a href="http://www.forbes.com/sites/terokuittinen/2013/11/26/exclusive-new-survey-shows-blackberrys-bbm-beating-whatsapp-and-snapchat-in-key-markets/" rel="nofollow" class="source" target="_blank">www.forbes.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/fredwilson" target="_blank" style="color: #999">@fredwilson</a>
<span class="username" style="">@fredwilson</span>
<span class="time"><a href="/posts/exclusive-new-survey-shows-blackberrys-bbm-beating-whatsapp-and-snapchat-in-key-markets-forbes" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> 15 hours ago</a></span>
<a href="/posts/exclusive-new-survey-shows-blackberrys-bbm-beating-whatsapp-and-snapchat-in-key-markets-forbes/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">2 votes</span>
</a>

<a href="/posts/exclusive-new-survey-shows-blackberrys-bbm-beating-whatsapp-and-snapchat-in-key-markets-forbes" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="5295ea2e6d6df500025645c4" href="/posts/exclusive-new-survey-shows-blackberrys-bbm-beating-whatsapp-and-snapchat-in-key-markets-forbes">1 comment</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/nickgrossman" target="_blank">
<img title="nickgrossman" src="https://pbs.twimg.com/profile_images/3608605926/71036b2e9d4deff52fdacd8196c40ce5_normal.png" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="https://www.youtube.com/watch?v=p4MY-aRW0Lg" rel="nofollow" target="_blank">Bitcoin Black Friday on CNBC</a>
<a href="https://www.youtube.com/watch?v=p4MY-aRW0Lg" rel="nofollow" class="source" target="_blank">www.youtube.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/nickgrossman" target="_blank" style="color: #999">@nickgrossman</a>
<span class="username" style="">@nickgrossman</span>
<span class="time"><a href="/posts/bitcoin-black-friday-on-cnbc" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> 17 hours ago</a></span>
<a href="/posts/bitcoin-black-friday-on-cnbc/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">3 votes</span>
</a>

<a href="/posts/bitcoin-black-friday-on-cnbc" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="5295d9ce9800e30002aee545" href="/posts/bitcoin-black-friday-on-cnbc">1 comment</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/Burnsey" target="_blank">
<img title="Burnsey" src="https://pbs.twimg.com/profile_images/2281266560/3s4agrvrubi5gl1tol3u_normal.png" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="/posts/what-avc-can-teach-usvcom" target="_blank">What AVC Can Teach USV.com</a>
<a href="/posts/what-avc-can-teach-usvcom" class="source" target="_blank">usv.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/Burnsey" target="_blank" style="color: #999">@Burnsey</a>
<span class="username" style="">@Burnsey</span>
<span class="time"><a href="/posts/what-avc-can-teach-usvcom" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Nov 26, 2013</a></span>
<a href="/posts/what-avc-can-teach-usvcom/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">3 votes</span>
</a>

<a href="/posts/what-avc-can-teach-usvcom" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="5295181e9800e30002aee53a" href="/posts/what-avc-can-teach-usvcom">13 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/drewmeyers" target="_blank">
<img title="drewmeyers" src="https://pbs.twimg.com/profile_images/2418369288/3nj6fy4vzhbd9kjfdxmh_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="https://medium.com/the-world-is-global-baby/964c22dc4f7" rel="nofollow" target="_blank">A Follow Up to Software Is Reorganizing the World - The Shift of Online Communities into Offline Communities</a>
<a href="https://medium.com/the-world-is-global-baby/964c22dc4f7" rel="nofollow" class="source" target="_blank">medium.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/drewmeyers" target="_blank" style="color: #999">@drewmeyers</a>
<span class="username" style="">@drewmeyers</span>
<span class="time"><a href="/posts/a-follow-up-to-software-is-reorganizing-the-world-the-shift-of-online-communities-into-offline-communities" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Nov 27, 2013</a></span>
<a href="/posts/a-follow-up-to-software-is-reorganizing-the-world-the-shift-of-online-communities-into-offline-communities/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">3 votes</span>
</a>

<a href="/posts/a-follow-up-to-software-is-reorganizing-the-world-the-shift-of-online-communities-into-offline-communities" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="52954eea9800e30002aee542" href="/posts/a-follow-up-to-software-is-reorganizing-the-world-the-shift-of-online-communities-into-offline-communities">2 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/gbattle" target="_blank">
<img title="gbattle" src="https://pbs.twimg.com/profile_images/2958520830/9936c1993d93fff4aab1d799a3d5439c_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="http://motherfuckingwebsite.com" rel="nofollow" target="_blank">Motherf*cking Website: Your New Design Bible</a>
<a href="http://motherfuckingwebsite.com" rel="nofollow" class="source" target="_blank">motherfuckingwebsite.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/gbattle" target="_blank" style="color: #999">@gbattle</a>
<span class="username" style="">@gbattle</span>
<span class="time"><a href="/posts/motherfcking-website-your-new-design-bible" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Nov 26, 2013</a></span>
<a href="/posts/motherfcking-website-your-new-design-bible/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">11 votes</span>
</a>

<a href="/posts/motherfcking-website-your-new-design-bible" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="5294abe4fcf9a800026df2dc" href="/posts/motherfcking-website-your-new-design-bible">23 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/aweissman" target="_blank">
<img title="aweissman" src="https://pbs.twimg.com/profile_images/344513261581924513/b3735cda4529be5530c9d29b6f8e148e_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="/posts/peer-services-but-for-free" target="_blank">Peer services, but for free</a>
<a href="/posts/peer-services-but-for-free" class="source" target="_blank">usv.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/aweissman" target="_blank" style="color: #999">@aweissman</a>
<span class="username" style="">@aweissman</span>
<span class="time"><a href="/posts/peer-services-but-for-free" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Nov 26, 2013</a></span>
<a href="/posts/peer-services-but-for-free/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">5 votes</span>
</a>

<a href="/posts/peer-services-but-for-free" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="529512e99800e30002aee539" href="/posts/peer-services-but-for-free">6 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/RezaC1" target="_blank">
<img title="RezaC1" src="https://pbs.twimg.com/profile_images/1223293064/DSC03222_-_sq_normal.jpg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="http://www.alleywatch.com/2013/11/lessons-in-entrepreneurship-my-sons-kindergarten-class/" rel="nofollow" target="_blank">Lessons in Entrepreneurship: My Son’s Kindergarten Class - AlleyWatch</a>
<a href="http://www.alleywatch.com/2013/11/lessons-in-entrepreneurship-my-sons-kindergarten-class/" rel="nofollow" class="source" target="_blank">www.alleywatch.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/RezaC1" target="_blank" style="color: #999">@RezaC1</a>
<span class="username" style="">@RezaC1</span>
<span class="time"><a href="/posts/lessons-in-entrepreneurship-my-sons-kindergarten-class-alleywatch" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Nov 26, 2013</a></span>
<a href="/posts/lessons-in-entrepreneurship-my-sons-kindergarten-class-alleywatch/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">4 votes</span>
</a>

<a href="/posts/lessons-in-entrepreneurship-my-sons-kindergarten-class-alleywatch" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="529520109800e30002aee53e" href="/posts/lessons-in-entrepreneurship-my-sons-kindergarten-class-alleywatch">0 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/AdrianLurssen" target="_blank">
<img title="AdrianLurssen" src="https://pbs.twimg.com/profile_images/378800000565634131/4959792659e763cc46f77d5dcffae493_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="http://www.jdsupra.com/legalnews/goldiblox-v-beastie-boys-something-her-69739/" rel="nofollow" target="_blank">Etsy's Lawyer Raps About the GoldiBlox v. Beastie Boys Lawsuit. She Has Rhyme AND Reason...</a>
<a href="http://www.jdsupra.com/legalnews/goldiblox-v-beastie-boys-something-her-69739/" rel="nofollow" class="source" target="_blank">www.jdsupra.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/AdrianLurssen" target="_blank" style="color: #999">@AdrianLurssen</a>
<span class="username" style="">@AdrianLurssen</span>
<span class="time"><a href="/posts/etsys-lawyer-raps-about-the-goldiblox-v-beastie-boys-lawsuit-she-has-rhyme-and-reason" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Nov 26, 2013</a></span>
<a href="/posts/etsys-lawyer-raps-about-the-goldiblox-v-beastie-boys-lawsuit-she-has-rhyme-and-reason/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">2 votes</span>
</a>

<a href="/posts/etsys-lawyer-raps-about-the-goldiblox-v-beastie-boys-lawsuit-she-has-rhyme-and-reason" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="529511419800e30002aee538" href="/posts/etsys-lawyer-raps-about-the-goldiblox-v-beastie-boys-lawsuit-she-has-rhyme-and-reason">0 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/Burnsey" target="_blank">
<img title="Burnsey" src="https://pbs.twimg.com/profile_images/2281266560/3s4agrvrubi5gl1tol3u_normal.png" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="http://www.wired.com/opinion/2013/11/silicon-valley-isnt-a-meritocracy-and-the-cult-of-the-entrepreneur-holds-people-back/?cid=14910334" rel="nofollow" target="_blank">Silicon Valley Isn’t a Meritocracy. And It’s Dangerous to Hero-Worship Entrepreneurs.</a>
<a href="http://www.wired.com/opinion/2013/11/silicon-valley-isnt-a-meritocracy-and-the-cult-of-the-entrepreneur-holds-people-back/?cid=14910334" rel="nofollow" class="source" target="_blank">www.wired.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/Burnsey" target="_blank" style="color: #999">@Burnsey</a>
<span class="username" style="">@Burnsey</span>
<span class="time"><a href="/posts/silicon-valley-isnt-a-meritocracy-and-its-dangerous-to-hero-worship-entrepreneurs" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Nov 26, 2013</a></span>
<a href="/posts/silicon-valley-isnt-a-meritocracy-and-its-dangerous-to-hero-worship-entrepreneurs/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">5 votes</span>
</a>

<a href="/posts/silicon-valley-isnt-a-meritocracy-and-its-dangerous-to-hero-worship-entrepreneurs" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="529502339800e30002aee537" href="/posts/silicon-valley-isnt-a-meritocracy-and-its-dangerous-to-hero-worship-entrepreneurs">0 comments</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/MsPseudolus" target="_blank">
<img title="MsPseudolus" src="https://pbs.twimg.com/profile_images/378800000402672435/8ed0936cdbea9710270dc6a2268f3990_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="http://waxy.org/2013/11/goldieblox_and_the_three_mcs/" rel="nofollow" target="_blank">GoldieBlox and The Three MC's</a>
<a href="http://waxy.org/2013/11/goldieblox_and_the_three_mcs/" rel="nofollow" class="source" target="_blank">waxy.org</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/MsPseudolus" target="_blank" style="color: #999">@MsPseudolus</a>
<span class="username" style="">@MsPseudolus</span>
<span class="time"><a href="/posts/goldieblox-and-the-three-mcs" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Nov 26, 2013</a></span>
<a href="/posts/goldieblox-and-the-three-mcs/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">3 votes</span>
</a>

<a href="/posts/goldieblox-and-the-three-mcs" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="5294f04a9800e30002aee534" href="/posts/goldieblox-and-the-three-mcs">1 comment</a>

</div>
</div>
</li>







<li >
<div class="avatar">
<a href="http://www.twitter.com/AdrianLurssen" target="_blank">
<img title="AdrianLurssen" src="https://pbs.twimg.com/profile_images/378800000565634131/4959792659e763cc46f77d5dcffae493_normal.jpeg" alt="thumbnail">
</a>
</div>
<div class="content">

<a class="title" href="http://www.jdsupra.com/legalnews/the-fda-order-against-23andme-shows-that-62158/" rel="nofollow" target="_blank">In 23andMe Story, FDA Shows Preference for Patient Safety Over Innovation. Agree?</a>
<a href="http://www.jdsupra.com/legalnews/the-fda-order-against-23andme-shows-that-62158/" rel="nofollow" class="source" target="_blank">www.jdsupra.com</a>

<div class="meta">
<a class="username-link" href="http://www.twitter.com/AdrianLurssen" target="_blank" style="color: #999">@AdrianLurssen</a>
<span class="username" style="">@AdrianLurssen</span>
<span class="time"><a href="/posts/in-23andme-story-fda-shows-preference-for-patient-safety-over-innovation-agree" ><span class="glyphicon glyphicon-link" style="margin: 0;font-size: 90%"></span> Nov 26, 2013</a></span>
<a href="/posts/in-23andme-story-fda-shows-preference-for-patient-safety-over-innovation-agree/upvote" class="votes-count ajax_upvote_link upvote-button">
<i class="icon-arrow-up icon"></i>
<span class="value">2 votes</span>
</a>

<a href="/posts/in-23andme-story-fda-shows-preference-for-patient-safety-over-innovation-agree" ><span class="glyphicon glyphicon-comment" style="margin: 0;"></span></a> <a class="dsq-comment-count" data-disqus-identifier="5294ec6f6d6df500025645bc" href="/posts/in-23andme-story-fda-shows-preference-for-patient-safety-over-innovation-agree">1 comment</a>

</div>
</div>
</li>



</ul><!--end of feed-->
<div id="pagination-next-prev">


<a class="next-page" href="?sort_by=hot_albacore&anchor=5294ec6f6d6df500025645bc&action=after&count=20">Next</a>

</div>
</section>
</div><!--end of main-->
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
disqus_shortname = 'usvbeta2';
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>


</div><!-- /.container -->
</div><!-- /.#content -->
<footer id="site-footer">
<div class="container">
<div class="row">
<div class="col-sm-3">
<h4>Contact Us</h4>
<p>If you would like to share your ideas, business, or feedback with us, please send us email at <a href="http://www.cloudflare.com/email-protection#c0a9aea6af80b5b3b6eea3afad"><span class="__cf_email__" data-cfemail="0b62656d644b7e787d25686466">[email&nbsp;protected]</span><script type="text/javascript">
/* <![CDATA[ */
(function(){try{var s,a,i,j,r,c,l,b=document.getElementsByTagName("script");l=b[b.length-1].previousSibling;a=l.getAttribute('data-cfemail');if(a){s='';r=parseInt(a.substr(0,2),16);for(j=2;a.length-j;j+=2){c=parseInt(a.substr(j,2),16)^r;s+=String.fromCharCode(c);}s=document.createTextNode(s);l.parentNode.replaceChild(s,l);}}catch(e){}})();
/* ]]> */
</script></a>. All business plan submissions must include a clear description of your operations and current progress.</p>
</div>
<div class="col-sm-6">
<div class="footer-search-container">
<form action="/search" method="get">
<input type="search" placeholder="Search" name="query" style="width:300px; margin: 0 auto" />
<!--<a class="submit-button" href="#"></a>-->
</form>
</div>
</div>
<div class="col-sm-3" style="text-align:right">
<h4>Union Square Ventures</h4>
<p class="address">
915 Broadway, 19th Floor<br>
New York, NY 10010
</p>
<p class="telephone">
<strong>Tel</strong> &nbsp;&nbsp;(212) 994-7880<br>
<strong>Fax</strong> &nbsp;&nbsp;(212) 994-7399<br>
</p>
</div>
</div>
</div>
</footer><!--end of footer-->
</div><!--end of shell-->
<nav id="mobile-menu">
<ul>
<li class="heading">USV COMMUNITY</li>
<li><a href="/?sort_by=hot">Hot</a></li>
<li><a href="/?sort_by=new">Newest</a></li>
<li><a href="/featured">Featured</a></li>
<li class="heading">UNION SQUARE VENTURES</li>
<li><a href="/about/">About</a></li>
<li><a href="/portfolio/">Portfolio</a></li>
<li><a href="/network/">Network</a></li>
<li><a href="/jobs/">Jobs</a></li>
</ul>
</nav>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-11198485-1"; urchinTracker();
</script>
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
ajax_upvote_link();

//]]>
</script>
<script type="text/javascript">
/* <![CDATA[ */
(function(){try{var s,a,i,j,r,c,l=document.getElementsByTagName("a"),t=document.createElement("textarea");for(i=0;l.length-i;i++){try{a=l[i].getAttribute("href");if(a&&"www.cloudflare.com/email-protection"==a.substr(7 ,35)){s='';j=43;r=parseInt(a.substr(j,2),16);for(j+=2;a.length-j&&a.substr(j,1)!='X';j+=2){c=parseInt(a.substr(j,2),16)^r;s+=String.fromCharCode(c);}j+=1;s+=a.substr(j,a.length-j);t.innerHTML=s.replace(/</g,"&lt;").replace(/>/g,"&gt;");l[i].setAttribute("href","mailto:"+t.value);}}catch(e){}}}catch(e){}})();
/* ]]> */
</script>
</body>
</html>
