POPULARITY
In this deep dive into the beginnings of Rockstar Bobby and Matt Who, What, Where, When, and How Rockstar Gaming became one of the most iconic video game franchises in history. Tune in next week to see a full portfolio breakdown of all Rockstar IP ----------------------------------------------------- LET'S CONNECT Podcast: https://open.spotify.com/show/4Eo0q02x6SmCkWWEwxLCRE Discord: https://discord.com/invite/BScMqXWPqv Instagram: https://bit.ly/3dXoZA7 Tik Tok: https://bit.ly/3uEnYne Twitter: https://twitter.com/playconomics --------------------------------------------- Playconomics is a weekly Podcast breaking down the business behind the 138 billion dollar industry that is Video Games. Hosted by industry nobodies (yet) Bobby Kawecki & Matt Mascari, Playconomics aims to educate and entertain, running down the news of the week, speculating, commentating, and having a great time. New episodes post each Monday at 9:00 am EST #playconomics #videogamepodcast #Videogamenews #rockstar #gta #gta5 #gtaonline #gaming #videogames #reddeadredemption #reddeadonline #finance #business
About MattMatt is a Sr. Architect in Belfast, an AWS DevTools Hero, Serverless Architect, Author and conference speaker. He is focused on creating the right environment for empowered teams to rapidly deliver business value in a well-architected, sustainable and serverless-first way.You can usually find him sharing reusable, well architected, serverless patterns over at cdkpatterns.com or behind the scenes bringing CDK Day to life.Links Referenced: Previous guest appearance: https://www.lastweekinaws.com/podcast/screaming-in-the-cloud/slinging-cdk-knowledge-with-matt-coulter/ The CDK Book: https://thecdkbook.com/ Twitter: https://twitter.com/NIDeveloper TranscriptAnnouncer: Hello, and welcome to Screaming in the Cloud with your host, Chief Cloud Economist at The Duckbill Group, Corey Quinn. This weekly show features conversations with people doing interesting work in the world of cloud, thoughtful commentary on the state of the technical world, and ridiculous titles for which Corey refuses to apologize. This is Screaming in the Cloud.Corey: Welcome to Screaming in the Cloud. I'm Corey Quinn. One of the best parts about, well I guess being me, is that I can hold opinions that are… well, I'm going to be polite and call them incendiary, and that's great because I usually like to back them in data. But what happens when things change? What happens when I learn new things?Well, do I hold on to that original opinion with two hands at a death grip or do I admit that I was wrong in my initial opinion about something? Let's find out. My guest today returns from earlier this year. Matt Coulter is a senior architect since he has been promoted at Liberty Mutual. Welcome back, and thanks for joining me.Matt: Yeah, thanks for inviting me back, especially to talk about this topic.Corey: Well, we spoke about it a fair bit at the beginning of the year. And if you're listening to this, and you haven't heard that show, it's not that necessary to go into; mostly it was me spouting uninformed opinions about the CDK—the Cloud Development Kit, for those who are unfamiliar—I think of it more or less as what if you could just structure your cloud resources using a programming language you claim to already know, but in practice, copy and paste from Stack Overflow like the rest of us? Matt, you probably have a better description of what the CDK is in practice.Matt: Yeah, so we like to say it's imperative code written in a declarative way, or declarative code written in an imperative way. Either way, it lets you write code that produces CloudFormation. So, it doesn't really matter what you write in your script; the point is, at the end of the day, you still have the CloudFormation template that comes out of it. So, the whole piece of it is that it's a developer experience, developer speed play, that if you're from a background that you're more used to writing a programming language than a YAML, you might actually enjoy using the CDK over writing straight CloudFormation or SAM.Corey: When I first kicked the tires on the CDK, my first initial obstacle—which I've struggled with in this industry for a bit—is that I'm just good enough of a programmer to get myself in trouble. Whenever I wind up having a problem that StackOverflow doesn't immediately shine a light on, my default solution is to resort to my weapon of choice, which is brute force. That sometimes works out, sometimes doesn't. And as I went through the CDK, a couple of times in service to a project that I'll explain shortly, I made a bunch of missteps with it. The first and most obvious one is that AWS claims publicly that it has support in a bunch of languages: .NET, Python, there's obviously TypeScript, there's Go support for it—I believe that went generally available—and I'm sure I'm missing one or two, I think? Aren't I?Matt: Yeah, it's: TypeScript, JavaScript, Python Java.Net, and Go. I think those are the currently supported languages.Corey: Java. That's the one that I keep forgetting. It's the block printing to the script that is basically Java cursive. The problem I run into, and this is true of most things in my experience, when a company says that we have deployed an SDK for all of the following languages, there is very clearly a first-class citizen language and then the rest that more or less drift along behind with varying degrees of fidelity. In my experience, when I tried it for the first time in Python, it was not a great experience for me.When I learned just enough JavaScript, and by extension TypeScript, to be dangerous, it worked a lot better. Or at least I could blame all the problems I ran into on my complete novice status when it comes to JavaScript and TypeScript at the time. Is that directionally aligned with what you've experienced, given that you work in a large company that uses this, and presumably, once you have more than, I don't know, two developers, you start to take on aspects of a polyglot shop no matter where you are, on some level?Matt: Yeah. So personally, I jump between Java, Python, and TypeScript whenever I'm writing projects. So, when it comes to the CDK, you'd assume I'd be using all three. I typically stick to TypeScript and that's just because personally, I've had the best experience using it. For anybody who doesn't know the way CDK works for all the languages, it's not that they have written a custom, like, SDK for each of these languages; it's a case of it uses a Node process underneath them and the language actually interacts with—it's like the compiled JavaScript version is basically what they all interact with.So, it means there are some limitations on what you can do in that language. I can't remember the full list, but it just means that it is native in all those languages, but there are certain features that you might be like, “Ah,” whereas, in TypeScript, you can just use all of TypeScript. And my first inclination was actually, I was using the Python one and I was having issues with some compiler errors and things that are just caused by that process. And it's something that talking in the cdk.dev Slack community—there is actually a very active—Corey: Which is wonderful, I will point out.Matt: [laugh]. Thank you. There is actually, like, an awesome Python community in there, but if you ask them, they would all ask for improvements to the language. So, personally if someone's new, I always recommend they start with TypeScript and then branch out as they learn the CDK so they can understand is this a me problem, or is this a problem caused by the implementation?Corey: From my perspective, I didn't do anything approaching that level of deep dive. I took a shortcut that I find has served me reasonably well in the course of my career, when I'm trying to do something in Python, and you pull up a tutorial—which I'm a big fan of reading experience reports, and blog posts, and here's how to get started—and they all have the same problem, which is step one, “Run npm install.” And that's “Hmm, you know, I don't recall that being a standard part of the Python tooling.” It's clearly designed and interpreted and contextualized through a lens of JavaScript. Let's remove that translation layer, let's remove any weird issues I'm going to have in that transpilation process, and just talk in the language it written in. Will this solve my problems? Oh, absolutely not, but it will remove a subset of them that I am certain to go blundering into like a small lost child trying to cross an eight-lane freeway.Matt: Yeah. I've heard a lot of people say the same thing. Because the CDK CLI is a Node process, you need it no matter what language you use. So, if they were distributing some kind of universal binary that just integrated with the languages, it would definitely solve a lot of people's issues with trying to combine languages at deploy time.Corey: One of the challenges that I've had as I go through the process of iterating on the project—but I guess I should probably describe it for those who have not been following along with my misadventures; I write blog posts about it from time to time because I need a toy problem to kick around sometimes because my consulting work is all advisory and I don't want to be a talking head-I have a Twitter client called lasttweetinaws.com. It's free; go and use it. It does all kinds of interesting things for authoring Twitter threads.And I wanted to deploy that to a bunch of different AWS regions, as it turns out, 20 or so at the moment. And that led to a lot of interesting projects and having to learn how to think about these things differently because no one sensible deploys an application simultaneously to what amounts to every AWS region, without canary testing, and having a phased rollout in the rest. But I'm reckless, and honestly, as said earlier, a bad programmer. So, that works out. And trying to find ways to make this all work and fit together led iteratively towards me discovering that the CDK was really kind of awesome for a lot of this.That said, there were definitely some fairly gnarly things I learned as I went through it, due in no small part to help I received from generous randos in the cdk.dev Slack team. And it's gotten to a point where it's working, and as an added bonus, I even mostly understand what he's doing, which is just kind of wild to me.Matt: It's one of those interesting things where because it's a programming language, you can use it out of the box the way it's designed to be used where you can just write your simple logic which generates your CloudFormation, or you can do whatever crazy logic you want to do on top of that to make your app work the way you want it to work. And providing you're not in a company like Liberty, where I'm going to do a code review, if no one's stopping you, you can do your crazy experiments. And if you understand that, it's good. But I do think something like the multi-region deploy, I mean, with CDK, if you'd have a construct, it takes in a variable that you can just say what the region is, so you can actually just write a for loop and pass it in, which does make things a lot easier than, I don't know, try to do it with a YAML, which you can pass in parameters, but you're going to get a lot more complicated a lot quicker.Corey: The approach that I took philosophically was I wrote everything in a region-agnostic way. And it would be instantiated and be told what region to run it in as an environment variable that CDK deploy was called. And then I just deploy 20 simultaneous stacks through GitHub Actions, which invoke custom runners that runs inside of a Lambda function. And that's just a relatively basic YAML file, thanks to the magic of GitHub Actions matrix jobs. So, it fires off 20 simultaneous processes and on every commit to the main branch, and then after about two-and-a-half minutes, it has been deployed globally everywhere and I get notified on anything that fails, which is always fun and exciting to learn those things.That has been, overall, just a really useful experiment and an experience because you're right, you could theoretically run this as a single CDK deploy and then wind up having an iterate through a list of regions. The challenge I have there is that unless I start getting into really convoluted asynchronous concurrency stuff, it feels like it'll just take forever. At two-and-a-half minutes a region times 20 regions, that's the better part of an hour on every deploy and no one's got that kind of patience. So, I wound up just parallelizing it a bit further up the stack. That said, I bet they are relatively straightforward ways, given the async is a big part of JavaScript, to do this simultaneously.Matt: One of the pieces of feedback I've seen about CDK is if you have multiple stacks in the same project, it'll deploy them one at a time. And that's just because it tries to understand the dependencies between the stacks and then it works out which one should go first. But a lot of people have said, “Well, I don't want that. If I have 20 stacks, I want all 20 to go at once the way you're saying.” And I have seen that people have been writing plugins to enable concurrent deploys with CDK out of the box. So, it may be something that it's not an out-of-the-box feature, but it might be something that you can pull in a community plug-in to actually make work.Corey: Most of my problems with it at this point are really problems with CloudFormation. CloudFormation does not support well, if at all, secure string parameters from the AWS Systems Manager parameter store, which is my default go-to for secret storage, and Secrets Manager is supported, but that also cost 40 cents a month per secret. And not for nothing, I don't really want to have all five secrets deployed to Secrets Manager in every region this thing is in. I don't really want to pay $20 a month for this basically free application, just to hold some secrets. So, I wound up talking to some folks in the Slack channel and what we came up with was, I have a centralized S3 bucket that has a JSON object that lives in there.It's only accessible from the deployment role, and it grabs that at deploy time and stuffs it into environment variables when it pushes these things out. That's the only stateful part of all of this. And it felt like that is, on some level, a pattern that a lot of people would benefit from if it had better native support. But the counterargument that if you're only deploying to one or two regions, then Secrets Manager is the right answer for a lot of this and it's not that big of a deal.Matt: Yeah. And it's another one of those things, if you're deploying in Liberty, we'll say, “Well, your secret is unencrypted at runtime, so you probably need a KMS key involved in that,” which as you know, the costs of KMS, it depends on if it's a personal solution or if it's something for, like, a Fortune 100 company. And if it's personal solution, I mean, what you're saying sounds great that it's IAM restricted in S3, and then that way only at deploy time can be read; it actually could be a custom construct that someone can build and publish out there to the construct library—or the construct hub, I should say.Corey: To be clear, the reason I'm okay with this, from a security perspective is one, this is in a dedicated AWS account. This is the only thing that lives in that account. And two, the only API credentials we're talking about are the application-specific credentials for this Twitter client when it winds up talking to the Twitter API. Basically, if you get access to these and are able to steal them and deploy somewhere else, you get no access to customer data, you get—or user data because this is not charge for anything—you get no access to things that have been sent out; all you get to do is submit tweets to Twitter and it'll have the string ‘Last Tweet in AWS' as your client, rather than whatever normal client you would use. It's not exactly what we'd call a high-value target because all the sensitive to a user data lives in local storage in their browser. It is fully stateless.Matt: Yeah, so this is what I mean. Like, it's the difference in what you're using your app for. Perfect case of, you can just go into the Twitter app and just withdraw those credentials and do it again if something happens, whereas as I say, if you're building it for Liberty, that it will not pass a lot of our Well-Architected reviews, just for that reason.Corey: If I were going to go and deploy this at a more, I guess, locked down environment, I would be tempted to find alternative approaches such as having it stored encrypted at rest via KMS in S3 is one option. So, is having global DynamoDB tables that wind up grabbing those things, even grabbing it at runtime if necessary. There are ways to make that credential more secure at rest. It's just, I look at this from a real-world perspective of what is the actual attack surface on this, and I have a really hard time just identifying anything that is going to be meaningful with regard to an exploit. If you're listening to this and have a lot of thoughts on that matter, please reach out I'm willing to learn and change my opinion on things.Matt: One thing I will say about the Dynamo approach you mentioned, I'm not sure everybody knows this, but inside the same Dynamo table, you can scope down a row. You can be, like, “This row and this field in this row can only be accessed from this one Lambda function.” So, there's a lot of really awesome security features inside DynamoDB that I don't think most people take advantage of, but they open up a lot of options for simplicity.Corey: Is that tied to the very recent announcement about Lambda getting SourceArn as a condition key? In other words, you can say, “This specific Lambda function,” as opposed to, “A Lambda in this account?” Like that was a relatively recent Advent that I haven't fully explored the nuances of.Matt: Yeah, like, that has opened a lot of doors. I mean, the Dynamo being able to be locked out in your row has been around for a while, but the new Lambda from SourceArn is awesome because, yeah, as you say, you can literally say this thing, as opposed to, you have to start going into tags, or you have to start going into something else to find it.Corey: So, I want to talk about something you just alluded to, which is the Well-Architected Framework. And initially, when it launched, it was a whole framework, and AWS made a lot of noise about it on keynote stages, as they are want to do. And then later, they created a quote-unquote, “Well-Architected Tool,” which let's be very direct, it's the checkbox survey form, at least the last time I looked at it. And they now have the six pillars of the Well-Architected Framework where they talk about things like security, cost, sustainability is the new pillar, I don't know, absorbency, or whatever the remainders are. I can't think of them off the top of my head. How does that map to your experience with the CDK?Matt: Yeah, so out of the box, the CDK from day one was designed to have sensible defaults. And that's why a lot of the things you deploy have opinions. I talked to a couple of the Heroes and they were like, “I wish it had less opinions.” But that's why whenever you deploy something, it's got a bunch of configuration already in there. For me, in the CDK, whenever I use constructs, or stacks, or deploying anything in the CDK, I always build it in a well-architected way.And that's such a loaded sentence whenever you say the word ‘well-architected,' that people go, “What do you mean?” And that's where I go through the six pillars. And in Liberty, we have a process, it used to be called SCORP because it was five pillars, but not SCORPS [laugh] because they added sustainability. But that's where for every stack, we'll go through it and we'll be like, “Okay, let's have the discussion.” And we will use the tool that you mentioned, I mean, the tool, as you say, it's a bunch of tick boxes with a text box, but the idea is we'll get in a room and as we build the starter patterns or these pieces of infrastructure that people are going to reuse, we'll run the well-architected review against the framework before anybody gets to generate it.And then we can say, out of the box, if you generate this thing, these are the pros and cons against the Well-Architected Framework of what you're getting. Because we can't make it a hundred percent bulletproof for your use case because we don't know it, but we can tell you out of the box, what it does. And then that way, you can keep building so they start off with something that is well documented how well architected it is, and then you can start having—it makes it a lot easier to have those conversations as they go forward. Because you just have to talk about the delta as they start adding their own code. Then you can and you go, “Okay, you've added these 20 lines. Let's talk about what they do.” And that's why I always think you can do a strong connection between infrastructure-as-code and well architected.Corey: As I look through the actual six pillars of the Well-Architected Framework: sustainability, cost optimization, performance, efficiency, reliability, security, and operational excellence, as I think through the nature of what this shitpost thread Twitter client is, I am reasonably confident across all of those pillars. I mean, first off, when it comes to the cost optimization pillar, please, don't come to my house and tell me how that works. Yeah, obnoxiously the security pillar is sort of the thing that winds up causing a problem for this because this is an account deployed by Control Tower. And when I was getting this all set up, my monthly cost for this thing was something like a dollar in charges and then another sixteen dollars for the AWS config rule evaluations on all of the deploys, which is… it just feels like a tax on going about your business, but fine, whatever. Cost and sustainability, from my perspective, also tend to be hand-in-glove when it comes to this stuff.When no one is using the client, it is not taking up any compute resources, it has no carbon footprint of which to speak, by my understanding, it's very hard to optimize this down further from a sustainability perspective without barging my way into the middle of an AWS negotiation with one of its power companies.Matt: So, for everyone listening, watch as we do a live well-architected review because—Corey: Oh yeah, I expect—Matt: —this is what they are. [laugh].Corey: You joke; we should do this on Twitter one of these days. I think would be a fantastic conversation. Or Twitch, or whatever the kids are using these days. Yeah.Matt: Yeah.Corey: And again, if so much of it, too, is thinking about the context. Security, you work for one of the world's largest insurance companies. I shitpost for a living. The relative access and consequences of screwing up the security on this are nowhere near equivalent. And I think that's something that often gets lost, per the perfect be the enemy of the good.Matt: Yeah that's why, unfortunately, the Well-Architected Tool is quite loose. So, that's why they have the Well-Architected Framework, which is, there's a white paper that just covers anything which is quite big, and then they wrote specific lenses for, like, serverless or other use cases that are shorter. And then when you do a well-architected review, it's like loose on, sort of like, how are you applying the principles of well-architected. And the conversation that we just had about security, so you would write that down in the box and be, like, “Okay, so I understand if anybody gets this credential, it means they can post this Last Tweet in AWS, and that's okay.”Corey: The client, not the Twitter account, to be clear.Matt: Yeah. So, that's okay. That's what you just mark down in the well-architected review. And then if we go to day one on the future, you can compare it and we can go, “Oh. Okay, so last time, you said this,” and you can go, “Well, actually, I decided to—” or you just keep it as a note.Corey: “We pivoted. We're a bank now.” Yeah.Matt: [laugh]. So, that's where—we do more than tweets now. We decided to do microtransactions through cryptocurrency over Twitter. I don't know but if you—Corey: And that ends this conversation. No no. [laugh].Matt: [laugh]. But yeah, so if something changes, that's what the well-architected reviews for. It's about facilitating the conversation between the architect and the engineer. That's all it is.Corey: This episode is sponsored in part by our friend EnterpriseDB. EnterpriseDB has been powering enterprise applications with PostgreSQL for 15 years. And now EnterpriseDB has you covered wherever you deploy PostgreSQL on-premises, private cloud, and they just announced a fully-managed service on AWS and Azure called BigAnimal, all one word. Don't leave managing your database to your cloud vendor because they're too busy launching another half-dozen managed databases to focus on any one of them that they didn't build themselves. Instead, work with the experts over at EnterpriseDB. They can save you time and money, they can even help you migrate legacy applications—including Oracle—to the cloud. To learn more, try BigAnimal for free. Go to biganimal.com/snark, and tell them Corey sent you.Corey: And the lens is also helpful in that this is a serverless application. So, we're going to view it through that lens, which is great because the original version of the Well-Architected Tool is, “Oh, you built this thing entirely in Lambda? Have you bought some reserved instances for it?” And it's, yeah, why do I feel like I have to explain to AWS how their own systems work? This makes it a lot more streamlined and talks about this, though, it still does struggle with the concept of—in my case—a stateless app. That is still something that I think is not the common path. Imagine that: my code is also non-traditional. Who knew?Matt: Who knew? The one thing that's good about it, if anybody doesn't know, they just updated the serverless lens about, I don't know, a week or two ago. So, they added in a bunch of more use cases. So, if you've read it six months ago, or even three months ago, go back and reread it because they spent a good year updating it.Corey: Thank you for telling me that. That will of course wind up in next week's issue of Last Week in AWS. You can go back and look at the archives and figure out what week record of this then. Good work. One thing that I have learned as well as of yesterday, as it turns out, before we wound up having this recording—obviously because yesterday generally tends to come before today, that is a universal truism—is it I had to do a bit of refactoring.Because what I learned when I was in New York live-tweeting the AWS Summit, is that the Route 53 latency record works based upon where your DNS server is. Yeah, that makes sense. I use Tailscale and wind up using my Pi-hole, which lives back in my house in San Francisco. Yeah, I was always getting us-west-1 from across the country. Cool.For those weird edge cases like me—because this is not the common case—how do I force a local region? Ah, I'll give it its own individual region prepend as a subdomain. Getting that to work with both the global lasttweetinaws.com domain as well as the subdomain on API Gateway through the CDK was not obvious on how to do it.Randall Hunt over at Caylent was awfully generous and came up with a proof-of-concept in about three minutes because he's Randall, and that was extraordinarily helpful. But a challenge I ran into was that the CDK deploy would fail because the way that CloudFormation was rendered in the way it was trying to do stuff, “Oh, that already has that domain affiliated in a different way.” I had to do a CDK destroy then a CDK deploy for each one. Now, not the end of the world, but it got me thinking, everything that I see around the CDK more or less distills down to either greenfield or a day one experience. That's great, but throw it all away and start over is often not what you get to do.And even though Amazon says it's always day one, those of us in, you know, real companies don't get to just treat everything as brand new and throw away everything older than 18 months. What is the day two experience looking like for you? Because you clearly have a legacy business. By legacy, I of course, use it in the condescending engineering term that means it makes actual money, rather than just telling really good stories to venture capitalists for 20 years.Matt: Yeah. We still have mainframes running that make a lot of money. So, I don't mock legacy at all.Corey: “What's that piece of crap do?” “Well, about $4 billion a year in revenue. Perhaps show some respect.” It's a common refrain.Matt: Yeah, exactly. So yeah, anyone listening, don't mock legacy because as Corey says, it is running the business. But for us when it comes to day two, it's something that I'm actually really passionate about this in general because it is really easy. Like I did it with CDK patterns, it's really easy to come out and be like, “Okay, we're going to create a bunch of starter patterns, or quickstarts”—or whatever flavor that you came up with—“And then you're going to deploy this thing, and we're going to have you in production and 30 seconds.” But even day one later that day—not even necessarily day two—it depends on who it was that deployed it and how long they've been using AWS.So, you hear these stories of people who deployed something to experiment, and they either forget to delete, it cost them a lot of money or they tried to change it and it breaks because they didn't understand what was in it. And this is where the community starts to diverge in their opinions on what AWS CDK should be. There's a lot of people who think that at the minute CDK, even if you create an abstraction in a construct, even if I create a construct and put it in the construct library that you get to use, it still unravels and deploys as part of your deploy. So, everything that's associated with it, you don't own and you technically need to understand that at some point because it might, in theory, break. Whereas there's a lot of people who think, “Okay, the CDK needs to go server side and an abstraction needs to stay an abstraction in the cloud. And then that way, if somebody is looking at a 20-line CDK construct or stack, then it stays 20 lines. It never unravels to something crazy underneath.”I mean, that's one pro tip thing. It'd be awesome if that could work. I'm not sure how the support for that would work from a—if you've got something running on the cloud, I'm pretty sure AWS [laugh] aren't going to jump on a call to support some construct that I deployed, so I'm not sure how that will work in the open-source sense. But what we're doing at Liberty is the other way. So, I mean, we famously have things like the software accelerator that lets you pick a pattern or create your pipelines and you're deployed, but now what we're doing is we're building a lot of telemetry and automated information around what you deployed so that way—and it's all based on Well-Architected, common theme. So, that way, what you can do is you can go into [crosstalk 00:26:07]—Corey: It's partially [unintelligible 00:26:07], and partially at a glance, figure out okay, are there some things that can be easily remediated as we basically shift that whole thing left?Matt: Yeah, so if you deploy something, and it should be good the second you deploy it, but then you start making changes. Because you're Corey, you just start adding some stuff and you deploy it. And if it's really bad, it won't deploy. Like, that's the Liberty setup. There's a bunch of rules that all go, “Okay, that's really bad. That'll cause damage to customers.”But there's a large gap between bad and good that people don't really understand the difference that can cost a lot of money or can cause a lot of grief for developers because they go down the wrong path. So, that's why what we're now building is, after you deploy, there's a dashboard that'll just come up and be like, “Hey, we've noticed that your Lambda function has too little memory. It's going to be slow. You're going to have bad cold starts.” Or you know, things like that.The knowledge that I have had the gain through hard fighting over the past couple of years putting it into automation, and that way, combined with the well-architected reviews, you actually get me sitting in a call going, “Okay, let's talk about what you're building,” that hopefully guides people the right way. But I still think there's so much more we can do for day two because even if you deploy the best solution today, six months from now, AWS are releasing ten new services that make it easier to do what you just did. So, someone also needs to build something that shows you the delta to get to the best. And that would involve AWS or somebody thinking cohesively, like, these are how we use our products. And I don't think there's a market for it as a third-party company, unfortunately, but I do think that's where we need to get to, that at day two somebody can give—the way we're trying to do for Liberty—advice, automated that says, “I see what you're doing, but it would be better if you did this instead.”Corey: Yeah, I definitely want to spend more time thinking about these things and analyzing how we wind up addressing them and how we think about them going forward. I learned a lot of these lessons over a decade ago. I was fairly deep into using Puppet, and came to the fair and balanced conclusion that Puppet was a steaming piece of crap. So, the solution was that I was one of the very early developers behind SaltStack, which was going to do everything right. And it was and it was awesome and it was glorious, right up until I saw an environment deployed by someone else who was not as familiar with the tool as I was, at which point I realized hell is other people's use cases.And the way that they contextualize these things, you craft a finely balanced torque wrench, it's a thing of beauty, and people complain about the crappy hammer. “You're holding it wrong. No, don't do it that way.” So, I have an awful lot of sympathy for people building platform-level tooling like this, where it works super well for the use case that they're in, but not necessarily… they're not necessarily aligned in other ways. It's a very hard nut to crack.Matt: Yeah. And like, even as you mentioned earlier, if you take one piece of AWS, for example, API Gateway—and I love the API Gateway team; if you're listening, don't hate on me—but there's, like, 47,000 different ways you can deploy an API Gateway. And the CDK has to cover all of those, it would be a lot easier if there was less ways that you could deploy the thing and then you can start crafting user experiences on a platform. But whenever you start thinking that every AWS component is kind of the same, like think of the amount of ways you're can deploy a Lambda function now, or think of the, like, containers. I'll not even go into [laugh] the different ways to run containers.If you're building a platform, either you support it all and then it sort of gets quite generic-y, or you're going to do, like, what serverless cloud are doing though, like Jeremy Daly is building this unique experience that's like, “Okay, the code is going to build the infrastructure, so just build a website, and we'll do it all behind it.” And I think they're really interesting because they're sort of opposites, in that one doesn't want to support everything, but should theoretically, for their slice of customers, be awesome, and then the other ones, like, “Well, let's see what you're going to do. Let's have a go at it and I should hopefully support it.”Corey: I think that there's so much that can be done on this. But before we wind up calling it an episode, I had one further question that I wanted to explore around the recent results of the community CDK survey that I believe is a quarterly event. And I read the analysis on this, and I talked about it briefly in the newsletter, but it talks about adoption and a few other aspects of it. And one of the big things it looks at is the number of people who are contributing to the CDK in an open-source context. Am I just thinking about this the wrong way when I think that, well, this is a tool that helps me build out cloud infrastructure; me having to contribute code to this thing at all is something of a bug, whereas yeah, I want this thing to work out super well—Docker is open-source, but you'll never see me contributing things to Docker ever, as a pull request, because it does, as it says on the tin; I don't have any problems that I'm aware of that, ooh, it should do this instead. I mean, I have opinions on that, but those aren't pull requests; those are complete, you know, shifts in product strategy, which it turns out is not quite done on GitHub.Matt: So, it's funny I, a while ago, was talking to a lad who was the person who came up with the idea for the CDK. And CDK is pretty much the open-source project for AWS if you look at what they have. And the thought behind it, it's meant to evolve into what people want and need. So yes, there is a product manager in AWS, and there's a team fully dedicated to building it, but the ultimate aspiration was always it should be bigger than AWS and it should be community-driven. Now personally, I'm not sure—like you just said it—what the incentive is, given that right now CDK only works with CloudFormation, which means that you are directly helping with an AWS tool, but it does give me hope for, like, their CDK for Terraform, and their CDK for Kubernetes, and there's other flavors based on the same technology as AWS CDK that potentially could have a thriving open-source community because they work across all the clouds. So, it might make more sense for people to jump in there.Corey: Yeah, I don't necessarily think that there's a strong value proposition as it stands today for the idea of the CDK becoming something that works across other cloud providers. I know it technically has the capability, but if I think that Python isn't quite a first-class experience, I don't even want to imagine what other providers are going to look like from that particular context.Matt: Yeah, and that's from what I understand, I haven't personally jumped into the CDK for Terraform and we didn't talk about it here, but in CDK, you get your different levels of construct. And is, like, a CloudFormation-level construct, so everything that's in there directly maps to a property in CloudFormation, and then L2 is AWS's opinion on safe defaults, and then L3 is when someone like me comes along and turns it into something that you may find useful. So, it's a pattern. As far as I know, CDK for Terraform is still on L1. They haven't got the rich collection—Corey: And L4 is just hiring you as a consultant—Matt: [laugh].Corey: —to come in fix my nonsense for me?Matt: [laugh]. That's it. L4 could be Pulumi recently announced that you can use AWS CDK constructs inside it. But I think it's one of those things where the constructs, if they can move across these different tools the way AWS CDK constructs now work inside Pulumi, and there's a beta version that works inside CDK for Terraform, then it may or may not make sense for people to contribute to this stuff because we're not building at a higher level. It's just the vision is hard for most people to get clear in their head because it needs articulated and told as a clear strategy.And then, you know, as you said, it is an AWS product strategy, so I'm not sure what you get back by contributing to the project, other than, like, Thorsten—I should say, so Thorsten who wrote the book with me, he is the number three contributor, I think, to the CDK. And that's just because he is such a big user of it that if he sees something that annoys him, he just comes in and tries to fix it. So, the benefit is, he gets to use the tool. But he is a super user, so I'm not sure, outside of super users, what the use case is.Corey: I really want to thank you for, I want to say spending as much time talking to me about this stuff as you have, but that doesn't really go far enough. Because so much of how I think about this invariably winds up linking back to things that you have done and have been advocating for in that community for such a long time. If it's not you personally, just, like, your fingerprints are all over this thing. So, it's one of those areas where the entire software developer ecosystem is really built on the shoulders of others who have done a lot of work that came before. Often you don't get any visibility of who those people are, so it's interesting whenever I get to talk to someone whose work I have directly built upon that I get to say thank you. So, thank you for this. I really do appreciate how much more straightforward a lot of this is than my previous approach of clicking in the console and then lying about it to provision infrastructure.Matt: Oh, no worries. Thank you for the thank you. I mean, at the end of the day, all of this stuff is just—it helps me as much as it helps everybody else, and we're all trying to do make everything quicker for ourselves, at the end of the day.Corey: If people want to learn more about what you're up to, where's the best place to find you these days? They can always take a job at Liberty; I hear good things about it.Matt: Yeah, we're always looking for people at Liberty, so come look up our careers. But Twitter is always the best place. So, I'm @NIDeveloper on Twitter. You should find me pretty quickly, or just type Matt Coulter into Google, you'll get me.Corey: I like it. It's always good when it's like, “Oh, I'm the top Google result for my own name.” On some level, that becomes an interesting thing. Some folks into it super well, John Smith has some challenges, but you know, most people are somewhere in the middle of that.Matt: I didn't used to be number one, but there's a guy called the Kangaroo Kid in Australia, who is, like, a stunt driver, who was number one, and [laugh] I always thought it was funny if people googled and got him and thought it was me. So, it's not anymore.Corey: Thank you again for, I guess, all that you do. And of course, taking the time to suffer my slings and arrows as I continue to revise my opinion of the CDK upward.Matt: No worries. Thank you for having me.Corey: Matt Coulter, senior architect at Liberty Mutual. I'm Cloud Economist Corey Quinn, and this is Screaming in the Cloud. If you've enjoyed this podcast, please leave a five-star review on your podcast platform of choice, whereas if you've hated this podcast, please leave a five-star review on your podcast platform of choice and leave an angry comment as well that will not actually work because it has to be transpiled through a JavaScript engine first.Corey: If your AWS bill keeps rising and your blood pressure is doing the same, then you need The Duckbill Group. We help companies fix their AWS bill by making it smaller and less horrifying. The Duckbill Group works for you, not AWS. We tailor recommendations to your business and we get to the point. Visit duckbillgroup.com to get started.Announcer: This has been a HumblePod production. Stay humble.
The roundtable interview with Matt and Caleb Maddix and a small group of people who are trying to change the world. Enjoy part two of this special 4 part episode series. Hit me up on IG! @russellbrunson Text Me! 208-231-3797 Join my newsletter at marketingsecrets.com ---Transcript--- Russell Brunson: What's up everybody, this is Russell Brunson. Welcome back to the Marketing Seekers Podcast. So I have got to ask you, what did you think about episode number one of the World Changers Roundtable? Hopefully, you loved it. There were so many things covered in that 42 minutes. Anyway, we are moving on to the next part of this interview. As you know, this is going to be broken down into four parts because they kept me there, handcuffed to a table, until 3:00 AM. I'm just joking. They didn't really. But, the question was so intriguing, we were having so much fun, we just kept going and going until finally I was like, "I have to fly out in three hours. I need to get back to my hotel." But now we're going to go dive into the second part. This next episode is probably another 30 to 40, 45 minutes or so as well. So these are some things we'll be covering in this one, which is really fun. We talk about, number one, why my business partner, Todd Dickerson, is so amazing, and hopefully give you ideas about if you're pursuing opportunities and trying to land your dream job or partnership or whatever. Number two, we talked about personality profiling, how we actually are hiring here at ClickFunnels. We talked about where my love for learning came from. We talked about transition for me, going from an athlete to a business person and a marketer. We talked about some of the lessons I learned from Lindsey Stirling, things I was not expecting to hear from her that totally changed everything for me. We talked about people who intrigue me, my interest in health and bio hacking. We talked about is there anything that happens inside of this business that gets me as excited as what I felt in wrestling. We talked about what thing is close, but nothing actually has ever hit it. We talked about the first Two Comma Club Awards. We talked about how to upgrade your identity as you grow. We talked about the fact that you have to cycle and fail and rebuild in your businesses. We talked about the launch of ClickFunnels and how it wasn't just the fact that I was a genius, because I wasn't. There are so many things. Talking about the grace of God and how it tied into the launch of ClickFunnels. We talked about some of my early products, like Zip Brander and Forum Fortunes. We talked about my Christmas Grinch sale, which was the very first big sale, big launch I ever did, to my little tiny list that made enough money to cover Christmas for my wife and I when we were first getting started. We talked about becoming worthy. We talked about list building, how it's better than buying ads, and a whole bunch of other things. It's amazing, this could be 40 courses all wrapped into one super podcast episode. So if you liked the last episode, I think you're going to love this one as well. And I've got two more after this, coming back, going deeper into this conversation with the Roundtable of World Changers. So, that said, we're going to cue the theme song. When we come back, we'll dive right into the second section here of the interview. Matt Maddix: Dave and Todd, I mean, just wow. Those dudes are like... But what about those guys? Russell: So here's Todd's story. So the real long story short, I bought some software, it was coding Ruby on Rails, didn't know that. Bought this company with the last... I didn't have the money. So I borrowed money, bought this company, coded on some platform we didn't know, and I was like, "Screw it," right? And I tried to hire people to fix it, nobody could fix this platform until finally I was leaving the office one day. I literally emailed the people saying, "Turn off the servers." We lost all of our money to this company. They shut it down. And I'm walking out of the office and I had this impression of like, "There could be someone on your email list who knows Ruby on Rails." I was like, "That's weird. I had a bunch of internet marketing nerds. There's no one that's like, 'Ruby on Rails...'" Anyway. It was starting with the impression from God, I stopped, turned back around, set the computer to open back up, sent an email to my list. "If you know Ruby on Rails, I'm looking for a partner. I bought a software company and it's not working. Please send me a message." Send. Matt: And that's all you said? Russell: Yeah. And lo and behold, three years earlier, Todd bought some random thing from me, happened to be on my email list. He built the website three or four years earlier that was making six figures a year on autopilot. Hadn't worked in four years. Just hanging out relaxing with his wife and his daughter. And an email comes in and it says, "If you know Ruby on Rails, I'm looking for a partner." He's like, "I know Ruby on Rails. I can be Russell's partner." Emails me back. And at first I see him and his beautiful wife and I'm like, "There's no way he's a programmer. There's no way." That was literally my thought. But he was the only person that responded back so I was like, "Okay, well, here's the login to the site. Fix it. I don't know what to do. I'm not a coder." I went to bed, woke up the next morning. He's like, "Cool, I fixed the site. Plus I found this, this, and this. And I changed this. And I moved these things,", and all of this stuff. He's like, "It's working now. Do you have anything else you want to do together?" I'm like, "Huh." And so I give him another project, another project. And for an entire year Todd and I worked together, and never once did he ever ask me for money, ever. Matt: Wow. Russell: Not a penny. And I remember he started finding Boise to work on a project together ... Matt: You're telling me he worked for you for an entire year? Russell: For free. More than a year. Caleb Maddix: Why was that? Russell: I don't know. I found out later. He'd gone to Robert Kiyosaki at this event and he said, "Find someone who's doing what you want to do and work for them for free." So he told me that years later. I didn't know that. Matt: Todd, if you're watching dude. I love you man. You're legit. Russell: And so he kept coming and he started coming to Boise and we started becoming friends. The smartest developer I've ever met. Literally the smartest person I've ever met. I'll go that far. Just genius. And he'd come out to Boise and we'd work on projects and ideas. We tried to launch a couple of things. None of them really worked. And we were just trying stuff. He was just always there, always serving, always doing stuff. And one day were in Boise and I was looking over his shoulder cause we're looking at stuff and I saw his email. And there's all these emails from some recruiting site or something. I was like, "What's that?" He's like, "Oh, it's people recruiting me for a Ruby job." And I was like, "Do you get a lot of those?" And he's like, "I get three or for a day." I'm like, "Really? Are they good offers?" He's like, "I don't know. Let's check it out." He opened it up and the first one was like $400,000 a year starting salary. I'm like, "What?" The next one is $350,000. The next was 5 ... Insane things. I'm like, "Why don't you do that?" He's like, "I don't want to work for them. I want to be your partner man." I'm like, "What?" And then I all of a sudden had this realization that I hadn't paid him in a year. We didn't have much money at the time, we're still at the backside of a business failure when we met. I'm like, "I can pay you maybe $50,000 a year. Can I pay you that?" He's like, "Whatever." So I told our little bookkeeper, "Pay Todd $50,000 a year." And they're like, "Okay." So he did that and next year we're paying $50,000 a year. We're doing stuff and we have more things. Started to get a little success here and there. Making more money. Back in Boise again. And I'm like, "Can I pay you some more?" And he's like, "Whatever." Matt: So he wasn't ever just asking? Russell: Never in his life has he asked me for money. Ever. So we bumped it up to $100,000 a year because that's what we got, the year before that, after a year or two working together. And then, it was crazy, the day Leadpages got the first round of funding for $5,000,000, the same day Todd was flying to Boise. And he gets the email. It's east coast so he's two hours ahead. He's awake and on the plane, he sees the email, forwards it to me, and then jumps in the plane. He's flying for four hours. I wake up. I see the email and I was like, "Leadpages? Got 5 ..." I was like, we built landing page software in the past. I was perplexed and angry. And then Todd lands. And Todd, he's a little guy, he comes into the office all angry. He's like, "Leadpages got 5 million!" He's like, "I can build Leadpages tonight. Do you want to build lead pages?" I'm like, "Yeah. Let's compete with Leadpages." He's like, "All right." Matt: No way. Dude. I love this. Russell: This is like angry Todd. I love angry Todd. I like all Todds, but angry Todd is the best Todd. Matt: Is it? Okay. Russell: He's just pissed because he's like, "I can build this tonight. Everything thing they got we can have done tonight." So we're getting all ready. What should we call it and everything. And then he's like, "Wait, we're building this. You want to add anything else to it?" And I was like, "Oh. Yeah. What if it did this? And what if it did this?" And we spent a week in front of a white board saying, "What if it did?", and we mapped out ClickFunnels. Matt: So you're talking about a week where you guys just locked in and you were just having fun. Just doodling and whatever. Russell: Yeah. He's like, "Oh, I can do that. We can do that." We're brainstorming all sorts of stuff so we map the whole thing out. Matt: Did you know at that moment you were onto something big? At that moment right there, when you guys were like ... Or was it just still like ... Russell: All lot of people have tried something like that. I tried before other people tried. No one had done it. So I was kind of skeptical but Todd's like, "I can do this. This is easy." I'm like, "Okay because I tried it ..." He's like, "No dude, I can do it. This is easy." So I was, excuse me, optimistically hopeful because he's a genius but I was also nervous. But anyways, we map it out and then we bought Clickpros.com. I wanted to call it ClickFusion because I own ClickFusion, but we'd had three failed businesses called ClickFusion. All of them failed and Todd was like, "No. It's bad karma. We can't." I'm like, "But the logo is so cool dude." Matt: I love it. You love the logo. Russell: And he's like, "No, we can't." He's like, "It's got a jinx on it or something. We can't do that. You have to come up with a different name." I was like, "But ClickFusion is the coolest name ever." So we're trying things. Click everything and then ClickFunnels. We're like, "Ah." That was the thing. We're so excited Matt: Who first said it? Do you remember? The words ClickFunnels. Caleb: It's almost like God saying, "Let there be light." Russell: I would assume it was me but I'm not positive. I'll have to ask Todd on that one. Caleb: Well, when you said it, was it instant? Like fire? Russell: It was insane, it was available. Matt: Oh, you know that feeling, right? Checking domains. You're like… chills. Russell: How has no one thought of this before? And so we got it and I remember I was driving him to the airport at the end of the week to take him back home. And we got to the airport. Boise airport, It's a small airport. So we pull up to the thing to get out and you can tell he's probably nervous waiting. And before we get out of the car he's like, "I really want to do this man. I'm excited." I'm like, "Me too. Me too." He's like, "I don't want to do this like your employee though. I want to do it as your partner." And in that moment, I was just like all the fear of ... I'd tried partners in the past. It hadn't worked. All this stuff and all the everything. And it was just this weird thing of just all the emotions were hitting me as he sat in the car, about to get out the car. I have 15, 20 seconds before he's going to to go. I was just thinking about him. I was like, he's never asked me for money. He's never done anything. He's served. He's given everything. I was just looking at him. I was like, "All right let's do it." He's like, "Cool." And he got out of the car and he's gone. Matt: Wait a minute. So at that moment? Is was that quick? Russell: That was it. Matt: It was a gut feeling that you just knew. That he was ... Russell: It was him. Yeah. And I was literally... I said this on stage at Funnel hacking live, outside of marrying my wife, it was the greatest decision I ever made. Matt: Yeah. I remember you saying that with tears. Russell: Yeah. Matt: Why though? I'm curious because it's not just ClickFunnels. Russell: He's amazing. If you look at our personality profiles, it's fascinating. We have the same personality profiles. The Myers-Briggs. Except for one letter's different. Where I'm a feeler he's a thinker. And it's been magical as a partnership because we both have so much respect for each other that we don't try to fight each other. And it's very much like if I wanted to do something, I'm like, "This is what I want to do. This what I'm feeling. What do you think?" And he'll come back and be like, "Well, I think this." And so I come up from feeling instead of thinking and it's really cool. So sometimes his thinking will trump my feeling. And I'm like, "You're actually right. Let's not do that." Or vice versa. Where he's like, "I'm thinking this." And I'm like, "I don't know why but I feel this." And he'll be like, "Okay." He respects that. We just have such mutual respect that we've never been in a fight. We've never argued. We've never had problems. It's been amazing. Matt: Wow. Russell: And he's similar to like we talk about with Dan. He went back home after us white boarding that, sat in his basement for five or six months and built ClickFunnels by himself. Caleb: Really just by himself? Russell: 100% by himself. Caleb: No other team. No other dev? Russell: It was just him. And the right before we launched, we brought in another partner, Dylan, who built the front-end editor and did a lot of the UI. And so then it was those two as we got closer and closer to the launch. And then for the next year it was just those two that did everything. And then after a year, we started bringing in other developers. But it was 100% Todd. Matt: Wow. Russell: He's amazing. In all aspects. You know you have friends you think they know everything about everything. That's like Todd except he actually knows everything about everything. You ask him anything and he's just like ... I don't know how he does it. And I'll always fact check him, like, "Oh my gosh. He's right again." He's brilliant. It's amazing. Matt: So for those of us who have partners or are maybe going into partnership, what's your best advice? And what do you feel like he does right that other partners don't do? Russell: I think the hardest thing with partners is typically we want to partner with someone who is just like us. We did a podcast most recently. Dean, Tony and I, right? We've done two partnerships. Both partnerships made it through the launch and they stopped. Made it through the launch and stopped. The podcast was like, "Why?" I love Dean. I love Tony. They're amazing. The problem is that me and Dean had the exact same skill set. Matt: Oh. Russell: And so the problem is that both of us are right. We both understand it right, but we do it differently. And so it's like You have two people, and so typically you want to partner with those people who are like you. You're like, "Oh, we think the same. We should be partners." But that's not necessarily the right thing because then you've got two alphas with the same skillset, and someone has to win and someone has to lose. And it's hard. Whereas me and Todd, we have different skill sets. There is never a winner or a loser. We can both win because different skill sets, both the same mission. It's really easy. So I think the biggest thing is you're trying to find the yin yang. You're not trying to find someone who thinks like you or acts like you. In fact, this is true in most hiring processes as well. I used to have people like, "Send me a video if you want this job." Right? So I get these videos, and the people that I wanted to hire were the people like me. I'm like, "This person's awesome. They think like me. They're a genius. They're amazing." You'll hire them, and within a week I'm like, "I hate this person." It's horrible. So we started shifting the way we do our hiring based on personality profiling instead. DISC profile drives most of my own personal hiring so I know that I'm a high D, high I, high S. No C at all. Right? And so the people I need to hire around me are high S, high C. The problem is the people I who I watched their videos and I'm pumped, they're high D, high I. So I'm like, "Yeah. These people are awesome. They're charismatic. I'm going to love them. They're drivers, they're awesome. Worst employees ever. Matt: Right. Russell: Right? So when people send us this profile, first I find the right profile and then from there I do interviews. Because if I interview ahead of time I get sold by the people who sell and then they're horrible employees. And so I make sure they're high S high C, because I know that if I talk to high S high C, I'm going to be kind of bummed out. Like, "Oh, I don't know if this is the kind of person that I'm going to jive with." But they're the best people to surround myself with because I'm such a high D high S. I'm a creator. I'm throwing things up in the air and I need people who are S and C, who are faithful finishers, who are going to take the things, capture them, and make sure that it's amazing. Matt: Do you feel like businesses and entrepreneurs are making a mistake by not having their employees and their team take these tests? Russell: 100%. I have a new company we're launching all about personality profiling because I'm such a big believer in it. Matt: Really? Tell me why. Top three reasons. Russell: It's in all things in life. If you're going to be a partner. If you're going to date someone. Understanding who they are is such a big part of it. Right? Because we think everyone sees the world the same way we see it and it is not true at all. The way you see it, the way we all see is so different and so if we don't understand that at a deep level, then I get upset by what you do and at what everyone's doing because it's like, "Don't you see what I see?" And the reality is no they don't. So if you start understanding people better ... In fact, the software can be called Understand About Me. It's a place you go and you take all the personality profiling and it gives you a page that can show somebody this is me. So in five seconds I can understand you perfectly they're like, "Oh, now I know how to work with you." Because I understand what you are, what your beliefs are, what your values, all the things I need to know about you, I can find it really quickly. Where normally you're going to go years with somebody before you understand them. I can look at a thing and get pretty dang close in a minute. Matt: Wow. Russell: Now I know hot interact with you and spend time with you and work with you. Things like that. Caleb: Question. Where does your love to learn come from? Because one of the things I noticed from being around you, it's always like yeah, so I had this moment where I geeked on this and I geeked out on this. It was health and suppliments, and marketing and personality types. There's all these different things you geek out on. Have you always been that way? Is it like you geek out on marketing, you saw the rewards from it, and you're like, "Wow, what if this goes into other areas?" Where does that come from? Russell: Yeah, I didn't always have my life. In fact, I had a fascinating conversation with Tom Bilyeu about this, because when I was growing up in high school I always thought I was a dumb kid. I thought I was an athlete, so I focused there. I thought I was an athlete, so I was a wrestler, that was my identity, that was where I focused at. I thought I was dumb. Because of that, straight C student high school and college, my cumulative GPA graduating from college was 2.3. Straight C's and one B maybe somewhere in there, right? Because I was a dumb kid. When I got done I ended my wrestling career, so I stopped being an athlete, and I was like, "Oh crap." I started to learn this business stuff and I don't like to read. I'm a dumb kid. What do I do? It was fascinating. Tom told me, because I had this epiphany, I'm not actually dumb. He's like, "Actually, the reality is you probably really were dumb. But then you changed, right?" So for me it was like I shifted. It was fascinating. Do you remember the Funnel Hacking Live where we had Lindsay Stirling perform? One of my favorite parts of that, she did a whole performance. If you guys don't know, Lindsay does violin dancing stuff, and afterwards I had a Q and A with her afterwards. I had this question I was so pumped to ask. I was waiting for her just to like, the question is, she was on America's Got Talent, and I think she took 7th place. When she got kicked off, Pierce Bronson or whatever said, "You've got no talent. You're no good." Whatever, right? So I was like, do you remember that time when he said that? What I thought she was going to say was, "Yeah, I proved him wrong. Yeah." I was like, "What did you feel after that?" She's like, "Yeah, I got home and I realized he was right. I wasn't very good. So I went back and I started practicing and I started working harder and eventually I became good enough." It was like, oh my gosh. I got chills when I was saying it again. Matt: Yeah. Russell: I remember when Tom said it to me, he was like, "You probably were dumb." I was like, "I was." Because I wasn't reading things. So with marketing that was the first thing for some reason that caught my attention, that got me excited, right? And then if you look at my DISC profile, ROI is my highest value. I have to see ROI in something or I don't want to do it. So when I saw an ROI on this reading, I was like, "Oh my gosh. I read a book, I got one little sentence, changed a color, made more money. Oh my gosh." That is where it started, 100%. I started learning that and I started getting obsessed with those things. As this business grew for me I started being more, I always joke that crazy people got attracted to me, right? The best health people, the best fitness people, the best in every market kind of came into our world somehow. So I started getting to meet all these people. When you're around someone who's the best in the world at the thing, and they start talking about the thing, you can't help but be like, "Oh my gosh, this is amazing." Right? You zone in on that. So whenever I meet someone that's amazing and I have a chance to talk to them like this I just geek out. Like when I met your dad the first time with you guys. That's when I bought your parenting course and everything. I was just like, I saw you and I saw him and I was like, "I want that." So I started going down that rabbit hole, right? I met Anthony DiClementi, I was like, "I love this guy. I have respect for him, I love him." Every time he talks about anything, he fascinates me, when he talks about something it fascinates me. I have to look down those things, right? When people fascinate me, the things that fascinate them start fascinating me and that's when I kind of go down those rabbit holes. This person is so intriguing and fascinating. What makes them that way? What are they doing. It's interesting. I'm not a good question asker. You guys are so good at question askers. I've never been good at asking questions, but I'm really good at watching what people do and then seeing it and trying to go down the rabbit hole. What are they doing, why are they doing it, that kind of thing. Caleb: He's a true master in it. You can just tell. What are some things you want to take the time to geek out on? I'm sure you see something and you're like I want to get on that but it's not a priority, I've got to do this. What are some things, if I had a week or two? Russell: Just free time with nothing else involved? Caleb: What's the next thing you're going to geek out on? Russell: Oh. I would say every probably three years I get re-excited about SEO, for some reason. I start going down that path again, because I love it. There's times in my business when that was the focused. It's not now at all, but I went through a couple ... Brian Dean's a real cool SEO guy, couple guys… I started dabbing my toe in again and I'm like, I just want to get back into it so bad. Right now SEO is actually our number 11 lead source as of today in ClickFunnels, which is amazing. So we handed SEO the first four or five years, now we're focused on it again. It's doing really well for us. I want to go deep there because I like that. Anyway, I haven't had a chance to do that. Any of the health stuff really, really fascinates me. Matt: Why? I'm curious. Why are you drawn to that so much? The health stuff. Russell: Because I've seen with myself ... My history is I got in wrestling, at the PAC 10 tournament was my last actual wrestling match. My wife was giving herself fertility shots in the stomach during PAC 10 so the next month se was pregnant. So I got done wrestling, got done competing, got done running, got done lifting. All my athletic career ended, and then my wife got pregnant. She's eating for three kids, and I'm pumped because I don't have to work out right now, she's hungry, I'm hungry, we're eating. We just kept eating and eating. So over the next seven to eight months my wife gained like 60 pounds, I gained like 60 pounds. We were doing it together so who cared, it was amazing. Then one day she has two babies and she loses like 45 pounds and I'm like, oh crap. I'm stuck here. Where did you go? This for me? Matt: Yeah. Russell: Thank you. Then at that time the business was starting and I was stressed out trying to figure it out and I didn't get healthy again. I just was in that state of being 65 pounds heavier for years. But I didn't know the difference, I didn't know that I felt differently, because I'd never been in a spot where I spent eight hours sitting behind a computer, so I didn't know what good felt like or bad felt like. I knew if I tried to wrestle I'd puke, so I was like I don't feel like I'm an athlete. I just felt normal, I thought. Eight years in I was like, I don't know, I looked at myself in the mirror and I was like, "Oh, what happened to you?" You know what I mean? I'm sure hopefully everybody's had a chance. I was like, huh. It was hard because in my head I knew how to work out, I knew how to train, I knew these things. Finally I was like, "I need to get a trainer." So I got a trainer for the first time. I'd never really done that before. Started going, and got me from I don't even know, 27, 28% body fat down to 12% in a matter of seven or eight months. I looked better, I felt better, but what's crazy is I could work twice as hard and twice as long. I wasn't tired. I was like, "I can keep going. My brain's on fire. This is amazing." Matt: Wow. Just from the ... Russell: I had no idea until I lost all the weight. All of a sudden it was just like, I can do so much more. I think, when I first met Anthony DiClementi the first time I was like, this is my problem right now. I am at work all day slaying dragons, doing all these things, I have this energy. I get home at night and my two little twin boys are there, and my little daughter, and I'm spent and I have no energy. How do I still be a present dad and how do I have these things? The next tier was the bio hacking stuff. How do you do these things? How do you increase energy? There's so many ways to do that, from light therapy to supplements to sleeping to sound to breath, all these crazy things that seem stupid. The first time Anthony's like, "We're going to do breath work." I'm like, "We're going to breathe? That's your bio hack? We're going to breathe together?" He's like, "Yeah, it's going to be amazing." I'm like super annoyed. What's the ROI on this, I've got to get back to work. So he sat me down in our gym. You've been in our wrestling room. He sat me down and he's like, "You have to sit because if you're standing you'll hit your head and you'll die." I'm like, what are you talking about? He sits me down and we do these breathing exercises where he's yelling at us and screaming. All this stuff is happening. If anyone's ever done deep breath work it's nuts. We're doing this thing where we're supposed to do this heavy, heavy breath work until he's like, what's going to happen is the world is going to ... Has anybody done jiu-jitsu here? Been tapped out before? Matt: Yeah. Russell: So you get choked out. What will happen, the carotid artery gets choked and the world starts shrinking like this. If you take pressure off it, it comes back to life. If you don't, it goes darker and darker until it disappears and you're gone, right? If you've never been choked out, that's what happens. It's a really fun experience. But you have the minute when you see it shrinking around you and then it's gone, right? He told me that's what's going to happen. You're going to breathe so much that the world around you is going to start shrinking. If you don't stop you're going to pass out. So we go all the way to where it starts shrinking, stops, and then when you hit that point you let me know and then you hold your breath for as long as you can. He's like, "How long can you hold your breath for?" I'm like, "Maybe a minute." He's like, "You'll do it for at least five." I was like, there's no way. So he says sit down, we're doing this breath thing, we're going like crazy and sure enough the walls start doing weird stuff. I feel like I'm on drugs. I'm sweating like crazy. We keep doing it. He's yelling at me. All of a sudden the world starts closing around me, I'm like, "What is happening?" And then he stops and is like, "Hold your breath." He starts the clock. I'm sitting here holding my breath forever, looking around. We had three or four of us guys all doing it at the same time. I'm freaking out. And then it starts getting quieter, things are slowing down, we're sitting there and then he's like let some of the pressure out but don't breathe in. Let pressure out, pressure out, pressure out, keep doing that, and it gets done and the stop clock is over five minutes. I'm just like, I just held my breath for five minutes. Matt: And you didn't even know it. Russell: Insane. And then the rest of the day we were on fire. It was just like, whoa. Right? We brought a cryo-sauna at our house and we go freeze in the cryo-sauna and the rest of the day you just feel ... That's the thing I love now, these little weird things. Light therapy, breathing, weird things that just seem stupid. You do it and you can go longer, you can think better, you can do stuff. All those things just get me so excited. Anthony's fun because he randomly will just ship me weird stuff in the mail. Just the weirdest things. It makes my wife so mad. It just shows up. There's a big old box. She's like, what's this from? I'm like, I'm hoping it's from Anthony, it's going to be amazing. Just weird things. Tons of stuff. I love that kind of stuff because the ROI on it is crazy. They're always these weird things. I have this headband someone sent me. You put this headband on, you put an app on and you start working and it just makes you not tired, makes you focused. These weird things. How does this work? I don't know. And they're like oh, it works because the waves over here sync your brain and change your brain waves and the creative state and all these things. I mean, I don't know how it works but I just wrote two chapters. Caleb: Do you do breath work every day? Russell: No, because it's so intense. If I had a coach who could walk me through it. I have a recording of Anthony doing it and I almost dread it because I know how hard it is. By the time you're done you're sweating. Caleb: I've got to get that recording. Russell: I'll get it to you. By the time you're sweating, you're like what just happened? I just breathed for five minutes. It's weird. Anyway, I would love to understand it on a deeper level but I don't understand a lot of the things now. Some of them I've gone deep on, but a lot of them I do without knowing why. I hate it because my wife will be like, "What's this do?" And I'm like, I don't know. Matt: Just love it. Russell: One of my buddies, Preston Eli, he wrote this blog post, he called it the Warriornaire Workout. In there he explains part of his morning workout. He's like, why do I do it? He's like, because Tony Robins does, and I obey all giants who fly helicopters and have stage presence. That quote goes to my head all the time. People ask me, why do you do that? I'm like, because I obey all giants who fly helicopters and have stage presence, that's it. I'm like, I don't know the reason why, Tony says so, therefore I will do it. I would like to understand it at a deeper level so I have a better response than I obey all giants with helicopters and stage presence. But that's a pretty good reason. Anyway. Matt: Real quick, does anybody else want to throw in a question for Russell? Anybody else here live with us? Caleb: Let me ask one more real fast. Because I want to. I want to ask this. We were just having sushi, I was asking you, what are some of the favorite periods of your life? One of them you said was wrestling, which I found funny because by far one of my favorite periods is baseball, which people wouldn't expect because obviously I've been on stage and all this other stuff and that should take the cake. But those moments when you're just on the field, you're in the zone, there's nothing better. Where, with what you get to do now, whether it's being live on a webinar or being on stage or whatever it is, where do you get the same feeling of wrestling? Do you know what I mean? You know, the feeling in your chest? Russell: Today while we were in line at the grocery store I talked to your dad about this. I said that the best feelings I ever had in my life were from wrestling. The feeling of winning a hard match that I wasn't supposed to win and getting your hand raised, I never felt something like that, that felt as good as that, ever. I've been searching in business to find that, and I've never found it. Speaker 3: Do you feel like sports is like business in any sense? Matt: Good question. Russell: For sure, yeah. There's a lot, for sure. What I was going to say is the closest I've ever gotten to feeling that is when you serve at an event and you see a table rush and you see not only people where they get the a-ha, but enough of an a-ha where it gets them to get up and to move. That's the closest I've ever felt to that. It's not as good, but it's the closest I've ever felt to that. Which is why I love doing the big things. I get a glimpse of that. Caleb: How close? Scale of one to 10. Wrestling's a 10. Where does that rank? Russell: If wrestling's a 10, I'd say it's about an eight. In fact it's interesting because when I first started in business I was racing for that, trying to find it, trying to find it, trying to find it. It took me years before I was like ... Matt: Is it disappointing? Russell: For sure, yeah. We launch today and make a million dollars and it's like, huh. That sucked. What else have we got. Give me something else. Matt: Exactly. Russell: The money goal is always what I thought was going to be the thing, and those always were just like, huh. In fact, literally one of the main reasons I did the Two Comma Club Awards, for me I need, maybe it's just from a decade of my life someone grabbing my hand and raising it. I was like, entrepreneurs need that. No one raises our hands. Two Comma Club Awards, for me, is me lifting their hands like you did it. I needed that, they need that. That's one of the main reasons I did that, because that's the equivalent of that. Anyway. Matt: How many millionaires have you created? Russell: This year we passed 1,000 people that won the two comma club award. We're over 120. Matt: How does it feel to say that? To say it? You know how sometimes it's like so many people that have passion or goals or huge dreams and visions, rarely do they really celebrate what's happening on the journey. Do you find yourself ever getting where your vision is so big and your passion is so deep that even saying things like there's 1,000 millionaires. Dude, that's huge. Man, 1,000 people that are millionaires because of you. Russell: I think the first time I really got that, probably the most impactful time, was the very first Funnel Hacking live that we gave away Two Comma Club Awards. It was the third Funnel Hacking live. It was a couple of months before that we had the idea of a Two Comma Club and an award, talking about that. I legitimately didn't know. I wonder if anyone in ClickFunnels has actually made a million dollars. I don't even know. So Dave went back and the database guys went through everything and I remember he came back and was like, there's 79 people right now that made a million dollars. I was just like, are you serious? Matt: Was it a boost of confidence? What did it do for you? Russell: It was one of those things, looking back on me doing these events where two people showed up and nobody showed up, hardly anybody, where I was so excited about this? I was like, how come nobody cares? To now it was like, this is actually, I've talked about this long enough people are believing it and now they're doing it. You start seeing it, and there's the fruits of it. In my mind I was like a million bucks, even then, ClickFunnel was new, I was like a million dollars is hard. Most of my friends I knew were like made somewhere near a million dollars. There were people who have been in this business for a long time. A million bucks is a big deal. That was most people's goal still. The fact that 79 people had done it, that was just weird to me. I think that was the biggest one, the realization that just like, oh my gosh. It's not just a theory and I think it works, it's working. It's working at a scale that was unfathomable to me at the time. 79 people. To go to 200 and then 500 and then 1,000 is crazy. Matt: What was your question, buddy? Speaker 4: You're talking about how at each level of success you hit, some of your mentors hit that ceiling, right? Because of the posturing, right? So ultimately I feel like when you get to a new level of success it requires you to upgrade your identity, your self image. What have you found is the number one routine, what's your process for upgrading the identity, upgrading your self image? Because I think that's so important because it can either hold you back and have you self sabotage and not take action and go after what you want, or it's going to be the thing that keeps you at that level and continues to propel you forward. What's kept you ... Russell: That's good. It's weaved through everything, right? The one that's the most obvious external, especially in our world, because you see marketers, most people when they first start selling whatever it is they're selling they're bragging about themselves. Here's my ad, here's my name. It's all about them, that's the first tier of it. And then the second tier, when they start having the realization, I feel like is when they stop talking about themselves and start talking about the people they've helped. Speaker 4: Mm. Russell: You see externally. You don't hear me talking about how much money I make. I'm not like, oh, check out what I got. I talk about all the other people. It's like, that's next year, is that. And then for me the third tier now, which has been really cool, is talking about Lady Boss, right? The success story isn't Kailin, it's Kailin's customers, right? So it's like that next tier. What you're talking about is like the external version of that. There's a lot of internal things that you've got to deal with, but you'll notice it shifting in people when you look at just their messaging and what they're saying. From the way they podcast, they video, they market, their ads and everything, it's the shift of it's not about me, it's about them. It's not even about them, that's the external version of it. Internally I think it's really, it's what we talked about, I can't remember why, but we brought up yesterday or today I had this really successful guy I met one time who the first time we met he was like tell me your story. So I was telling him the wrestle posturing story about how great I was. He was like, no. Tell me about the time you failed. So I was like, well, I'm in the middle of one right now. So I told him let me tell you. I told this whole thing. I remember afterwards I was so embarrassed. He's going to think I'm an idiot. You know, that fear? He was like, good, you cycled. I was like, what? He was like, I will not work with entrepreneurs who haven't cycled at least once. Because if they haven't then they still believe their own bio, right? I think that's the biggest thing, the internal version is that. The first time around, before you cycle, you think it's all you. I know for me it was. I remember doing this the first time, I'm like, I am a genius. I'm the smartest guy in the world. And then when it collapsed I was like, oh, there's a lot of things outside my control. This is not me. There is a team, there's God, there's all these other things that are making this possible. There's a scripture, I can't remember where it's at, it's the Bible, Book of Mormon, but it says you can either be humble or God will humble ... Ah, I'm misquoting it by far. But it's like God will humble people. You can be humble or he will humble you. So it's like, looking at that, I'm like round two I'm going to be a humble person because I don't want to be humbled again, right? Matt: I still feel it. Russell: This is not me. I understand, I look around now and it's 100% like there's no way I would be where I am right now if Dan Usher didn't make videos the way he does. There's no way I'd be here right now if Todd Dickerson could not code software the way he does. There's no way, all these things are so many people. Matt: You're so right. Russell: Then there's so many success stories that inside of it there's just so many people. And then there's the grace of God. I just look at the timeline of when ClickFunnels came into the market. I've now got funnels for a decade, nobody cared. Then all these things were happening, we started having the idea for ClickFunnels, started building it, we're creating it, and then literally we go to traffic and conversion, Todd's halfway done building ClickFunnels, and Ryan Deiss stands on stage in the biggest event at the time and he spends the entire four days talking about funnels. Talking about how funnels are the greatest thing. Everybody's like, what's a funnel? They're all taking notes. Me and Todd are like, does he know we're building? He's talking about funnels. He's talking about funnels like crazy. And then the next day everyone gets home from traffic and conversion and everybody that day, the next day 8,000 funnel consultants pop up. Everybody's a funnel consultant. Everyone is on Facebook talking about funnel consultants and teaching funnels and all this stuff. We're like, oh my gosh. Todd, get this software done, everybody's talking about funnels right now. So he's coding like crazy, all this stuff is coming around, all of a sudden everyone's like, millions of funnel consultants, everyone's doing it, and all of a sudden we're like, hey, we created this thing called ClickFunnels, here it is. All of a sudden all of the consultants and all the people and everyone came and we were the only platform. I look at that, as smart as I think I am, there is so much grace and timing. If I'd launched a year earlier, a year later, it would not have hit the way it did. 100% it was the timing of all these things that have to happen. If it wasn't for that ... I can act like I'm smart, I'm a genius, but man, there's so much divinity that came into all the things. There's no way it could happen without that. Anyway, just understanding those things. Matt: What did you learn when you were cycling? Russell: So many lessons. Russell, you are not that good looking. Or cool. Or anything. Matt: It's basically not about you, right? Yeah, I feel that. So what was hardest? What were the tough lessons? Caleb: How many times did you cycle? Russell: Two big ones for sure. Matt: Really? Do you mind sharing? Russell: Yeah, the first time was after I was trying to figure this thing out. I remember one of my buddies was like, you're making money online? I'm like, yeah. He's like, that's cool. I'm like, do you want a job? He's like, what? I'm like, you're the first person I know who's interested. I'll pay you to come hang out with me. He's like, all right. So I hired my friend. He's like, I have some friends too. I'm like, okay. So I start hiring all these people because I want someone to talk to. Anyway, it was really bad. I ended up having a whole bunch of employees nobody knew how to do anything. I didn't know how to train anybody. I was hiding in the room trying to make money to pay payroll while they're standing outside like, do you want us to do anything? I'm like, don't talk to me, I've got to make money to pay your payroll. They're like, we can help. I'm like, I don't have time to explain anything to you. It was horrible. I built it up to the point where it was just like, I was launching a new thing as fast as we could just to pay payroll. As an entrepreneur, you kill something you get to eat, right? It's like the greatest thing in the world. Employees, they want to get paid every two weeks whether they killed anything or not. I did not realize that until they were like we need money and I'm like, but we haven't made any money. They're like you have to pay me. I'm like, what? I'm so confused. Like, okay. Anyway, it had grown and we didn't have a model, sustainable. Speaker 3: You just launched stuff to see if it works? Russell: Yeah. When I was by myself it was like, I had an idea today, let's try it. You launch it, it makes some money, sweet. And then it was like, I made 20, 30 grand. It was my wife and I, so it was like, that lasts nine months. You know? Caleb: What did you sell? Obviously I know the potato gun backstory. You said I talked about funnels for like a decade before that. What were you selling during that decade leading up to ClickFunnels? I know it's an inordinate amount of stuff. Is there anything not even close to funnels, like something ... Russell: Yeah. The very first, pre-potato guns, my very first big idea was ... Back then what everyone was doing, you know who Yanik Silver is. Yanik would write a book and then he would sell the resale rights to the books. Someone else would buy it and they could sell it. I remember I got online, I saw these books, I bought a book from Yanik and I'm like, I can sell this. I bought a book from somebody else. I was buying all these eBooks I could sell. But then inside the books they would have links back to all their sites. I'd sell the book and I was like, I made 10 bucks selling the book. And then inside the book Yanik is selling his thousand dollar course and seminars and things. They make all this money. I'm like, I got 10 bucks. He made like $1,000 off of me selling his book. I remember being mad. I was like I wish there was a way I could brand this ebook so that before somebody opens it and sees his ad they'd see my ad. That was the first idea I ever had, ever. So my first product was called Zip Brander, it was this little thing that would take an ebook and it would brand it. You open it up and it popped up an ad. You see the ad and you click a button and it would take you inside the ebook. It was my first thing. We launched that and I sold 20 or 30 copies of it. But that was the first money I ever made, it was amazing. I had a customer list, I was like this is amazing. And then the way I was selling those, I was going to forums. This is pre-Facebook, so all you little kids, before Facebook, before MySpace, before Friendster, we used to go to these things called forums. They were these things where people would talk all day. So we'd go to these forums. One of the rules in the forums is you could comment all you wanted but you could have a signature file. At the end you could have like, Russel Brunson, check out my new software Zip Brander. I'd go to these forums and I would just spend eight hours a day answering questions and asking questions and everything. People see my ad on every little thing. My footer was on everything. That's how I was selling Zip Brander initially. I was in 50 forums posting like crazy but I couldn't keep up with it. I was like, man, if I could create a software that would manage this whole thing, that would be amazing. So my second product is called Forum Fortunes. It was this little software that would manage your posting on every single forum. You post and you could see if someone responded back on Forum 49 it would pop up and you're like, oh, you can go find it and go back and comment and keep the discussion. I made it for myself and then we started selling that. We sold more of those because I now had a little customer base here and went bigger. After that it was the next. It was always what's the next thing. That's kind of how it started back in the days, little tools and things like that. Speaker 3: How do you know when you're shooting all these bullets, how do you know when you shoot a cannonball? Matt: Good question. Russell: The thing about it initially, I had been married, I was making zero dollars a year as a wrestler, so for me to make $600 in a month, that was a cannonball. That was insane. I thought I was the coolest kid in the world. $600 was insane. So I did four or five little things. I remember it was Christmastime and I remember my wife wanted to buy a couch and it was a $2,000 couch. I was just like, oh, I can't afford that. I don't have a job. I'm getting sick to my stomach. I had this idea, what if I do a sell and just sell a whole bunch of crap that we had. I had a bunch of eBooks I bought rights to, a couple of things I had created, so we made this Grinch sale. I remember I wrote the copy, it was like, it was the Grinch Before Christmas or something. It had a picture of the Grinch and his heart growing three sizes, I don't know. I wrote this copy. My wife and I had been married a year, she really wants a couch, I can't afford a couch, so if you guys buy this, if I sell 32 of these things, I can buy her a couch and put it under the Christmas tree. It will be amazing. Caleb: You said that in the copy? Russell: In the copy, yeah. It was the reason why. I still have the page, I can show it to you. I know exactly where it's at, I can show it to you. So I had the whole page and then only an email list of like a couple hundred people at the time. I still had an affiliate program, so at the top it had an affiliate link. So I sent an email to my list and went to bed that night. Someone on my list was a guy named Carl Galletti, I haven't heard about Carl in a long time. He was a big famous copy writer at the time. Carl went and saw the thing, bought it, and started affiliating. So he joined the affiliate program, he was like this is awesome. He took that email, sent it to his entire list of this huge thing. So I go to bed. I wake up the next morning, we're at $10,000 in sales. Matt: How much before you went to bed? Russell: Oh, like $30, $40 or something. I was like, what just happened. Did I rob someone? I didn't know what happened. I looked at my email and there's all these people who were like, hey, I bought two of them, I hope you can get your wife that couch. Oh, I sent it to my friend. All these people. Because Carl promoted it, all these other people who follow Carl saw it. Carl is like it's converting like crazy. Tons of people are buying it. I'm freaking out. I'm going to wrestling practice trying to answer customer support. I'm late for practice, I ran into wrestling practice, I get back out I'm like, "Oh my gosh, I made like $600 in sales." I'm freaking out. Anyway, the whole thing goes through and over that, I think it was a seven day sale or something like that, we made $35,000. Which is more money than I'd seen in all my lifetime combined times 100, right? I paid probably 10 grand in affiliates. We made, I don't know, $25,000 that we got to keep. I was like, "Oh my gosh." I told Colette, and Colette's like, my wife. I love her. She doesn't understand the business part of things at all. I was like, "We made $25,000." She was like, "Is it illegal?" First thing. "Are you going to go to jail? Is it illegal?" I'm like, "No, I don't think so. I'm pretty sure." The first thing I did is I went and bought the couch for her, for Christmas. We got it back, I got a picture of her, sent it out to the list saying thank you so much, you got the Christmas gift, the couch. They all celebrated together, all the people. I was like oh my gosh, this is the greatest game of all time. This is so much fun. I was like, what's the next idea, what's the next thing. It was like that, these little things. After that one was done now I had way more customers, all these people that had bought my product knew who I was now so the next thing was easier so it incrementally kept growing and getting bigger. Somewhere along the line I launched the potato gun thing. Upsales of things. We didn't call them funnels back then. We called them sales flows or sales processes. Talk about your sales flow, what's your sales flow. Caleb: Sales flow. Russell: I remember Dylan Jones was our partner at ClickFunnels. Before Todd we tried to build something like ClickFunnels, we called it Click.com.com, which is a horrible name. But Dylan's, I still have all the UI images, and in there we had a whole section for sales flows and all these things. It's like, this was the first ClickFunnels. Because Dylan was on the UI eventually on ClickFunnels anyway, but we literally designed something like this five or six years earlier. Just crazy. Matt: Do you think that all those little failures and all the trying and that kind of energy is what brought you here today? Russell: For sure. It's the key. I wish I could grab everybody because everybody's like, okay, I'm waiting for my ClickFunnels, or I'm waiting for my thing. They're waiting and they're waiting and they're waiting. I was like, the reason why I got this thing was because I didn't wait. If someone were to give me ClickFunnels initially it would have been bankrupt in 15 minutes, right? You have to become worthy of the thing eventually. You don't become worthy by waiting, you become worthy by trying. And trying and trying and trying. Eventually, if you keep doing that, over time, then God's like, all right, he's going to do it. He's built 150 funnels, now I'll give him the idea. Matt: Wow, that's powerful. Speaker 3: How much more did you feel that all your other friends are in the same game? Matt: I hope you guys take there's more that's caught than Todd. That's some gold in what he just shared right there, what you were just sharing. But go ahead. What was the question? Speaker 3: I was just saying how much more would you fail if all your other friends were playing the same game? Russell: All my friends were like why are you launching more stuff? Why do you keep doing things? They do like one product launch a year. They got so annoyed. They were like, dude, stop doing stuff. I'm like, why would I stop doing this? This is so much fun. It was just confusing to me. Why don't you guys do more? Everyone, they make money they'd just be done. Caleb: Why would you keep doing more? Was it genuinely like one funnel away? Like this next funnel's the one. Were you just like you sold yourself on it, this is it, so you keep going? Or did you just really enjoy it? Russell: Well each one I thought was. Each one, every time I was so surprised, like this is amazing. That was the one. The next one's bigger. Oh my gosh, that was even better, who knew? And then I just kept going from there, you know what I mean? So I wasn't waiting for ClickFunnels or anything like that. I was just enjoying the journey every time. It was so exciting. Eventually it was like, oh crap, who knew that that was going to do what it did. Caleb: Was it all emails? Was there any ads or was there anything to scale the traffic? Russell: First 10 years was 100% emails, partnerships. There wasn't ads back then. I mean, there was Google ads, but the first initial Google slap happened about the time I was getting started. Prior to that a lot of guys I knew built their email list off of Google ads and then the slap happened. A lot of them had lists. I started getting to know those guys, going to events, meeting them, so that's how it started initially was tons of that. And then there was this big gap for years where paid ads weren't a thing. Some people did banner ads, but it wasn't consistent. It wasn't like it is nowadays. It was harder. You worked harder and all the stuff wasn't there. Mostly we focused on ... If you didn't have an email list, you weren't playing the game. It's like, who's got lists, how can you build lists, what can you do? Matt: You still think that's true to a degree? Russell: 100%. That's why the traffic seekers book was so important for me to write, I feel like, because most of the people in the game today have been blessed with Zuckerberg's simple Facebook ads that make the game easy. Matt: Wow. Russell: They've never focused on building lists. I was like, you guys, just so you know, Zuckerberg is going to screw us all. It's going to happen. Matt: Yeah. Caleb: It will happen. Russell: It's like, if you don't have a list you're all screwed. I've been through this for 18 years now, I've been through five or six cycles. I've seen people who made millions of dollars who now are not online. The people who have waded the storm the whole time are all the list builders. They're the ones who survived. Everyone else who's good at ads, they come and they go and they come and they go.
Today’s guest on the Chasing Poker Greatness podcast is one of the pioneers and most recognizable faces in the world of Twitch poker streaming Jamie Staples.Jaime and his younger brother Matt (Who’s a former CPG guest) are PartyPoker sponsored pros and I wanna say a couple of things straight away:1) I had never met or interacted with Jaime in any way before he and I had this conversation.2) It became painfully obvious to me as our conversation went on as to why he has such a massive following: The man is as authentic and as genuine as it gets.He’s a man who cares about having a positive impact on the folks he crosses paths with, and wants to leave poker in a much better place than he found it.In my opinion, these are the folks we ought to be championing and supporting as much as humanly possible if we truly want poker to survive and thrive far into the future.In today’s episode, you’re going to learn:- Why you’re destined for failure if money is your sole driving force to improve at this game.- How younger brother Matt REALLY began working at Poker Staples Worldwide.- How a big public failure involving a prop bet with Bill Perkins has caused Jaime to examine the root causes of unhealthy lifestyle decisions.- And much, MUCH more!So, without any further ado, I bring to you a man after my own heart who won me over as a fan for life through a single interaction … Jaime Staples.
What does the fixture rearranging mean for the season? Is Clarko right: Are the rules to blame for the state of the game? What are the biggest concerns at West Coast? Can Carlton make the finals? Do phones with cords exist anywhere else in the world other than on AFL interchange benches? Why is the MRO outcome based? Which Crouch brother would you chase – Brad or Matt? Who is your favourite player to wear a glove? Geelong has picks 3, 11 and 15 currently at this year's NAB AFL Draft. What do they need?Cal, Mitch and Riley answer all of these questions and more in a strong episode of AFL Exchange.
Matthew Belair is the host of the top rated Master Mind, Body and Spirit show and best selling author of Zen Athlete: A Guide to Self Mastery. Matt has trained with 34th Generation Shaolin Kung Fu Monks in China, Trekked Mount Everest, studied meditation with Tibetan monks, explored Egypt with the resonance science foundation and traveled the world in pursuit of truth and self-mastery. As a podcast host, coach, and speaker Matt is an avid researcher and experimenter in exploring human performance and conscious evolution. Journaling prompts left by Matt:Who are you?What do you want to do in life?What current do you want to be in?What do you value?What am I most passionate about?If money were no option, what would you do? Thanks as always for listening and have the best day yet! ++Special props
On the latest episode Bob and Matt look back at the Leafs 4-1 win over the Bruins, they look ahead to Game Two and Matt gives a crazy Raptors stat. Bob unveils his Top-5 most hated movies and Matt (Who has often voted Conservative) has a message for Doug Ford.
Join the Marriage After God movement and grab a copy of our new book today. https://marriageaftergod.com In this episode, we interview Matt & Lisa Jacobson From http://FaithfulMan.com and http://Club31Women.com & Faithful Family podcast. Here is a quote from our book Marriage After God “Your marriage is the message you are preaching to others. The way you and your spouse interact with each other reveals the gospel you believe.” Dear Lord, Thank you for creating marriage with such a significant purpose of revealing to the world your divine love. Please help us to make choices that reflect your love in the way we love one another. May we choose to walk in obedience. Thank you for your word which instructs us and shows us how we should walk in obedience. Please continue to give us wisdom and strength as we choose to walk in the Spirit and not our flesh. We pray we would make our marriage a priority. We pray we would gain a deeper understanding of how our marriage is our first ministry and the impact we have in each other’s lives and in this world, just by remaining faithful to your word. If our priorities are ever out of order or if we are not unified please help us to change course. Constantly direct our hearts to align with yours. May our marriage always be in a place where you can use us as a symbol to point others to you and may you be glorified. In Jesus’ name, amen! READ: [Aaron] Hey, we're Aaron and Jennifer Smith of Marriage after God. [Lisa] Helping you cultivate an extraordinary marriage. [Aaron] And today we're in part five of the Marriage after God series, and we're gonna be talking with Matt and Lisa Jacobsen about marriage being your first ministry. [Aaron] Welcome to the Marriage after God podcast, where we believe that marriage was meant for more than just happily ever after. [Jennifer] I'm Jennifer, also known as Unveiled Wife. [Aaron] And I'm Aaron, also known as Husband Revolution. [Jennifer] We have been married for over a decade. [Aaron] And so far, we have four young children. [Jennifer] We have been doing marriage ministry online for over seven years through blogging and social media. [Aaron] With the desire to inspire couples to keep God at the center of their marriage, encouraging them to walk in faith every day. [Jennifer] We believe that Christian marriage should be an extraordinary one, full of life, [Aaron] Love. [Jennifer] And power [Aaron] That can only be found by chasing after God. [Jennifer] Together. [Aaron] Thank you for joining us on this journey as we chase boldly after God's will for our life together. [Jennifer] This is marriage after God. [Aaron] Hey, thanks for joining us on week five of this series that we're doing. I hope you're enjoying it. You're definitely going to enjoy today's guests. But before we move on, as always, we want to invite you to leave a review. Those reviews help the podcast get seen by new audiences. So, if you've been enjoying the content, we'd love a star rating, which is the easiest way to do it, all you gotta do is tap a star in the app. And if you really, really want to and have time, leaving us a text review would be awesome. We read every single one of 'em, and we love them, so thank you for that. [Jennifer] Another way you can support this podcast-- [Aaron] So today on this episode, we're gonna be talking about content from chapter five of our book, Marriage after God. And the chapter's titled, "Your First Ministry." and we thought, what better way to talk about this chapter than to talk with our pastors and ask them who inspired us and showed us what it looked like to recognize our marriage as ministry. And now we actually reference them and talk about them in this chapter, and so today we have Matt and Lisa Jacobson with us, welcome. [Lisa] Hey, nice to be here. [Matt] Awesome to be here, you bet. [Aaron] Yeah, and we're in our garage, sitting on our couches. And today we're gonna be talking about this topic. But before we talk about that, why don't you introduce to the audience, just in case they don't know you guys, who you are, children, marriage, all that. [Matt] Okay, well, Matt Jacobsen, and this is my lovely woman. [Lisa] Hey, hello. [Matt] Lisa, and so we've been married for 26 years. We have eight kids between the ages of 12 and about 25. [Lisa] Yup. [Matt] Right, and there are four of them are out of the house and moved on. And so, what keeps us busy when we're not just hanging out and kissing in a dark corner somewhere. [Lisa] That's right. We also, we do homeschool and we do a lot of work with our kids. Our kids help us out with what we do at home and also in our ministry. [Matt] And so, speaking of ministries. So, my website is Faithfulman.com. [Lisa] And I'm Lisa with Club31women.com. [Matt] And so that is a writing ministry that speaks to marriage, parenting, church, and culture. Biblical perspective on those things. And so, that comprises a lot of what takes up our time in a given week. And then, of course, we're the pastors of a small local fellowship as well. [Aaron] Yeah, it's our fellowship. [Matt] That's right. [Aaron] You're our pastors. And we love you guys. And by the way, if everyone listening didn't hear what those were, that's faithfulman.com and club31women.com. You guys should definitely check them out. And why don't you tell them about your newest podcast that you guys just launched? [Matt] Awesome, okay. Well, the name of that podcast is Faithful Life. And it's essentially a podcast that is pursuing the and exploring the topic of what does it mean to live as a biblical Christian. There are a lot of people in the world, lot of Christians, people who identify as Christians, who are living a life that is really separate or tangential to the Bible. And really, if you're going to be a biblical Christian, you've gotta know what the Bible says about these various aspects of life: marriage, parenting, how we're to live within church community and then how we're to interact with the culture. And so, that's the focus of the podcast, faithful-- [Lisa] With a lot of emphasis on practical ways to do that, sometimes we kinda know in our heads what the right thing to do is, or what we believe the Bible says, but then how does that look in our day-to-day life, and that's something that matt and I really have a passion for is just connecting those two things. [Matt] And a little bit of experience. It's only been, what, 26 years you've been married and walking with the Lord and learning through all of the eight children. [Aaron] So we just want everyone to check out their podcast; it's called Faithful Life. And you're gonna love it. Just search for it wherever you listen to podcasts. So, let's get into the icebreaker question. And this is how we start all the episodes. It's just a fun question. How does your spouse like their coffee and what does that say about them? [Lisa] Okay, I get to go first on this one. Because everybody that knows Matt Jacobson well knows that he likes his coffee black, but, even more importantly, he likes it burning hot so that it burns a hole in your tongue, so he, if-- [Matt] And you better not put it in a cold cup. [Lisa] Right, the best way to show love to Matt Jacobson is to heat up the cup first and then pour his coffee into it. [Matt] Wow, that's one of the ways over the years you've shown love to me. But right, so anyway-- [Lisa] In the coffee-- [Matt] No, that's right in the coffee, in the realm of coffee. And Lisa takes her coffee with a teaspoon of sugar and cream and-- [Lisa] That's right, I like it a little sweet. [Matt] She likes it a little sweet, that's right. [Aaron] And it's just like her character too. Little sweet. [Matt] And I love making coffee for her; I do. In the morning, I love making coffee. I love bringing her a cup of coffee in the morning. [Jennifer] And you guys do coffee as a family a lot, so can you just share a little bit about that 'cause I just love that. [Matt] Okay, so, why don't you tell how we've corrupted our young children? [Lisa] Well, we started off in our marriage. We started each day with having coffee. Matt would make a coffee tray for him and I, and we would sit and have coffee together. And then as each child came along, we then slowly incorporated them into this special time until it became something our whole family just loves and so even our older kids when they come home for the holidays or different vacations, they'll come and that's the thing they look forward to most is having our time together over a pot of coffee. And we just talk about what we're thinking about, what's going on in our world, and it's just a really close family time. [Matt] And you know, oh, sorry. That whole process of incorporating the kids into it. It's kind of funny because it's really a metaphor, or an example, if you will, of what happens in your family. Over time, we're very strict with the older kids. I don't even remember when we began allowing them to have coffee. Including them. I don't even remember, do you remember how old they were? [Lisa] No. [Matt] But, as time went on, the younger kids just get to start earlier and earlier. And I think we started, did Hawkin have his first? [Lisa] He was about seven or eight maybe-- [Aaron] It was a bottle right? [Lisa] When he had his first cup of coffee. [Matt] That's right. [Lisa] A very, very tiny cup of coffee, mostly milk. [Jennifer] Mostly milk, yeah. [Matt] Yeah, right, and so now we're going, okay, so. [Lisa] Almost because their dad's kind of soft on the issue. [Matt] I am; I am. [Jennifer] I was just gonna say, I follow Lisa on Instagram, and I love watching your stories because you'll post about it every once in a while of just your guys' family time around that, and it's beautiful and you can just tell, just from that short glimpse that you give the rest of us that it's a really beautiful time that you're cultivating in your family. [Matt] And in some senses, like you see the snapshot, and it is awesome, it really is. But, it's just so normal, a part of life, and a wonderful life is built on a lot of normal moments that you just string together over time. [Jennifer] Mm-hmm, it's true, yeah, it's good. [Matt] And so, yeah. [Aaron] Yeah, there's the big one-offs that are memorable, but then there's the, it's the everyday things that shape who we are, it's all those habits that we have and those routines. I love that. Why don't you share the quote from the chapter? And then we'll just start asking questions. [Jennifer] Okay, so this is from chapter five of Marriage after God. "Your marriage is the message you are preaching to other, "the way you and your spouse interact with each other "reveals the gospel you believe." [Aaron] Matt and Lisa, how would you that that is true in what you guys have experienced, because it's something that you've definitely not only shown us through your own marriage, but also directly have shown us in ours in saying hey, you can't expect to have this ministry over here if your home doesn't match. So could you give me some insight on how this quote plays out in real life? [Matt] Well, one of the things that you just naturally see in life is you see people in ministry and what's the big joke in America, at least it used to be, I don't know if it still is, who are the worst kids in church? The PKs, the preacher's kids, right? And so, that is so antithetical to how we're called to live in the word of God because we are called ambassadors. That means that we are representatives of the kingdom of God on earth. We bear the name of Christ, and we're his representatives. And how is it possible that you have this ministry or you have this public presence, and then it's not true in your own personal life. You wanna tell somebody about the wonderful truths of Scripture. And you wanna tell somebody the gospel and explain to them how they can have a wonderful relationship with the Lord. And then you don't have, you're not living those wonderful relationships in your family. I know that we had seen a lot of this early on. And we were even involved in a particular church, years and years ago, they were lovely people but focused just on evangelism and kinda lost the relationships with their kids over time. We just saw-- [Lisa] And in their marriage. [Matt] This family's disintegrating. And the marriage is. Then we though, you know what, the life that we're called to as believers is much more holistic than that. And the truths of the gospel are supposed to be manifest in our lives. And if I could just say one more thing. I know you've got a lot to say, too. You see in the instructions for church leadership in the book of 1 Timothy, one of the principal requirements of anybody in ministry and this is serving as an elder or a deacon within the church. [Aaron] Yes, specific position. [Matt] One of the principal requirements is that you've demonstrated that your children have yielded hearts to you. You're governing your family well. You're leading your family well. There's a sense of order and peace in your home. So God wants it to be true at home before we go out to represent him to the world. [Aaron] And what does Paul tell Timothy, he says how can you presume to manage the household of God if you can't manage your own home, which is how he, after all that teaching, he says that it doesn't make sense. [Matt] Yeah. [Lisa] And I think that Matt's kind of big picture guy. And I'm more of what does that look like in my day kind of person. And one thing I had noticed that in Scripture, when it talks about how we are to be towards one another, how we're to be, to be loving, patient, kind. And we apply all of those things to out there. So, just an example: I go to the grocery store, and the cashier's taking forever to get me through the line. And she apologizes, but I've read the Bible, so I'm going to be, oh it's fine, I'll wait. I understand you're trying your hardest, and we'll get through here because I'm being patient, and I'm being kind. And then I go home, and I have a different response when it takes Matt forever to come out and help me bring in the groceries in the house. Or, because I'll be snippin' at him-- [Matt] Has that ever happened, like even one time in our marriage? [Lisa] Like I wait for you? Do you really wanna bring that up? [Aaron] Everyone listening was like that was just today. [Lisa] So, but it really struck home to me that all those things that we think apply to out there to strangers or maybe to friends. It somehow, or maybe there's a disconnect, to actually sometimes the hardest person, sometimes, is actually the person your married to. [Jennifer] I was just gonna say, thinking about our own marriage. I used to do this thing where I would always be upbeat and positive and smiley with everyone. And then I'd come home and immediately my countenance would change, and Aaron-- [Aaron] I finally called you out on it, I was like-- [Jennifer] Yeah, 'cause Aaron would be like-- [Aaron] Why do they get the smiles and then I get this? [Jennifer] Yeah. [Aaron] What is this? [Jennifer] And then I remember specifically him saying, I want your best. And I had to figure it out. I had to figure out why I was doing that and check my flesh on it really. [Aaron] Well, I think there's a default position of, well, I have you, therefore you should deal with who I actually wanna be today, and everyone else has to, I want them to see the best part of me. It's almost like it's just totally backwards. And it's actually lying. [Matt] Well, the harsh reality of the circumstance is who you actually are in terms of your personal character is who you are when the doors are shut and you're letting your hair down, so to speak, and you're just being your natural self with the people where the consequences might not be as immediate or severe as they might be if you do this in public. And so, that's the reality of who we are. And so, it's important to take stock on those things. How am I with the people that I'm closest to because those are the people that we tend to take for granted and those are the circumstances that we tend to be a little less guarded. [Aaron] Now that you're saying that, I'm thinking, it's actually probably infinitely less damaging to be that kind of person in public, when people they may be offended for the moment, but they're gonna forget your face in like eight seconds 'cause they don't live with you than the person that we literally spend hours and hours a day and our lifetime with: our children, our spouse. We sacrifice the main thing for the non-main thing. [Matt] Totally, and that's of course humanly speaking, in terms of the cost, over the long-term. [Aaron] Yeah, publicly. [Matt] But relative to the Lord's perspective on these relations, he wants it to be the same everywhere. [Aaron] Yeah. [Matt] He wants us to be loving and in the spirit everywhere with the people, especially close to us, but also with everybody else that we're interacting with. [Aaron] Or repentant if we're not. [Jennifer] Yeah, yeah, there is grace Right? [Aaron] Which changes us. [Matt] Well, you know what, you brought up the R word: repentance. And that is such an important word and such an abused word in our Christian religious world because repentance has a specific meaning. It's a word that has a definition. And we cut ourselves so much slack and we dip back into the same sins over and, how about this, just this sin we're talking about here where we're not being kind to our spouse, but we've got it for everybody else. And, oh, I'm sorry I shouldn't have done that. Please forgive me. And Lord, I was unkind to my wife, please forgive me. I should have been more kind. And then we go on our day, and then I do it again. And then I do it again. Have I repented if I just keep walking in that same sin? [Aaron] No, you've apologized. [Matt] I've apologized, right? [Aaron] You're sorry for being-- [Matt] Because to repent means I used to do that, and now I'm doing this. It means to turn from, that's the definition of the word. And it's such a good word for Christians, all of us, to really wrestle with, and say, you know what, have I really repented and forsaken that sin? Because that's what it means to walk as God would have us as a couple and not to just keep going back, over and over and over again. [Aaron] I think of this quote. I'm not gonna say who said it, but someone in our family used to say, "If you were sorry, you wouldn't have done it." That's kind of the idea; we say sorry over and over and over again. But in reality, our heart hasn't changed. We're just allowing something, whether we're intentionally doing something. We're not intentionally walking in the spirit, so therefore, we're defaulting to walking in the flesh, and we haven't repented of anything. This is something that I had to recognize in my life with certain sin in my life was I was sorry, but usually I was sorry for the shame or the regret or being caught or the remorse I see in your face or the pain I've caused you, Jennifer, but I'd never had been sorry for my sin which is what leads to repentance, and then I change and walk in that. So thanks for bringing that clarity. [Matt] Yeah, absolutely. And so to come full circle on your question, what does it mean to have a marriage that is reflecting the gospel? Well, if you have a marriage that is the kind of marriage that someone else is interested in, then you're not creating this incredible disconnect in the mind of the person that you're sharing the gospel with because what are you inviting them to? If the gospel hasn't affected and hasn't made your marriage beautiful, what are you inviting them to? Here we are married, and we have a bad, bickering, difficult, challenging marriage, and I'm out there telling somebody that Jesus loves them and died for them. It's so critical 'cause as we, and I know you guys have talked about on your podcast and certainly in your book, that your marriage is the gospel you're preaching, that is the gospel you're preaching. And the power of your message will not be one iota stronger or more influential than is the meaning and the love and the strength of your marriage relationship. [Jennifer] That's so good. I hope everyone hits rewind and just listens to that a few times. [Aaron] Yeah, and let's take marriage out of the picture, just in the Christian individual's life. If the gospel's not true in our life, so for me, when I was walking in my addiction to pornography, and I wasn't repentant of it, I thought I was, I was sorry for it; I was sorry for what it did to me, but I wasn't truly repentant of it. I could never tell someone that Christ came to bring freedom, which is what the Bible teaches us, that's the fruit of the gospel. [Matt] There you go. [Aaron] Because I couldn't walk in freedom. Like you said, I'm literally showing them, like, hey, here's God, he's awesome-- [Jennifer] He's powerless. [Aaron] He's powerless. [Jennifer] In my life. [Matt]right. [Aaron] He can't, and this isn't about just all of the sudden everything being healed and perfect and great, but this is definitely the truth of freedom from sin and death, which is what the Bible teaches, which is what Christ came to destroy. He took the power away from it. [Matt] Absolutely. [Aaron] But he doesn't have that in my life. Therefore, you should love God and believe in Jesus, but he can't actually do anything for the core of who you are. He can't change your physical situation or your spiritual situation, but, you know what, he's the thing you should believe in. It just doesn't make any sense. [Matt] No, it doesn't. We just need to remember that even if we're not saying anything, even if we're not on the street corner, preaching the gospel. We're preaching a sermon every time we walk out the door together. We're preaching a sermon. We're literally saying, this is what it means to be a Christian man and a Christian woman. Whether you mean to or not, you're preaching a sermon. The question is, what's the message that you're giving other people? [Jennifer] And how, can you explain, just for those people listening, how are they giving that message to other people? [Matt] It tends to be if you're living in a town and you've got your immediate circle and then you've got your circle of influence, the people you interact with, the people at the bank, the people at the gas station, the people at the grocery store, they know, over the course of time, they know whether you're a Christian or not. It just becomes evident that that is who you are. People probably don't realize it, but as somebody who identifies as a Christian, people watch you a little closer. They tend to want to just scrutinize you a little bit, or when we're at a restaurant. [Lisa] I was gonna say, what I was thinking about was how many times we've been in an airplane, traveling together, in a restaurant together, we have been stopped so many times by people we didn't even realize were watching us, someone who's serving us or the flight attendant, and said, you know, you two are just such a loving couple. And they could just see the way we were just interacting. And so people do notice that. And often times, especially at a restaurant, they'll see that we've prayed, so they also know that we're believers. And we've had a lot of opportunities to share the gospel with those people just even based on their observation of us. [Aaron] Well, it's uncommon. It's uncommon; it's normal to have cold relationships and being on the phones. It's uncommon to see engagement and true infatuation and adoration or-- [Lisa] Yeah, like the last time we were on a flight, we had a flight attendant come to us at the end of the flight, it was a long flight. And she said, "You know, the other flight attendants and I "were all talking about you two." Really? We're not that interesting. [Matt] Well, we were kissing, I mean. We were getting along kissing. [Lisa] That's right; that's right. And they were just observing how we were with each other, and how cute it was and thought we were maybe somewhat newly married. And I'm like, "Oh, no, we've been married 26 years, "and we have eight kids." Like, no way, yeah, really. [Aaron] And you're still in love? [Lisa] Yeah, yeah, it was really astonishing. [Matt] And you mentioned something about praying in a restaurant. And I know a lot of people listening probably do. It's probably less common these days than it has been in the past, but a lot of people still bow their heads and pray in a restaurant. Personally, I love doing that. I love just the witness: I'm a Christian, and I'm gonna give God thanks for this food. So I like doing that. But if you're somebody out there who does that, can I just encourage you to leave a fat, hog tip? Okay, because-- [Lisa] It's like a bonus. [Aaron] It is a bonus. [Matt] Because you've literally hoisted your flag at the table, I'm a Christian, and so, leave a great taste in your waiter's or server's mouth. [Aaron] It's a little sacrifice. [Matt] It's so small, yeah, so small. So small, but it's a good testimony, too. Just to say, you know what, love the Lord, and oh, by the way, God bless you. [Aaron] Going back to the, I think that's a great little bit of advice of how to spread the love of God. Like, hey, we love God and we just wanted to bless you, thank you-- [Matt] And certainly if it's a place that you go back more than once. [Jennifer] Yeah, that's true. [Aaron] Oh yeah! [Matt] You have struck up, well you've created an opportunity to strike up a conversation with the person because they're, well, first of all, they're business people, right? They wanna make money. So they wanna serve you well, and it's just an opportunity, that's all. Just an opportunity, if you're going to pray, then by all means, please don't complain about the food. [Aaron] I was gonna say that actually. There's certain Christiany things that we do, maybe we were raised that way, and we just pray. We're Christians, we love God, we pray. But then, let's say we're bickering at the table, or we are being super rude to the waiters, or our kids are throwing food on the floor and silverware. That is a part of our witness. [Lisa] It is. [Aaron] How we are. And they're like, you did the thing that I thought you were gonna do. They're looking for us to fail. [Jennifer] To fail, right. [Aaron] Doesn't mean we're not gonna fail, but the majority of the time, our hearts should be aware of how we're being, which goes back to that marriage being your ministry. You guys had this awesome, oh, people noticed us, and they stopped us and said thank you. We've had the other side of it. And no one's actually confronted us and saw us fighting, but we've had people message us after the fact. We've mentioned this a few times. And like, "Hey, we saw you in the store. "I didn't stop and say hi, but just wanted to say hi." And they'd message us on Instagram. And then we were like, "Oh my gosh, I think we were, were we fighting?" [Jennifer] This was a long time ago; we've gotten better since then. This was a long time ago. [Aaron] It made us aware, man, like, well, A, we have a social media presence, but it doesn't matter if you do. Like if you're a Christian, there's people that know you. You have friends, you have neighbors, you have, and people that may not know you personally, they're gonna see you regularly in your small town, or big town, I guess, because you frequent the same places. What kind of fragrance as a couple and as Christians do we give in this world where we say one thing and act a different way? That's literally what hypocrisy is. We talk about this, actually, in this chapter. We talk about, we're gonna ask you a question in a second, another question, but it doesn't make any sense if we're trying to minister in other ways, and then in the home, there is no real ministry happening. And so, question for you guys is are marriages being a ministry, and being our first ministry, because it's our first one another, our closest neighbor, we always like to say is our spouse and then our kids and everyone else. Are there marriages that are exempt from this? Well, this husband, he's a minister, and he doesn't actually have time to be focused on his family. Or a wife that's doing this thing over here for God, and she doesn't have time to serve her home and children. Are there marriages that are exempt from this? Why or why not? [Lisa] I don't know that there are exemptions in that sense although Matt might want to address that, but what that's come to mind, I do have many women write me who are in a marriage situation where the spouse is not a believer or at least not walking with God. And I know that that's a greater challenge, and I wouldn't want to put undue burden on that couple, especially the one that's trying to be faithful, and the other is not walking that way. There has to be grace for that, and the one person has to, you know, scripture tells us to keep quiet and just keep shining the light of Christ in their home. But I also wouldn't want to feel like, oh, I can't minister to others now because my spouse is not walking in truth right now. [Matt] And the way I would look at that is the Bible teaches us what is normal and how we are to walk as normal Christians in this world. And when it comes to marriage, what's normal is the way Jesus loves the church, his bride. That's how we're supposed to love our bride. That's normal. And that instruction, love your wife as Christ loved the church, that's not a special instruction for somebody who happens to be in the public eye. That is an instruction for absolutely every Christian man, every man who stands up and says, I follow Lord; I have committed my life to Christ. I have repented of my sin, and I'm a Christian. Every man who has said that should have a wife who says, I'm the most cherished woman I know. And no man is exempt from that. And so, here's the thing, if a church lays claim to being full of godly men, then there's one thing you know for sure, it's full of cherished wives. You cannot have one without the other. You cannot be a godly man and not cherish your wife. And so in that sense, I would say nobody's exempt from this, but, of course, we live in a broken world with lots of relationships and circumstances, and people have struggled. And God has grace for those things. But in those circumstances, the person, whatever they are, wherever they fall on the spectrum, difficult and virtually sad and very challenging to not that bad, wherever they are in the spectrum, their job is to draw near to God and walk as closely to God as he wants them, as he desires them to, and to seek them in those circumstances. But I appreciate you bringing that up because there are lot of people, lots of wives, lots of husbands, a husband called us recently. His wife left, he's got, I think they've got five kids. One of the kids has Down's Syndrome, and the wife's just like, "I'm done." And she left, and he didn't want her to leave, he tried to love her right up through, for several years, up to point where she left. He himself has remained faithful and has a ministry even though she's left, so it's true, it's not that you don't have a ministry. It's just that God provides his standards and principles and requirements for Christian men, for Christian wives, and for marriage. And then sin comes in and everything else is an exception to the rule, but the rule is every man is to cherish his wife in the way Jesus Christ loves the church. [Aaron] So, I do appreciate Lisa that you brought that up, too, because I'm sure that we have people that listen, and one of the spouses is not walking, is not a believer, and we get, praise God, he gives provision for this in his word, in 1 Peter, he shows, it's funny because it's to the wife, it's almost like he knew that men were gonna be more prone to this, not being faithful, which is sad, but it's true. But even then I think, you're right, that it doesn't mean they can't have ministry outside of the home because their marriage isn't in order correctly faith wise, but that doesn't mean that their first ministry still isn't their spouse. Like you said, they still have a call, the wife or the husband, to serve and love their spouse the way the Bible has called them to, faithfully, whether they receive it or not, of course. And that's also, I don't wanna say qualifies, I don't know if that's the right word, but, it still prepares them to do ministry outside their home because it's in order. Instead of, I'm not going to love my husband or my wife like this because they're treating me this way, but I am gonna go love over here, that's not gonna produce the kind of fruit that God's looking for. But I did appreciate that. I think it's totally relevant to recognize that there are these non-ideal marriages. [Matt] You know, and one of the things that might be important to mention here is wherever you are on the spectrum: you have a spectacular marriage all the way to it's terrible. We tend to fall into this wrong thought process that goes something like this: you're walking in sin; therefore, I can't help being the way I am. [Lisa] Oh, now, that's a good point. [Matt] And the fact of the matter is is the way you act has nothing to do with my capacity as a believer to walk in holiness. [Lisa] Right, no that's-- [Matt] And we kinda cut ourselves a little slack there, don't we? 'Cause if you're a certain way, well then that gives me license to be another way in response-- [Aaron] Yeah, if you only respected me, I would treat you or love you as Christ loves the church. [Matt] That's right, and every one of us has the capacity according to the word of God to walk in holiness, irrespective of how our spouse is walking. Now we certainly make it easier, right? If we're walking in holiness for the other person. But, we can't blame our distance from God on how someone else has chosen to act. [Aaron] Amen. [Jennifer] Taking a look into your guys' marriage. You know, you've been married quite a while. So go back to the beginning. Was there a learning curve in your guys' relationship on how to love and respect each other and cherish each other in that? [Matt] OH, absolutely. I was the most loving husband in the world. The only problem-- [Aaron] That's a real laugh, by the way. [Matt] The only-- [Lisa] Revisionist history, I think that's what it's-- [Matt] The only problem with it is I was loving Lisa in the way that said love to me. [Lisa] Oh, that's true. [Matt] We'd like to tell the story, in fact, we tell it on our own podcast. We just have this crazy story where I literally am superman husband, okay? I am helping out with everything. [Lisa] It's our first year of marriage. [Matt] First year of marriage. I am helping out with everything. I am helping with, not the laundry, you wouldn't let me touch the laundry 'cause she said, nope, that's mine; I will do the laundry. Everything else, the vacuuming, folding the laundry. [Lisa] Cleaning the bathrooms. [Matt] Cleaning the bathrooms, everything else, the dishes, everything, I'm helping, I'm helping. I'm doing it all, and I'm thinking-- [Lisa] And I'm getting madder and madder and-- [Matt] And she's over in the kitchen. And there's the flames, you know, the ones coming out of her eyes, are visible from across the room, and I-- [Aaron] Although I have never seen Lisa angry before, so I couldn't-- [Lisa] Oh, I'm capable. [Matt] And I thought, what is wrong with this woman? You can't find five guys in the entire state of Oregon that do the things that I do with a willing heart, and I'm trying to bless you, you're just, there's nothing that will make you happy. You can't be blessed; I don't know what your problem is. And so, she just takes the towel, and she almost busts a dish on me as she sets the plate down on the counter. And then she takes the towel and throws it on the counter. [Lisa] Thank you. [Matt] And I'm going, what in the world. She turns to me, and she goes, "I just don't know why you don't love me." [Lisa] True story. [Aaron] What's happening? [Matt] And I'm going, okay, am I losing my mind here? And I'm going, you've gotta be kid, you've literally got to be kidding me. [Lisa] So my thinking is I can vacuum, I can clean the bathrooms, anybody can do that. But there's only one guy in my life that can take me out and spend some time with me and listen to my thoughts. [Aaron] Look in my eyes-- [Lisa] Yes! [Aaron] And talk to me. [Lisa] And so he could just feel my frustration over time. So, the more frustrated he would feel-- [Matt] I would try harder. [Lisa] The more he'd vacuum. [Matt] I'd do more! [Lisa] And I'm just like, put the stupid vacuum down. I just want to spend time with yo. [Matt] So I'm going, wow, that's easy. [Lisa] Yeah. [Matt] Who knew love was that easy? So in our case, it was just me taking the initiative to say, okay, we're gonna go out at such-and-such a day, and it didn't matter what it was. We'd go for a walk; we could go have a cup of coffee. And I mean, at any time you as a husband tell your wife, "Hey, I just wanna spend some time with you." You can turn one cup of coffee into an awesome date. You really can. [Lisa] It doesn't take much. [Matt] It doesn't take much. You talk about learning curve, absolutely we had to learn each other and what was important to you and what was important to me and this is so true in absolutely every area of marriage. For instance, we've given you the for instance in terms of the learning curve, but in terms of discovering what it is your spouse is interested in, what they like, what's important to them. There's a very, very interesting way of finding out. [Aaron] You ask. [Matt] You ask a question! Yeah, yeah, and it's such a great thing to do because you know what happens when I turn to you and I ask you a question about you. [Lisa] Yeah. [Matt] Who doesn't like talking about themselves? Who doesn't like being known and explored and discovered. Who doesn't like someone being interested in them. So that's what we do when we turn to our spouse and say, okay, I wanna ask you a question. I wanna ask you what are three things that I can do that would make you feel loved? So that's just the normal stuff of marriage. But you know what? And you can even take it right into the subject of sex. And you can say, what are things that you enjoy when we come together physically? What are some of those things? Because, you know what, we tend to love the other person with the things that we want. [Lisa] I think that sometimes people boil this down to love languages, which is interesting and helpful. But what we're talking about is so much more than a love language, for one thing, those things change over time. It depends when the season when we had four kids, five and under, the vacuum really helped a lot, and I had a, not that I still didn't want to go out, [Aaron] Right, in that season, that was much more loving. [Lisa] Yeah, it was loving; it did mean a lot. [Matt] And physical touch when we had five kids. What would the age's spread have been with our five kids? [Lisa] Yeah, six and under. [Matt] Five kids six and under. Physical touch was less important to her in those years. [Lisa] Imagine that. [Matt] You know? She's got kids. You got enough of that. [Jennifer] Her tank is full. [Matt] Yeah, I'm touching 24/7, exactly. Right, so it does change over time. [Lisa] So instead of thinking of it as big subjects of love language, think of it as who you are as a person and where are you at today, where are you at in this season, where are you at in your life right now. And that involves that continual seeking and pursuing and asking. [Jennifer] So continual even after 26 years. Like you guys are still asking? [Matt] Absolutely. [Aaron] You have gotten there yet? [Matt] Absolutely. [Aaron] You haven't gotten to the-- [Matt] No, we're seeking each other all the time. And you know what? [Jennifer] And it's fun, right? [Lisa] It is. [Matt] It is fun, absolutely fun. And the thing is, if you love the other person, it's not a burden to do it. You actually want to know where they're at. You wanna know where their heart is at. [Lisa] And I think it can even be in somewhat negative things like say, I notice something triggers Matt into a bad mood or just like a dark, you know. And it used to be, when we were younger, that would just like, oh, fine, if you're gonna be in a bad mood, then I'll just stay away from you. I'm not saying those things, but that was my basic attitude. And I feel like over the years, now, let's say something like that happens, which it does, then I can say, I noticed, like something happened, you know, we had a good start today, and then something kind of went sideways. You wanna tell me about that? Did something happen or did I say something? Not in a defensive way, but just really, we've had some really good conversations about that. He'd go, "You know, I wasn't aware of that." Sometimes even going back to your childhood. As a child, my mom treated me a certain way, so now whenever I hear this phrase, it takes me back to a time when I didn't feel cared for. [Aaron] Yeah. [Lisa] And you're thinking, oh, well, I didn't mean to [Aaron] I know how it feels. [Lisa] communicate that I didn't care for you. But I can see that that would translate to that. And now I know, and I can be more mindful of that. [Aaron] And lovingly. Just the loving hey, is everything okay? Not because you're bothered by it. [Lisa] Yes. [Aaron] But because you're concerned for it. [Lisa] Yes. [Aaron] Which then, I'm sure, Matt, you would experience. There's been times that I don't even know why I'm brooding. It just takes a moment to be checked on it. And then I'm like, oh, I actually don't know why I'm brooding right now; I actually do feel irritated. I don't know why. Which it totally could be a hormonal thing, it could be a something I ate, and maybe there's something spiritual going on that we need to be praying through, but that approach of not taking it personally because we do that. Why are you doing this around me? I was in a great mood, now you just brought me down. But rather, helper, but for each, an actual concern. Hey, is everything alright? That was a really good bit of advice. I think everyone listening is gonna be loving these tips because this is 26 years of you guys learning this. We're only 12 in, what is that? We're not even half. [Matt] It'll go quick; it'll go quick. [Aaron] We are halfway to the kids, though. [Matt] Oh, that's right. [Lisa] Yeah. [Matt] And you got started earlier than we did. [Aaron] We got started earlier, so we might bypass you So you guys'll [Matt] Outpace us, yeah, that's right. But then there's adoption, we can stay ahead of 'em. [Aaron] It's true, that's true. So I'm loving these tips. And it all plays back into this. Right now, you're talking about how you guys minister to each other. Loving each other, cultivating intimacy, the communication, the strong bond which allows us, then, it frees us to be more able to minister outside the home. Not that it can't happen, but when you guys are so connected, so close, there's more freedom, and less internal turmoil. [Matt] I might even say it a little differently. I would say what it does is it authenticates the message. [Aaron] That's perfect. [Matt] And you know, we see this principle, well not just principle, we see this exact teaching in the high priestly prayer that Jesus prays in John 17 where he's saying, their unity, let them be one as we are one, Jesus is praying. Let them, his followers, those who come to Christ, who come to a repentance and become the children of God. Let them be one as we are one that the world might believe that you have sent me. The unity that we have, the oneness that we have is the authentication of the message of Christ that he came from the Father. And so, that's so true in the church as a whole, and it's absolutely true in marriage. When we're walking in love, when we're walking in unity, when we're exuding that, where we go through life, it authenticates the message when we do speak the truth of the gospel to someone. [Lisa] And not just out there, but in our own homes, to our kids. [Matt] Oh, that's just so true. [Lisa] When your kids are little, you can kinda get away with it, or at least you think you are. [Aaron] We think we think we are. [Lisa] Believe me, as they get older, they'll tell the world what it's really like at home. They'll tell their friends. [Matt] They do. [Lisa] I'm just saying because it's reality. And the opposite is true, too, that if you are loving each other, it's a witness to them, it's an encouragement to them. Our kids all want to get married. They want to have that kind of marriage. And that's a huge blessing. One of the things that we recently asked one of our older daughters, who's in her twenties. I think it was a Father's Day thing. What do you like most about your dad? She said that, "He loves Mom so well." And it was such a beautiful testimony that yeah, they're watching, they know whether you have loved each other in those quiet moments. [Aaron] Well, when you think about it, almost everyone probably listening, when they look back and they think about their home and how they were raised, I'm sure a lot of them, being raised in Christian homes or not, maybe heard the Bible, but did they see it? Did they see the Bible; did they see the gospel? They don't remember what they ate. They don't remember all the places they've been. But they definitely remember how Mom and Dad were together. They definitely remember how Mom and Dad treated them. And that's where the ministry in our home comes in. 'Cause I've told Jennifer this. I said, Jennifer, all of these things that we have, Unveiled Wife, Husband Revolution, our podcast. I said all of that means absolutely nothing if my kids don't know the Lord. And so, not just our ministry to each other that we have a healthy marriage and that we're godly, and that we love each other and respect each other and honor each other and cherish each other and serve each other, but that my kids see it. And that they recognize what we're doing and why we're doing it, and that at the end of the day, they look back and they say thank you to us, not because of us alone, but because we were obedient. I want my kids to say that. I want my kids to say, "Mom and Dad loved each other. "I just know it; they loved me, and they showed me "who God was and they lived it every day. "They didn't just use their words." As James says, don't just be hearers only, but doers of the word. Are we just listening and not doing? Are we just telling and doing the opposite? The do what I say, not what I do? [Lisa] Right, right. [Matt] Do what I say, not what I do. It works every time, just not the way the parent thought it was going to work. [Aaron] Exactly and so I just, going back to that, that's what I want everyone listening to understand. The main purpose of this chapter in the book, is, and it's early on in the book, it's chapter five, and it's setting this idea of we could want to do lots of things for God, but God wants us to do what he's told us to do. And if we can't be faithful with the little thing, and the little thing is our children, our spouse, our home, this is a little picture of the world. If I can't minister to my wife and love her as Christ loves the church, I have no right going and loving a stranger like that. I could. [Matt] I think what we do is we tend to think like, I know what you're saying, as this is the little thing, so to do the big thing. I actually think that reality is kind of on its head. [Aaron] Okay. [Matt] I think the big thing we're doing is we're being faithful with our spouses, we're being faithful in discipling our children. And it's a great, big deal, and see-- [Aaron] Man, I heard that, yeah. [Matt] If the church had been teaching and focusing on that these past, what, I dunno, however many years. [Aaron] 60 or 70 years. [Matt] Would the church be in the state that it's in today with disintegrating families and churches filled with unfulfilled marriages and disappointments and divorce and all of those things. It's a great big deal. And if we're faithful here, God can entrust with ministry elsewhere. [Jennifer] In chapter 14 of the book, we talk about how what God sees as extraordinary is so different than what the world deems extraordinary. When we look at our own lives, it is that day-to-day, all those little choices of discipling our children, being faithful to one another, that is extraordinary because that is where God is working. [Aaron] Especially today, it's normal, you brought up the word normal, it's common, that's what it is, it's common in the world for there to be divorce and unfaithfulness and children who are rebellious and hate their parents. It is extraordinary and remarkable now even though it should be normal for a marriage to have love in it. [Matt] Well, that's just it. [Aaron] The gospel. [Matt] It is normal, biblical marriage to have a loving, close, wonderful, fulfilling, enjoyable, beautiful oneness in marriage. That is normal Christianity; that's normal marriage. The problem is, is we see what's common around us in the world, and we get used to what's common, and start thinking that that's normal, but it's not. If you have a biblical perspective, if you walk God's way, and your marriage reflects God's priorities and principles, then you're gonna have an awesome, wonderful, beautiful, loving, enjoyable marriage because that's what a normal Christian marriage really is. [Jennifer] And the power of God's testimony in your life is actually powerful. [Matt] Absolutely, right, exactly. [Aaron] Well, people can't argue with it. I mean, they can argue with anything. We were just talking about this. When you're around people that are walking a certain way, makes it easier to believe that you can too. That goes both ways. So when you see someone, and you're like man they're, like the stewardesses looking at you. They don't your whole story, but they know the story they just saw. You're not faking it when you're sitting in the aisle, whatever row you're in and like, oh we want everyone to see that we're perfect. We have this smile on because you can't fake it. [Matt] Yeah. [Aaron] Everyone fakes it, and no one falls for it. Like, oh-- [Jennifer] Maybe for a short flight, but not long one like you said. [Aaron] Yeah, the short flight's, but yeah. [Matt] That's right. [Aaron] And again, we keep going back to this. God's not interested in just us having a happy marriage and a healthy marriage. [Matt] No. [Aaron] For the sake of happy and healthy marriage. That's not an end game. [Matt] That's exactly right. [Aaron] It's the means to the end, like you said. It's what, what was the word you used? It verifies, no-- [Matt] Authenticates. [Aaron] It authenticates. [Matt] Yeah. [Aaron] What's sad and still is very powerful to realize is when we're not it doesn't make God the liar. It makes us the liar. [Matt] It reminds me or brings to mind that phrase. Having a form of godliness, but denying the power. 'Cause you look at it from a galloping horse at 100 yards, and it looks like Christianity. It looks like something that's related to God and related to the Bible. But then you get close and you see, well, no, actually. It's not real; it's not true, and that's when we see the disintegration in the next generation when the kids are like, I don't want any part of that. Again, you just can't hide that. And especially, you mentioned, Lisa, you said, yeah, you can't hide it, your kids will absolutely tell the story and we know of a family. The snapshot looks amazing, and nobody would know this, but their kids told us recently, oh yeah, our parents yell all the time. And you'd never know it, but the kids know it. And the kids are now talking; they're all older now. And now they're saying, oh, no, no, no, no. Parents yell all the time. So that's why it's gotta be true there because if you're out witnessing, if you're that parents, and it could be yelling or bickering or fighting or cheating on your taxes or any number of things, but if you're that parent, and in the gas stations, you're telling a guy, oh, hey, the Lord Jesus Christ died for you, and God loves you, and he wants you to have a relationship. The kid is sitting there going, "Are you kidding me?" it's so important that for the things that we say to be true about how we live. It's called not being a hypocrite, and your kids can figure it out at a very early age. [Aaron] All of this was so good. I'm encouraged; it makes me think about my marriage even though we're constantly working on it, I just think, man, I wanna-- Makes me think [Jennifer] Of the kids. [Aaron] Yeah, I wanna pursue you more. I want to constantly be doing that for the sake of our outward ministry and for the sake of our home, so thank you for these stories, the openness with us. We're gonna ask you our question that we're asking everyone. What is your definition of a marriage after God? [Lisa] I think that it's that ever growing a deeper love for each other. And it doesn't have to be perfect. I think sometimes we just go, well, it's perfect, so we throw our hands, or it's not perfect, so we throw our hands up. Instead of thinking, no, I'm gonna move forward in this. And I'm gonna grow in these areas. I can even think of things I have struggled with. Believe it or not, I do have a temper. And Matt has the ability, somehow, to press that button better than anybody else I know. [Matt] Well, I mean, just on a boring Saturday. I mean if there's nothing else to do. [Lisa] Press my buttons. So I'll find myself reacting to him, and I will stop myself literally mid-sentence and go, wait, it's like, yep, like okay. [Aaron] That's a good-- [Lisa] What I wanted say was. I didn't quite the first two seconds or minutes, however the situation was, wasn't right. But checking myself and going, okay, but that's not who I wanna be. That's how I was, but that's not who I wanna be anymore, so I wanna try again. And giving each other that grace to grow, but being determined to change and not say, this is not who I wanna be; I do want us to be loving close. [Matt] And for me, I think I would boil it down. I mean, that's a huge subject, right? And there's so many facets to it. But I would boil it down to this. The fundamental understanding that my marriage is what God is doing in the world. It's not what I'm doing in the world. It's not the thing that I have; I have a marriage. My marriage is what God is doing in the world. The Bible says what God has put together let no man put asunder. This is something God is doing, and so if you have that basic, fundamental faith about this relationship, it's a foundation and a starting point for moving forward. [Jennifer] Thank you guys so much for joining us today. This has just been, like Aaron said, incredible and inspiring. If people were inspired today and they want to follow you more, can you just remind them where they can find you? [Lisa] We have a podcast, Faithful Life. And we'd love to have you join us over there. And we also, both of us have a website. Matt has faithfulman.com, and I have club31women.com. [Matt] And then you're also on Instagram, club31women and faithfulman, on Instagram, so you can find us there as well. [Aaron] Everyone listening, definitely go follow them, they are golden. [Jennifer] If you like Marriage after God, and you like what we share, you're definitely gonna like them. [Aaron] We actually just steal all of our content from them and repurpose them. They have been integral in the growth and maturity in our life. And so, we appreciate you guys. [Jennifer] Thank you. [Aaron] And we thank you for not only sharing with our audience now, but for sharing with us over the last five years. [Lisa And Matt] We love you guys. [Aaron] That we've known you guys. So, we're gonna close out with a prayer. Jennifer's gonna pray and then, yeah. [Jennifer] Dear Lord, thank you for creating marriage with such a significant purpose of revealing to the world your divine love. Please help us to make choices that reflect your love in the way we love one another. May we choose to walk in obedience. Thank you for your word which instructs us and shows us how we should walk in obedience. Please continue to give us wisdom and strength as we choose to walk in the spirit and not our flesh. We pray we would make our marriage a priority. We pray we would gain deeper understanding of how our marriage is our first ministry, and the impact we have in each other's lives and in this world just by remaining faithful to your word. If our priorities are ever out of order, or if we are not unified, please help us to change our course. Constantly direct our hearts to align with yours. May our marriage always be in a place where you can use us as a symbol to point other to you, and may you be glorified. In Jesus' name, amen. [Aaron] Amen. [Matt] Amen. [Aaron] So, thank you all for listening today. I hope this blessed you guys. And as always, we want you guys to have a conversation about this. Go on a date, and discuss the things that we talked about today. We have, what is it, 11 more episodes in this series. 11 more interviews to come. They're gonna be awesome; please stay tuned. We look forward to having you next week. Did you enjoy today's show? If you did, it would mean the world to us if you could leave a review on iTunes. Also, if you're interested, you can find many more encouraging stories and resources at marriageafterGod.com, and let us help you cultivate an extraordinary marriage.
Legends of S.H.I.E.L.D.: An Unofficial Marvel Agents Of S.H.I.E.L.D. Fan Podcast
The Legends Of S.H.I.E.L.D. Director Stargate Pioneer, Agent Haley and Agent Lauren discuss the third The Defenders episode “Worst Behavior,” highlight some recent Marvel news and respond to listener feedback. The Agents debrief you on which Defender has the best and the worst behavior, The Defenders Stan Lee cameo, why Matt and Jessica were tailing each other, why Danny Rand continues to be an idiot, what was Luke doing in the boardroom, Elektra’s rebirth, Stick’s sacrifice and that tremendous hallway fight. THIS TIME ON LEGENDS OF S.H.I.E.L.D.: The Defenders “Worst Behavior” Marvel News Roundup Listener Feedback THE DEFENDERS “WORST BEHAVIOR” [3:14] DEFENDERS WORST BEHAVIOR The Defenders ShowRunners: Douglas Petrie and Marco Ramirez Douglas Petrie (“Marvel’s Daredevil,” “Buffy the Vampire Slayer”) Marco Ramirez (“Marvel’s Daredevil,” “Orange is the New Black”) Executive Producer: Drew Goddard (“The Martian,” “Lost,” “Alias”, “Marvel’s Daredevil”) Netflix made all 13 episodes of The Defenders available on Friday August 18th, 2017. Directed By: Peter Hoar http://www.imdb.com/name/nm0387486/?ref_=tt_ov_dr#director 19 Directing Credits Starting in 2004 This is Peter’s 4th Legends Of S.H.I.E.L.D. discussion appearance. Previously: Episode 135, Daredevil 2x5 “Penny And Dime” Peter Hoar NOT MENTIONED in Episode 141, Daredevil 2x10 “The Man In The Box” Episode 143, Daredevil 2x13 “A Cold Day In Hell’s Kitchen” Episode 201, Iron Fist 1x10 “Black Tiger Steals Heart” 8 x Grange Hill 3 x Dream Team 5 x Wire In The Blood 2 x MI-5 1 x Doctor Who 2 x Vera 2 x Silk 2 x Shetland 9 x Da Vinci’s Demons 3 x Daredevil 4 x The Last Kingdom 1 x Iron Fist 1 x The Defenders ALSO Producer for: Da Vinci’s Demons and The Last Kingdom Written by: Lauren Schmidt Hissrich http://www.imdb.com/name/nm1274355/?ref_=fn_al_nm_1#writer 8 Total Writing Credits since 2004 This is Lauren’s fifth Legends Of S.H.I.E.L.D. appearance. Previously: Episode #136 Daredevil 2x5 “Kinbaku” Episode #140 Daredevil 2x9 “Seven Minutes In Heaven” Episode #143 Daredevil 2x12 “The Dark at the End Of The Tunnel” Episode #208 The Defenders 1x02 "Mean Right Hook" 3 x Daredevil 20 x The West Wing 4 x Private Practice ALSO PRODUCED: Private Practice, Parenthood, Do No Harm, Power, Daredevil, The Defenders Written By: Douglas Petrie http://www.imdb.com/name/nm0677956/?ref_=ttfc_fc_wr3#writer 17 Writing Credits from 1992 This is Douglas’ tenth Legends Of S.H.I.E.L.D. appearance. Previously: Episode #81 Daredevil 1x7 “Stick” Episode #86 Daredevil 1x11 “The Path Of Righteousness” Episode #87 Daredevil 1x12 “The Ones We Leave Behind” Episode #113 Daredevil Season 2 Showrunner Episode #117: News Item for The Defenders Showrunner Episode #130 Daredevil 2x1 “Bang” Episode #131 Daredevil 2x2 “Dogs To A Gunfight” Episode #143 Daredevil 2x12 and 2x13 "The Dark at the End of the Tunnel" and "A Cold Day in Hell's Kitchen" Episode #206 The Defenders 1x01 "The H Word" 1 x Rugrats 2 x Angel 59 x Buffy The Vampire Slayer 2 x Tru Calling 2 x The 4400 2 x The Batman 2 x Charlie’s Angels 2 x American Horror Story 7 x Daredevil 4 x The Defenders ALSO PRODUCED: Buffy The Vampire Slayer, Tru Calling, The Robinsons: Lost In Space, CSI, Pushing Daisies, Charlie’s Angels, American Horror Story And Daredevil “WORST BEHAVIOR” Cold Opening Months ago Turkish restaurant The Black Sky (Elektra) - they have it (reference Daredevil season 2) Last of their resources The Black Sky brought back to life Alexandra fights and subdues The Black Sky Elektra learns to fight again Lots of dead ninjas Today Stick and Alexandra Stick cuts off his own hand to get free Jessica Jones and Matt Murdock Nothing happened. Jessica is good. She is free to go Luke Cage and Claire I left Cole behind I got clobbered by this glowing hand Luke, Colleen, Danny and Claire White Hat guys? The Hand Bring back the dead You are on the same side - Talk Jessica goes to see the widow, Michelle Nothing I knew about John Apologizes to the daughter Jessica is being followed by … Matt Murdock Matt is being followed by …. Jessica Jones Jessica takes pictures of Matt … parkouring up the wall Danny and Luke talk This isn’t going to work out Good luck man Luke and Cole Who is the man in the White Hat? Is this The Hand? Take lotto tickets to my mom Colleen and Danny What if he is right? Danny, you are not a businessman You are a fighter. A Warrior Danny Goes To Rand Enterprises Midland Circle Financial Ward is not there Jessica Goes To Architect Firm Midland Circle Luke Sees Cole’s Mom You cannot admit when you’ve done something right Cole’s dead Cole left the “Midland Circle” information for Luke “All my babies is gone” Stick shows up at the Dojo Where’s the Fist? Danny goes to Midland Circle Alexandra shows up She’s in charge Jessica and Matt You are in danger I have pictures asshole You Can’t Hide Anymore Gunshot This Time I Won’t Kill You Danny Versus The Boardroom Luke Comes To Save Danny All Four Together There’s Something else Coming Elektra Matt Versus Elektra Danny (Iron Fist) saves Matt Who are you people? NEWS [34:57] HIGHLIGHT STORY OF THE WEEK David Fincher criticises Marvel http://www.indiewire.com/2017/10/david-fincher-marvel-netflix-mindhunter-1201887584/ NETFLIX SERIES New trailer + premiere date for Punisher https://twitter.com/ThePunisher/status/921020723275055104 Mike Coulter talking Iron Fist in Luke Cage s2 http://comicbook.com/marvel/2017/10/17/luke-cage-season-2-heroes-for-hire-iron-fist/ BLACK PANTHER & BEYOND New Black Panther trailer and poster https://www.youtube.com/watch?v=xjDjIWPwcPU https://twitter.com/chadwickboseman/status/919911671514255360 AWWWWWW/COOL STUFF Big Hero 6 TV series gets a premiere date http://deadline.com/2017/10/big-hero-6-the-series-movie-premiere-date-disney-xd-1202189938/ FEEDBACK [47:28 ] TWITTER https://twitter.com/BridgerZadina/status/920158513501954048 Bridger ZadinaVerified account @BridgerZadina FollowingFollowing @BridgerZadina More Replying to @adanagirl @LegendsofSHIELD Ya'll have no idea..... o_o 12:24 AM - 17 Oct 2017 https://twitter.com/adanagirl/status/920816074995662848 Christy @adanagirl FollowingFollowing @adanagirl More Christy Retweeted Comicbook.com There is only one word for these: Excelsior!!! @LegendsofSHIELD Christy added, Comicbook.comVerified account @ComicBook ICYMI: @OriginalFunko is finally making Stan Lee cameo Pops! Details inside: http://comicbook.com/marvel/2017/10/18/funko-pop-stan-lee-marvel-cameos-captain-america-guardians/ … 7:57 PM - 18 Oct 2017 https://twitter.com/BornToEatBacon/status/921052931947982849 Johnny ~R @BornToEatBacon FollowingFollowing @BornToEatBacon More @MrParacletes @LegendsofSHIELD @adanagirl He's watching you. @CollectDST #toylovercrew 11:38 AM - 19 Oct 2017 YOUTUBE narayantx10 hours ago This podcast is the only reason I watch The Inhumans, too. Lucille Ball was a genius and a boss like Medusa. Peace OUTRO [51:39] Haley, Lauren and Stargate Pioneer love to hear back from you about your top 5 Marvel character lists, your science of Marvel questions, who would you pick in an all-female Avenger team, or who’s Marvel abs you would like to see. Call the voicemail line at 1-844-THE-BUS1 or 844-843-2871. Join Legends Of S.H.I.E.L.D. next time as the hosts discuss The Inhumans fifth episode “Something Inhuman, This Way Comes...” on Sunday October 22nd, 2017. You can listen in live when we record Sunday Afternoons at 1:00 PM Eastern time or Thursday Evenings at 9:00 PM ET at Geeks.live (Also streamed live on Spreaker.com). Contact Info: Please see http://www.legendsofshield.com for all of our contact information or call our voicemail line at 1-844-THE-BUS1 or 844-843-2871 Don’t forget to go check out our spin-off podcast, Legends Of S.H.I.E.L.D..: Longbox Edition for your weekly Marvel comic book release run-down with segments by Black Adam on S.H.I.E.L.D. comics, Lauren on Mutant Comics and Anthony with his Spider-Man web down. Legends Of S.H.I.E.L.D.: Longbox Edition is also available on the GonnaGeek.com podcast network. Legends Of S.H.I.E.L.D. Is a Proud Member Of The GonnaGeek Network (gonnageek.com). This podcast was recorded on Thursday October 19th, 2017. Standby for your S.H.I.E.L.D. debriefing --- Audio and Video Production by Stargate Pioneer of GonnaGeek.com.
Nasir and Matt discuss the settlement from a class action lawsuit involving Nike and Apple for an underperforming product. Full Podcast Transcript NASIR: All right. Welcome to our podcast where we cover business in the news and our legal twist. My name is Nasir Pasha. MATT: And I am Matt Staub. NASIR: Right on cue. Did you see how I pointed to you? I was going to do the “three, two…” with the silent one and then for you to go. MATT: Always helpful. NASIR: No problem. That’s why I’m here – to make sure you’re on-time. MATT: Who do we talk about today? Cecil, the Lion? NASIR: No, poor Cecil. MATT: Oh. NASIR: They still can’t find the dentist. I guess the authorities went to his door and knocked on the door and then he didn’t come out. Like, literally that was the article I read. Like, they don’t know where he is. But, if you’re just going to his house and knock on the door, that’s probably not the best way to find him. MATT: “We saw his car. We saw somebody walk in five minutes earlier but, when we knocked, nobody answered. So, you can only assume he’s not there.” Well, no Cecil, the Lion. But, we are going to talk about these FuelBands. NASIR: Yeah, Nike Fuel. MATT: Nike Fuel. Do you have one of these? Did you buy this? NASIR: No, I didn’t buy that version. Nike Fuel’s actually been out for a while, but I did know people that used to have it and I think that my dad ended up buying one, eventually, but what’s goofy about it, is that he would just shake his arm – and I’ve seen other people do that – and basically it acts like you are moving or whatever so you could reach your goal pretty quickly that way. MATT: Well, that’s probably why we’re talking about it and there was this class action settlement, and not only Nike but Apple was involved as well in this too. So, let me get to the class action part of it, I guess, the settlement terms. Basically, the agreement is, if you bought a FuelBand from January 2012 through June 2015, you are going to be entitled to either a $15.00 payment or a $25.00 gift card which reminds me, I never received any Red Bulls. NASIR: Yeah, I haven’t either. Sometimes it takes time. MATT: I haven’t moved. I’m still here. Red Bull, if you’re listening, I haven’t got my two Red Bulls that are probably going to be not tasting very good because it’s going to be so hot and bottom of the barrel Red Bull. Anyways, there is this class action settlement and it kind of centers around this false advertising claim essentially saying that the things that it’s supposed to do – the FuelBands are supposed to do like, track steps and count calories – actually didn’t do that very accurately and that comes as no surprise based on what you just told me that you essentially move your wrist around and you’re burning tons of calories. NASIR: Yeah, exactly. There’s plenty of these things now. I had the FitBit when it came out – well, actually, after it came out about a year or two ago – and then now I have a Samsung Gear Fit that goes really well with my phone. But, frankly, I mean, these are all pretty useless when it comes to accuracy. In fact, when I was buying mine, I remember to figure out what was the most accurate. People would take like five or six arm bands and wear them for the day and they’d all have different numbers. So, I guess, in theory, one of them could be accurate. But, most likely, they weren’t and I think the most important thing is consistency because, just the nature of measuring steps and distances, it’s not a complete science – you know, it’s not a ruler where you’re measuring something in that respect. But, the problem is that, when you’re selling something – in other words, okay, they settled, right? Nike and Apple, they say that they want to avoid litigation costs so let’s just get rid of these guys and settle this lawsuit and that’s well and good and that possibly may be the case but there could have been liability here because, think about it,
Nasir and Matt talk about Facebook's lawsuit against DLA Piper and other law firms accused of furthering a fraudulent lawsuit. The guys also answer, "Can I ban e-cigarettes in the workplace?" Full Podcast Transcript NASIR: All right. Welcome to our podcast where we cover business in the news and answer some of your business legal questions. This is Nasir Pasha. MATT: And this is Matt Staub. NASIR: And don’t forget, you can also send in your questions to ask@legallysoundsmartbusiness and dotcom is also necessary. MATT: And, sometimes, I put the reflection in different parts of my name. So, I went up towards the end of it for some reason today. NASIR: I didn’t even notice. MATT: Stay tuned for what’s going to happen on Friday. Who knows? NASIR: All right. So, we get to talk about some other law firms here and some other attorneys. MATT: Yeah, you love this type of story because you love every time that bad things happen to lawyers. NASIR: That is definitely partly true, I think, but – I don’t know – I think I’m going to be defending them in this case so go ahead. MATT: Yeah. So, we see Facebook get sued or threatened to get sued all the time. This is the opposite. I guess it’s the exact opposite because it’s Facebook’s suing DLA Piper and other firms and attorneys. This was just filed this week, right? Yeah or I guess last week. It’s a very fresh lawsuit. NASIR: Fresh off the press, and DLA Piper – everyone should know – is a very large law firm, by the way. MATT: Well, DLA Piper, they’ve been in the news a lot the last year, too. They’ve kind of been dropping, shutting down offices, laying off a lot of mid-level attorneys. NASIR: That’s probably true. I mean, a lot of these big firms – since 2008 – have gone through massive downsizing and then upsizing and then downsizing again so that wouldn’t be surprising. But I know they were in the news quite a bit when this whole Facebook lawsuit came up because this guy, Paul Ceglia, he claimed that he owned a majority interest of Facebook. MATT: Yeah. NASIR: And was able to secure representation from DLA Piper and three other law firms, or I think eventually other law firms and other attorneys, but long story short is that this guy was a complete fraud, apparently – which is not too surprising, I suppose. MATT: Yeah. NASIR: So, then these guys at Facebook – after everything was said and done – were obviously not too happy about the lawsuits and, this last week, they turned it around and sued these attorneys for basically representing this Paul Ceglia because they basically conspired with the fraud that he was trying to extort money out of Facebook. MATT: Yeah, what they’re saying is, you know, once information was discovered and that’s a certain point that they were acting in that conspiracy of the fraud that this guy was trying to impose against Facebook. So, once they found out about it, then they’re part of the deal, too. I mean, I kind of like Facebook going after these firms because, if they knew about it and they were just furthering the fraudulent actions of this guy, then why not? They should have to be responsible for their actions. NASIR: Yeah, you don’t often hear about attorneys who file frivolous lawsuits being sued against, especially in such a publicized manner – in this case, a very well-known national law firm – but I haven’t read the complaint and I wish – in fact, I could read it right here. Let’s just pause here for a half-hour and let me read this. MATT: You can do a live reading. NASIR: Okay. I’ll just start reading here. MATT: Start from the caption. NASIR: It’s still loading. Otherwise, I would have. I’m going to bring up the lawsuit here because, okay, it’s Facebook Inc. and Mark Elliot Zuckerberg. MATT: Who is that? NASIR: That’s the CEO of Facebook. The reason I’m looking this up is I want to understand the causes of action. Okay. So, it’s basically for filing a frivolous lawsuit, et cetera. And so, in this case, the lawyers,
Nasir and Matt talk about what to do when someone outside of your business takes control of your social media. They also answer the question, "Who can sign off on an agreement for a specific type of entity?" Full Podcast Transcript NASIR: Welcome to Legally Sound Smart Business. This is… Matt Staub. MATT: Oh. NASIR: And Nasir Pasha. MATT: I would like to be introduced first one time, I guess. We’re only 89 episodes in, it’s still yet to happen, but… NASIR: One day. MATT: You never know. Actually, no, the one time you weren’t there, I introduced myself first. NASIR: Oh, that’s right. MATT: I forgot about that. NASIR: Oh, because it was a best of episode. You like to talk about that time that you did it by yourself. That’s interesting. MATT: It was only, like, a minute long at most. NASIR: All right. Well, welcome to the business law podcast. This is where we cover business in the news and also answer some of your business legal questions that you, the listener, can send in to ask@legallysoundsmartbusiness.com. MATT: Or you can send direct tweets or direct messages through Twitter @askbizlaw. NASIR: @askbizlaw. MATT: I wonder how we got that name. It seems like that would have been taken. NASIR: I was going to put ask@legallysoundsmartbusiness.com or @smartbusiness but it was so long and I didn’t want to put the acronym because that didn’t really look right, and “Legally Sound” was too long too or something, I don’t remember. MATT: Yeah, we left out. NASIR: Yeah, it was a good one. MATT: So, what do we have on the docket today? We’re talking about Facebook. NASIR: On the docket, I like that. MATT: Yeah, and we’re talking about Facebook likes specifically. I know our Legally Sound Facebook page has hundreds of thousands of likes because we’ve paid lots of money for that. NASIR: About a dollar. MATT: No, just joking. NASIR: All international. MATT: Let’s talk about in the story $500 for 10,000 likes, it seems like a good deal, I guess. NASIR: I think that’s for US likes, though, right? MATT: For $500, you get 10,000 likes in the US. There’s a cheaper rate for international. NASIR: What does it matter where it comes from if you’re just paying for likes? It’s still just a number. No one can see – or maybe they can, I don’t know. MATT: Anyways, well, I guess we’re not getting off-topic because that’s kind of the story here. NASIR: Let’s not talk about Facebook likes anymore, that’s off-topic. MATT: Who owns these Facebook likes? That’s really the question that it comes down to and this all came about because I guess there was a show that was on BET which I’m not really familiar with the show. NASIR: Called “The Game.” I’ve never heard of it myself. MATT: The Game, yeah. They started a show, it went off-air, but their Facebook page lived on and they ended up getting two million likes on this Facebook page for this show. So, BET was trying to say, “Hey, you need to give us these likes,” I guess. I’m not even sure how this works. Because they have the likes, do they have the information for all those people? Is that what it’s boiling down to? NASIR: I’m trying to think about it. I don’t think you have very much information. But this case comes with a story, just like any court case. I think it’s semi-interesting that, even though this fan page came out when the show came out, the person who ran it was not an employee or even associated with the show. So, it wasn’t an actual official page. But, after the show went off-air, it continued to just get more likes and I think people missed it or whatever – who knows? And then, when it came back, instead of the game, the show BET creating their own new page, they were like, “Okay, well, this page is still out there, let’s just use hers. This is just some fan.” And so, they entered into some kind of contract agreement where she’d post for her and she’d be paid like, $3,000 or $4,000 per month, and there are some different terms in there. But then,