Matt Stenson

@mattstenson.com

CTO at Userscape building HelpSpot (https://helpspot.com). Also building some side projects. Get client files fast - https://dropitto.us 🎙️My Podcast - http://idlecursor.com ✍️ Personal Site - http://mattstenson.com

Launching my first independent paid product: dropitto.us - dropittous lets you create unique drop links for your clients. They drop files, you receive them. No accounts needed. Unlimited file size and storage on paid plans.

dropittous (dropitto.us) - Simple File Upload for Your Clients

dropittous (dropitto.us) lets you create unique drop links for your clients. They drop files, you receive them. No accounts needed. Unlimited file size and storage on paid plans.

dropitto.us

Just a tiny leap from “broadcasters have to use their spectrum in Trump’s interests” to “AT&T and Verizon have to manage content on their wireless networks in Trump’s interests because they operate on public spectrum”

Why is the fabrication of evidence by the federal government not a headlining story? This text message thread is the fakest thing I've seen. The only thing I can think is that the media has been effectively chilled. The government is not a trusted source. Do your job journalists.

TIL about `array_column` in PHP 🤩 And it can work on objects, too, so here's simple way to get all the values from a backed enum… (It's also about 2x faster than `array_map` in my testing.)

<?php

enum Status: int
{
  case Pending  = 1;
  case Started  = 2;
  case Complete = 4;
  case Error    = 8;
}

array_column(Status::cases(), 'value');

// Result: [1, 2, 4, 8]