The Internet has removed scarcity, meaning business models based on controlling distribution are no longer viable. Instead, the key to success is controlling access to the best customers — and that means being the best.

Read all of Ben Thompson’s Funnel Framework.

And remember the $5 billion website, 5 billion we spent on a website, and to this day it doesn’t work. A $5 billion dollar website.I have so many websites. I have them all over the place. I hire people, they do a website. It costs me $3.

We were just talking about government websites! The transcript of Donald Trump’s 2016 presidential announcement is one of the more interesting things I’ve read in a while. “And I promise I will never be in a bicycle race. That I can tell you.” In the spirit of alway saying something positive, I do agree that La Guardia airport is a hot mess.

How Facebook is eating the $140 billion hardware market — I’ve always said that open source eventually dominates every market it enters, and with enterprise hardware it’s in the very, very early stages but this article is chock-full of examples of the economies of scale when companies start collaborating on shared problems. The problem is one company’s inefficiency and wasted cost is another company’s revenue. Cool to look at in the context of yesterday’s post on government.

Fast Company has a great and in-depth look at the United States Digital Service (and similar programs across the government) that is really interesting. They have a number of people involved that I really respect, and I can’t wait to see the results of it not just in the remainder of Obama’s term, but the coming decade. It’s shocking how much is spent on IT at not just the federal level, but the waste at the state and municipal level is even more shocking in many ways because there is so much duplication across the country (and the world). I’ll be blogging more about this theme this week.

I think one challenge a lot of the business schools have is they end up attracting students who are very extroverted and have very low conviction, and they put them in this hot house environment for a few years — at the end of which, a large number of people go into whatever was the last trendy thing to do. They’ve done studies at Harvard Business School where they’ve found that the largest cohort always went into the wrong field. So in 1989, they all went to work for Michael Milken, a year or two before he went to jail. They were never interested in Silicon Valley except for 1999, 2000. The last decade their interest was housing and private equity.

This entire interview with Peter Thiel is pretty interesting.

Techcrunch has a really great essay by Natasha Lomas that I think got missed, The Online Privacy Lie Is Unraveling.

Americans believe it is futile to manage what companies can learn about them. Our study reveals that more than half do not want to lose control over their information but also believe this loss of control has already happened.

Someone asked me the other day who my favorite rappers were, here they are in no particular order:

Pre-2000: Big Pun, Jay Z, Nas, Ludacris, Method Man.

Post-2000: Kendrick Lamar, Kanye, Childish Gambino, J Cole, Drake.

We’re trying something new this year: instead of WordCamp San Francisco being the main WordCamp event of the year doing a WordCamp US in a rotating city. I’ve heard some great in-person pitches for places like Phoenix already. Do you think your city would be the coolest place in the 50 states for the first ever WordCamp US? Submit your city in this new survey. It’s open until the end of the month.

Unsubscribing from Newsletters

When Gmail first came out I got on pretty early and procured what I thought was a cool email address, mmmmmm@gmail.com. That’s because matt@ was too short, and matthew@ was taken. Ask anyone with a “cool” email address on a major service or Twitter handle and you’ll mostly hear about what a pain it is constantly getting spam, other people’s email, and people trying to log in to your account. These days it seems that address is used mostly by people forced to put something into an email form at places they don’t want to, so constant mail from mortgage places, car dealerships, porn sites, and countless email newsletters. I never ended up using the account for anything myself besides normal Google stuff.

There’s a service to help you unsubscribe from things called Unroll.me which is pretty neat, and it’ll scan your account to find all of the newsletters and things you can unsubscribe from, and gives you a one-click interface to do so. Unfortunately if you had over 5,000 “subscriptions” as I had, that becomes a 5,000 click operation and they provide no bulk tools, and apparently no plans to add them:

I assume this is because they want people to add newsletters to their digest service instead of just unsubscribing. Code to the rescue! Written by the inimitable Scott Reilly. After you sign up and sign in, go to this page, go to the javascript console (in Chrome: View → Developer → Javascript Console), then copy and paste the below code and press enter.


var i = 0;
function unroll_me_unsubscribe() {
// Bail if share modal (indicating free limit reached) is encountered.
if ( jQuery( '#fb-root' ).length > 0 ) { return; }
var unsub_link = jQuery( '.LetterList a.uicon-set-unsubscribe:first' );
if ( unsub_link.length > 0 ) {
document.getElementById( unsub_link.attr( 'id' ) ).click();
if ( i++ < 6000 ) { /* Upper limit in case something goes wrong. */
setTimeout( unroll_me_unsubscribe, 1500 );
}
}
}
unroll_me_unsubscribe();

view raw

gistfile1.js

hosted with ❤ by GitHub

Then sit back and wait, it’s set so every 1.5 seconds it clicks an unsubscribe link. I do this about once a week now since I can accumulate 20-100 new subscriptions in that time. This code will break if they change anything, but should be pretty easy to update when they do. It currently shows me as unsubscribed from 7,868 things! If there was a way to pay for my account on Unroll.me I would do so happily.

Beethoven tells you what it’s like to be Beethoven and Mozart tells you what it’s like to be human. Bach tells you what it’s like to be the universe.

― Douglas Adams