Tim 🚪 ✅
@tim.do
Some dude that probably closed your issue on GitHub. Prev: Techstars, SalesLoft, Spaceship, Ignition Alley, A Small Orange.
taylor swift's silence on the 4th gulf war is staggering
Incredibly hyped to announce Schema Benchmarks, a project I've been steadily working on in collaboration with @fabianhiller.com! It aims to provide a central and transparent resource for many of the metrics that matter for schemas, including bundle size and runtime performance 😄
Is it a bad thing I start typing "git" into my browser address bar and "githubstatus.com" is above "github.com"? 🤔
New OSS business model: Sell codemods so we don't have to boil the ocean using AI.
Fun story from today. I'm currently trying to get `--strict` on by default in TypeScript 6.0. Our test suite has many tests which are written with `--strict false`, so I am updating them by adding a special comment our test suite recognizes for options // @strict: false However...
Dear UPS, please make my session tokens expire longer than 7 seconds. Thank you.
TIL: <a accesskey="x" href="... developer.mozilla.org/en-US/docs/W...
HTML accesskey global attribute - HTML | MDN
The accesskey global attribute provides a hint for generating a keyboard shortcut for the current element. The attribute value must consist of a single printable character (which includes accented and...
developer.mozilla.org
What parts of React upset you the most? > Separation of concerns doesn't work with JSX > Hooks are so fragile they don't even allow conditional usage > React's so slow it needs a compiler to work > Vercel took over React to build RSC to sell more servers Let's hear it!
Every day for the next ten days is going to be a palindrome 5/20/25 5/21/25 5/22/25 5/23/25 5/24/25 5/25/25 5/26/25 5/27/25 5/28/25 5/29/25
@github.com Copilot PR reviews are upsetting. How dare you suggest I make errors in my code??? It's perfec... Oh, wait, I totally meant to add that key prop...
📢 It's official: Techstars Atlanta is continuing! hypepotamus.com/community/yo...
Your City, Your Startups: Techstars Atlanta Continues - Hypepotamus
For nine amazing years, the Techstars Atlanta program, powered by Cox Enterprises, played a huge role in shaping our city's startup scene. It boosted innovation, launched some amazing companies, and r...
hypepotamus.com
Yeah, that's a no from me, dawg. Also, who is paying $20/mo for something that is included with a $15/mo subscription? That is a bonkers pricing strategy.
Amazon is launching Alexa.com and new app for Alexa Plus
Schrödinger's federal employee: Simultaneously the most lazy and incompetent people, and also perpetrating the worst fraud imaginable via the deep state swamp. You can't have it both ways.
Today, we’re deprecating Create React App for new apps, and encouraging existing apps to migrate to a framework. We’re also providing docs for when a framework isn’t a good fit for your project, or you prefer to start by building a framework. react.dev/blog/2025/02...
Sunsetting Create React App – React
The library for web and native user interfaces
react.dev
The real looting in California begins when corporate landlords start price gouging on rent, and private equity firms swoop in a start gobbling up fire-damaged properties in working class neighborhoods and reselling them at huge, unaffordable markups.
Any Rubyists able to help me understand this? The contact kwarg is being passed as nil to Contact::Update. Somehow the local variable is binding first. WHY???? def update contact = Contact::Update.call(contact:, params:) end private def contact @contact ||= contacts.find(params[:id]) end