author-pic

JOSH FEIERMAN

What Does Being High-Functioning With ADHD Look Like

Posted on September 14, 2026

I have ADHD, specifically the inattentive type. While I’ve kind of known this since early to mid adolescence, I’ve only been diagnosed since I was 23. For almost the entire time, I’ve tried to think about what it means to be a healthy, high-functioning person who also happens to have ADHD. I won’t pretend I have The Answer, or even really An Answer, or that I’m someone who you should listen to on the subject. Really, I’m only writing this for my own benefit, because it’s been on my mind a lot recently and I find writing helps me collect and process my disorganized, rambling thoughts into hopefully more organized, slightly less rambling ones.

Read full post

How I Changed My Mind

Posted on July 06, 2026

Recently, in a professional-but-not-work-associated Slack I’m part of, someone paid me what I feel is the highest compliment I have received in recent memory. There was a discussion around a bit of a thorny topic, and I had chosen to engage and try to get a better idea of the views of folks in that discussion. After many rounds, someone had this to say about me:

For what it’s worth, I think Josh has disagreed with a lot of folks in this thread at one point or another and has been unfailingly respectful and open.

Read full post

Semantic Versioning with GitHub Actions

Posted on August 22, 2021

In this post I wanted to document some exploration I did around using GitHub Actions to automatically generate a semantic versioning compatible tag in certain circumstances. I’m going to assume the reader has a basic knowledge of both GitHub Actions and semantic versioning.

Requirements

Here are the requirements I’m trying to meet:

  • Upon commit to the trunk branch, a new tag and release is created.
  • There must be an easy way to indicate whether the release is a major, minor, or patch release.

There’s a number of assumptions that I’m going to go by since situations outside of these might complicate this initial investigation.

Read full post