Bio
Dax is a software engineer living in Miami with his wife, two cats and doberman. He works on SST, an open source framework that helps companies deploy applications to AWS.
Share
Interview
Hey, everybody, it's Kent C. Dodds, and I'm joined by probably the most rad developer that I know, Dax Rad. How are you doing, Dax? I'm good, how are you? Doing super. So happy to have you coming to Epic Web Conf in March. This is gonna be sweet. It's my understanding it's your first time in Utah, right? Yeah, never been.
I haven't been towards that side of the country in a couple years, so it'll be fun. Yeah, well, you just wanna stay as far away from San Francisco as possible, I understand. You literally are about as far away as you can be in the U.S. That's true, yeah. I wonder, I guess, is that, maybe if I go to Maine,
that would be further, and I was in Maine a bunch of times this past summer, so yeah. Yeah, well, I know you have a severe allergy against Next.js, and so that makes sense. Yeah. Well, Dax, it's awesome to have you come to the conference. This is a, I've known you for years.
I think we probably met at React Miami years ago. That was probably the first time. And yeah, it's just, you have some really great takes that challenge my thinking, because I don't agree with all of them, but I'm like, why don't I agree with that? And make sure that I can at least explain my own position.
So anyway, I really appreciate following you and the experience that you bring. Some people watching this probably don't know you, so I'd love for you to introduce yourself to folks. Yeah, so again, my name is Dax. I, probably like everyone else at the conference, I'm a software engineer. Been doing it for about, I don't even know,
maybe like 12 or 13 years now. Past couple years has been fully in open source. I work on a framework called SST, primarily to help on the infrastructure side of things. But given that our scope is pretty broad, I end up working on quite a lot of other nice additions to our core offering as well.
Pretty much all open source. Yeah, very cool. What is, what would you say is the area of development that you enjoy the most? Or maybe that you dislike the least? Man, that's a good question. So it's hard to give you like a global answer.
I can just tell you how I've been feeling lately, because it changes depending on what I'm interested in. I've just been doing so much work in the terminal over the past couple months, both on SST, because we have this cool like multiplexer feature in our CLI that requires a lot of like terminal know-how and voodoo.
And of course, with terminal.shop, my other project, where we sell coffee from the command line, that is also like a fully terminal-based UI. And I think what I've been liking is it's an extremely constrained environment, which means that just kind of the range of possibilities is lower, but it's not so constrained that you can't do a good job.
So I find it to be this like interesting balance of, there's usually only a couple of ways to do things, and it usually comes out in a pretty good way. So kind of like the, you kind of achieve decent UX without just the crazy degrees of freedom you have on web, which I definitely enjoy, and I still build a lot of stuff on web, but it's just been a nice little shift
to work in this more constrained environment. Yeah, yeah, that's very interesting. And all of that is written in Go, if I understand right, right? Yep, yep, yep, all that's in Go, yeah. Yeah, that's probably why you're so much happier than I am. Yeah, I mean, the thing I say about Go is it brings me no joy to write,
and it's just such a painfully rational exercise every single day when I write it. I'm like, this makes total sense to do, but it's just not capturing my heart, so I found my relationship with it. Yeah, well, you know, who needs emotion when it comes to developing software anyway?
Yeah, yeah, I wonder if you've been following at all what Aaron Francis has been doing in the terminal with PHP. It's been pretty interesting. Yeah, it's funny because he's like the one other person I can talk to about this stuff, because the thing he's building is almost identical to what we built for SST.
Same problem, we need to bring up a bunch of processes for like a single task, and like, you know, tap through them and things like that. So yeah, both of us chat about like, oh, how'd you handle that like one ANSI code, and oh, did you see that, like the ghosty, the guy that makes ghosty Mitchell, he tweeted out some like,
here's like this obscure string that most terminal ANSI processors don't parse correctly. Does yours parse it correctly? And I was like, there's like an audience of three people for this, and me and Aaron are like two of them, yeah. Oh, that's, yeah, that's interesting. I'm excited that you two, have you met before with Aaron?
Yeah, I met him in Dallas. We actually borrowed his studio for a bit because we streamed from there during Laracon. Yeah, and then he was a referee for our basketball game. So, yeah. Oh, that's perfect, I just love that. Yeah, that was a fun time.
Well, cool, well, you'll get to meet up again at the conference and along with plenty of other folks. You're giving a talk about OpenAuth, and I'll say, the talk title right now on the site says OpenAuth Stuff, which I appreciate the simplicity of that.
Can you talk a little bit about what OpenAuth is and why you built it? Yeah, so it's funny because Auth is such a boring thing because every single app needs it and it doesn't really deviate too much between app to app. We've had this funny experience where we serve a lot of people building on AWS. AWS has an auth solution called Cognito.
And if you look through our support channel, so I like every morning, the first thing I do is I answer all the questions since the day before in our support channel. We get a ridiculously large number of Cognito questions, not because a lot of people are using Cognito, just because every single person that tries to use it runs into problems. And I hate answering those questions.
Like it is, I hate the service. It's like, they're by far their worst service and it makes no sense to me. And then I get asked to like help people debug it. And that just annoyed us enough where we're like, we gotta give people like a better starting point for auth in AWS.
Unfortunately, AWS native one isn't doing a job here. So we spent a bunch of time just researching like what does like a, there's a ton of auth SaaS offerings. You know, there's a bunch of them in the past couple years. How exactly are they structured? Like, what are they doing right?
If we break down the different parts of what they offer, like what parts are needed, what parts aren't. So we came up with the idea for OpenAuth after doing that research, realizing that we could just try to build a very spec compliant OAuth system that you can deploy as part of your app.
And if you look at any giant company, if you try to like log in, they will typically redirect you to like auth.mycompany.com. And that serves as a central auth place for all of their apps. So even if you're just, even if you just have like a single app, that model still kind of makes a lot of sense, even if you embed it all in a single app.
The idea that you have a client and auth server and the client gets these temporary credentials from the auth server. There's fantastic specifications on all of this. I used to think specifications were obscure and hard to read, but it turns out they're actually really easy to read and like written in plain English, which is kind of nice. So I've read through those specs,
implemented as much as I could, at least as open auth, and we're kind of growing it from there. Yeah, very cool. So there's not really a monetization strategy then here. It's mostly, unless maybe there's some idea I'm not thinking of, but it's mostly just to serve your customers and free up your time.
Yeah, exactly. The monetization strategy is just getting my time back from never having to answer. That's worth millions of dollars to me, never having to answer a Cognito question ever again. Yeah, but for us, we have a core system in place for us to keep doing what we do, which means we can release a lot of this stuff
without it being directly tied to any revenue source. Yeah, yeah. I definitely have it in the plans for my streams when my time frees up here soon to play around with open auth and integrating it with the Epic stack. The primary thing I like about open auth is that I own it.
I get to be in charge of this. It's my user's table. And hopefully that I can run it as a sidecar process so that you can bootstrap something really, really simply. You don't have to worry about managing multiple services and all of that. And so, yeah, looking forward to playing around with that.
And that's why I asked you to come and speak at Epic Web Conf about it. Yeah, yeah. I think we talked about this a little bit when we announced it, but I haven't gotten around to actually putting together a demo. But the way it's built, it could be embedded in the same process as your main app. So again, for that minimal setup,
I think we can get it down to something pretty simple. Yeah, yeah. Provided that there's a very easy path for taking it outside and everything, then I think starting really simple, there's a lot of value there, yeah. Well, sweet. So Dax, you're not gonna be on stage the whole time. You're also gonna be around the conference.
We've got extended breaks and things. And so I'm wondering what are some topics that you're really interested in talking with people about? Like you're standing in the hall, somebody sees you and they're like, oh, I wanna go talk to Dax. What is something that they could bring up that would really get you talking? Well, if your name is Aaron Francis
and you're interested in talking with me, I'm very curious, because Aaron has a secret project that he won't tell anyone about, but he keeps just talking about it. So if your name is Aaron Francis and you wanna come talk to me, you should probably just tell me what that is, because I'm very curious. But outside of that, so a lot of my work is in infrastructure. I do a ton of work deploying to major clouds,
to minor clouds, to one-off providers. So anything that you're thinking about in the infrastructure space, the future of what that looks like, the future of the boring things like AWS, yeah, I think those are areas that I can probably talk infinitely about. But in general, I'm kind of into a lot of things. I don't have to chat about anything, really.
Very cool. Sweet. And one last thing, Dax. What is it that gets you to go to events? Why do you go to in-person stuff? Because you do a lot of stuff online already, and so even coming to speak at Epic Web Conf, you could talk about OpenAuth online and just publish it as a YouTube video
and accomplish that education piece. So it's not the education. What is it that brings you out to conferences? Yeah, I just like going somewhere new. It's like a great excuse to just be in a place that I haven't been to with some context around like, okay, there's gonna be people that I know there, people that are from there that can tell me about it.
So the travel part of it is interesting. And then the second part is just hanging out with people that I, again, that share a context of we kind of all work on the same thing, and it's just fun to hang out and talk for a bit. So ultimately it is just about the people that are going.
I think the, it's like a great thing and also a curse, which is the internet has given me so many really, really good friends that I have crazy in common with and I interact with every single day. The curse is we all live in different cities.
So any excuse to be able to hang out in person for a bit is a good one. Yeah, I completely agree. I love meeting up with people and it's especially awesome when you've only known each other online and then you meet the first time and it just changes that relationship.
Even if you go back to just being online all the time, because you've met, like it makes that relationship better. Yep, exactly. Yeah, it's like our brains are just wired for that. And when we don't have it at all, it's a lot weirder. Yeah. Yeah. Yeah, well, hey, thanks Stacks for giving us some of your time to get to know you a little bit.
Really looking forward to seeing you in March. Yeah, likewise. Okay, see you everybody.